/*==================================================
    EWEBSOFT V2.0
    Author : ChatGPT
===================================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');
/*=========================
    GOOGLE FONT
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*=========================
    RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    line-height:1.7;

    color:#222;

    background:#ffffff;

    overflow-x:hidden;

}


/*=========================
    COMMON
==========================*/

a{

    text-decoration:none;

    transition:.3s;

}

img{

    max-width:100%;

    display:block;

}

ul{

    list-style:none;

    padding:0;

    margin:0;

}

section{

    padding:90px 0;

}

.container{

    max-width:1200px;

}


/*=========================
    BUTTONS
==========================*/

.btn{

    padding:13px 30px;

    margin-right:10px;

    border-radius:50px;

    font-weight:600;

    transition:all .35s ease;

}

.btn-primary{

    background:#0d6efd;

    border:2px solid #0d6efd;

}
.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 18px 40px rgba(13,110,253,.30);

}

.btn-outline-primary{

    border:2px solid #0d6efd;

    color:#0d6efd;

    background:transparent;

}

.btn-outline-primary:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateY(-3px);

}

/*=========================================================
    PREMIUM NAVBAR + FULL WIDTH MEGA MENU
=========================================================*/


/*=========================================================
    NAVBAR
=========================================================*/

.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1050;

    background: #ffffff;

    padding: 10px 0;

    box-shadow: 0 3px 22px rgba(0, 0, 0, 0.06);

    transition: all 0.3s ease;
}


/*=========================================================
    LOGO
=========================================================*/

.main-navbar .site-logo {
    display: flex;
    align-items: center;

    padding: 0;
    margin: 0;
}

.main-navbar .logo {
    display: block;

    height: 58px;
    width: auto;

    transition: transform 0.3s ease;
}

.main-navbar .logo:hover {
    transform: scale(1.02);
}


/*=========================================================
    MAIN NAVIGATION
=========================================================*/

.main-navbar .main-nav {
    gap: 4px;
}

.main-navbar .nav-link {
    position: relative;

    font-size: 16px;
    font-weight: 500;

    color: #292929 !important;

    padding: 10px 13px !important;
    margin: 0 2px;

    transition: color 0.25s ease;
}

.main-navbar .nav-link:hover {
    color: #0d6efd !important;
}

.main-navbar .nav-link.active {
    color: #0d6efd !important;
    font-weight: 600;
}


/*=========================================================
    NAV LINK UNDERLINE
=========================================================*/

.main-navbar .main-nav .nav-link::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;
    bottom: 2px;

    height: 2px;

    background: #0d6efd;

    border-radius: 10px;

    transform: scaleX(0);
    transform-origin: center;

    transition: transform 0.25s ease;
}

.main-navbar .main-nav .nav-link:hover::after,
.main-navbar .main-nav .nav-link.active::after {
    transform: scaleX(1);
}


/*=========================================================
    SERVICES DROPDOWN ARROW
=========================================================*/

.main-navbar .dropdown-toggle::after {
    margin-left: 6px;

    vertical-align: 2px;

    border-top-width: 5px;
    border-right-width: 4px;
    border-left-width: 4px;
}


/*=========================================================
    DESKTOP DROPDOWN / MEGA MENU
=========================================================*/

@media (min-width: 992px) {

    .main-navbar .dropdown.position-static {
        position: static !important;
    }

    .main-navbar .dropdown:hover > .dropdown-menu {
        display: block !important;
    }

    .main-navbar .mega-menu {
        position: absolute;

        width: 100vw !important;
        max-width: 100vw !important;

        left: 50% !important;
        right: auto !important;

        transform: translateX(-50%) !important;

        top: 100% !important;

        margin: 0 !important;

        padding: 32px 40px 38px;

        background: #ffffff;

        border: 0 !important;

        border-radius: 0 0 20px 20px !important;

        box-shadow:
            0 22px 50px rgba(0, 0, 0, 0.10),
            0 8px 25px rgba(13, 110, 253, 0.05);

        z-index: 9999;

        animation: megaMenuFade 0.22s ease;
    }


    /* Keep content centered */

    .main-navbar .mega-menu-header,
    .main-navbar .mega-menu-grid {

        width: 100%;

        max-width: 1400px;

        margin-left: auto;
        margin-right: auto;

    }


    /* Mega menu header */

    .main-navbar .mega-menu-header {

        padding-bottom: 22px;

        margin-bottom: 25px;

        text-align: center;

        border-bottom: 1px solid #edf1f7;
    }


    .main-navbar .mega-menu-subtitle {

        margin-bottom: 14px;

        color: #7a8494;

        font-size: 14px;

        font-weight: 500;

        letter-spacing: 0.2px;
    }


    /* View all button */

    .main-navbar .mega-view-all {

        padding: 9px 22px;

        font-size: 14px;

        font-weight: 600;

        box-shadow:
            0 7px 18px rgba(13, 110, 253, 0.18);

        transition: all 0.25s ease;
    }

    .main-navbar .mega-view-all:hover {

        transform: translateY(-2px);

        box-shadow:
            0 10px 24px rgba(13, 110, 253, 0.24);
    }


    /* Mega menu columns */

    .main-navbar .mega-menu .col-lg-3 {

        margin-bottom: 15px;
    }


    /* Category title */

    .main-navbar .mega-title {

    position: relative;

    margin: 0 0 16px;

    padding-left: 12px;

    color: #0d6efd;

    font-size: 17px;

    font-weight: 700;

    letter-spacing: 1.4px;

    text-transform: uppercase;
}


    .main-navbar .mega-title::before {

        content: "";

        position: absolute;

        left: 0;
        top: 50%;

        width: 4px;
        height: 16px;

        background: #0d6efd;

        border-radius: 10px;

        transform: translateY(-50%);
    }


    /* Service item */

   .main-navbar .mega-item {

    display: flex;

    align-items: center;

    gap: 13px;

    width: 100%;

    min-height: 58px;

    padding: 9px 11px;

    margin-bottom: 5px;

    border-radius: 12px;

    color: #202124;

    text-decoration: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

    .main-navbar .mega-item:hover {

        background: #f5f9ff;

        color: #0d6efd;

        text-decoration: none;

        transform: translateX(4px);

        box-shadow:
            0 6px 18px rgba(13, 110, 253, 0.07);
    }


    /* Service icon */

    .main-navbar .mega-item-icon {

        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        display: flex;

        align-items: center;
        justify-content: center;

        background: #eef5ff;

        border-radius: 11px;

        color: #0d6efd;

        font-size: 18px;

        transition: all 0.25s ease;
    }


    .main-navbar .mega-item:hover .mega-item-icon {

        background: #0d6efd;

        color: #ffffff;

        transform: scale(1.04);
    }


    /* Service text */

    .main-navbar .mega-item-text {

        flex: 1;

        font-size: 17px;

        font-weight: 600;

        line-height: 1.35;

        color: #292929;

        transition: color 0.25s ease;
    }


    .main-navbar .mega-item:hover .mega-item-text {

        color: #0d6efd;
    }


    /* Right arrow */

    .main-navbar .mega-item-arrow {

        font-size: 19px;

        color: #aab3c0;

        opacity: 0;

        transform: translateX(-5px);

        transition: all 0.25s ease;
    }


    .main-navbar .mega-item:hover .mega-item-arrow {

        opacity: 1;

        color: #0d6efd;

        transform: translateX(0);
    }

}


/*=========================================================
    MEGA MENU ANIMATION
=========================================================*/

@keyframes megaMenuFade {

    from {
        opacity: 0;
        transform: translate(-50%, -8px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }

}


/*=========================================================
    HEADER ACTIONS
=========================================================*/

.main-navbar .header-actions {

    display: flex;

    align-items: center;

    gap: 18px;

    white-space: nowrap;
}


/*=========================================================
    WHATSAPP
=========================================================*/

.main-navbar .whatsapp-contact {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #292929;

    text-decoration: none;

    font-size: 17px;

    font-weight: 500;

    transition: color 0.25s ease;
}

.main-navbar .whatsapp-contact i {

    font-size: 22px;

    color: #18b957;

    transition: transform 0.25s ease;
}

.main-navbar .whatsapp-contact:hover {

    color: #0d6efd;
}

.main-navbar .whatsapp-contact:hover i {

    transform: scale(1.08);
}


/*=========================================================
    GET FREE PROPOSAL
=========================================================*/

.main-navbar .proposal-btn {

    padding: 11px 23px;

    border-radius: 30px;

    font-size: 16px;

    font-weight: 600;

    box-shadow:
        0 7px 18px rgba(13, 110, 253, 0.18);

    transition: all 0.25s ease;
}

.main-navbar .proposal-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 10px 24px rgba(13, 110, 253, 0.25);
}


/*=========================================================
    MOBILE NAVBAR
=========================================================*/

@media (max-width: 991.98px) {

    .main-navbar {

        padding: 8px 0;
    }


    .main-navbar .logo {

        height: 52px;
    }


    .main-navbar .navbar-toggler {

        padding: 7px 10px;

        border: 1px solid #e2e8f0;

        border-radius: 10px;

        box-shadow: none;
    }


    .main-navbar .navbar-toggler:focus {

        box-shadow:
            0 0 0 3px rgba(13, 110, 253, 0.10);
    }


    .main-navbar .navbar-collapse {

        padding-top: 15px;
    }


    .main-navbar .main-nav {

        align-items: stretch !important;

        gap: 2px;
    }


    .main-navbar .nav-link {

        padding: 11px 8px !important;

        margin: 0;
    }


    .main-navbar .main-nav .nav-link::after {

        display: none;
    }


    /* Mobile Mega Menu */

    .main-navbar .mega-menu {

        width: 100% !important;

        max-width: 100% !important;

        left: 0 !important;
        right: 0 !important;

        transform: none !important;

        margin-top: 8px !important;

        padding: 20px 18px;

        background: #f8faff;

        border-radius: 14px !important;

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.10);
    }


    .main-navbar .mega-menu-header {

        margin-bottom: 20px;

        padding-bottom: 18px;

        text-align: center;

        border-bottom: 1px solid #e7edf7;
    }


    .main-navbar .mega-menu-subtitle {

        font-size: 13px;
    }


    .main-navbar .mega-menu-grid {

        max-width: 100%;
    }


    .main-navbar .mega-menu .col-lg-3 {

        margin-bottom: 15px;
    }


    .main-navbar .mega-title {

        margin-top: 8px;

        margin-bottom: 10px;
    }


    .main-navbar .mega-item {

        min-height: 52px;

        padding: 7px 8px;

        background: #ffffff;

        border: 1px solid #edf1f7;
    }


    .main-navbar .mega-item-icon {

        width: 38px;
        height: 38px;

        flex-basis: 38px;

        font-size: 17px;
    }


    .main-navbar .mega-item-arrow {

        opacity: 1;

        transform: none;
    }


    /* Header actions */

    .main-navbar .header-actions {

        flex-direction: column;

        align-items: stretch !important;

        gap: 12px;

        padding: 15px 0 5px;

        margin-top: 10px;

        border-top: 1px solid #edf1f7;
    }


    .main-navbar .whatsapp-contact {

        justify-content: center;
    }


    .main-navbar .proposal-btn {

        width: 100%;

        text-align: center;
    }

}


/*=========================================================
    SMALL MOBILE
=========================================================*/

@media (max-width: 575.98px) {

    .main-navbar .logo {

        height: 47px;
    }


    .main-navbar .mega-menu {

        padding: 15px;
    }


    .main-navbar .mega-menu-subtitle {

        font-size: 13px;
    }


    .main-navbar .mega-title {

        margin-top: 5px;
    }

}

/*==================================================
                HERO SECTION
==================================================*/

.hero-section {

    background: #f5f9ff;

    padding: 70px 0 70px;

    overflow: hidden;

}


/*==================================================
                HERO ROW
==================================================*/

.hero-section .row {

    align-items: flex-start !important;

}


/*==================================================
                HERO LEFT CONTENT
==================================================*/

.hero-section .row > .col-lg-6:first-child {

    padding-top: 40px;

}


/*==================================================
                HERO BADGE
==================================================*/

.hero-badge {

    display: inline-block;

    background: #eaf2ff;

    color: #0d6efd;

    padding: 9px 20px;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}


/*==================================================
                HERO TITLE
==================================================*/

.hero-title {

    font-size: 64px;

    font-weight: 800;

    line-height: 1.12;

    color: #222;

    margin-bottom: 22px;

    letter-spacing: -1.2px;

}

.hero-title span {

    color: #0d6efd;

}


/*==================================================
                HERO DESCRIPTION
==================================================*/

.hero-text {

    max-width: 560px;

    font-size: 18px;

    color: #666;

    line-height: 1.75;

    margin-bottom: 30px;

}


/*==================================================
                HERO BUTTONS
==================================================*/

.hero-section .btn {

    min-width: 185px;

    padding: 13px 24px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;

    transition: all 0.25s ease;

}

.hero-section .btn-primary {

    box-shadow:
        0 8px 20px rgba(13, 110, 253, 0.16);

}

.hero-section .btn-primary:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 26px rgba(13, 110, 253, 0.23);

}

.hero-section .btn-outline-primary:hover {

    transform: translateY(-2px);

}


/*==================================================
                HERO IMAGE
==================================================*/

.hero-image {

    width: 100%;

    max-width: 760px;

    height: auto;

    object-fit: contain;

    display: block;

    margin: 0 auto 25px;

    border-radius: 28px;

    border: 1px solid #eef3ff;

    box-shadow:
        0 25px 60px rgba(13, 110, 253, 0.12);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

    animation: heroFloat 4s ease-in-out infinite;

}


/*==================================================
                HERO IMAGE FLOAT
==================================================*/

@keyframes heroFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}


.hero-image:hover {

    transform: translateY(-8px) scale(1.02);

    box-shadow:
        0 35px 70px rgba(13, 110, 253, 0.20);

}


/*==================================================
                HERO CARD
==================================================*/

.hero-card {

    background: #ffffff;

    border-radius: 28px;

    padding: 35px;

    position: relative;

    z-index: 10;

    margin-top: 20px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.08);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;

}

.hero-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.10);

}


/*==================================================
                HERO CARD HEADING
==================================================*/

.hero-card h4 {

    font-size: 21px;

    font-weight: 700;

    color: #222;

    margin-bottom: 20px;

}


/*==================================================
                HERO PROGRESS BAR
==================================================*/

.hero-card .progress {

    background: #e9edf2;

    border-radius: 20px;

    overflow: hidden;

}

.hero-card .progress-bar {

    background: #0d6efd;

    border-radius: 20px;

}


/*==================================================
                HERO MINI CARDS
==================================================*/

.hero-card .mini-card {

    background: #f8faff;

    border: 1px solid #edf2fa;

    border-radius: 18px;

    padding: 22px 15px;

    text-align: center;

    transition: all 0.25s ease;

}

.hero-card .mini-card:hover {

    transform: translateY(-3px);

    background: #ffffff;

    box-shadow:
        0 10px 25px rgba(13, 110, 253, 0.08);

}

.hero-card .mini-card h3 {

    color: #0d6efd;

    font-size: 36px;

    font-weight: 800;

    margin-bottom: 5px;

}

.hero-card .mini-card p {

    color: #666;

    font-size: 16px;

    margin: 0;

}


/*==================================================
                TABLET
==================================================*/

@media (max-width: 1199.98px) {

    .hero-title {

        font-size: 56px;

    }

    .hero-section .row > .col-lg-6:first-child {

        padding-top: 55px;

    }

}


/*==================================================
                MOBILE / TABLET
==================================================*/

@media (max-width: 991.98px) {

    .hero-section {

        padding: 70px 0 60px;

        text-align: center;

    }


    .hero-section .row {

        align-items: center !important;

    }


    .hero-section .row > .col-lg-6:first-child {

        padding-top: 0;

    }


    .hero-badge {

        font-size: 14px;

        padding: 9px 18px;

        margin-bottom: 18px;

    }


    .hero-title {

        font-size: 46px;

        line-height: 1.15;

        letter-spacing: -0.7px;

    }


    .hero-text {

        max-width: 600px;

        margin-left: auto;

        margin-right: auto;

        font-size: 17px;

        line-height: 1.7;

        margin-bottom: 28px;

    }


    .hero-image {

        max-width: 400px;

        height: auto;

        margin-top: 45px;

        margin-bottom: 25px;

    }


    .hero-card {

        margin-top: 35px;

        padding: 30px;

        text-align: left;

    }

}
/*==================================================
        HERO COMPLETE DIGITAL SOLUTIONS CARD
==================================================*/

.hero-solutions-card {
    margin-top: 32px;
    padding: 24px 26px;
    background: #ffffff;
    border: 1px solid #edf2fa;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(13, 110, 253, 0.08);
    transition: all 0.3s ease;
}

.hero-solutions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.12);
}

.hero-solutions-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.hero-solutions-header h4 {
    margin: 0 0 7px;
    font-size: 19px;
    font-weight: 700;
    color: #222;
}

.hero-solutions-header p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.hero-solutions-header-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: #0d6efd;
    border-radius: 12px;
    font-size: 20px;
}

.hero-solutions-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.hero-solution-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 12px 14px;
    background: #f8faff;
    border: 1px solid #edf2fa;
    border-radius: 13px;
    transition: all 0.25s ease;
    cursor: pointer;
}

.hero-solution-item:hover {
    background: #0d6efd;
    border-color: #0d6efd;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.18);
}

.hero-solution-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf2ff;
    color: #0d6efd;
    border-radius: 9px;
    font-size: 17px;
    transition: all 0.25s ease;
}

.hero-solution-item span {
    font-size: 15px;
    font-weight: 650;
    color: #333;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.hero-solution-item:hover .hero-solution-icon {
    background: #ffffff;
    color: #0d6efd;
}

.hero-solution-item:hover span {
    color: #ffffff;
}


/* Tablet */
@media (max-width: 1199.98px) {

    .hero-solutions-card {
        padding: 22px;
    }

    .hero-solutions-items {
        gap: 10px;
    }

    .hero-solution-item {
        padding: 9px 10px;
    }

    .hero-solution-item span {
        font-size: 12px;
    }

}

/* Balance Hero Solution Card with Right Growth Card */

 
@media (min-width: 992px) {

    .hero-solutions-card {
        min-height: 300px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-solutions-header {
        margin-bottom: 28px;
    }

    .hero-solution-item {
        min-height: 72px;
        padding: 12px 14px;
    }

    .hero-solution-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 17px;
    }

    .hero-solution-item span {
        font-size: 14px;
    }

}

/* Mobile */
@media (max-width: 991.98px) {

    .hero-solutions-card {
        max-width: 600px;
        margin: 30px auto 0;
        text-align: left;
    }

    .hero-solutions-items {
        grid-template-columns: 1fr;
    }

    .hero-solution-item {
        min-height: 50px;
    }

    .hero-solution-item span {
        font-size: 14px;
    }

}


/* Small Mobile */
@media (max-width: 576px) {

    .hero-solutions-card {
        margin-top: 25px;
        padding: 20px;
        border-radius: 20px;
    }

    .hero-solutions-header {
        gap: 12px;
    }

    .hero-solutions-header h4 {
        font-size: 18px;
    }

    .hero-solutions-header p {
        font-size: 13px;
    }

    .hero-solutions-header-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 18px;
    }

}


/*==================================================
                SMALL MOBILE
==================================================*/
/*==================================================
    HERO - SOLUTIONS CARD FINAL BALANCE
==================================================*/

@media (min-width: 992px) {

    .hero-solutions-card {
        min-height: 270px;
        margin-top: 28px;
    }

    .hero-solutions-header {
        margin-bottom: 22px;
    }

    .hero-solution-item {
        min-height: 64px;
    }

}
@media (max-width: 576px) {

    .hero-section {

        padding: 55px 0 50px;

    }


    .hero-title {

        font-size: 36px;

        line-height: 1.18;

    }


    .hero-text {

        font-size: 16px;

        line-height: 1.65;

    }


    .hero-section .btn {

        display: block;

        width: 100%;

        margin: 0 0 14px !important;

    }


    .hero-image {

        max-width: 300px;

        height: auto;

        margin-top: 30px;

    }


    .hero-card {

        margin-top: 25px;

        padding: 22px;

        border-radius: 22px;

    }


    .hero-card .mini-card {

        padding: 18px 10px;

    }


    .hero-card .mini-card h3 {

        font-size: 30px;

    }


    .hero-card .mini-card p {

        font-size: 14px;

    }

}


/*=========================
        PROGRESS BAR
==========================*/

.progress{

    height:12px;

    border-radius:50px;

    margin-bottom:25px;

    overflow:hidden;

    background:#e9ecef;

}

.progress-bar{

    border-radius:50px;

    transition:width .6s ease;

}


/*=========================
        MINI CARD
==========================*/

.mini-card{

    background:#f8fbff;

    border:1px solid #edf2ff;

    border-radius:18px;

    padding:30px 20px;

    text-align:center;

    margin-top:30px;

    transition:.35s;

}

.mini-card:hover{

    transform:translateY(-6px);

    box-shadow:0 12px 30px rgba(13,110,253,.12);

}

.mini-card h3{

    font-size:42px;

    color:#0d6efd;

    font-weight:700;

    margin-bottom:10px;

}

.mini-card p{

    color:#555;

    font-size:18px;

    margin:0;

}

/*==================================================
            TRUSTED SECTION
==================================================*/

.trusted-section{

    background:#fff;

    padding:60px 0;

}


/*==================================================
            TRUSTED CAROUSEL
==================================================*/

.trusted-carousel{

    position:relative;

    display:flex;

    align-items:center;

    width:100%;

}


/*==================================================
            LOGO VIEWPORT
==================================================*/

.trusted-logo-viewport{

    width:100%;

    overflow:hidden;

    padding:10px 50px;

}


/*==================================================
            LOGO TRACK
==================================================*/

.trusted-logo-track{

    display:flex;

    align-items:center;

    gap:55px;

    overflow-x:auto;

    scroll-behavior:smooth;

    scrollbar-width:none;

    -ms-overflow-style:none;

}


/* Chrome / Edge / Safari */

.trusted-logo-track::-webkit-scrollbar{

    display:none;

}


/*==================================================
            INDIVIDUAL LOGO
==================================================*/

.trusted-logo-item{

    flex:0 0 150px;

    height:90px;

    display:flex;

    align-items:center;

    justify-content:center;

}


/*==================================================
            LOGO IMAGE
==================================================*/

.trusted-logo-track .brand-logo{

    max-width:125px;

    max-height:65px;

    width:auto;

    height:auto;

    object-fit:contain;

    transition:.3s ease;

}


/* Logo Hover */

.trusted-logo-track .brand-logo:hover{

    transform:scale(1.08);

}


/*==================================================
            CAROUSEL ARROWS
==================================================*/

.trusted-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#0d6efd;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:20px;

    cursor:pointer;

    z-index:5;

    box-shadow:0 5px 20px rgba(0,0,0,.10);

    transition:.3s ease;

}


/* Arrow Hover */

.trusted-arrow:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateY(-50%) scale(1.05);

}


/* Previous Arrow */

.trusted-prev{

    left:0;

}


/* Next Arrow */

.trusted-next{

    right:0;

}


/*==================================================
            TRUSTED MOBILE
==================================================*/

@media(max-width:576px){

    .trusted-logo-viewport{

        padding:10px 40px;

    }


    .trusted-logo-track{

        gap:30px;

    }


    .trusted-logo-item{

        flex:0 0 120px;

        height:75px;

    }


    .trusted-logo-track .brand-logo{

        max-width:105px;

        max-height:55px;

    }


    .trusted-arrow{

        width:36px;

        height:36px;

        font-size:16px;

    }

}



/*==================================================
                STATS SECTION
==================================================*/

.stats-section{

    background:#f8fbff;

    padding:90px 0;

}

.stat-card{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}
.stat-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf2ff;
    color: #0d6efd;

    border-radius: 16px;

    font-size: 24px;

    transition: all 0.35s ease;
}

.stat-card:hover .stat-icon {
    background: #0d6efd;
    color: #ffffff;

    transform: translateY(-3px) scale(1.05);
}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 45px rgba(13,110,253,.12);

}

.stat-card h2{

    font-size:46px;

    color:#0d6efd;

    font-weight:700;

    margin-bottom:10px;

}

.stat-card p{

    margin:0;

    color:#666;

    font-size:17px;

}


/*==================================================
                ABOUT SECTION
==================================================*/

.about-section{

    background:#fff;

}

.about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.about-subtitle{

    color:#0d6efd;

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

    margin-bottom:15px;

}

.about-title{

    font-size:48px;

    font-weight:700;

    line-height:1.25;

    margin-bottom:25px;

}

.about-text{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.about-list{

    margin-top:25px;

}

.about-list li{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:18px;

    font-size:17px;

    color:#444;

}

.about-list i{

    width:36px;

    height:36px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:#0d6efd;

    border-radius:50%;

    font-size:18px;

}

/*==================================================
            SERVICES SECTION
==================================================*/

.services-section {
    background: #f8fbff;
}

.section-subtitle {
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 18px;
}

.section-description {
    max-width: 700px;
    margin: auto;
    color: #666;
    margin-bottom: 55px;
}


/*==================================================
            SERVICE CARD
==================================================*/

.service-card-link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);

    transition: .35s;

    height: 100%;
    min-height: 450px;

    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(13, 110, 253, .15);
}


/*==================================================
            SERVICE IMAGE / ICON
==================================================*/

.service-card img {
    width: 80px;
    height: 80px;

    object-fit: cover;

    display: block;

    margin: 0 auto 25px;

    border-radius: 50%;
}

.service-card i {
    width: 80px;
    height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: #eef5ff;
    color: #0d6efd;

    font-size: 40px;
}


/*==================================================
            SERVICE TITLE
==================================================*/

.service-card h4 {
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 18px;

    line-height: 1.25;

    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/*==================================================
            SERVICE DESCRIPTION
==================================================*/

.service-card p {
    color: #666;

    line-height: 1.8;

    margin-bottom: 0;

    flex-grow: 1;
}


/*==================================================
        RESPONSIVE
==================================================*/

@media (max-width: 991px) {

    .about-section {
        text-align: center;
    }

    .about-image {
        margin-bottom: 40px;
    }

    .about-list li {
        justify-content: center;
    }

    .section-title {
        font-size: 38px;
    }

    .about-title {
        font-size: 38px;
    }

    .service-card {
        min-height: 420px;
    }
}


@media (max-width: 576px) {

    .section-title {
        font-size: 30px;
    }

    .about-title {
        font-size: 30px;
    }

    .stat-card {
        margin-bottom: 25px;
    }

    .service-card {
        margin-bottom: 25px;
        min-height: auto;
    }

    .service-card h4 {
        min-height: auto;
    }
}
/*==================================================
                WHY CHOOSE US
==================================================*/

/*==================================================
            WHY CHOOSE US V2
==================================================*/

.why-section{

    background:#f8fbff;

    padding:100px 0;

}
.why-image{
    width:100%;
    height:560px;
    object-fit:cover;
    border-radius:24px;
    transition:.5s ease;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}
.why-image:hover{
    transform:scale(1.03);
}

.why-feature{

    display:flex;

    align-items:center;

    gap:15px;

    background:#fff;

    border-radius:16px;

    padding:18px 20px;

    border:1px solid #edf2ff;

    box-shadow:0 10px 25px rgba(0,0,0,.05);

    transition:.35s;

    height:100%;

}

.why-feature:hover{

    transform:translateY(-6px);

    border-color:#0d6efd;

    box-shadow:0 18px 40px rgba(13,110,253,.15);

}

.why-feature i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:#eef5ff;

    color:#0d6efd;

    font-size:24px;

    flex-shrink:0;

}

.why-feature span{

    font-size:17px;

    font-weight:600;

    color:#222;

}

@media(max-width:991px){

    .why-section{

        text-align:center;

    }

    .why-image{

        margin-bottom:35px;

    }

    .why-feature{

        justify-content:flex-start;

    }

}

@media(max-width:576px){

    .why-feature{

        padding:16px;

    }

    .why-feature span{

        font-size:16px;

    }

}

/*==================================================
                PORTFOLIO
==================================================*/

.portfolio-section{

    background:#f8fbff;

}

.portfolio-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.portfolio-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.portfolio-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-content{

    padding:25px;

}

.portfolio-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:12px;

}

.portfolio-content p{

    color:#666;

    margin-bottom:15px;

}

.portfolio-content a{

    color:#0d6efd;

    font-weight:600;

}

.portfolio-content a:hover{

    letter-spacing:.5px;

}
/*==================================================
            TESTIMONIAL SECTION
==================================================*/

.testimonial-section{

    background:#f8fbff;

    padding:80px 0;

    overflow:hidden;

}


/*==================================================
            TESTIMONIAL HEADING
==================================================*/

.testimonial-title{

    font-size:42px;

    font-weight:700;

    color:#222;

}


.testimonial-title span{

    color:#0d6efd;

}


.testimonial-text{

    max-width:720px;

    color:#666;

    font-size:17px;

    line-height:1.7;

}


/*==================================================
            TESTIMONIAL CAROUSEL
==================================================*/

.testimonial-carousel{

    position:relative;

    width:100%;

    display:flex;

    align-items:center;

}


/*==================================================
            TESTIMONIAL VIEWPORT
==================================================*/

.testimonial-viewport{

    width:100%;

    overflow:hidden;

    padding:15px 55px;

    box-sizing:border-box;

}


/*==================================================
            TESTIMONIAL TRACK
==================================================*/

.testimonial-track{

    display:flex;

    flex-wrap:nowrap;

    align-items:stretch;

    gap:24px;

    width:max-content;

    max-width:none;

    will-change:scroll-position;

}


/*==================================================
            TESTIMONIAL SLIDE
==================================================*/

.testimonial-slide{

    flex:0 0 calc((100vw - 230px) / 3);

    width:calc((100vw - 230px) / 3);

    max-width:430px;

    min-width:300px;

    box-sizing:border-box;

}


/*==================================================
            TESTIMONIAL CARD
==================================================*/

.testimonial-card{

    position:relative;

    height:100%;

    min-height:310px;

    padding:32px;

    background:#fff;

    border-radius:22px;

    box-shadow:0 10px 35px rgba(13,110,253,.08);

    transition:.35s ease;

    box-sizing:border-box;

}


.testimonial-card:hover{

    transform:translateY(-7px);

    box-shadow:0 18px 45px rgba(13,110,253,.14);

}


/*==================================================
            QUOTE ICON
==================================================*/

.quote-icon{

    position:absolute;

    top:25px;

    right:25px;

    font-size:48px;

    color:#e8f1ff;

}


/*==================================================
            STARS
==================================================*/

.stars{

    color:#ffb400;

    font-size:17px;

}


.stars i{

    margin-right:2px;

}


/*==================================================
            REVIEW
==================================================*/

.testimonial-card > p{

    color:#333;

    font-size:16px;

    line-height:1.7;

    margin-bottom:0;

}


/*==================================================
            CLIENT INFO
==================================================*/

.client-info{

    display:flex;

    align-items:center;

    gap:14px;

}


.client-info img{

    width:58px;

    height:58px;

    object-fit:contain;

    border-radius:50%;

    background:#fff;

    border:1px solid #eee;

    padding:5px;

}


.client-info h5{

    margin:0;

    font-size:18px;

    font-weight:700;

    color:#222;

}


.client-info span{

    display:block;

    margin-top:3px;

    font-size:14px;

    color:#777;

}

.trusted-carousel {
    position: relative;
}

.testimonial-carousel {
    position: relative;
}

/*==================================================
            CAROUSEL ARROWS
==================================================*/

.testimonial-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:44px;

    height:44px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:#0d6efd;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:19px;

    cursor:pointer;

    z-index:20;

    box-shadow:0 6px 20px rgba(0,0,0,.10);

    transition:.3s ease;

}


.testimonial-arrow:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateY(-50%) scale(1.05);

}


.testimonial-prev{

    left:5px;

}


.testimonial-next{

    right:5px;

}


/*==================================================
            TABLET
==================================================*/

@media(max-width:991px){

    .testimonial-slide{

        flex:0 0 calc((100vw - 145px) / 2);

        width:calc((100vw - 145px) / 2);

        max-width:430px;

        min-width:280px;

    }

}


/*==================================================
            MOBILE
==================================================*/

@media(max-width:576px){

    .testimonial-section{

        padding:60px 0;

    }


    .testimonial-title{

        font-size:32px;

    }


    .testimonial-text{

        font-size:15px;

        line-height:1.7;

    }


    .testimonial-carousel{

        width:100%;

    }


    .testimonial-viewport{

        padding:15px 40px;

    }


    .testimonial-track{

        gap:18px;

    }


    .testimonial-slide{

        flex:0 0 calc(100vw - 80px);

        width:calc(100vw - 80px);

        max-width:none;

        min-width:0;

    }


    .testimonial-card{

        min-height:300px;

        padding:25px;

    }


    .testimonial-arrow{

        width:38px;

        height:38px;

        font-size:16px;

    }


    .testimonial-prev{

        left:5px;

    }


    .testimonial-next{

        right:5px;

    }

}
/*==================================================
                CTA SECTION
==================================================*/

.cta-section{

    background:linear-gradient(135deg,#0d6efd,#003ea8);

    color:#fff;

    text-align:center;

}

.cta-section h2{

    font-size:48px;

    font-weight:700;

    margin-bottom:20px;

}

.cta-section p{

    max-width:700px;

    margin:0 auto 35px;

    color:#e9f1ff;

    line-height:1.9;

}

.cta-section .btn-light{

    padding:14px 34px;

    border-radius:50px;

    font-weight:600;

}

.cta-section .btn-light:hover{

    transform:translateY(-4px);

}


/*==================================================
                CONTACT
==================================================*/

.contact-section{

    background:#ffffff;

}

.contact-info{

    background:#f8fbff;

    padding:35px;

    border-radius:20px;

    height:100%;

}

.contact-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:25px;

}

.contact-item i{

    width:55px;

    height:55px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:#0d6efd;

    border-radius:50%;

    font-size:22px;

}

.contact-item h5{

    font-weight:700;

    margin-bottom:6px;

}

.contact-item p{

    margin:0;

    color:#666;

}

.contact-form{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

}

.contact-form .form-control{

    border-radius:12px;

    padding:14px;

    border:1px solid #dfe6ee;

    box-shadow:none;

}

.contact-form .form-control:focus{

    border-color:#0d6efd;

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}


/*==================================================
                BLOG
==================================================*/

.blog-section{

    background:#f8fbff;

}

.blog-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.06);

    transition:.35s;

    height:100%;

}

.blog-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.blog-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}
/*==================================================
                FOOTER
==================================================*/

.footer-section{

    background:#0f172a;

    color:#cbd5e1;

    padding:65px 0 0;

}


/*==================================================
                FOOTER LOGO
==================================================*/

.footer-logo{

    height:70px;

    width:auto;

    max-width:220px;

    object-fit:contain;

    display:block;

    margin-bottom:20px;

}


/*==================================================
                FOOTER ABOUT
==================================================*/

.footer-about{

    color:#cbd5e1;

    font-size:16px;

    line-height:1.8;

    max-width:460px;

    margin-bottom:25px;

}


/*==================================================
                FOOTER HEADINGS
==================================================*/

.footer-section h5{

    color:#fff;

    font-size:20px;

    font-weight:700;

    margin-bottom:22px;

}


/*==================================================
                FOOTER LINKS
==================================================*/

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:13px;

}

.footer-links li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-links li a:hover{

    color:#0d6efd;

    padding-left:5px;

}


/*==================================================
                SOCIAL ICONS
==================================================*/

.social-icons{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.social-icons a{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#0d6efd;

    color:#fff;

    transform:translateY(-4px);

}


/*==================================================
                CONTACT
==================================================*/

.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:16px;

    color:#cbd5e1;

    line-height:1.6;

}

.footer-contact li i{

    color:#0d6efd;

    font-size:17px;

    margin-top:3px;

    flex-shrink:0;

}

.footer-contact li a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-contact li a:hover{

    color:#0d6efd;

}


/*==================================================
                FOOTER BOTTOM
==================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:55px;

    padding:22px 0;

    color:#94a3b8;

}

.footer-bottom p{

    color:#94a3b8;

    font-size:15px;

}

.footer-bottom strong{

    color:#fff;

}


/*==================================================
                MOBILE
==================================================*/

@media(max-width:991px){

    .footer-section{

        padding-top:50px;

    }

    .footer-logo{

        height:65px;

    }

}

@media(max-width:767px){

    .footer-bottom{

        text-align:center;

    }

    .footer-bottom .container{

        gap:10px;

    }

}

/*==================================================
                SCROLL TO TOP
==================================================*/

.scroll-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#0d6efd;

    color:#fff;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 12px 25px rgba(13,110,253,.30);

    transition:.3s;

    z-index:999;

}

.scroll-top:hover{

    transform:translateY(-5px);

    color:#fff;

}


/*==================================================
                UTILITIES
==================================================*/

.shadow-sm{

    box-shadow:0 8px 20px rgba(0,0,0,.05)!important;

}

.rounded-xl{

    border-radius:22px;

}

.bg-light-blue{

    background:#f8fbff;

}

.text-primary{

    color:#0d6efd!important;

}


/*==================================================
                FINAL RESPONSIVE
==================================================*/

@media(max-width:991px){

.cta-section h2{

font-size:38px;

}

.contact-info{

margin-bottom:30px;

}

.footer{

text-align:center;

}

.footer-social{

justify-content:center;

}

}

@media(max-width:576px){

section{

padding:70px 0;

}

.cta-section h2{

font-size:30px;

}

.blog-card img{

height:200px;

}

.contact-form{

padding:25px;

}

.contact-info{

padding:25px;

}

.footer{

padding:50px 0 20px;

}

}
/*=========================
    WHY CHOOSE US
==========================*/

.feature-box{

    background:#fff;

    border-radius:20px;

    padding:40px 25px;

    text-align:center;

    height:100%;

    border:1px solid #edf2ff;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.feature-box:hover{

    transform:translateY(-10px);

    border-color:#0d6efd;

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

.feature-box i{

    width:80px;

    height:80px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#eef5ff;

    color:#0d6efd;

    border-radius:50%;

    font-size:34px;

    margin-bottom:25px;

}

.feature-box h6{

    font-size:20px;

    font-weight:600;

    color:#222;

    line-height:1.5;

}
/* Trusted By */

.trusted-section{
    background:#fff;
}

/* Trusted By Logos */
.brand-logo {
    width: 120px;
    height: 65px;
    object-fit: contain;

    /* Full original colors */
    filter: none;
    opacity: 1;

    display: inline-block;

    transition: all 0.3s ease;
}

/* Logo Hover Effect */
.brand-logo:hover {
    transform: scale(1.08);
}
/* ===========================
   WHY CHOOSE US
=========================== */

.why-section{
    padding:100px 0;
    background:#fff;
}

.section-badge{
    display:inline-block;
    background:#eaf2ff;
    color:#0d6efd;
    padding:10px 20px;
    border-radius:30px;
    font-weight:600;
}

.section-title{
    font-size:46px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.section-text{
    color:#666;
    line-height:1.8;
    margin-bottom:40px;
}

.why-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.4s;

    height:100%;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(13,110,253,.15);

}

.why-card i{

    font-size:40px;

    color:#0d6efd;

    margin-bottom:20px;

}

.why-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.why-card p{

    color:#666;

    margin:0;

}

.why-image{

    max-width:550px;

    width:100%;

    animation:float 4s ease-in-out infinite;

}

.service-image{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:50%;
    margin-bottom:20px;
}
/* ===========================
   ABOUT SECTION
=========================== */

.about-section {
    background: #fff;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.about-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 20px 45px rgba(13, 110, 253, 0.30);
    transition: 0.4s ease;
}

.experience-card {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #0d6efd;
    color: #fff;
    padding: 20px 28px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(13, 110, 253, 0.25);
    text-align: center;
}

.experience-card h2 {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
}

.experience-card span {
    font-size: 15px;
}

.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eef5ff;
    color: #0d6efd;
    font-weight: 600;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.about-title span {
    color: #0d6efd;
}

.about-text {
    color: #666;
    line-height: 1.9;
    font-size: 17px;
}

.about-feature {
    background: #f8f9fa;
    padding: 15px 18px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.about-feature i {
    color: #0d6efd;
    margin-right: 10px;
}

.about-feature:hover {
    background: #0d6efd;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.about-feature:hover i {
    color: #fff;
}

@media (max-width: 991px) {

    .about-title {
        font-size: 36px;
    }

    .about-image {
        height: 450px;
    }

    .experience-card {
        right: 10px;
        bottom: 10px;
        padding: 15px 20px;
    }
}
/*=========================
 WHY CHOOSE US
==========================*/

.why-section{
    background:#f8fbff;
}

.why-title{
    font-size:48px;
    font-weight:700;
    line-height:1.2;
}

.why-title span{
    color:#0d6efd;
}

.why-text{
    color:#666;
    line-height:1.9;
    font-size:17px;
}

.why-stat{
    background:#fff;
    padding:25px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.why-stat:hover{
    transform:translateY(-6px);
}

.why-stat h3{
    color:#0d6efd;
    font-weight:700;
    margin-bottom:8px;
}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:22px;

    height:100%;
    
    min-height:280px;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,110,253,.18);

}

.why-icon{

    width:70px;

    height:70px;

    background:#eef5ff;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:20px;

}

.why-icon i{

    color:#0d6efd;

    font-size:30px;

}

.why-card h4{

    font-weight:700;

    margin-bottom:12px;

}

.why-card p{

    color:#666;

    line-height:1.8;

}

@media(max-width:991px){

    .why-title{

        font-size:36px;

    }

}
.why-icon{
    transition:.4s;
}

.why-card:hover .why-icon{
    transform:rotate(10deg) scale(1.08);
}

/*=========================
 PORTFOLIO
==========================*/

.portfolio-section{
    background:#fff;
}

.portfolio-title{
    font-size:48px;
    font-weight:700;
}

.portfolio-title span{
    color:#0d6efd;
}

.portfolio-text{
    max-width:700px;
    color:#666;
    line-height:1.8;
}

.portfolio-card{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    height:350px;

}

.portfolio-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.portfolio-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.20)
    );

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    color:#fff;

    opacity:0;

    transition:.4s;

}

.portfolio-card:hover img{

    transform:scale(1.08);

}

.portfolio-card:hover .portfolio-overlay{

    opacity:1;

}

.portfolio-badge{

    display:inline-block;

    background:#0d6efd;

    padding:8px 16px;

    border-radius:50px;

    margin-bottom:15px;

    font-size:14px;

}

@media(max-width:991px){

.portfolio-title{

font-size:36px;

}

.portfolio-card{

height:280px;

}

}
/*=========================
 TESTIMONIALS
==========================*/

.testimonial-section{
    background:#f8fbff;
}

.testimonial-title{
    font-size:48px;
    font-weight:700;
}

.testimonial-title span{
    color:#0d6efd;
}

.testimonial-text{
    max-width:700px;
    color:#666;
    line-height:1.8;
}

.testimonial-card{

    position:relative;

    background:#fff;

    padding:35px;

    border-radius:24px;

    height:100%;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.quote-icon{

    position:absolute;

    top:20px;

    right:25px;

    font-size:55px;

    color:#0d6efd15;

}

.stars i{

    color:#ffc107;

    margin-right:3px;

}

.client-info{

    display:flex;

    align-items:center;

    gap:15px;

}

.client-info img{

    width:65px;

    height:65px;

    border-radius:50%;

    object-fit:cover;

}

.client-info h5{

    margin:0;

    font-weight:700;

}

.client-info span{

    color:#777;

    font-size:14px;

}

@media(max-width:991px){

.testimonial-title{

font-size:36px;

}

}
.testimonial-card{
    min-height:345px;
}
.testimonial-card:hover{

    border-color:#0d6efd;

}
/*=========================
 CONTACT
==========================*/

.contact-section{
    background:#f8fbff;
}

.contact-info,
.contact-form{
    background:#fff;
    border-radius:22px;
    padding:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    height:100%;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:20px;
    margin-bottom:30px;
}

.info-box:last-child{
    margin-bottom:0;
}

.info-box i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0d6efd;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.3s;
}

.info-box:hover i{
    transform:scale(1.1);
}

.info-box h5{
    font-weight:700;
    margin-bottom:5px;
}

.info-box p{
    color:#666;
    margin:0;
}

.contact-form .form-control{
    border-radius:12px;
    padding:14px 18px;
    border:1px solid #dee2e6;
}

.contact-form .form-control:focus{
    box-shadow:none;
    border-color:#0d6efd;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    padding:12px 35px;
}

@media(max-width:991px){

    .contact-info,
    .contact-form{
        padding:30px;
    }

}
.contact-info,
.contact-form{
    border:1px solid #eef2f7;
    box-shadow:0 15px 40px rgba(13,110,253,.08);
}
.contact-form button{
    min-width:220px;
    height:54px;
    font-weight:600;
}
.contact-info:hover,
.contact-form:hover{
    transform:translateY(-5px);
    transition:.3s ease;
}
.form-control:focus{
    border-color:#0d6efd;
    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);
}
/*=========================
 FOOTER
==========================*/

.footer-section{

    background:#0f172a;

    color:#fff;

    padding-top:70px;

}

.footer-logo{

    width:160px;

}

.footer-about{

    color:#cbd5e1;

    line-height:1.9;

}

.footer-section h5{

    margin-bottom:25px;

    font-weight:700;

}

.footer-links,
.footer-contact{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li,
.footer-contact li{

    margin-bottom:14px;

}

.footer-links a{

    color:#cbd5e1;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#0d6efd;

    padding-left:6px;

}

.footer-contact li{

    color:#cbd5e1;

}

.footer-contact i{

    color:#0d6efd;

    margin-right:10px;

}

.social-icons{

    display:flex;

    gap:12px;

    margin-top:25px;

}

.social-icons a{

    width:42px;

    height:42px;

    border-radius:50%;

    background:#1e293b;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.3s;

    text-decoration:none;

}

.social-icons a:hover{

    background:#0d6efd;

    transform:translateY(-4px);

}

.footer-bottom{

    margin-top:60px;

    border-top:1px solid rgba(255,255,255,.08);

    padding:22px 0;

    color:#cbd5e1;

    font-size:15px;

}
.footer-logo{
    width:180px;
    height:auto;
}
.footer-about{
    line-height:2;
    color:#cbd5e1;
}
.footer-section h5{
    color:#fff;
    font-size:22px;
    margin-bottom:28px;
}
.social-icons a:hover{
    box-shadow:0 10px 25px rgba(13,110,253,.35);
}


.blog-content{

    padding:25px;

}

.blog-content h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.blog-content p{
    color:#666;
    margin-bottom:18px;
    line-height:1.9;
    font-size:16px;
}

.blog-content a{

    color:#0d6efd;

    font-weight:600;

}


.blog-content img{
    max-width:100%;
    height:auto;
}

.blog-content iframe{
    max-width:100%;
}

.blog-content table{
    width:100%;
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5{
    margin-top:25px;
    margin-bottom:15px;
    font-weight:700;
}

.blog-content p{
    margin-bottom:18px;
    line-height:1.9;
}

.blog-content ul,
.blog-content ol{
    padding-left:25px;
    margin-bottom:20px;
}
.navbar-nav .nav-link {
    font-size: 21px;
    font-weight: 500;
}

.navbar-nav .nav-link.active {
    font-weight: 600;
}
.navbar-nav .dropdown-menu .dropdown-item {
    font-size: 17px;
}

/* =========================================
   SERVICE DETAIL PAGE
========================================= */

.service-detail-hero{
    background:#f5f9ff;
    padding-top:80px;
    padding-bottom:80px;
}

.service-detail-icon{
    width:65px;
    height:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef5ff;
    color:#0d6efd;
    border-radius:16px;
    font-size:30px;
}

.service-detail-hero h1{
    font-size:52px;
    line-height:1.15;
}

.service-detail-image{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 15px 40px rgba(13,110,253,0.10);
    text-align:center;
}

.service-detail-image img{
    max-height:420px;
    width:100%;
    object-fit:contain;
    border-radius:15px;
}

.service-detail-placeholder{
    height:400px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef5ff;
    border-radius:24px;
    color:#0d6efd;
    font-size:100px;
}

.service-detail-content{
    background:#fff;
}

.service-content-box{
    padding:30px 0;
}

.service-content-box h2{
    font-size:34px;
}

.service-description{
    color:#555;
    font-size:18px;
    line-height:1.9;
}

/* Detailed Description Headings */
.service-description h1,
.service-description h2,
.service-description h3,
.service-description h4{
    color:#1f2937;
    font-weight:700;
    margin-top:35px;
    margin-bottom:18px;
    line-height:1.3;
}

.service-description h2{
    font-size:32px;
}

.service-description h3{
    font-size:26px;
}

.service-description h4{
    font-size:22px;
}

/* Paragraphs */
.service-description p{
    margin-bottom:20px;
}

/* Lists */
.service-description ul,
.service-description ol{
    margin-bottom:25px;
    padding-left:30px;
}

.service-description li{
    margin-bottom:10px;
}

/* Links */
.service-description a{
    color:#0d6efd;
    text-decoration:none;
}

.service-description a:hover{
    text-decoration:underline;
}

/* Bold / Strong Text */
.service-description strong,
.service-description b{
    color:#1f2937;
}

/* Images inside description */
.service-description img{
    max-width:100%;
    height:auto;
    border-radius:12px;
    margin:20px 0;
}

/* Blockquote */
.service-description blockquote{
    border-left:4px solid #0d6efd;
    padding:15px 20px;
    margin:25px 0;
    background:#f5f9ff;
    border-radius:8px;
    color:#555;
}

.service-cta{
    background:#f5f9ff;
}

.service-cta-box{
    background:linear-gradient(135deg,#0d6efd,#003ea8);
    color:#fff;
    padding:55px 30px;
    border-radius:25px;
}

.service-cta-box p{
    color:#e8ecff;
}

@media(max-width:768px){

    .service-detail-hero{
        padding-top:50px;
        padding-bottom:50px;
    }

    .service-detail-hero h1{
        font-size:38px;
    }

    .service-detail-image{
        margin-top:20px;
    }

    .service-content-box h2{
        font-size:28px;
    }

}
.service-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card-link:hover {
    color: inherit;
}

/* =========================================
   WIDE WEBSITE LAYOUT
========================================= */

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}


/* Large Desktop */
@media (min-width: 1400px) {

    .container {
        max-width: 1440px;
    }

}


/* Extra Large Screens */
@media (min-width: 1600px) {

    .container {
        max-width: 1500px;
    }

}


/* Tablet */
@media (max-width: 991px) {

    .container {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

}


/* Mobile */
@media (max-width: 575px) {

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

}
/* =========================================
   INNER PAGE CONTAINER
========================================= */

.container.inner-page-container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
}

/* WhatsApp Header Contact */
.whatsapp-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 20px;
    white-space: nowrap;
}

.whatsapp-contact i {
    font-size: 24px;
    color: #25D366;
}

.whatsapp-contact:hover {
    color: #25D366;
}
/* =========================================
   ABOUT - OUR TEAM
========================================= */

.team-content {
    width: 100%;
    text-align: left;
    font-size: 17px;
    line-height: 1.8;
    color: #222;
}

.team-content p {
    margin: 0 0 18px;
}

.team-content p:last-child {
    margin-bottom: 0;
}

/* Hide empty paragraphs created by Quill */
.team-content p:empty {
    display: none;
}

.team-content p:has(> br:only-child) {
    display: none;
}
/* =========================================
   ABOUT - DIRECTOR MESSAGE
========================================= */

.director-message-box {
    width: 100%;
    padding: 45px 50px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

    text-align: left;
    font-size: 17px;
    line-height: 1.8;
    color: #222;
}

.director-message-box p {
    margin: 0 0 18px;
}

.director-message-box p:last-child {
    margin-bottom: 0;
}

/* Hide empty paragraphs created by Quill */
.director-message-box p:empty {
    display: none;
}

.director-message-box p:has(> br:only-child) {
    display: none;
}


/* Mobile */
@media (max-width: 767px) {

    .team-content {
        font-size: 16px;
    }

    .director-message-box {
        padding: 30px 25px;
        font-size: 16px;
    }

}
/*==================================================
        SERVICES LISTING PAGE - POLISH
        Only affects /services page
==================================================*/

.services-listing-page .service-card {
    padding: 40px 30px;
}

.services-listing-page .service-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    display: block;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.services-listing-page .service-card .service-icon {
    margin-bottom: 25px;
}

.services-listing-page .service-card h4 {
    text-align: center;
    min-height: 60px;
    margin-bottom: 18px;
}

.services-listing-page .service-card p {
    text-align: center;
    flex-grow: 1;
    margin-bottom: 20px;
}

.services-listing-page .service-card .btn {
    width: 100%;
    margin-top: auto;
}


/* Mobile */
@media (max-width: 576px) {

    .services-listing-page .service-card {
        padding: 35px 25px;
    }

    .services-listing-page .service-card img {
        width: 85px;
        height: 85px;
    }

    .services-listing-page .service-card h4 {
        min-height: auto;
    }
}
/*==================================================
    SERVICE DETAIL - FLOATING DESCRIPTION IMAGE
==================================================*/

.service-detail-content .service-description {
    font-size: 18px;
    line-height: 1.9;
}


/* Detailed Description Image */

.service-detail-content .service-description-image {
    width: 38%;
    max-width: 520px;
    height: auto;

    float: right;

    display: block;

    margin: 10px 0 30px 45px;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}


/* Clear Float */

.service-detail-content .service-description::after {
    content: "";
    display: table;
    clear: both;
}


/* Mobile */

@media (max-width: 767px) {

    .service-detail-content .service-description-image {
        width: 100%;
        max-width: 100%;

        float: none;

        margin: 25px auto 30px;
    }

}