    :root {
      --blue: #1565d8;
      --blue-light: #e8f0fe;
      --orange-light: #fff4eb;
      --orange: #f19100;
        --orange-light-1: #ffefe2;
      --orange-light-2: #ffe4ce;
      --orange-light-3: #ffdcbf;
      --yellow: #f5a623;
      --green: #34c38f;
      --dark: #1a1a2e;
      --text: #444;
      --muted: #888;
      --bg: #f4f7ff;
    }
    * { box-sizing: border-box; }
    body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; margin: 0;     font-size: 15px; }

    /* ── NAVBAR ── */
    .navbar { padding: 12px 0;background: var(--orange-light); }
    .navbar-brand { font-size: 1.6rem; font-weight: 800; color: var(--dark); letter-spacing:-1px; max-width: 180px; }
    .navbar-brand span { color: var(--orange); }
    .nav-link { font-size: 15px;padding: 32px 12px;cursor: pointer;font-weight: 600;display: inline-block;position: relative;border-width: 0 0 0 1px;text-transform: capitalize;line-height: 1; }
    .nav-link:hover, .nav-link.active { color: var(--orange) !important; }
    .btn-post { background: var(--orange); color: #fff; border-radius: 22px; text-decoration: none; padding: 8px 22px; font-size: .85rem; font-weight: 600; border: none; }
    .btn-post:hover { background: var(--orange); color: #fff; }

    /* ── HERO ── */
    .hero { background-image: url(../images/bg1.jpg); padding: 10px 0; background-size: cover; /* min-height: 100vh;  */}
    .twm-img-bg-circle-area {
        position: absolute;
        width: 800px;
        height: 800px;
        left: 50%;
        top: 50%;
        transform: translate(-40%, -50%);
    }
    .twm-img-bg-circle-area .twm-img-bg-circle1,
    .twm-img-bg-circle-area .twm-img-bg-circle3,
    .twm-img-bg-circle-area .twm-img-bg-circle2
    {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        display: block;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .twm-img-bg-circle-area .twm-img-bg-circle1 {
        background-color: var(--orange-light-3);
        z-index: 3;
        transform: translate(-50%, -50%) scale(.625);
        animation: 30s linear infinite both dzrotate1;
    }
    .twm-img-bg-circle-area .twm-img-bg-circle1:before {
        width: 25px;
        height: 25px;
        background-color: var(--orange);
        border-radius: 50%;
        content: '';
        position: absolute;
        left: -1.5%;
        top: 50%;
        z-index: 9;
    }
    .twm-img-bg-circle-area .twm-img-bg-circle1:after {
        width: 25px;
        height: 25px;
        background-color: var(--orange);
        border-radius: 50%;
        content: '';
        position: absolute;
        right: 7.5%;
        top: 20%;
        z-index: 9;
    }
    .twm-img-bg-circle-area .twm-img-bg-circle2 {
        background-color: var(--orange-light-2);
        z-index: 2;
        transform: translate(-50%, -50%) scale(.81);
        animation: 30s linear infinite reverse both dzrotate2;
    }
     .twm-img-bg-circle-area .twm-img-bg-circle2:after {
        width: 20px;
        height: 20px;
        background-color: var(--orange);
        border-radius: 50%;
        content: '';
        position: absolute;
        right: 15%;
        bottom: 12%;
        z-index: 9;
    }
    .twm-img-bg-circle-area .twm-img-bg-circle3 {
        background-color: var(--orange-light-1);
        z-index: 1;
    }
    .animation-container
    {
        max-width: 600px;
        position: relative;
        min-height: 500px;
        z-index: 1;
    }


    @keyframes dzrotate1 {
        0% {
            transform: translate(-50%,-50%) scale(.625) rotate(0)
        }

        100% {
            transform: translate(-50%,-50%) scale(.625) rotate(360deg)
        }
    }

    @keyframes dzrotate2 {
        0% {
            transform: translate(-50%,-50%) scale(.81) rotate(0)
        }

        100% {
            transform: translate(-50%,-50%) scale(.81) rotate(360deg)
        }
    }
    .twm-small-ring-2,
    .twm-small-ring-l {
        width: 50px;
        height: 50px;
        border: 5px solid var(--orange);
        border-radius: 50%;
        opacity: .4;
        position: absolute;
        bottom: 30%;
        left: 11%;
        z-index: 5;
    }
     .twm-small-ring-2
    {
        top: 30%;
        right: 9%;
        bottom: auto;
        left: auto;
        z-index: 5;
    }
    .slide-top-animation {
        animation: 3s ease-in-out infinite alternate-reverse both slide-top-animation;
    }
    @keyframes slide-top-animation {
        0% {
            transform: translateY(0)
        }

        100% {
            transform: translateY(-100px)
        }
    }

    .scale-up-center {
        animation: 2s ease-in-out infinite alternate-reverse both scale-up-center
    }

    @keyframes scale-up-center {
        0% {
            transform: scale(.5)
        }

        100% {
            transform: scale(1)
        }
    }


    .hero-badge {
        font-size: 20px;
        font-weight: 500;
        color: #17171d;
        margin-bottom: 10px;
    }
    .hero-badge strong{
        color: var(--orange);
    }
    .section-title,
    .hero h1 {
        font-size: 60px;
        line-height: 1.2;
        font-weight: 500;
        margin-bottom: 15px;
        color: #17171d;
    }
    .hero h1 span { color:var(--orange); }

    .hero p.sub{
        font-size: 18px;
        margin-bottom: 50px;
    }
    .thumb-pic1,
    .thumb-pic2,
    .thumb-pic3{
        position: absolute;
    }
    .thumb-pic1{
        top: 1%;
        right: 15%;
    }
    .thumb-pic2{
        top: 45%;
        left: 10%;
    }
    .thumb-pic3{
        bottom: 35%;
        right: 10%;
    }
    .about-wrap .twm-img-bg-circle-area{
        width: auto;
        height: auto;
    }
    .twm-employee-pic {
        z-index: 1;
        position: relative;
        width: 100%;
        text-align: center;
    }
    
    .search-bar { background:#fff; border-radius:40px; box-shadow:0 4px 24px rgba(0,0,0,.1); padding:8px 8px 8px 20px; display:flex; gap:6px; align-items:center; margin-top:28px; }
    .search-bar input { border:none; outline:none; font-size:.88rem; flex:1; background:transparent; }
    .search-bar select { border:none; outline:none; font-size:.85rem; background:transparent; color:#555; padding:0 10px; border-right:1px solid #ddd; }
    .search-bar .btn-find { background:var(--orange); color:#fff; border-radius:30px; border:none; padding:10px 28px; font-size:.88rem; font-weight:600; white-space:nowrap; }
    .popular-tags { margin-top:16px; font-size:.82rem; }
    .popular-tags span { color:var(--muted); }
    .popular-tags a { color:var(--dark); font-weight:500; text-decoration:none; margin-left:6px; }
    .popular-tags a:hover { color:var(--orange); }
    .float-card {  right:90%;   top: 25%; background:#fff; border-radius:14px; box-shadow:0 6px 24px rgba(0,0,0,.12); padding:14px 20px; display:inline-flex; align-items:center; gap:12px; position:absolute; min-width: 220px;}
    .float-card .num {     
        font-size: 35px;
        line-height: 1;
        font-weight: 600;
        display: block; 
        color: var(--orange);
    }
    .float-card .lbl { color: var(--muted); font-weight:400; font-size:14px; }
    
    .float-card.card-2{
        bottom: auto;
        top: 10%;
        left: 100%;
        right: auto;
    }
    .float-card.card-3{
        bottom: 15%;
        top: auto;
        left: 100%;
        right: auto;
    }
    /* ── HOW IT WORKS ── */
    .section-badge {
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
        color: var(--orange);
        font-size: 16px;
        line-height: 1.2;
        font-weight: 500;
     }
    .section-title { 
        font-size: 45px;
        
    }
    .checks { list-style:none; padding:0; }
    .checks li {
        padding-left: 45px;
        list-style: none;
        position: relative;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 16px;
        line-height: 28px;
    }
    .checks li::before {
        content: "✓";
        color: var(--orange);
        font-weight: 800;
        position: absolute;
        left: 0;
        background: var(--orange-light);
        width: 30px;
        line-height: 30px;
        text-align: center;
        border-radius: 20px;
    }
    .card-style-1{
        padding-left: 50px;
        padding-top: 30px;
        position: relative;
    }

    .cards-manager .row [class*=col-]:nth-child(odd) {
        margin-top: -30px;
    }
    .sc-blue-shadow {
        box-shadow: 0 0 40px rgba(124, 181, 234, .7);
    }
    .sc-blue {
        background-color: #7cb5ea;
    }
    .sc-yel-shadow {
        box-shadow: 0 0 40px rgba(234, 200, 124, .7);
    }
    .sc-yel {
        background-color: #e7be63;
    }
    .sec-ltb-shadow {
        box-shadow: 0 0 40px rgba(206, 167, 217, .7);
    }
    .sec-ltb {
        background-color: #b889c5;
    }
    .sec-grn {
        background-color: #68c9a9;
    }
    .sec-grn-shadow {
        box-shadow: 0 0 40px rgba(206, 167, 217, .7);
    }

    .step-card {
        margin-left: 20px;
        margin-bottom: 40px;
        padding: 30px 25px 30px 60px;
        border-radius: 10px;
        position: relative;
    }
    
    .step-card .card-num { 
        font-size: 60px;
        font-weight: 600;
        line-height: 50px;
        position: absolute;
        right: 15px;
        top: 15px;
        font-family: Poppins, sans-serif;
        color: #fff;
        opacity: .2;
    }
    .card-icon { 
        position: absolute;
        
        width: 90px;
        height: 90px;
        background-color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        box-shadow: -5px 10px 25px lch(73 84.59 66.34 / 0.12)
    }
    .step-card .card-icon { 
        left: -50px;
        top: 30px;
    }
    .step-card h6 { font-weight:400; font-size:20px; margin-bottom:8px; color: #fff;}
    .step-card p { 
        margin-bottom: 0;
        font-size: 14px;
        color: #fff;
        opacity: .85;
    }
    
    

    

    /* ── BROWSE ── */
    .browse { background:var(--bg); padding:60px 0; }
    .cat-bar { background:var(--orange); border-radius:14px; padding:22px 36px; text-align:center; color:#fff; font-size:1.15rem; font-weight:700; }
    
    .card-style-2{
        background-color: rgb(255, 255, 255);
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: column;
        border-width: 10px;
        border-style: initial;
        border-color: initial;
        border-image: initial;
        padding: 20px;
        border-radius: 10px;
        margin-top: 20px;
        height: calc(100% - 20px);
        box-shadow: rgba(0, 51, 90, 0.15) 0px 15px 40px;
    }
    .card-style-2 .card-icon{
        margin-right: 30px;
        margin-top: -40px;
        margin-bottom: 15px;
        position: static;
    }
    .badge-container{
        position: absolute;
        right: 20px;
        top: 20px;
    }
    .card-style-2 .title{
        font-size: 1.125rem;
        line-height: 1.35;
        font-family: Poppins;
        color: var(--text);
        text-decoration: none;
    }
    .card-style-2 p{
        font-size: 14px;
        color: var(--muted);
    }
     .card-style-footer-2{
        padding-top: 20px;
     }
    .card-style-footer-2 .pricing{
        font-size: 14px;
        font-weight: 500;
        color: var(--text);
        align-items: start;
    }
    .card-style-footer-2 .pricing span
    {
        color: rgb(4, 108, 56);
    }
    .card-style-footer-2 a{
        font-weight: 600;
        font-size: 14px;
        text-decoration: none;
        color: var(--orange);
    }
    .section{
        padding: 60px 0px;
    }
    
    .cat-tile { background:#fff; border-radius:14px; padding:28px 16px; text-align:center; height:100%; border:2px solid transparent; transition:.2s; cursor:pointer; }
    .cat-tile:hover { border-color:var(--orange); box-shadow:0 6px 20px rgba(21,101,216,.12); }
    .cat-tile .cat-ico { font-size:2rem; margin-bottom:10px; }
    .cat-tile h6 { font-size:.85rem; font-weight:700; margin-bottom:2px; }
    .cat-tile small { font-size:.72rem; color:var(--muted); }

    /* ── LISTINGS ── */
    .listings { padding:70px 0; }
    
    .card-style-2:hover { box-shadow:0 8px 28px rgba(21,101,216,.12); border-color:var(--orange); }
    .card-style-2 .tag { font-size:.7rem; font-weight:700; border-radius:20px; padding:4px 12px; display:inline-block; margin-bottom:10px; }
    .tag-ft { background:#e8f5e9; color:#2e7d32; }
    .tag-pt { background:#fff3e0; color:#e65100; }
    .clogo { width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:.88rem; margin-bottom:10px; }
 
    
    .btn-outline-blue { border:2px solid var(--orange); color:var(--orange); border-radius:30px; padding:10px 32px; font-weight:600; font-size:.9rem; background:transparent; transition:.2s; }
    .btn-outline-blue:hover { background:var(--orange); color:#fff; }

    /* ── ABOUT ── */
    .about-wrap {
        background: linear-gradient(135deg, var(--orange-light), var(--orange-light-1));
        border-radius: 80px;
        padding: 100px 80px 0px;
        margin-bottom: 60px;
    }

    .counter-outer-two {
        position: absolute;
        background-color: #fff;
        border-radius: 10px;
        padding: 15px;
    }
    .counter-outer-two.item-1{
        top: 5%;
        left: 5%;
        z-index: 1;
    }
    .counter-outer-two.item-2{
        top: 35%;
        right: 0;
        z-index: 2;
    }
    .counter-outer-two.item-3{
        bottom: 30%;
        left: 0;
        top: auto;
        z-index: 2;
    }
    
    /* ── TEAM ── */
    .team-sec { 
        background: var(--orange-light); 
        position: relative;
        z-index: 1;
    }
    .team-sec:before{
        width: 100%;
        height: 100%;
        content: "";
        right: calc(50% + 206px);
        top: 0;
        background-color: var(--orange);
        position: absolute;
        z-index: -1;
    }
    .team-section{
        display: block;
        overflow: hidden;
        position: relative;
    }
    .team-section:after {
        content: '';
        height: 50%;
        width: 100%;
        position: absolute;
        background: #fff;
        top: 0;
        left: 0;
    }
    .client-inner{
        position: relative;
        z-index: 1;
        padding: 60px 100px;
    }
    .client-inner:before {
        width: 5000px;
        height: 100%;
        content: "";
        left: 0;
        top: 0;
        background-color: #fff;
        position: absolute;
        z-index: -1;
        box-shadow: 0 0 25px rgba(226, 124, 56, 0.3);
        border-radius: 10px 0 0 10px;
        border-left: 4px solid var(--yellow);
    }
    .client-title{
        font-size: 28px;
        font-weight: 600;
        color: #17171d;
        position: relative;
        z-index: 1;
    }
    .client-title:after {
        background-color: var(--yellow);
        content: "";
        width: 120px;
        height: 120px;
        border-radius: 10px;
        transform: rotate(35deg);
        position: absolute;
        left: -50px;
        top: -20px;
        z-index: -1;
        opacity: .1;
    }

    .owl-client.owl-carousel .owl-stage-outer{
        display: table;
    }
    .client-emp-title{
        text-align: center;
        font-weight: 600;
        color: #1e1e1e;
        margin-top: 15px;
        font-size: 16px;
        display: block;
    }
    .client-sub{
        display: block;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
        color: #1e1e1e;
    }

    .display-part{
        padding-top: 100px;
        padding-bottom: 70px;
    }
    .circle-style-3{
        position: relative;
        z-index: 1;
        width: 660px;
        height: 660px;
    }
    .circle-style-3 img {
        margin: 0 auto;
        display: block;
        position: relative;
        z-index: 5;
        max-width: 100%;
    }
    .circle-style-3 .circle {
        width: 70%;
        height: 70%;
        background-color: var(--orange);
        border-radius: 50%;
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 2;
        transform: translate(-50%, -50%);
        box-shadow: 0 0 20px rgba(0, 0, 0, .5);
    }
    .circle-style-3 .circle2 {
        width: 85%;
        height: 85%;
        border-radius: 50%;
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);
        background-color: rgba(234, 241, 251, .4);
    }
    .circle-style-3 .circle3 {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 1;
        transform: translate(-50%, -50%);
        border: 1px solid #d3deee;
    }
    .rotate-center {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 1px solid transparent;
        position: absolute;
    }
    .rotate-center span {
        display: inline-block;
        position: absolute;
    }
    .ring1 {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--yellow);
        right: 6%;
        top: 20%;
    }
    .ring2 {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background-color: #f7b05b;
        right: 25%;
        bottom: 4%;
    }
    .ring3 {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #f7d2ff;
        left: .5%;
        top: 36%;
    }

    .rotate-center {
        animation: 10s linear infinite both rotate-center
    }

    @keyframes rotate-center {
        0% {
            transform: rotate(0)
        }

        100% {
            transform: rotate(360deg)
        }
    }

    .rotate-center-reverse {
        animation: 10s linear infinite reverse both rotate-center
    }

    @keyframes rotate-center-reverse {
        0% {
            transform: rotate(0)
        }

        100% {
            transform: rotate(360deg)
        }
    }

    .slide-top-animation {
        animation: 3s ease-in-out infinite alternate-reverse both slide-top-animation
    }

    @keyframes slide-top-animation {
        0% {
            transform: translateY(0)
        }

        100% {
            transform: translateY(-100px)
        }
    }

    .scale-up-center {
        animation: 2s ease-in-out infinite alternate-reverse both scale-up-center
    }

    @keyframes scale-up-center {
        0% {
            transform: scale(.5)
        }

        100% {
            transform: scale(1)
        }
    }
    .google-title {
        font-size: 20px;
        font-weight: 600;
        gap: 2px;
        display: flex;
    }

    .av { width:80px; height:80px; border-radius:50%; overflow: hidden; display:flex; align-items:center; justify-content:center; font-weight:700; font-size:.9rem; margin:0 auto; }

    /* ── TALENT ── */
    .talent-sec { background:linear-gradient(135deg,#0d1b4b,#1a2a6c); padding:80px 0; }

    /* ── REVIEWS ── */
    .reviews { padding:70px 0; }
    .rev-card {
        background: #fff;
        border-radius: 14px;
        padding: 20px;
        height: 100%;
        box-shadow: 1px 4px 10px 0px rgba(0, 0, 0, 0.1), 0px 0px 2px 0px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(0px);
    }
    .rev-card .stars {
        
        font-size: 24px;
        display: block;
        line-height: 16px;
        letter-spacing: -3px;
    }
    .rev-card .stars .star{
        color: #17171d;
        display: inline-block;
    }
    .rev-card .stars .star.active{
        color: #f5a623;
    }
    .rev-card p {
        margin: 20px 0;
        font-size: 14px;
        color: var(--text);
    }
    .rev-card .rname { 
        font-weight: 500;
        font-size: 16px;
        overflow: hidden;
        padding-right: 25px;
        white-space: nowrap;
        text-overflow: ellipsis;
        color: #000000;
     }

     .rev-card .profile-card{
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: linear-gradient(135deg, #667eea, #764ba2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        color: #fff;
        flex-shrink: 0;
        overflow: hidden;
    }
    .owl-review .owl-stage{
        display: flex;
    }
    .owl-review .item{
        height: 100%;
        padding: 10px 5px;
    }

    .section-circle-4{
        position: relative;
        z-index: 1;
        height: 100%;
    }

    .section-circle-4:after {
        background-color: #fff;
        content: '';
        position: absolute;
        width: 467px;
        height: 467px;
        border-radius: 50%;
        right: -170px;
        top: 0;
        z-index: -1;
        box-shadow: 20px 20px 0 var(--orange-light-3) inset;
    }

    .section-circle-4 .img-holder {
        position: absolute;
        width: 350px;
        right: -170px;
        bottom: -40px;
    }

    .count-record{
        color: #fff;
    }
    .count-num{
        font-size: 2.8rem;
    }
    .count-label{
        
    }
    /* ── CTA ── */
    .counter-box { 
        background: linear-gradient(135deg, var(--orange), var(--yellow));
        border-radius: 50px;
        padding: 87px 50px;
     }
    .btn-white { background:#fff; color:var(--orange); border:none; border-radius:30px; padding:12px 32px; font-weight:700; font-size:.9rem; }
    .btn-white:hover { background:#e8f0fe; }
    .tab-image{
    background:linear-gradient(135deg, var(--orange-light), var(--orange-light-1));border-radius:12px;height:210px;display:flex;align-items:center;justify-content:center;overflow:hidden;
    }

    .section-title-1 {
        font-size: 24px;
        color: #1e1e1e;
    }

    /* ── TABS ── */
    .tabs-sec { padding:60px 0; }
    .tab-btn { border-radius:30px; padding:9px 24px; font-size:.84rem; font-weight:600; border:2px solid #ddd; background:#fff; color:#555; cursor:pointer; transition:.2s; }
    .tab-btn.active, .tab-btn:hover { background:var(--orange); color:#fff; border-color:var(--orange); }
    .cont-card { background:#fff; border:1.5px solid #eee; border-radius:16px; padding:30px; }

    /* ── FOOTER ── */
    footer { background:#0d0f1e; color:rgba(255,255,255,.65); padding:60px 0 28px; }
    footer .brand { font-size:1.5rem; font-weight:800; color:#fff; letter-spacing:-1px; max-width: 180px; }
    footer .brand span { color:var(--orange); }
    footer h6 { color:#fff;  font-size:24px; margin-bottom:20px; position: relative; padding-bottom: 20px; }
    footer h6:after{
        width: 40px;
        height: 3px;
        background-color: var(--orange);
        content: '';
        position: absolute;
        bottom: 0;
        left: 0px;
    }
   
    
    .link-section a{
        color:rgba(255,255,255,.8); 
        text-decoration:none;
        margin-bottom: 8px;
        display: block;
    }
    .link-section a:before{
        content: "";
        font-family: var(--fa-style-family,"Font Awesome 6 Free");
    }
    
    footer a:hover { color:#fff; }
    footer .information {
        margin-bottom: 15px;
        color: #fff;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }
    footer .information label {
        font-size: 14px;
        color: var(--orange-light-3);
    }
    .soc a { display:inline-flex; width:34px; height:34px; background:rgba(255,255,255,.1); border-radius:8px; align-items:center; justify-content:center; color:#fff; margin-right:6px; font-size:.82rem; }
    .soc a:hover { background:var(--orange); }
    footer hr { border-color:rgba(255,255,255,.5); }
    
    .card-style-3 {
        height: 200px;
        border: 1px solid var(--orange-light-2);
        padding: 20px;
        border-radius: 20px;
        display: flex;
        align-items: end;
        transition: 0.3s;
        justify-content: center;
    }
    .card-style-3 img{
        height: 80px;
        width: auto;
        object-fit: contain;
        transition: 0.3s;
    }
    .card-style-3:hover {
        align-items: center;
        border: 1px solid var(--orange);
        box-shadow: 0px 2px 10px var(--orange-light-2);
    }
    
    .contact-wrap{
        margin-left: 100px;
        margin-right: 25px;
        position: relative;
        z-index: 1;
    }
    .contact-wrap::before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: -57px;
        z-index: -1;
        width: 0px;
        height: 0px;
        border-left: 57px solid transparent;
        border-right: 0px solid transparent;
        border-top: 57px solid var(--orange-light-2);
    }
    .contact-info {
        box-shadow: var(--orange-light-3) 0px 0px 25px;
        background-color: rgb(255, 255, 255);
        border-radius: 10px 10px 10px 0px;
        padding: 40px;
    }
    .c-info-column {
        color: rgb(23, 23, 29);
        position: relative;
        min-height: 75px;
        margin-bottom: 40px;
        padding: 0px 0px 0px 90px;
    }
    .c-info-column .c-info-icon {
        position: absolute;
        font-size: 22px;
        left: 0px;
        top: 0px;
        color: var(--orange);
        width: 72px;
        height: 72px;
        line-height: 72px;
        text-align: center;
        background-color: var(--orange-light);
        z-index: 1;
        border-radius: 10px;
    }
    .form-control {
        padding: 16px 20px;
        border-radius: 16px;
        border: 1px solid var(--orange-light-3);
        box-shadow: 0px 5px 9px var(--orange-light-3);
    }
    
    .owl-client-nav .card-style-3{
        height: 150px;
    }
    .twm-employee-pic img,
    .vision-section .circle-style-3 img{
        max-height: 512px;
        top: 48px;
        border-radius: 200px;
    }
    @media(max-width:768px){
      .hero h1{font-size:2rem;}
      .about-wrap{padding:36px 20px;}
      .cta-box{padding:40px 24px;}
    }

    @media(max-width: 1680px){
        .float-card.card-3{
            left: 85%;
            z-index: 1;
        }
        .float-card.card-2{
            left: 90%;
            z-index: 1;
        }
        .hero{
            overflow-x: hidden;
        }
        .animation-container{
            max-width: 100%;
        }
    }

    @media(max-width:1440px){
        .float-card{
            max-width: 100%;
        }
        .twm-img-bg-circle-area{
            width: 500px;
            height: 500px;
        }
        .owl-carousel .owl-item img{
            max-width: 100%;
            width: auto;
        }
        .float-card.card-2,
        .float-card.card-3 {
            left: calc(100% - 220px);
            z-index: 1;
        }
        .float-card {
            right: calc(100% - 220px);
            z-index: 1;
            top: 40%;
        }
        .counter-box
        {
            width: 90%;
            margin: auto;
        }
        
    }
    @media(max-width: 1369px){
        .circle-style-3{
            width: 500px;
            height: 500px;
        }
    }
    @media(max-width: 1280px){
        .section-title, .hero h1{
            font-size: 45px;
        }
        .section-title {
            font-size: 30px;
        }
        footer h6{
            font-size: 18px;
            padding-bottom: 16px;
        }
    }
    @media(max-width: 1180px){
        .section-title, .hero h1{
            font-size: 40px;
        }
        .section-title {
            font-size: 28px;
        }
        .section-title-1 {
            font-size: 20px;
        }
    }

    @media(max-width: 1024px){
        .twm-img-bg-circle-area {
            width: 400px;
            height: 400px;
        }
        .section-circle-4 .img-holder{
            width: 300px;
            right: -130px;
        }
        .section-circle-4:after{
                right: -127px;
                width: 390px;
                height: 390px;
        }
        .counter-box{
            padding-bottom: 40px;
        }
        .counter-outer-two{
            min-width: auto;
        }
    }

    @media(max-width: 990px){
        .section-circle-4 .img-holder{
            display: inline-block;
            position: static;
        }
        .section-circle-4 {
            position: relative;
            text-align: right;
            padding-bottom: 0px;
        }
        .counter-box{
            padding-bottom: 0px;
        }
        .section-circle-4:after {
            right: -100px;
            bottom: -40px;
            top: auto;
        }
        .team-sec:before{
            right: 60%;
        }
    }
    @media(max-width: 767px){
        .client-inner{
            padding: 40px 60px;
        }
        .about-wrap{
            border-radius: 50px;
        }
        .count-num {
            font-size: 1.8rem;
        }
    }
    .c-r-radius{
        border-radius: 0px 100px;
    }
footer .brand img,
.navbar-brand img {
    height: 80px;
}
footer .brand img {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    height: 120px;
}