@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Dancing+Script:wght@400..700&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Marcellus&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*TCPL Main CSS*/
/*Overall To Whole File*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*Variables*/
:root {
    --height-100: 100px;
    --width-100: 100px;
    --w-100: 100%;
    --p-100: 100px;

    --home-height: calc(100vh - 265px);
    --all-page: calc(100vh - 68px - 90px);

    --primary: #0D6EFD;
    --secondary: #012048;
    --light: #F8F9FA;
    --dark: #000000;
    --white: #ffffff;
    --muted: #6c757d;
}

body {
    font-family: "Poppins", sans-serif !important;
    font-style: normal;
}

/*cursor*/
.cursor-pointer {
    cursor: pointer;
}

/*Background Color*/
bg-primary {
    background-color: var(--primary) !important;
}

bg-secondary {
    background-color: var(--secondary) !important;
}

bg-light {
    background-color: var(--light) !important;
}

/*Color*/
.primary {
    color: var(--primary) !important;
}

.secondary {
    color: var(--secondary) !important
}

.light {
    color: var(--light) !important
}

/*All Other Pages Height*/
.all-page {
    height: var(--all-page);
}

/*Font Size*/
h1,
.h1 {
    font-size: clamp(32px, 5vw, 64px) !important;
    font-weight: 700;
    margin-bottom: 8px;
}

h2,
.h2 {
    font-size: clamp(28px, 4vw, 42px) !important;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 20px;
}

h3,
.h3 {
    font-size: clamp(24px, 3.5vw, 32px) !important;
}

h5,
.h5 {
    font-size: clamp(18px, 2.5vw, 24px) !important;
    color: #000
}

h6,
.h6 {
    font-size: clamp(16px, 2vw, 20px) !important;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.f12 {
    font-size: 12px !important;
}

p {
    color: var(--muted);
    /* margin-top: 10px; */
    padding: 0;
    margin-bottom: 0px;
}

small {
    color: var(--muted)
}

/*Text Alignment*/
.text-justify {
    text-align: justify;
}

.text-start {
    text-align: left;
}

/*margin*/
.margin-tb {
    margin: 2rem 0;
}

/*Button*/
.btn {
    display: inline-block;
    padding: 9px 38px;
    font-size: 14px;
}

.btn-primary,
.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary)
}

/*Button To Scroll Up*/
.back_top_block {
    bottom: 0 !important;
}

.back_top {
    position: fixed;
    bottom: -100px;
    right: 0;
    display: inline-block;
    padding: 25px;
    transition: bottom .3s ease-in-out;
    z-index: 2;
}

/*Height*/
.h-fit-content {
    height: fit-content;
}

.height-100,
.h-100 {
    height: calc(var(--height-100));
}

.h-120 {
    height: calc(var(--height-100) + 20px);
}

.h-150 {
    height: calc(var(--height-100) + 50px);
}

.h-200 {
    height: calc(var(--height-100) + 100px);
}

.h-250 {
    height: calc(var(--height-100) + 150px);
}

.h-300 {
    height: calc(var(--height-100) + 200px);
}

.h-400 {
    height: calc(var(--height-100) + 300px);
}

.h-500 {
    height: calc(var(--height-100) + 400px);
}

.h-700 {
    height: calc(var(--height-100) + 600px);
}

.h-800 {
    height: calc(var(--height-100) + 700px);
}

.h-900 {
    height: calc(var(--height-100) + 800px);
}

.h-1000 {
    height: calc(var(--height-100) + 900px);
}

/*Width*/
.w-20 {
    width: calc(var(--w-100) - 80%);
}

.w-30 {
    width: calc(var(--w-100) - 70%);
}

.width-100 {
    width: var(--width-100);
}

.w-120 {
    width: calc(var(--width-100) + 20px);
}

.w-150 {
    width: calc(var(--width-100) + 50px);
}

.w-200 {
    width: calc(var(--width-100) + 100px);
}

.w-300 {
    width: calc(var(--width-100) + 200px);
}

.w-600 {
    width: calc(var(--width-100) + 500px);
}

/*Timeline Or Line*/
.line {
    width: 100px;
    height: 2px;
    background-color: var(--bg-color);
}

.time-line {
    position: relative;
    display: table-cell;
    width: 80px;
}

.time-line:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 20px;
    bottom: -5px;
    width: 1px;
    background: #e6e6e6;
    border-radius: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.time-line:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 8px;
    width: 9px;
    height: 9px;
    background: #000;
    border-radius: 100%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

/*li Tag*/
li {
    color: var(--primary)
}

/*Filter For TCPL Icon Footer*/
.filter {
    filter: brightness(20);
}

.filter1 {
    filter: brightness(1.5);
}

/*Transition */
.transition {
    transition: 1s ease-in-out;
}

.transition-card {
    border: 2px solid #ffffff;
}

.transition-card:hover {
    transition: 0.1s ease;
    border: 2px solid #0D6EFD;
}



/*Brand & Anchor Tag Hover*/
a {
    text-decoration: none !important;
    color: var(--dark);
}

a:hover {
    text-decoration: none !important;
    color: var(--primary);
    /* border-bottom: 2px solid var(--primary); */
}

a.active {
    text-decoration: none !important;
    color: var(--primary);
    /* border-bottom: 2px solid var(--primary); */
}

/*logo*/
.logo-w {
    width: 100px;
}

.indiqlologo,
.qoramasalalogo {
    filter: brightness(0) invert(1);
    align-self: center;
    object-fit: cover;
}

/*Image*/
img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-hw {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.img-container-brands {
    height: 200px;
    width: 100%;
    padding: 24px;
}

.img-fluid-contain {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.img-fluid-cover {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.nav-items {
    padding: .5rem 1rem;
}

/*Navbar*/
.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    padding: 0 2rem;
    /* padding: 0px 20px; */
    /* padding: 0px 32px; */
}

/* .fixed_header {
    height: 90px;
} */

.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    vertical-align: middle !important;
}

.nav-link {
    display: block;
    /* padding: .5rem 1rem; */
    padding: 0rem 0rem;
    /* padding-bottom: .5rem; */
    /* font-weight: 500; */
    /* text-transform: capitalize; */
    /* padding-bottom: 5px; */
    /* color: var(--bg-color); */
}

.nav-link:hover {
    color: var(--primary) !important;
}

/*navigationbar*/
.sticky-header {
    top: 0px;
    box-shadow: 0 1px 3px #00000029;
    border-radius: 0px;
    justify-self: center;
    /* width: 1350px; */
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    transition: .5s ease;
    height: 100px;
    position: fixed;
}

.scroll_height {
    background: rgb(255 255 255 / 85%);
    position: fixed;
    border-radius: .25rem;
    max-width: 1350px;
    /* top: 10px; */
    height: 80px;
    backdrop-filter: blur(10px);
}

.align-middle {
    vertical-align: middle !important;
}

/*Index.html*/
/*Home Page Hero*/
/* .home-height {
    height: var(--home-height);
} */

.error-message {
    font-size: 16px;
}


input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

input:invalid {
    border-color: red;
}

.is-invalid {
    background-image: none !important;
}

/*Who We Are*/
.image-who {
    height: 500px;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.image-who img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 👈 Forces same size without distortion */
    display: block;
}

/*Business Verticals*/
.business-card {
    width: 100%;
    max-width: 360px;
    /* Bigger than 18rem */
    border-radius: 12px;
    overflow: hidden;
}

.image-bus {
    height: 220px;
    width: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.image-bus img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* 👈 Perfect for logos */
}

/*Line*/
.vertical-line {
    margin-top: 100px;
    width: 1px;
    height: 200px;
    background-color: rgba(54, 51, 51, 0.555);
}

/*Global Presence*/
.clint-contain {
    width: max-content;
    height: 150px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* overflow-x: scroll; */
    overflow: hidden;
    padding: 0 10px;
    gap: 50px;
}

.clint-contain {
    text-align: center;
    animation: 50s infinite-slide infinite linear;
}

@keyframes infinite-slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clint-contain:hover,
.clint-wrapper:hover .clint-contain {
    animation-play-state: paused;
}

@keyframes tech_slider {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-100%)
    }
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/*hero*/
.top_header_title {
    top: calc((100% / 2) - 125px);
}

/*Home Footer*/
.custom-link {
    color: #000000 !important;
    text-decoration: none !important;
}

.custom-link:hover {
    text-decoration: underline !important;
    color: #0d6efd !important;
}



/*About.html*/
.a {
    color: #0D6EFD;
}



/*Brands.html*/

/* Products.html*/

/*Services.html*/

/*Blog.html*/






/* ------------------- padding */
/* .pt-130 {
    padding-top: calc(var(--p-100) + 20px);
} */






/* ------------------- header navbar */


.f12 {
    font-size: 12px !important;
}

.filter1 {
    filter: brightness(0);
}



/* ------------------- transition */
.transition {
    transition: 1s ease-in-out;
}


/* ######################### brands ########################### */
.brand-container {
    padding: 16px;
    transition: .4s ease;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.brand-container:hover,
.box-shadow {
    box-shadow: 0 20px 40px #00000029 !important;
    z-index: 1;
}

.brand {
    z-index: 0;
    display: flex;
    cursor: pointer;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: .4s ease-in-out;
}

.brand img:hover {
    transform: scale(1.01);
}

/* ##################### clint ######################## */
.gap-y {
    row-gap: 2rem;
}



/* round-contain */
.center-content {
    display: flex;
    position: relative;
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.round-contain {
    width: 400px;
    height: 200px;
    /* border: 1px solid black; */
    /* border-radius: 50%; */
    --align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}



/* index mini slaid */

/*hr*/
hr {
    /* height: 4px; */
    color: #3f4144;
}

/* icon*/
.cont-i {
    font-size: 2rem;
    color: white;
}

i.con-i {
    font-size: 2rem;
    color: white;
    background-color: #0D6EFD;
    border: 2px solid #0d6efd;
}

i.con-i:hover {
    font-size: 2rem;
    color: #0D6EFD;
    background-color: white;
    transition: 0.5s ease-in;
    border: 2px solid #0d6efd;
}

i.soc-i {
    font-size: 2rem;
    color: #000000
}


i.indx-i {
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}


/* border-radius blog */
.br-30 {
    border-radius: 30px;
}

.br-tlr-30 {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

/*head-card*/
.header_card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hw {
    min-height: 390px;
    min-width: 590px;
}




/* z-index */
.z-index-1 {
    z-index: -1;
}

.top-200 {
    top: 200px;
}

.start-10 {
    left: 5%;
}

.contact-bottom {
    position: relative;
    z-index: 100;
    margin-bottom: -100px;
}

.two-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    /* show only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

/* Working Process */
.number {
    width: 45px;
    height: 45px;
    background-color: #0d6efd;
    color: #fff;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    font-weight: 600;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
}

.circle {
    width: 250px;
    height: 250px;
    background-color: #ffffff;
    color: #000;
    border-radius: 50%;
    text-align: center;
    padding: 40px 25px;
    position: relative;
    margin: auto;
    border: 2px solid #ffffff;
    transition: 0.2s ease-in;
}

.circle:hover {
    border: 2px solid #0d6efd;
    width: 260px;

}

.circle h5 {
    margin-top: 15px;
}

.circle p {
    font-size: 14px;
    color: var(--muted);
    margin-top: 10px;
}

/* Clients */
.client-img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-top: -45px;
    background: #fff;
    border: 1px solid var(--muted);
}


/* 
.two-lines {
    display: -webkit-box;
    --webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
} */

.image-card {
    background: #fff;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.service-card {
    /* background: #fff; */
    border-radius: 6px;
    transition: 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.service-card img {
    filter: brightness(1) sepia(1) hue-rotate(-10deg) saturate(500%);
}


.yellow-bg {
    background: #001659;
    /* Yellow background */
    padding: 40px;
    position: relative;
    display: inline-block;
}

.person-img {
    width: 70%;
    /* max-width: 350px; */
    object-fit: cover;
}

.role-badge {
    position: absolute;
    /* bottom: 10px;
    left: 30px; */
    bottom: 25px;
    left: 70px;
    background: white;
    color: #001659;
    padding: 6px 20px;
    font-size: 14px;
    letter-spacing: .5px;
}

.quote-box {
    background: #f5f5f5;
    border-left: 4px solid #001659;
}

.timeline-wrapper {
    position: relative;
    padding-left: 40px;
}

/* 
.timeline-title {
    font-size: 42px;
    font-weight: 800;
}

.timeline-subtitle {
    font-size: 20px;
    font-weight: 600;
} */

.text-orange {
    color: #FF6B21;
}

.service_card {
    background: white;
    border-radius: 10px;
    position: relative;
    transition: 0.3s;
}

/* .service-card.active {
    background: #FF6B21;
} */

.service_card .arrow-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 50%;
    margin-top: 10px;
    text-decoration: none;
}

.service_card:hover {
    transform: translateY(-10px);
}

/*scroll animation*/
.scroll {
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.scroll-left {
    transform: translateX(-80px);
}

.scroll-right {
    transform: translateX(80px);
}

.scroll-up {
    transform: translateY(80px);
}

.scroll.show {
    opacity: 1;
    transform: translate(0, 0);
}

.scroll-up:nth-child(1) {
    transition-delay: 0.1s;
}

.scroll-up:nth-child(2) {
    transition-delay: 0.2s;
}

.scroll-up:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-up:nth-child(4) {
    transition-delay: 0.4s;
}

.scroll-up:nth-child(5) {
    transition-delay: 0.5s;
}

.scroll-up:nth-child(6) {
    transition-delay: 0.6s;
}

/* 
.feature-item {
    padding: 25px 0;
    border-bottom: 1px solid #e5e5e5;
}

.feature-icon img {
    width: 55px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
}

.feature-desc {
    color: #555;
    line-height: 1.5;
    margin-top: 5px;
} */

/* .ceo-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.ceo-card:hover {
    transform: translateY(-5px);
}

.ceo-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
}

.ceo-name {
    font-size: 20px;
    font-weight: 600;
} */
/* 
.ceo-role {
    color: #777;
    font-size: 14px;
} */


/* scrolar brand and clint */
.filter_image {
    filter: grayscale(1);
}

.filter_image:hover {
    filter: grayscale(0);
}

/* home */
.filter_brightness {
    filter: brightness(0.5);
}

.text_yellow {
    color: #FFC107;
}

.text_blue {
    color: #0d6efd;
}

.test {
    background-color: #F8F9FA;
    border: 2px solid #F8F9FA;
    transition: 0.5s ease-in;
}

.test:hover {
    background-color: #0d6efd20;
    border: 2px solid #0D6EFD;
}

/* .card p:hover{
    background-color: #0d6efd;
    color: #ffffff;
} */


/*texcanvas footer width*/
.text-width {
    max-width: 300px;
}

/*img hw*/
.image_hw {
    height: 600px;
}


/*Media Query*/
@media (min-width: 768px) {

    section {
        padding: 100px;
        display: block;
    }

    .home-height {
        height: calc(110vh - 90px);
    }

    .show-mobile {
        display: none;
    }

    .menu_button {
        display: none;
    }

    .scroll_height {
        top: 10px;
        height: 80px;
    }

    .horizontal_padding {
        padding: 0px 32px;
    }

    .px_30 {
        padding: 4px;
    }
}

@media (max-width:992px){
    
}


/* Tablet   576 to 767 sudhi md*/
@media (max-width: 767px) {

    .scroll-left,
    .scroll-right,
    .scroll-up {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .px_30 {
        padding: 0px 30px;
    }

    .show-mobile {
        display: block;
    }

    header {
        height: 80px;
    }

    .home-height {
        height: calc(70vh - 90px);
    }

    .navbar .nav {
        /* display: none; */
        width: 0px;
        flex-direction: column;
        background-color: white;
        /* position: fixed; */
        top: 99px;
        height: calc(100vh - 0px);
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        transition: .2s ease-in-out;
        overflow: hidden;
        position: fixed;
    }

    .bodyscroll {
        overflow: hidden;
    }

    /* 
    .navbar {
        padding: 0px 20px;
    } */

    .menucollapsed {
        width: 100% !important;
    }

    .nav-items {
        padding: 6px 20px;
    }

    /* .nav-items {
        padding: 0;
    } */

    section {
        padding: 40px;
    }

    .menu_button {
        position: relative;
        display: block;
        width: 30px;
        height: 30px;
    }


    .menu_button .menu_line_1 {
        top: 8px;
        width: 70%;

    }

    .menu_button .menu_line_2 {
        top: 15px;
        width: 100%;
        transform-origin: right;
        transition: .6s;
    }

    .menu_button .menu_line_3 {
        top: 22px;
        width: 50%;
    }

    .menu_button .menu_line_1,
    .menu_button .menu_line_2,
    .menu_button .menu_line_3 {
        position: absolute;
        background-color: var(--black);
        transition: .5s ease-in;
        border: 1px solid black;
    }

    /* header contact */
    .contact_btn span {
        display: none;
    }

    .contact_btn .btn {
        padding: 10px 15px;
        border-radius: 50px;
    }

    .navbar .nav {
        /* display: none; */
        width: 0px;
        flex-direction: column;
        background-color: white;
        /* position: fixed; */
        top: 80px;
        height: calc(100vh - 0px);
        bottom: 0;
        right: 0;
        left: 0;
        display: flex;
        transition: .2s ease-in-out;
        overflow: hidden;
        position: fixed;
    }

    .vertical-line {
        display: none;
    }

    .navbar {
        padding: 0px 20px;
    }

    .horizontal_padding {
        padding: 0px 32px;
    }
}

/* Mobile 0 to 575 sm */
@media (max-width: 576px) {
    section {
        padding: 20px;
    }

    /*container*/
    .container,
    .container-fluid,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        padding: 0px;
    }

    .vertical-line {
        display: none;
    }

    .scroll_height {
        border-radius: 0px;
        height: 80px;
    }

    .nav,
    ul,
    li {
        padding: 0;
    }

    /* .nav-items {
        padding: 0;
    } */

    .home-height {
        height: calc(40vh - 90px);
    }

    .d-none.d-md-block {
        display: none !important;
    }

    .top_header_title {
        top: calc((100% / 2) - 285px);
    }


    .horizontal_padding {
        padding: 0px 20px;
    }


    .px_30 {
        padding: 0px 30px;
    }
}

/* .row {
    padding: 0px;
    margin: 0px;
}

.col {
    padding: 0px;
    margin: 0px;
} */

/*sample html*/