/* Reset  */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

strong {
    font-weight: 600;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: "Barlow", sans-serif;
    font-size: 18px;
    line-height: 24px;
    color: #555;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Saira Condensed", sans-serif;
    font-weight: 600;
}

.tab-content > .tab-pane {
    display: none;
    position: relative;
}

.tab-content > .active {
    display: block;
}


/*****************************************/
.flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.justify-evenly {
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.slick-slider {
    width: 95%;
    margin: 0;
}

.slick-track {
    display: flex;
    align-items: center;
}

.slick-track .slick-slide {
    display: flex;
    height: inherit;
    justify-content: center;
}

.eqlh {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.float-left {
    float: left;
}

.clear-both {
    clear: both;
}
/****************************************/


/**heder*/
.header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
    padding: 0 30px;
    box-sizing: border-box;
    background: #fff;
    height: 100px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
}

.header-main {
    padding: 0;
    border-radius: 4px;
    height: 100px;
    width: 100%;
}

.header .logo {
    padding: 6px 0px;
    width: 200px;
    float: left;
}

.header .logo img {
    width: 100%;
}

.header .logo a {
    font-size: 30px;
    text-transform: capitalize;
    color: #e91e63;
    font-weight: 600;
}

.header .nav-menu {
    padding: 0 15px;
    float: left;
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.header .menu > .menu-item {
    display: inline-block;
    position: relative;
    border-width: 0 1px;
    border-style: solid;
    border-left-color: #ebebeb;
    border-right-color: #ebebeb;
    margin-right: -5px;
    padding: 0;
}

.header .menu > .menu-item > a {
    display: block;
    padding: 35px 30px;
    color: #000000;
    text-transform: capitalize;
    font-weight: 400;
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 18px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.6;
    border-bottom: 5px solid transparent;
}

.header .menu > .menu-item > a .plus {
    border: solid #626262;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    vertical-align: middle;
    margin-top: -5px;
    margin-left: 6px;
    transform: rotate(45deg);
}

/*.header .menu > .menu-item:hover > a .plus{
    border: solid #fff;
    border-width: 0 2px 2px 0;
}*/
.header .menu > .menu-item > a .plus:after {
    transform: translate(-50%,-50%) rotate(-90deg);
}

.header .menu > .menu-item:hover > a {
    border-bottom: 2px solid #ff7700;
}

.menu-active {
    border-bottom: 2px solid #ff7700 !important;
    color: #ff7700 !important;
}

.header .menu > .menu-item > .sub-menu {
    box-shadow: 0px 0 10px rgb(0 0 0 / 20%);
    width: 220px;
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

@media(min-width: 992px) {
    
    .header .menu > .menu-item-has-children:hover > .sub-menu {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .header .menu > .menu-item-has-children:hover > a .plus:after {
        transform: translate(-50%,-50%) rotate(0deg);
    }
}

.header .menu > .menu-item > .sub-menu > .menu-item {
    display: block;
}
/*.header .menu > .menu-item > .sub-menu > .menu-item > a:last-child{
    border-bottom: none;
}*/
.header .menu > .menu-item > .sub-menu > .menu-item > a {
    display: block;
    margin: 12px 20px;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #ebebeb;
    display: flex;
    padding-bottom: 11px;
}

.header .menu > .menu-item > .sub-menu > .menu-item > a:before {
    display: block!important;
    content: '';
    width: 0;
    height: 2px;
    margin-top: 6px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background-color: #f35151;
}

.header .menu > .menu-item > .sub-menu > .menu-item:hover>a:before {
    width: 10px;
    margin-right: 5px;
}

.header .open-nav-menu {
    height: 34px;
    width: 40px;
    /* margin-right: 35px; */
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.header .open-nav-menu span {
    display: block;
    height: 3px;
    width: 24px;
    background-color: #000000;
    position: relative;
}

.header .open-nav-menu span:before,
.header .open-nav-menu span:after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    box-sizing: border-box;
}

.header .open-nav-menu span:before {
    top: -7px;
}

.header .open-nav-menu span:after {
    top: 7px;
}

.header .close-nav-menu {
    height: 40px;
    width: 40px;
    background-color: #ffffff;
    margin: 0 0 15px 15px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
}

.header .close-nav-menu img {
    width: 16px;
}

.header .menu-overlay {
    position: fixed;
    z-index: 999;
    background-color: rgba(0,0,0,0.5);
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.right-header-part {
    padding: 10px 20px;
    font-size: 16px;
    box-sizing: border-box;
    background: #f35151;
    cursor: pointer;
}

.right-header-part a {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    height: 100%;
    padding: 10px;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 18px;
    box-sizing: border-box;
}

.right-header-part a:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.right-header-part a span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.right-header-part a b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.logo-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow {
    display: flex;
    align-items: center;
    position: relative;
    top: 2px;
    margin-left: 5px;
    float: right;
    left: 0;
}

@media(max-width: 991px) {
    .header .menu-overlay.active {
        visibility: visible;
        opacity: 1;
    }

    .header .nav-menu {
        position: fixed;
        right: -280px;
        visibility: hidden;
        width: 280px;
        height: 100%;
        top: 0;
        overflow-y: auto;
        background-color: #222222;
        z-index: 1000;
        padding: 15px 0;
        transition: all 0.5s ease;
    }

    .header .nav-menu {
        flex-direction: column;
        align-items: start;
        justify-content: start;
    }

    ul.menu {
        width: 100%;
    }

    .right-header-part {
        margin-left: 15px;
    }

    .logo-nav {
        /*margin: 20px 0;*/;
    }

    .header .menu > .menu-item {
        border-left-color: transparent;
    }

    .header .nav-menu.open {
        visibility: visible;
        right: 0px;
    }

    .header .menu > .menu-item {
        display: block;
        margin: 0;
    }

    .header .menu > .menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .header .menu > .menu-item > a {
        color: #ffffff;
        padding: 12px 15px;
        border-bottom: 1px solid #333333;
    }

    .header .menu > .menu-item:first-child > a {
        border-top: 1px solid #333333;
    }

    .header .menu > .menu-item > a .plus:before, 
    .header .menu > .menu-item > a .plus:after {
        background-color: #ffffff;
    }

    .header .menu > .menu-item-has-children.active > a .plus:after {
        transform: translate(-50%,-50%) rotate(0deg);
    }

    .header .menu > .menu-item > .sub-menu {
        width: 100%;
        position: relative;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
        box-shadow: none;
        transform: translateY(0px);
        padding: 0px;
        left: auto;
        top: auto;
        max-height: 0;
        overflow: hidden;
    }

    .header .menu > .menu-item > .sub-menu > .menu-item > a {
        padding: 12px 45px;
        color: #ffffff;
        border-bottom: 1px solid #333333;
    }

    .header .close-nav-menu,
    .header .open-nav-menu {
        display: flex;
    }
}

@media (max-width: 575px) {
    .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        width: 93% !important;
    }
}

/**heder*/ 


/*******************************************/
.home-top-banner {
    position: relative;
    padding: 100px 0 0;
    overflow: hidden;
    height: 90vh;
}

.home-top-banner .col-12 {
    padding: 0;
    margin: 0;
}

.home-top-banner .banner-content {
    background: #082e72;
    width: 100%;
    height: 100%;
    position: relative;
}

.home-top-banner .banner-content .banner-content-area {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    padding: 0 50px;
}

.home-top-banner .banner-content .banner-content-area h1 {
    font-size: 80px;
    line-height: 80px;
    color: #fff;
}

.home-top-banner .banner-content .banner-content-area p {
    font-size: 18px;
    line-height: 22px;
    color: #fff;
    margin-top: 30px;
}

.common-btn {
    margin-top: 30px;
    display: inline-block;
}

.common-btn a span,
.common-btn button span {
    width: 0px;
    height: 2px;
    background: #fff;
    margin-left: 4px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.common-btn a:hover .arrow span,
.common-btn button:hover .arrow span {
    width: 20px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.common-btn a b,
.common-btn button b {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 7px;
    border-color: transparent transparent transparent #fff;
}

.common-btn a,
.common-btn button {
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    position: relative;
    line-height: 35px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    padding: 5px 20px;
    background: #f35151;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    width: auto;
    border: none;
}

.video-part {
}

.video-part video {
    height: 90vh;
    display: block;
}
/*******************************************/

.home-it-solutions-section {
    padding: 100px 0;
}

.top-content {
    margin-bottom: 70px;
}

.service-box {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd !important;
    padding: 50px 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .4s;
    background: #fff;
    width: 100%;
}

.col-lg-3:last-child .service-box {
    border-right: none !important;
}

.col-lg-3:last-child .service-box:hover {
    background: #fff;
}

.service-img-icon {
    margin-bottom: 20px;
    height: 150px;
    object-fit: cover;
}

.service-img-icon img {
    height: 100%;
}

.service-title {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: -1px;
    min-height: 92px;
    align-items: center;
    display: flex;
}

.service-text {
    font-size: 20px;
    line-height: 30px;
    color: #666;
    max-width: 320px;
}

.read-more {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    border-bottom: 1px solid #111;
    width: fit-content;
    padding-bottom: 3px;
    transition: .3s;
    margin-top: 40px;
}

.read-more:hover {
    letter-spacing: 1px;
}

@media(max-width:992px) {

    .main-title {
        font-size: 52px;
    }

    .top-para {
        font-size: 18px;
        margin-top: 25px;
    }

    .service-box {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}

@media(max-width:576px) {

    .home-it-solutions-section {
        padding: 70px 0;
    }

    .main-title {
        font-size: 42px;
    }

    .service-title {
        font-size: 34px;
    }

    .service-text {
        font-size: 17px;
    }
}
/*******************************************/
.welcome-to-sonip-technologies-section {
    background: url(../images/welcome-to-sonip-technologies-section-bg.jpg);
    padding: 100px 0;
    position: relative;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center 20%;
}

.bg-card {
    position: absolute;
    width: 320px;
    height: 450px;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.bg-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-to-sonip-technologies-img {
    margin-top: 50px;
}

.welcome-to-sonip-technologies-img .card-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.welcome-to-sonip-technologies-img .card-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
  /* Doodle Text */
  
.doodle {
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 4;
}

.doodle span {
    display: block;
    font-size: 28px;
    color: #111;
    margin-bottom: 10px;
    transform: rotate(-18deg);
    font-weight: 500;
}

.circle-text {
    border: 3px solid #111;
    border-radius: 100px;
    padding: 8px 30px;
    width: fit-content;
    transform: rotate(5deg);
    margin-left: 50px;
}
  /* Right Process Cards */
  
.process-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 25px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111827;
}

.process-card p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}

.process-number {
    font-size: 40px;
    font-weight: 600;
    color: #d1d5db;
}
  /* Responsive */
  
@media(max-width:1200px) {
}

@media(max-width:991px) {
    .right-content {
        margin-top: 30px;
    }
}

@media(max-width:576px) {
    .welcome-to-sonip-technologies-section {
        padding: 70px 0;
    }

    .process-card {
        padding: 25px;
    }

    .process-card h3 {
        font-size: 26px;
    }

    .process-card p {
        font-size: 16px;
    }

    .process-number {
        font-size: 45px;
    }
}
/*******************************************/
.extensive-industry-section {
    padding: 100px 0;
    color: #fff;
    background: #082e72;
    position: relative;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 30px;
    margin-bottom: 40px;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-content {
    padding-top: 50px;
}

.service-link {
    display: inline-block;
    margin-top: 45px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    transition: .3s;
}

.service-link:hover {
    letter-spacing: 1px;
    color: #fff;
}

.extensive-industry-services-grid {
    position: relative;
}

.extensive-industry-services-grid .col-md-6 {
    padding: 0;
    margin: 0;
}

.extensive-industry-services-grid .col-md-6:nth-child(1) {
    border-right: 1px solid rgba(255,255,255,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px 0 0 0;
    overflow: hidden;
}

.extensive-industry-services-grid .col-md-6:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    border-radius: 0 50px  0 0;
    overflow: hidden;
}

.extensive-industry-services-grid .col-md-6:nth-child(3) {
       /*border-top: 1px solid rgba(255,255,255,0.15);*/
    border-radius: 0px 0 0 50px;
    overflow: hidden;
}

.extensive-industry-services-grid .col-md-6:nth-child(4) {
    border-left: 1px solid rgba(255,255,255,0.15);
    border-radius: 0px 0 50px 0;
    overflow: hidden;
}

    /* Vertical Line */
.service-card {
    padding: 40px;
    transition: .4s;
    position: relative;
    z-index: 2;
    height: 100%;
    box-sizing: border-box;
    text-align: center;
    transition: 0.3s linear all;
}

.service-card:hover {
      /*background:rgba(255,255,255,0.04);
      background:#ff7700;
      transition: 0.5s linear all;*/;
}

.service-card:after {
    content: '';
    position: absolute;
    width: 0%;
    height: 0%;
    background: rgba(255,255,255,0.04);
    background: #ff7700;
      /*transition: 0.5s linear all;*/;
}

.extensive-industry-services-grid .col-md-6:nth-child(1) .service-card:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    background: #ff7700;
    transition: 0.4s linear all;
    z-index: -3;
    border-radius: 50px 0 0 0;
}

.extensive-industry-services-grid .col-md-6:nth-child(2) .service-card:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    background: #ff7700;
    transition: 0.4s linear all;
    z-index: -3;
    border-radius: 0 50px 0 0;
}

.extensive-industry-services-grid .col-md-6:nth-child(3) .service-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    background: #ff7700;
    transition: 0.4s linear all;
    z-index: -3;
    border-radius: 0px 0 0 50px;
}

.extensive-industry-services-grid .col-md-6:nth-child(4) .service-card:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.04);
    background: #ff7700;
    transition: 0.4s linear all;
    z-index: -3;
    border-radius: 0px 0 50px 0;
}

.service-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    background: #e3e3e3;
    box-shadow: 5px 5px 2px #00000043, -5px -5px 5px #00000033, inset 0 0 0 #33333399, inset 0 0 0 #333333, inset 2px 5px 6px white, inset 8px 15px 6px -5px #b0b0b032, inset 0 0 3px 6px #d3d3d3, inset 0 -4px 5px 7px #b0b0b0b3;
    border: none;
    transition: all .1s;
    padding: 15px;
    box-sizing: border-box;
}

.service-icon img {
    width: 100%;
}

.service-card h3 {
    font-size: 30px;
    line-height: 35px;
    font-weight: 300;
    text-align: center;
}

.service-card h3 strong {
    font-weight: 700;
    display: block;
}

.service-card p {
    font-size: 22px;
    line-height: 1.7;
    color: rgba(255,255,255,0.75);
    margin-bottom: 40px;
}

.details-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 34px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: .3s;
}

.details-btn:hover {
    background: #fff;
    color: #005b59;
}

    /* RESPONSIVE */

@media(max-width:1400px) {

    .service-card h3 {
        font-size: 42px;
    }
}

@media(max-width:991px) {

    .left-content {
        padding-bottom: 60px;
    }

    .service-card {
        padding: 45px 35px;
    }

    .service-card h3 {
        font-size: 36px;
    }

    .service-card p {
        font-size: 18px;
    }

    .service-card {
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }
}

@media(max-width:576px) {

    .extensive-industry-section {
        padding: 70px 0;
    }

    .service-card {
        padding: 35px 25px;
    }

    .service-card h3 {
        font-size: 30px;
    }

    .service-icon {
        font-size: 40px;
    }

    .service-card p {
        font-size: 16px;
    }

    .details-btn {
        padding: 14px 25px;
        font-size: 15px;
    }
}
/*******************************************/
.operations-snapshot-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.blur {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
    filter: blur(90px);
    top: -150px;
    right: -120px;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
}

.mini-tag {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0f3ea8;
    margin-bottom: 15px;
    position: relative;
}

.mini-tag::before {
    content: "";
    width: 50px;
    height: 2px;
    background: #0f3ea8;
    position: absolute;
    left: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.mini-tag::after {
    content: "";
    width: 50px;
    height: 2px;
    background: #0f3ea8;
    position: absolute;
    right: -70px;
    top: 50%;
    transform: translateY(-50%);
}

.operations-snapshot-banner-img {
    overflow: hidden;
    border-radius: 40px;
    margin-bottom: 60px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.operations-snapshot-banner-img img {
    width: 100%;
    /* height: 100%; */
    object-fit: cover;
    transition: 1s;
    display: block;
}

.operations-snapshot-banner-img:hover img {
    transform: scale(1.05);
}

.operations-snapshot-section .info-card {
    position: relative;
    border-radius: 35px;
    padding: 50px 40px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    width: 100%;
}

.operations-snapshot-section .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.operations-snapshot-section .card-1 {
    background: #ffffff;
}

.operations-snapshot-section .card-2 {
    background: #eaf3ff;
}

.operations-snapshot-section .card-3 {
    background: #f5f9ff;
}

.operations-snapshot-section .card-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-size: 90px;
    font-weight: 800;
    color: rgba(37, 99, 235, 0.06);
    line-height: 1;
}

.operations-snapshot-section .card-icon {
    width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    background: #082e72;
    color: #fff;
    margin-bottom: 35px;
    box-shadow: 0 15px 35px rgba(15, 62, 168, 0.18);
    padding: 15px;
    box-sizing: border-box;
}

.operations-snapshot-section .card-icon img {
    width: 100%;
    display: block;
}

.operations-snapshot-section .card-title {
    font-size: 42px;
    font-weight: 700;
    color: #082e72;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.operations-snapshot-section .card-text {
    font-size: 20px;
    line-height: 32px;
    color: #64748b;
    margin-bottom: 30px;
}

.operations-snapshot-section .read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #0f3ea8;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
}

.operations-snapshot-section .read-btn:hover {
    gap: 16px;
    color: #0f3ea8;
}
  /* RESPONSIVE */
  
@media(max-width:1200px) {
    .operations-snapshot-section .card-title {
        font-size: 34px;
    }
}

@media(max-width:991px) {
    .operations-snapshot-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }

    .operations-snapshot-banner-img {
        height: 380px;
    }

    .operations-snapshot-section .info-card {
        margin-bottom: 25px;
    }
}

@media(max-width:576px) {
    .operations-snapshot-banner-img {
        height: 260px;
        border-radius: 25px;
    }

    .operations-snapshot-section .mini-tag::before,
    .operations-snapshot-section .mini-tag::after {
        display: none;
    }

    .operations-snapshot-section .info-card {
        padding: 40px 28px;
        border-radius: 28px;
    }

    .operations-snapshot-section .card-title {
        font-size: 28px;
    }

    .operations-snapshot-section .card-text {
        font-size: 16px;
    }

    .operations-snapshot-section .card-number {
        font-size: 60px;
    }

    .operations-snapshot-section .card-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }
}
/*******************************************/

.lets-contact-section {
    padding: 100px 100px;
    background: url(../images/welcome-to-sonip-technologies-section-bg.jpg);
    position: relative;
    background-size: cover;
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center 20%;
}

.lets-contact-section .left-side-part .heading-part {
    margin-bottom: 40px;
}

.lets-contact-section .left-side-part .heading-part .heading {
    font-weight: 400;
}

.lets-contact-section .left-side-part .heading-part .heading span {
    font-weight: 700;
}

.lets-contact-section .left-side-part .contact-info-location {
}

.lets-contact-section .left-side-part .contact-info-location {
    background-color: #082e72;
    padding: 70px 40px;
}

.lets-contact-section .left-side-part .contact-info-location .contact-logo {
    margin-bottom: 100px;
}

.lets-contact-section .left-side-part .contact-info-location .contact-logo img {
    width: 200px;
}

.lets-contact-section .left-side-part .contact-info-location h4 {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
    line-height: 40px;
    margin-bottom: 20px;
}

.lets-contact-section .left-side-part .contact-info-location p {
    color: #fff;
    font-size: 21px;
    font-weight: 400;
    line-height: 33px;
    margin-bottom: 15px;
}

.lets-contact-section .left-side-part .contact-info-location p:last-child {
    margin-bottom: 0;
}

.lets-contact-section .left-side-part .contact-info-location p a {
    color: #fff;
}

.lets-contact-section .left-side-part .contact-info-location p:last-child {
    margin-bottom: 0;
}

.lets-contact-section .left-side-part p a {
    font-size: 18px;
    text-decoration: underline;
    line-height: 26px;
    color: #797979;
}

.lets-contact-section .left-side-part p {
    margin-top: 20px;
}

.lets-contact-section .left-side-part p:last-child {
    margin-bottom: 0;
}

.lets-contact-section.contact-page-section {
    padding: 0 100px 100px;
}

.fgroup label {
    position: absolute;
    top: 16px;
    left: 0;
    transition: all 0.3s;
    pointer-events: none;
    padding: 0px;
    display: revert;
    font-size: 16px;
    line-height: 22px;
    color: #333333;
    font-weight: 500;
}

.fgroup {
    position: relative;
    text-align: left;
}

.form-cont input, .form-cont textarea {
    width: 100%;
    padding: 20px 0;
    margin: 7px 0;
    color: #000;
    font-weight: 400;
    font-size: 15px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: -webkit-focus-ring-color auto 0px;
    border: 0;
    background: transparent;
    border-bottom: 1px solid #adadad;
    outline: none;
    box-shadow: none;
    resize: none;
}

.fgroup.used label, .fgroup input:focus~label, .fgroup input.used~label, .fgroup input.used~label, .fgroup input.inused~label, .fgroup textarea:focus~label, .fgroup textarea.used~label, .fgroup textarea.inused, .fgroup select:focus~label, .fgroup select.used~label, .fgroup select.inused~label {
    top: -13px;
    left: 0;
    font-size: 12px;
    color: #000;
    padding: 3px;
}

.lets-contact-section .right-side-form {
    padding-left: 60px;
}

.lets-contact-section .right-side-form .col-lg-6, .lets-contact-section .right-side-form .col-lg-12 {
    padding: 0 15px;
    margin-bottom: 25px;
}

.lets-contact-section .right-side-form .col-lg-12:last-child {
    margin-bottom: 0;
}

.lets-contact-section .right-side-form .button-part .button12 {
    transform: none;
    line-height: 27px;
}

.lets-contact-section .right-side-form .fgroup input, .lets-contact-section .right-side-form .fgroup textarea {
    padding: 15px 0;
    border: 0;
    outline: none;
    border-bottom: 1px solid #797979;
    resize: none;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #797979;
    width: 100%;
    background: transparent;
}

.lets-contact-section .right-side-form .fgroup label {
    display: block;
    color: #797979;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}
/*******************************************/
.cta-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #edf3ff;
}

.blur-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    filter: blur(90px);
    top: -180px;
    right: -100px;
    z-index: 0;
}

.line-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(15, 62, 168, 0.08);
    border-radius: 50%;
    bottom: -350px;
    left: -250px;
    z-index: 0;
}

.container {
    position: relative;
    z-index: 2;
}

.cta-wrapper {
    background: #082e72;
    border-radius: 40px;
    padding: 70px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
    position: relative;
    overflow: hidden;
}

.mini-text {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0f3ea8;
    margin-bottom: 25px;
    position: relative;
}

.mini-text::before {
    content: "";
    width: 45px;
    height: 2px;
    background: #0f3ea8;
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

.cta-title {
    font-size: 78px;
    line-height: 1;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -3px;
    margin-bottom: 25px;
}

.cta-title span {
    color: #0f3ea8;
}

.cta-text {
    font-size: 22px;
    line-height: 20px;
    color: #64748b;
    max-width: 650px;
    margin: 0;
}
  
  
  /* RESPONSIVE */
  
@media(max-width:1400px) {
    .cta-title {
        font-size: 62px;
    }
}

@media(max-width:991px) {
    .cta-wrapper {
        padding: 50px 35px;
    }

    .cta-title {
        font-size: 52px;
    }

    .cta-text {
        font-size: 18px;
    }
}

@media(max-width:576px) {
    .cta-section {
        padding: 70px 0;
    }

    .cta-wrapper {
        padding: 40px 25px;
        border-radius: 28px;
    }

    .mini-text::before {
        display: none;
    }

    .cta-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .cta-text {
        font-size: 16px;
    }
}
/*******************************************/
/* FOOTER */
  
.footer {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at top left, rgba(255, 170, 0, 0.15), transparent 28%), radial-gradient(circle at bottom right, rgba(0, 119, 255, 0.18), transparent 35%), linear-gradient(135deg, #04123d 0%, #071b5e 40%, #0b2f8a 100%);
    color: #fff;
    padding: 0;
}

.footer-top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer-top-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
}

.glow1 {
    width: 280px;
    height: 280px;
    /* background: #ff9d00; */
    top: -120px;
    right: -60px;
}

.glow2 {
    width: 240px;
    height: 240px;
    background: #00a6ff;
    bottom: -120px;
    left: -80px;
}

.footer-container {
    max-width: 1350px;
    margin: auto;
    padding: 140px 60px 35px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
    gap: 60px;
}

.footer-brand {
    position: relative;
}

.footer-logo {
    width: 250px;
}

.footer-logo img {
    width: 100%;
}

.footer-logo span {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 5px;
    color: #d7e4ff;
    -webkit-text-fill-color: #d7e4ff;
}

.footer-desc {
    margin-top: 30px;
    max-width: 420px;
    color: #d8e2ff;
    line-height: 2;
    font-size: 15px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 35px;
    padding: 16px 28px;
    border-radius: 60px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #ff9d00, #ffcc70);
    box-shadow: 0 15px 35px rgba(255, 157, 0, 0.35);
    transition: 0.4s ease;
}

.footer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 157, 0, 0.45);
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 35px;
    position: relative;
    font-weight: 600;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 65px;
    height: 4px;
    border-radius: 30px;
    background: linear-gradient(to right, #ff9d00, #ffd676);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 18px;
}

.footer-links li a {
    text-decoration: none;
    color: #e4ecff;
    font-size: 15px;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-links li a::before {
    content: '\276F';
    font-size: 18px;
    transition: 0.35s;
}

.footer-links li a:hover {
    color: #ffcb74;
    transform: translateX(8px);
}

.footer-links li a:hover::before {
    transform: translateX(4px);
}

.contact-card {
    /* background: rgba(255, 255, 255, 0.05); */
    /* border: 1px solid rgba(255, 255, 255, 0.08); */
    backdrop-filter: blur(10px);
    /* padding: 28px; */
    border-radius: 24px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item a {
    color: #e9f0ff;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.contact-item a:hover {
    color: #ffcb74;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin-top: 35px;
}

.social-icons a {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    font-size: 18px;
    transition: 0.4s ease;
}

.social-icons a:hover {
    transform: translateY(-8px) rotate(-5deg);
    background: linear-gradient(135deg, #ff9d00, #ffc85c);
    box-shadow: 0 15px 35px rgba(255, 157, 0, 0.35);
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-bottom p {
    color: #d4ddff;
    font-size: 14px;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 25px;
}

.bottom-links a {
    text-decoration: none;
    color: #d4ddff;
    font-size: 14px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: #ffcb74;
}
  /* ========================= */
  /* RESPONSIVE */
  /* ========================= */
  
@media(max-width:1100px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .footer-container {
        padding: 120px 25px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-logo {
        font-size: 48px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/*******************************************/

  
.title-section {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
    background: radial-gradient(circle at top left, 
        rgba(255, 152, 0, 0.12), transparent 25%), 
        linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
}

.title-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(10, 46, 132, 0.08);
    top: -220px;
    right: -120px;
}

.section-title {
    font-size: 78px;
    line-height: 1.05;
    font-weight: 600;
    color: #0A2E84;
    position: relative;
}

.section-title span {
    color: #ff9800;
}

.overview-section {
    padding: 100px 0;
    position: relative;
}

.overview-wrapper {
    /* position: relative; */
    /* align-items: center; */;
}

.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 40px;
    height: 600px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.image-box:hover img {
    transform: scale(1.06);
}

.content-card {
    background: linear-gradient( 135deg, rgba(255, 255, 255, 0.88), rgba(220, 232, 244, 0.95));
    backdrop-filter: blur(16px);
    padding: 40px;
    border-radius: 35px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 540px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.content-card::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 45px;
    width: 130px;
    height: 8px;
    border-radius: 20px;
    background: linear-gradient(to right, #ff9800, #ffc86b);
}

.circle-shape {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(10, 46, 132, 0.08);
    border-radius: 50%;
    left: -180px;
    top: 240px;
}

.blur-shape {
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 152, 0, 0.12);
    border-radius: 50%;
    right: 100px;
    top: 100px;
    filter: blur(50px);
    z-index: -1;
}
  /* ========================= */
  /* RESPONSIVE */
  /* ========================= */
  
@media(max-width:1199px) {
    .section-title {
        font-size: 60px;
    }

    .content-card {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: -120px auto 0;
        max-width: 90%;
    }

    .image-box {
        height: 600px;
    }
}

@media(max-width:768px) {

    .section-title {
        font-size: 46px;
    }

    .title-description {
        font-size: 16px;
    }

    .image-box {
        height: 430px;
        border-radius: 25px;
    }

    .content-card {
        padding: 40px 30px;
        border-radius: 25px;
        max-width: 95%;
    }

    .content-card h2 {
        font-size: 38px;
    }

    .content-card p {
        font-size: 16px;
        line-height: 20px;
    }

}
/*******************************************/
.services-section {
    padding: 90px 0;
}

.service-sec-box {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-top: 5px solid #0A2E84;
    transition: 0.4s;
    width: 100%;
}

.service-sec-box:hover {
    transform: translateY(-8px);
}

.service-sec-box h5 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #ff7700;
    margin-bottom: 20px;
}

.service-sec-title {
    font-size: 38px;
    line-height: 38px;
    font-weight: 700;
    color: #0A2E84;
    margin-bottom: 25px;
}

.service-sec-text {
    font-size: 18px;
    line-height: 25px;
    color: #667085;
    margin-bottom: 20px;
}

.common-ul-li-list {
    list-style: none;
    padding-left: 0;
}

.common-ul-li-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #44546a;
    line-height: 1.7;
    font-size: 16px;
}

.common-ul-li-list li:last-child {
    margin-bottom: 0px;
}

.common-ul-li-list .icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    background: #edf3ff;
    color: #0A2E84;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

@media(max-width:768px) {
    .services-section {
        padding: 60px 0;
    }

    .service-sec-box {
        padding: 35px 25px;
    }

    .service-sec-title {
        font-size: 30px;
    }
}
/*******************************************/
.vision-mission-section {
    padding: 100px 0;
    background: linear-gradient( rgba(10, 46, 132, 0.30), rgba(10, 46, 132, 0.30)), 
    url('../images/vision-mission.jpg');
    background-size: cover;
    background-position: center;
}

.vision-mission-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.vision-mission-section-title h1 {
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.vision-mission-section-title p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 17px;
    max-width: 700px;
    margin: auto;
    line-height: 20px;
}

.vision-card {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 25px;
    padding: 40px;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
}

.vision-card:hover {
    transform: translateY(-8px);
}

.vision-card h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0A2E84;
    margin-bottom: 25px;
    position: relative;
}

.vision-card h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: #ff9800;
}

.vision-card p {
    color: #5d6c82;
    font-size: 17px;
    line-height: 1.9;
    margin-top: 25px;
}
  /* ======================= */
  /* RESPONSIVE */
  /* ======================= */
  
@media(max-width:768px) {
    .vision-mission-section {
        padding: 70px 0;
    }

    .vision-mission-section-title h1 {
        font-size: 40px;
    }

    .vision-mission-section-title p {
        font-size: 15px;
    }

    .vision-card {
        padding: 35px 25px;
    }

    .vision-card h2 {
        font-size: 32px;
    }

    .vision-card p {
        font-size: 15px;
    }
}
/*******************************************/
.how-we-operate-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-we-operate-section::before {
    content: '';
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(10, 46, 132, 0.04);
    top: -180px;
    left: -180px;
}

.how-we-operate-content {
    padding-right: 60px;
}

.how-we-operate-section .small-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #e8eef9;
    color: #0A2E84;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.how-we-operate-title {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #0A2E84;
    margin-bottom: 35px;
}

.how-we-operate-desc {
    color: #66768d;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 650px;
}

.how-we-operate-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.how-we-operate-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 28px;
    color: #5d6d82;
    font-size: 20px;
    line-height: 20px;
    transition: 0.4s ease;
}

.how-we-operate-list li:hover {
    transform: translateX(10px);
}

.how-we-operate-section .icon-box {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient( 135deg, #0A2E84, #1749c6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(10, 46, 132, 0.18);
}

.how-we-operate-section .image-wrapper {
    position: relative;
    width: auto;
    height: auto;
}

.how-we-operate-section .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    height: unset;
}

.how-we-operate-section .image-box img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: 0.6s ease;
}

.how-we-operate-section .image-box:hover img {
    transform: scale(1.05);
}

.how-we-operate-floating-card {
    position: absolute;
    bottom: 30px;
    left: -40px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    max-width: 280px;
}

.how-we-operate-floating-card h4 {
    font-size: 22px;
    color: #0A2E84;
    font-weight: 700;
    margin-bottom: 10px;
}

.how-we-operate-floating-card p {
    color: #66768d;
    font-size: 15px;
    line-height: 20px;
    margin: 0;
}
  /* ========================= */
  /* RESPONSIVE */
  
@media(max-width:991px) {
    .how-we-operate-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .how-we-operate-title {
        font-size: 52px;
    }

    .how-we-operate-floating-card {
        left: 20px;
        bottom: 20px;
    }
}

@media(max-width:768px) {
    .how-we-operate-section {
        padding: 70px 0;
    }

    .how-we-operate-title {
        font-size: 40px;
    }

    .how-we-operate-desc {
        font-size: 16px;
    }

    .how-we-operate-list li {
        font-size: 16px;
        line-height: 1.7;
    }

    .how-we-operate-section .icon-box {
        min-width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .how-we-operate-floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 20px;
        max-width: 100%;
    }
}
/*******************************************/
.stats-section {
    padding: 60px 6%;
    background: #f4f6fa;
}

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    border: 1px solid #e9edf5;
    transition: 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    color: #0A2E84;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.stat-subtext {
    font-size: 14px;
    color: #6d7b92;
}

@media(max-width:768px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 52px;
    }
}
/*******************************************/

.business-section {
    padding: 100px 0;
    position: relative;
}

.business-card {
    background: #fff;
    border-radius: 35px;
    padding: 55px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 46, 132, 0.06);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
    transition: 0.4s ease;
    width: 100%;
}

.business-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.10);
}
  /* TOP SHAPE */
  
.business-card::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: linear-gradient( 135deg, rgba(10, 46, 132, 0.08), rgba(255, 152, 0, 0.10));
}
  /* NUMBER */
  
.card-number {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #082b7a;
    transform: translate(-50%, -50%);
    width: 70%;
    opacity: 0.02;
}

.card-number img {
    width: 100%;
}
  /* CARD TITLE */
  
.card-title-custom {
    font-size: 42px;
    line-height: 42px;
    font-weight: 700;
    color: #082b7a;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.title-line {
    width: 90px;
    height: 5px;
    border-radius: 30px;
    background: linear-gradient( to right, #ff9800, #ffc86b);
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}
  /* ITEM */
  
.business-item {
    gap: 18px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.business-item:last-child {
    margin-bottom: 0;
}

.business-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #f3f6fb;
    color: #082b7a;
    font-size: 20px;
    font-weight: 600;
    transition: 0.4s ease;
}

.business-item:hover .business-icon {
    background: #082b7a;
    color: #fff;
}

.business-item h4 {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.business-item p {
    color: #6b778c;
    line-height: 20px;
    font-size: 16px;
    margin-bottom: 0;
}
  /* ================= RESPONSIVE ================= */
  
@media(max-width:992px) {
}

@media(max-width:768px) {
    .business-section {
        padding: 70px 0;
    }

    .business-card {
        padding: 40px 30px;
        border-radius: 25px;
    }

    .card-title-custom {
        font-size: 32px;
    }

    .card-number {
        font-size: 55px;
    }
}
/*******************************************/

.comparison-section {
    padding: 100px 0;
    margin: auto;
    position: relative;
    overflow: hidden;
}
  /* BACKGROUND SHAPES */
  
.comparison-section::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(10, 46, 132, 0.04);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    z-index: -1;
}

.comparison-section::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255, 152, 0, 0.06);
    border-radius: 50%;
    bottom: -100px;
    right: -80px;
    z-index: -1;
}

.section-tag {
    display: inline-block;
    background: rgba(10, 46, 132, 0.06);
    color: #0A2E84;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.comparison-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.08;
    color: #082b7a;
    margin-bottom: 20px;
}

.comparison-title span {
    color: #ff9800;
}

.comparison-description {
    max-width: 760px;
    margin: auto;
    color: #64748b;
    font-size: 18px;
    line-height: 1.9;
}

.comparison-box {
    margin-top: 65px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(12px);
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    width: 80%;
    margin: 40px auto 0;
}
  /* TABLE */
  
.comparison-table {
    width: 100%;
    border-collapse: collapse;
}
  /* HEAD */
  
.comparison-table thead {
    background: linear-gradient( 135deg, #082b7a 0%, #0b3d9f 100%);
}

.comparison-table th {
    padding: 15px 30px;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

.comparison-table th:first-child {
    text-align: left;
    width: 55%;
}
  /* BODY */
  
.comparison-table tbody tr {
    transition: 0.35s ease;
}

.comparison-table tbody tr:hover {
    background: #f7fbff;
}

.comparison-table td {
    padding: 10px 30px;
    border-top: 1px solid #e7edf5;
    font-size: 18px;
    color: #4d5d75;
    vertical-align: middle;
}

.comparison-table td:first-child {
    font-weight: 500;
    color: #111827;
}
  /* ICONS */
  
.status {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 16px;
    font-weight: 700;
}

.status.success {
    background: #e8f8ee;
    color: #13a04f;
}

.status.fail {
    background: #fff0f0;
    color: #e03131;
}
  /* ROW NUMBER */
  
.feature-row {
    display: flex;
    align-items: center;
    gap: 18px;
}

.feature-number {
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: #edf3fb;
    color: #082b7a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}
  /* ================= RESPONSIVE ================= */
  
@media(max-width:992px) {
    .comparison-title {
        font-size: 52px;
    }
}

@media(max-width:768px) {

    .comparison-title {
        font-size: 38px;
    }

    .comparison-description {
        font-size: 15px;
    }

    .comparison-box {
        border-radius: 22px;
    }

    .comparison-table th {
        font-size: 15px;
        padding: 18px 12px;
    }

    .comparison-table td {
        font-size: 13px;
        padding: 18px 12px;
    }

    .feature-row {
        gap: 10px;
    }

    .feature-number {
        min-width: 32px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .status {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
}
/*******************************************/

    .sticky-tabs-wrapper {
        position: sticky;
        top: 100px;
        z-index: 97;
        background: #f4f7fb;
        padding: 18px 0;
    }
    /* ================= TABS ================= */
    
    .custom-tabs {
        display: flex;
        /*align-items: center;*/
        text-align: center;
    }
    
    .custom-tabs .nav-item {
        background: #ffffff;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        border-radius: 14px;
        transition: 0.3s ease;
        margin: 0 6px;
    }
    
    .custom-tabs .nav-link {
        border: none;
        padding: 18px 28px;
        font-size: 18px;
        font-weight: 500;
        color: #0A2E84;
        text-decoration: none;
        display: block;
        transition: 0.3s ease;
    }
    
    .custom-tabs .nav-item:hover {
        background: linear-gradient(135deg, #07206f, #0b2f8b);
    }
    
    .custom-tabs .nav-item:hover .nav-link {
        color: #fff;
    }
    
    .custom-tabs .nav-item.active {
        background: linear-gradient(135deg, #07206f, #0b2f8b);
    }
    
    .custom-tabs .nav-item.active .nav-link {
        color: #fff;
    }
    /* ================= MOBILE ================= */
    
    @media(max-width:768px) {
        .section-title {
            font-size: 38px;
        }
        .custom-tabs {
            flex-wrap: nowrap;
            padding-bottom: 5px;
        }
        .custom-tabs::-webkit-scrollbar {
            height: 4px;
        }
        .custom-tabs .nav-link {
            font-size: 15px;
            padding: 10px;
            line-height: 18px;
        }
        .custom-tabs .nav-item {
            margin: 0 3px;
        }
    }
/*******************************************/

.service-slider-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.service-slider {
    overflow: hidden;
}

.service-slider-section-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #f1f1f2;
}
    /* =========================
           EQUAL HEIGHT FIX
        ========================= */
    
.service-slider-section-card .row {
    display: flex;
    flex-wrap: wrap;
    height: 100%;
}

.service-slider-section-card .row > div {
    display: flex;
}
    /* LEFT */
    
.service-slider-left-panel {
    background: #dfeaf8;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.service-slider-left-panel h2 {
    font-size: 56px;
    line-height: 1.1;
    color: #0d347f;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-slider-left-panel p {
    font-size: 18px;
    line-height: 20px;
    color: #222;
    margin-bottom: 0;
}
    /* RIGHT */
    
.service-slider-right-panel {
    padding: 30px 30px;
       /* height: 100%;*/
    width: 100%;
    box-sizing: border-box;
}

.service-slider-right-panel.border-start {
    border-color: #e2e2e2 !important;
}

.service-slider-right-panel h3 {
    font-size: 34px;
    color: #0d347f;
    margin-bottom: 30px;
    font-weight: 700;
}

.service-slider-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-slider-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #666;
}


.service-slider-list li:last-child {
    margin-bottom: 0px;
}

.icon-circle {
    width: 40px;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f2f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #0d347f;
    font-weight: bold;
}
    /* ARROWS */
    
.custom-arrows {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 25px;
}

.custom-arrow {
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #0d347f;
    font-size: 28px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.custom-arrow:hover {
    background: #0d347f;
    color: #fff;
}
    /* SLICK FIX */
.service-slider .slick-track {
    display: flex;
    align-items: unset;
}

.service-slider .slick-list {
    overflow: hidden;
    margin: 0 -10px;
}

.service-slider .slick-track {
    display: flex !important;
}

.service-slider .slick-slide {
    height: auto !important;
    padding: 10px;
}

.service-slider .slick-slide > div {
    height: 100%;
    height: auto;
}
    /* =========================
           TABLET
        ========================= */
    
@media(max-width:991px) {
    .service-slider-left-panel {
        padding: 40px 25px;
    }

    .service-slider-right-panel {
        padding: 40px 25px;
        border-left: none !important;
        border-top: 1px solid #e4e4e4;
    }

    .service-slider-left-panel h2 {
        font-size: 36px;
    }

    .service-slider-right-panel h3 {
        font-size: 28px;
    }

    .service-slider-section-card .row {
        display: block;
    }

    .service-slider-section-card .row > div {
        display: block;
    }
}
    /* =========================
           MOBILE
        ========================= */
    
@media(max-width:767px) {
    body {
        overflow-x: hidden;
    }

    .service-slider-section {
        padding: 35px 0;
    }

    .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .service-slider {
        width: 100%;
    }

    .service-slider .slick-list {
        margin: 0;
    }

    .service-slider .slick-slide {
        padding: 0;
    }

    .service-slider-section-card {
        width: 97%;
        border-radius: 16px;
    }

    .row {
        margin: 0 !important;
    }

    .col-lg-4 {
        padding: 0 !important;
        width: 100%;
    }

    .service-slider-left-panel {
        padding: 28px 18px;
        display: block;
    }

    .service-slider-right-panel {
        padding: 28px 18px;
    }

    .service-slider-left-panel h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .service-slider-left-panel p {
        font-size: 15px;
        line-height: 1.7;
    }

    .service-slider-right-panel h3 {
        font-size: 23px;
        margin-bottom: 20px;
    }

    .service-slider-list li {
        font-size: 15px;
        gap: 12px;
        margin-bottom: 16px;
    }

    .icon-circle {
        width: 34px;
        min-width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .custom-arrow {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }
}
/*******************************************/
.extra-pages .vision-card h2 {
    font-size: 130px;
    font-weight: 700;
    color: #0A2E84;
    margin-bottom: 30px;
    position: relative;
    line-height: 130px;
}
.extra-pages .vision-card h2::after {
    content: '';
    position: absolute;
    left: 0;
    margin: 0 auto;
    right: 0;
    bottom: -10px;
    width: 70px;
    height: 4px;
    border-radius: 20px;
    background: #ff9800;
}
.extra-pages .vision-card p {
    margin-top: 0;
}
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
/*******************************************/
.common-header {
}

.common-header h2 {
    font-size: 60px;
    line-height: 70px;
    margin-bottom: 20px;
}

.common-header h4 {
    font-size: 26px;
    line-height: 26px;
    margin-bottom: 20px;
}

.common-header p {
    font-size: 18px;
    line-height: 26px;
}

.common-header.color-white h2 {
    color: #fff;
}

.common-header.color-white p {
    color: #fff;
}

.mar-top-20 {
    margin-top: 20px;
}

.mar-top-30 {
    margin-top: 30px;
}

.mar-top-40 {
    margin-top: 40px;
}

.mar-top-50 {
    margin-top: 50px;
}
/*******************************************/

/* responsive */
@media(max-width: 1366px) {
    .home-top-banner .banner-content .banner-content-area h1 {
        font-size: 65px;
        line-height: 65px;
    }
    .common-header h2 {
        font-size: 45px;
        line-height: 55px;
    }
    .service-sec-title {
        font-size: 30px;
        line-height: 30px;
    }
    .common-ul-li-list li {
        margin-bottom: 10px;
    }
    .card-title-custom {
        font-size: 30px;
        line-height: 30px;
        margin-bottom: 10px;
    }
    .business-item h4 {
        font-size: 20px;
        line-height: 22px;
    }
    .business-icon {
        min-width: 35px;
        width: 35px;
        height: 35px;
        border-radius: 10px;
    }
    .service-title {
        font-size: 30px;
        line-height: 30px;
        min-height: 70px;
    }
    .read-more {
        margin-top: 20px;
    }
    .service-card h3 {
        font-size: 24px;
        line-height: 27px;
    }
    .operations-snapshot-section .card-title {
        font-size: 30px;
        line-height: 30px;
    }
    .service-slider-left-panel h2 {
        font-size: 35px;
        line-height: 35px;
    }
    .operations-snapshot-section .card-text {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .operations-snapshot-section .card-icon {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }
    .section-title {
        font-size: 65px;
        line-height: 65px;
    }
    .service-slider-right-panel h3 {
        font-size: 28px;
        line-height: 28px;
        margin-bottom: 20px;
    }
    .icon-circle {
        width: 30px;
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .service-slider-list li {
        font-size: 18px;
        line-height: 18px;
    }
    .custom-tabs .nav-link {
        padding: 6px 12px;
        font-size: 16px;
    }
}

@media(max-width: 1280px) {
    .home-top-banner .banner-content .banner-content-area h1 {
        font-size: 65px;
        line-height: 65px;
    }
    .common-header h2 {
        font-size: 45px;
        line-height: 55px;
    }
    .service-card h3 {
        font-size: 22px;
        line-height: 26px;
    }
    .service-icon {
        width: 70px;
        height: 70px;
    }
    .operations-snapshot-section .card-title {
        font-size: 35px;
    }
    .operations-snapshot-section .card-text {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 0;
    }
    .operations-snapshot-section .card-icon {
        width: 60px;
        height: 60px;
        border-radius: 10px;
    }
    .section-title {
        font-size: 60px;
        line-height: 60px;
    }
    .service-sec-title {
        font-size: 30px;
        line-height: 32px;
        margin-bottom: 20px;
    }
}

@media(max-width: 991px) {
    .service-text {
        font-size: 18px;
        line-height: 24px;
    }
    .service-box, .col-lg-3:last-child .service-box {
        border: 1px solid #ddd !important;
    }
    .lets-contact-section .right-side-form {
        padding-left: 0;
    }
    .home-top-banner {
        height: auto;
    }
    .home-top-banner .banner-content .banner-content-area {
        position: relative;
        top: 0;
        transform: unset;
        padding: 50px 50px;
    }
    .top-content {
        margin-bottom: 20px;
    }
    .section-title br{
        display: none;
    }
}

@media(max-width: 768px) {
    .top-content{
        margin-bottom: 20px;
    }
    .service-title {
        min-height: unset;
    }
    .container-fluid{
        width: 97%;
    }
    .custom-tabs .nav-link {
        padding: 10px 15px;
        font-size: 18px;
    }
    .overview-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }
}

@media(max-width: 575px) {
    .copyright-area {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 0 !important;
    }

    footer {
        padding: 110px 20px 30px;
    }

    .logo-nav {
        padding: 0 20px;
    }
    .section-title {
        font-size: 50px;
        line-height: 50px;
    }
    .common-header h2 {
        font-size: 38px;
        line-height: 48px;
    }
    .how-we-operate-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }
    .lets-contact-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }
    .lets-contact-section .right-side-form .col-lg-6, .lets-contact-section .right-side-form .col-lg-12 {
        padding: 0;
        margin-bottom: 20px;
    }
    .video-part video {
        height: auto;
        width: 100%;
    }
    .welcome-to-sonip-technologies-section .common-btn {
        margin-bottom: 40px;
    }
    .header .logo {
        padding: 5px 0px;
        width: 140px;
    }
    .header {
        height: 75px;
    }
    .home-top-banner {
        padding: 75px 0 0;
    }
    .sticky-tabs-wrapper {
        top: 75px;
    }
    .comparison-table td {
        line-height: 18px;
    }
    .common-header h2 br {
        display: none;
    }
    .feature-row {
        text-align: left;
    }
}

@media(max-width: 450px) {
    .home-top-banner .banner-content .banner-content-area h1 {
        font-size: 55px;
        line-height: 55px;
    }
    .operations-snapshot-banner-img img {
        height: 100%;
    }
    .how-we-operate-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }
    .lets-contact-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }
    .how-we-operate-section {
        padding: 0px 0 70px;
    }
    .services-section {
        padding: 60px 0;
        background: #FFF;
        background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 247, 251, 1) 82%);
    }
    .welcome-to-sonip-technologies-img .card-main img {
        height: 200px;
    }
    .home-top-banner .banner-content .banner-content-area {
        padding: 20px;
    }
    .main-image {
        height: 250px;
    }
    .operations-snapshot-banner-img {
        height: 200px;
    }
    .footer-bottom {
        margin-top: 20px;
    }
    .image-box {
        height: 350px;
        border-radius: 15px;
    }
    .comparison-box {
        width: 100%;
    }
}

@media(max-width: 400px) {
}