/* =========================================================
   GATEWAY WEBS - FULL RESPONSIVE HEADER
   ========================================================= */

#site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #ffffff;
}

.gateway-header-container {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 25px;
}

.gateway-menu-header {
    width: 100%;
    min-height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   LOGO
   ========================================================= */

.gateway-logo {
    flex: 0 1 auto;
    min-width: 0;
}

.gateway-logo a {
    display: flex;
    align-items: center;
}

.gateway-logo-img {
    display: block;

    width: auto;
    height: auto;

    max-width: 430px;
    max-height: 82px;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAV
   ========================================================= */

.gateway-desktop-nav {
    margin-left: auto;
}

.gateway-nav-list {
    display: flex;
    align-items: center;

    margin: 0;
    padding: 0;

    list-style: none;

    gap: 2px;
}

.gateway-nav-list > li {
    position: relative;
    list-style: none;
}

.gateway-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 7px;

    padding: 15px 13px;

    color: #07104d;

    font-size: 16px;
    font-weight: 500;

    text-decoration: none;
    white-space: nowrap;

    transition: 0.3s ease;
}

.gateway-nav-list > li > a:hover {
    color: #f15a24;
}

.gateway-nav-list > li > a i {
    font-size: 10px;
    transition: 0.3s ease;
}

.gateway-dropdown:hover > a i {
    transform: rotate(180deg);
}


/* =========================================================
   DESKTOP DROPDOWN
   ========================================================= */

.gateway-submenu {
    position: absolute;

    top: 100%;
    left: 0;

    width: 245px;

    margin: 0;
    padding: 8px 0;

    background: #ffffff;

    list-style: none;

    box-shadow: 0 12px 35px rgba(0,0,0,0.15);

    border-radius: 0 0 8px 8px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.25s ease;

    z-index: 999999;
}

.gateway-dropdown:hover > .gateway-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gateway-submenu li {
    width: 100%;
    list-style: none;
}

.gateway-submenu li a {
    display: block;

    padding: 10px 18px;

    color: #222222;

    font-size: 14px;

    text-decoration: none;

    transition: all 0.25s ease;
}

.gateway-submenu li a:hover {
    color: #f15a24;
    background: #f6f6f6;
    padding-left: 25px;
}


/* =========================================================
   MOBILE BUTTON
   ========================================================= */

.gateway-mobile-button {
    display: none;
}

.gateway-hamburger {
    width: 45px;
    height: 45px;

    padding: 7px;

    border: 0;
    outline: none;

    background: transparent;

    cursor: pointer;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;
}

.gateway-hamburger span {
    display: block;

    width: 28px;
    height: 3px;

    background: #07104d;

    border-radius: 4px;

    transition: all 0.3s ease;
}


/* HAMBURGER -> X */

.gateway-hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.gateway-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.gateway-hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.gateway-mobile-nav {
    display: none;

    width: 100%;

    background: #ffffff;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    overflow: hidden;
}

.gateway-mobile-list {
    width: 100%;

    margin: 0;
    padding: 0;

    list-style: none;
}

.gateway-mobile-list > li {
    width: 100%;

    border-bottom: 1px solid #eeeeee;

    list-style: none;
}

.gateway-mobile-list > li > a,
.gateway-mobile-dropdown-btn {
    width: 100%;

    min-height: 52px;

    padding: 14px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    color: #111111;

    background: #ffffff;

    border: 0;

    text-align: left;

    font-size: 16px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition: 0.3s ease;
}

.gateway-mobile-list > li > a:hover,
.gateway-mobile-dropdown-btn:hover {
    color: #f15a24;
}


/* =========================================================
   MOBILE SUBMENU
   ========================================================= */

.gateway-mobile-submenu {
    display: none;

    width: 100%;

    margin: 0;
    padding: 0;

    background: #f7f7f7;

    list-style: none;
}

.gateway-mobile-dropdown.open .gateway-mobile-submenu {
    display: block;
}

.gateway-mobile-dropdown-btn i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.gateway-mobile-dropdown.open
.gateway-mobile-dropdown-btn i {
    transform: rotate(180deg);
}

.gateway-mobile-submenu li {
    border-top: 1px solid #e8e8e8;

    list-style: none;
}

.gateway-mobile-submenu li a {
    display: block;

    padding: 12px 20px 12px 35px;

    color: #333333;

    font-size: 14px;

    text-decoration: none;

    transition: 0.3s ease;
}

.gateway-mobile-submenu li a:hover {
    color: #f15a24;
    padding-left: 42px;
}


/* =========================================================
   LAPTOP + TABLET
   ========================================================= */

@media (max-width: 1199px) {

    .gateway-header-container {
        padding: 0 20px;
    }

    .gateway-menu-header {
        min-height: 78px;
    }

    .gateway-logo-img {
        max-width: 360px;
        max-height: 68px;
    }

    /* Hide desktop menu */
    .gateway-desktop-nav {
        display: none;
    }

    /* Show hamburger */
    .gateway-mobile-button {
        display: block;

        flex: 0 0 auto;
    }

    /* Mobile navigation */
    .gateway-mobile-nav {
        display: block;

        max-height: 0;

        opacity: 0;

        visibility: hidden;

        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .gateway-mobile-nav.active {
        max-height: calc(100vh - 78px);

        opacity: 1;

        visibility: visible;

        overflow-y: auto;
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 767px) {

    .gateway-header-container {
        padding: 0 15px;
    }

    .gateway-menu-header {
        min-height: 70px;

        gap: 10px;
    }

    /* LEFT LOGO */
    .gateway-logo {
        flex: 1 1 auto;

        min-width: 0;
    }

    .gateway-logo-img {
        max-width: 270px;
        max-height: 60px;

        width: auto;
    }

    /* RIGHT HAMBURGER */
    .gateway-mobile-button {
        flex: 0 0 auto;
    }

    .gateway-hamburger {
        width: 44px;
        height: 44px;
    }

    .gateway-hamburger span {
        width: 27px;
    }

    .gateway-mobile-list > li > a,
    .gateway-mobile-dropdown-btn {
        min-height: 50px;

        padding: 13px 18px;

        font-size: 15px;
    }

    .gateway-mobile-submenu li a {
        font-size: 14px;

        padding: 11px 18px 11px 32px;
    }

    .gateway-mobile-nav.active {
        max-height: calc(100vh - 70px);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .gateway-header-container {
        padding: 0 12px;
    }

    .gateway-menu-header {
        min-height: 65px;
    }

    /* SMALLER LOGO */
    .gateway-logo-img {
        max-width: 215px;
        max-height: 52px;
    }

    .gateway-hamburger {
        width: 42px;
        height: 42px;
    }

    .gateway-hamburger span {
        width: 25px;
        height: 3px;
    }

    .gateway-mobile-nav.active {
        max-height: calc(100vh - 65px);
    }

}


/* =========================================================
   VERY SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .gateway-header-container {
        padding: 0 8px;
    }

    .gateway-menu-header {
        min-height: 60px;
    }

    .gateway-logo-img {
        max-width: 180px;
        max-height: 48px;
    }

    .gateway-hamburger {
        width: 40px;
        height: 40px;
    }

    .gateway-hamburger span {
        width: 24px;
    }

    .gateway-mobile-nav.active {
        max-height: calc(100vh - 60px);
    }

}


/* =========================================================
   PREVENT HORIZONTAL SCROLL
   ========================================================= */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
/* =====================================================
   GATEWAY WEBS MOBILE MENU - FINAL OVERRIDE
   ===================================================== */

@media (max-width: 1199px) {

    /* Hide old Niwax mobile controls */
    .mobile-menu2,
    .mob-nav2 {
        display: none !important;
    }

    /* Remove old Niwax menu */
    #main-nav {
        display: none !important;
    }


    /* HEADER */
    .main-header .container,
    .gateway-header-container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }


    .main-header .menu-header {
        width: 100% !important;
        height: 70px !important;
        min-height: 70px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;

        padding: 0 !important;
        margin: 0 !important;
    }


    /* ===============================================
       LOGO - LEFT
       =============================================== */

    .main-header .dsk-logo {
        display: flex !important;

        align-items: center !important;

        flex: 1 1 auto !important;

        min-width: 0 !important;

        margin: 0 !important;
    }

    .main-header .dsk-logo a {
        display: flex !important;
        align-items: center !important;

        max-width: 100% !important;
    }

    .main-header .dsk-logo img {
        width: auto !important;
        height: auto !important;

        max-width: 280px !important;
        max-height: 58px !important;

        object-fit: contain !important;
    }


    /* Hide white logo on white header */
    .main-header .mega-white-logo {
        display: none !important;
    }

    .main-header .mega-darks-logo {
        display: block !important;
    }


    /* ===============================================
       HIDE DESKTOP MENU
       =============================================== */

    .main-header .custom-nav {
        display: none !important;
    }


    /* ===============================================
       HAMBURGER - RIGHT
       =============================================== */

    .gateway-mobile-button {
        display: flex !important;

        align-items: center !important;
        justify-content: center !important;

        width: 48px !important;
        min-width: 48px !important;

        margin-left: auto !important;
    }

    .gateway-hamburger {
        display: flex !important;

        width: 44px !important;
        height: 44px !important;

        padding: 7px !important;
        margin: 0 !important;

        border: 0 !important;
        outline: none !important;

        background: transparent !important;

        cursor: pointer !important;

        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 5px !important;
    }

    .gateway-hamburger span {
        display: block !important;

        width: 27px !important;
        height: 3px !important;

        background: #07104d !important;

        border-radius: 3px !important;

        transition: all .3s ease !important;
    }


    /* ===============================================
       HAMBURGER -> X
       =============================================== */

    .gateway-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }

    .gateway-hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .gateway-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }


    /* ===============================================
       MOBILE MENU
       =============================================== */

    #gatewayMobileNav {
        display: block !important;

        position: absolute !important;

        top: 70px !important;
        left: 0 !important;
        right: 0 !important;

        width: 100% !important;

        max-height: 0 !important;

        overflow: hidden !important;

        background: #ffffff !important;

        opacity: 0 !important;
        visibility: hidden !important;

        box-shadow: 0 10px 30px rgba(0,0,0,.15) !important;

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease !important;

        z-index: 999999 !important;
    }


    #gatewayMobileNav.active {
        max-height: calc(100vh - 70px) !important;

        overflow-y: auto !important;

        opacity: 1 !important;
        visibility: visible !important;
    }


    /* ===============================================
       MOBILE LIST
       =============================================== */

    #gatewayMobileNav .gateway-mobile-list {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        list-style: none !important;

        background: #ffffff !important;
    }


    #gatewayMobileNav .gateway-mobile-list > li {
        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-bottom: 1px solid #eeeeee !important;

        list-style: none !important;
    }


    /* ===============================================
       MAIN LINKS
       =============================================== */

    #gatewayMobileNav .gateway-mobile-list > li > a,
    #gatewayMobileNav .gateway-mobile-dropdown-btn {

        display: flex !important;

        width: 100% !important;

        min-height: 52px !important;

        padding: 14px 20px !important;

        align-items: center !important;
        justify-content: space-between !important;

        color: #111111 !important;

        background: #ffffff !important;

        border: 0 !important;

        font-size: 16px !important;
        font-weight: 600 !important;

        text-decoration: none !important;

        text-align: left !important;

        box-sizing: border-box !important;

        cursor: pointer !important;
    }


    #gatewayMobileNav .gateway-mobile-list > li > a:hover,
    #gatewayMobileNav .gateway-mobile-dropdown-btn:hover {
        color: #f15a24 !important;
    }


    /* ===============================================
       SUBMENU
       =============================================== */

    #gatewayMobileNav .gateway-mobile-submenu {

        display: none !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        background: #f7f7f7 !important;

        list-style: none !important;
    }


    #gatewayMobileNav
    .gateway-mobile-dropdown.open
    .gateway-mobile-submenu {

        display: block !important;
    }


    #gatewayMobileNav .gateway-mobile-submenu li {

        display: block !important;

        width: 100% !important;

        margin: 0 !important;
        padding: 0 !important;

        border-top: 1px solid #e5e5e5 !important;

        list-style: none !important;
    }


    #gatewayMobileNav .gateway-mobile-submenu li a {

        display: block !important;

        width: 100% !important;

        padding: 12px 20px 12px 35px !important;

        color: #333333 !important;

        background: #f7f7f7 !important;

        font-size: 14px !important;

        text-decoration: none !important;

        box-sizing: border-box !important;
    }


    /* ===============================================
       ARROW
       =============================================== */

    .gateway-mobile-dropdown-btn i {
        transition: transform .3s ease !important;
    }

    .gateway-mobile-dropdown.open
    .gateway-mobile-dropdown-btn i {

        transform: rotate(180deg) !important;
    }

}


/* =====================================================
   MOBILE
   ===================================================== */

@media (max-width: 767px) {

    .main-header .menu-header {
        height: 65px !important;
        min-height: 65px !important;
    }

    .main-header .dsk-logo img {
        max-width: 220px !important;
        max-height: 52px !important;
    }

    #gatewayMobileNav {
        top: 65px !important;
    }

    #gatewayMobileNav.active {
        max-height: calc(100vh - 65px) !important;
    }

}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

    .main-header .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .main-header .dsk-logo img {
        max-width: 195px !important;
        max-height: 48px !important;
    }

    .gateway-mobile-button {
        width: 42px !important;
        min-width: 42px !important;
    }

    .gateway-hamburger {
        width: 40px !important;
        height: 40px !important;
    }

}


/* =====================================================
   EXTRA SMALL
   ===================================================== */

@media (max-width: 360px) {

    .main-header .dsk-logo img {
        max-width: 175px !important;
        max-height: 45px !important;
    }

    .gateway-hamburger {
        width: 38px !important;
        height: 38px !important;
    }

    .gateway-hamburger span {
        width: 24px !important;
    }

}@media (max-width: 1199px) {

    #main-nav {
        display: none !important;
    }

    #main-nav::before,
    #main-nav::after {
        display: none !important;
        content: none !important;
    }

    .main-header #main-nav {
        display: none !important;
    }

    .main-header .mobile-menu2 {
        display: none !important;
    }

}
/* =========================================================
   GATEWAY WEBS - MOBILE TOGGLER
   ========================================================= */

.gateway-mobile-button {
    display: none;
}


/* =========================================================
   TABLET + MOBILE
   ========================================================= */

@media (max-width: 1199px) {

    /* Hide old Niwax mobile menu */
    .mobile-menu2 {
        display: none !important;
    }

    /* Hide desktop navigation */
    .custom-nav {
        display: none !important;
    }

    /* Header */
    .main-header .menu-header {
        width: 100%;
        min-height: 70px;

        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* =========================================
       LOGO LEFT
       ========================================= */

    .main-header .dsk-logo {
        display: flex !important;
        align-items: center;

        flex: 1;
        min-width: 0;
    }

    .main-header .dsk-logo a {
        display: block;
    }

    .main-header .dsk-logo img {
        display: block;

        width: auto;
        height: auto;

        max-width: 280px;
        max-height: 58px;

        object-fit: contain;
    }

    /* Use normal logo */
    .main-header .mega-white-logo {
        display: none !important;
    }

    .main-header .mega-darks-logo {
        display: block !important;
    }


    /* =========================================
       MOBILE BUTTON RIGHT
       ========================================= */

    .gateway-mobile-button {
        display: flex !important;

        align-items: center;
        justify-content: center;

        width: 50px;
        min-width: 50px;

        margin-left: auto;
    }


    .gateway-hamburger {
        position: relative;

        display: flex !important;

        width: 46px;
        height: 46px;

        padding: 8px;
        margin: 0;

        border: none;
        outline: none;

        background: transparent;

        cursor: pointer;

        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 5px;

        z-index: 1000001;
    }


    .gateway-hamburger span {
        display: block;

        width: 28px;
        height: 3px;

        background: #07104d;

        border-radius: 3px;

        transition: all .3s ease;
    }


    /* =========================================
       HAMBURGER -> X
       ========================================= */

    .gateway-hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .gateway-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .gateway-hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }


    /* =========================================
       MOBILE MENU
       ========================================= */

    #gatewayMobileNav {
        position: absolute !important;

        top: 70px !important;
        left: 0 !important;

        width: 100% !important;

        max-height: 0;

        overflow: hidden;

        background: #ffffff;

        opacity: 0;
        visibility: hidden;

        box-shadow: 0 10px 30px rgba(0,0,0,.15);

        transition:
            max-height .35s ease,
            opacity .25s ease,
            visibility .25s ease;

        z-index: 999999;
    }


    #gatewayMobileNav.active {
        max-height: calc(100vh - 70px);

        overflow-y: auto;

        opacity: 1;
        visibility: visible;
    }


    /* =========================================
       MOBILE MENU LIST
       ========================================= */

    #gatewayMobileNav .gateway-mobile-list {

        display: block;

        width: 100%;

        margin: 0;
        padding: 0;

        list-style: none;

        background: #ffffff;
    }


    #gatewayMobileNav .gateway-mobile-list > li {

        display: block;

        width: 100%;

        margin: 0;
        padding: 0;

        border-bottom: 1px solid #eeeeee;
    }


    /* =========================================
       LINKS
       ========================================= */

    #gatewayMobileNav .gateway-mobile-list > li > a,
    #gatewayMobileNav .gateway-mobile-dropdown-btn {

        display: flex;

        width: 100%;

        min-height: 52px;

        align-items: center;
        justify-content: space-between;

        padding: 14px 20px;

        color: #111111;

        background: #ffffff;

        border: none;

        font-size: 16px;
        font-weight: 600;

        text-align: left;

        text-decoration: none;

        box-sizing: border-box;

        cursor: pointer;
    }


    #gatewayMobileNav .gateway-mobile-list > li > a:hover,
    #gatewayMobileNav .gateway-mobile-dropdown-btn:hover {

        color: #f15a24;
    }


    /* =========================================
       SUBMENU
       ========================================= */

    #gatewayMobileNav .gateway-mobile-submenu {

        display: none;

        width: 100%;

        margin: 0;
        padding: 0;

        background: #f7f7f7;

        list-style: none;
    }


    #gatewayMobileNav
    .gateway-mobile-dropdown.open
    .gateway-mobile-submenu {

        display: block;
    }


    #gatewayMobileNav .gateway-mobile-submenu li {

        width: 100%;

        border-top: 1px solid #e5e5e5;
    }


    #gatewayMobileNav .gateway-mobile-submenu li a {

        display: block;

        width: 100%;

        padding: 12px 20px 12px 35px;

        color: #333333;

        background: #f7f7f7;

        font-size: 14px;

        text-decoration: none;

        box-sizing: border-box;
    }


    /* Arrow */
    .gateway-mobile-dropdown-btn i {
        transition: transform .3s ease;
    }

    .gateway-mobile-dropdown.open
    .gateway-mobile-dropdown-btn i {

        transform: rotate(180deg);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .main-header .menu-header {

        min-height: 65px;
        height: 65px;
    }


    .main-header .dsk-logo img {

        max-width: 220px;
        max-height: 52px;
    }


    #gatewayMobileNav {

        top: 65px !important;
    }


    #gatewayMobileNav.active {

        max-height: calc(100vh - 65px);
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .main-header .container {

        padding-left: 10px !important;
        padding-right: 10px !important;
    }


    .main-header .dsk-logo img {

        max-width: 195px;
        max-height: 48px;
    }


    .gateway-mobile-button {

        width: 45px;
        min-width: 45px;
    }


    .gateway-hamburger {

        width: 42px;
        height: 42px;
    }


    .gateway-hamburger span {

        width: 26px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE
   ========================================================= */

@media (max-width: 360px) {

    .main-header .dsk-logo img {

        max-width: 175px;
    }

}
/*=======================================
 Services Section
=======================================*/
/* Service Cards - Equal Image Size */
.isotope_item {
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

/* Same image area for every card */
.isotope_item .item-image {
    width: 100%;
    height: 241px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    background: #f5f8fc;
}

/* Make every image exactly the same visual size */
.isotope_item .item-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

/* Smooth hover effect */
.isotope_item:hover .item-image img {
    transform: scale(1.05);
}

/* Service title area */
.isotope_item .item-info {
    min-height: 100px;
    padding: 25px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.isotope_item .item-info h4 {
    margin: 0;
    line-height: 1.4;
}

.isotope_item .item-info h4 a {
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .isotope_item .item-image {
        height: 280px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .isotope_item .item-image {
        height: 230px;
    }

    .isotope_item .item-info {
        min-height: 90px;
        padding: 20px 15px;
    }
}

.cta-btn{
    text-align:center;
}

.free-cta-title{
    background: linear-gradient(135deg,#0b5ed7,#6f42c1);
    padding:40px 30px;
    border-radius:18px;
    color:#fff;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.free-cta-title p{
    font-size:32px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.4;
}

.free-cta-title span{
    color:#ffd43b;
}

.niwax-btn2{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#0b5ed7;
    padding:15px 35px;
    border-radius:50px;
    font-weight:700;
    text-decoration:none;
    transition:.4s;
}

.niwax-btn2:hover{
    transform:translateY(-5px);
    background:#ffd43b;
    color:#000;
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.niwax-btn2 .fa-icon{
    transition:.4s;
}

.niwax-btn2:hover .fa-icon{
    transform:translateX(6px);
}

@media(max-width:768px){
    .free-cta-title{
        padding:30px 20px;
    }

    .free-cta-title p{
        font-size:24px;
    }
}
.nav-list {
    display: flex;
    align-items: center;
    gap: 0px;
    list-style: none;
    margin: 23px;
    padding: 0;
}

.nav-list li {
    position: relative;
}

.nav-list li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 18px 15px;
    color: #222;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.nav-list li:hover > a {
    color: #ff6b00;
}

/* Dropdown */

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 270px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: .35s;
    z-index: 999;
    padding: 10px 0;
}

.dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    width: 100%;
}

.submenu li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    border-left: 3px solid transparent;
    transition: .3s;
}

.submenu li a:hover {
    background: #f7f7f7;
    color: #ff6b00;
    border-left-color: #ff6b00;
    padding-left: 28px;
}

.dropdown > a i {
    font-size: 11px;
    transition: .3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}
/* Portfolio Card */
.isotope_item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all .3s ease;
    height: 100%;
}

.isotope_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

/* Image Container */
.item-image {
    width: 100%;
    height: 260px;              /* Same height for all images */
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
    overflow: hidden;
    padding: 10px;
}

/* Show complete image */
.item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;        /* Displays the complete image */
    transition: transform .4s ease;
}

.isotope_item:hover .item-image img {
    transform: scale(1.05);
}

/* Card Content */
.item-info {
    padding: 18px;
    text-align: center;
}

.item-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    min-height: 55px;
}
.item-image{
    width:100%;
    height:auto;
    overflow:hidden;
}

.item-image img{
    width:100%;
    height:auto;
    display:block;
}
.isotope_item p
{
    font-weight: 600;
    margin: 0 0 10px 0;
}
/* Service Card */
.service-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* Image Container */
.service-image{
    width:100%;
    height:260px;
    overflow:hidden;
    background:#f8f8f8;
}

/* Image */
.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;   /* Same size for all images */
    display:block;
    transition:.5s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

/* Content */
.item-info{
    padding:20px;
    text-align:center;
}

.item-info h4{
    font-size:22px;
    font-weight:600;
    line-height:1.5;
    margin:0;
}

.item-info h4 a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.item-info h4 a:hover{
    color:#ff6b00;
}

/* Responsive */
@media (max-width:991px){
    .service-image{
        height:220px;
    }
}

@media (max-width:767px){
    .service-image{
        height:200px;
    }

    .item-info h4{
        font-size:18px;
    }
}
/* ===========================
   Gateway Webs FAQ Section
=========================== */

.faq-section{
    background:#f8fbff;
    position:relative;
    overflow:hidden;
}

.faq-section::before{
    content:'';
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(76,110,245,.08);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.faq-section::after{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,106,0,.08);
    border-radius:50%;
    bottom:-100px;
    right:-100px;
}

.faq-section .common-heading span{
    color:#ff6b00;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.faq-section .common-heading h2{
    font-size:42px;
    font-weight:700;
    margin:15px 0;
}

.faq-section .common-heading p{
    color:#666;
    max-width:800px;
    margin:auto;
}

/* Accordion */

#faqAccordion .card{
    border:none;
    border-radius:15px;
    margin-bottom:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    animation:fadeUp .7s ease both;
}

#faqAccordion .card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

#faqAccordion .card-header{
    background:#fff;
    padding:0;
    border:none;
}

#faqAccordion .btn{
    width:100%;
    text-align:left;
    padding:22px 65px 22px 25px;
    font-size:19px;
    font-weight:600;
    color:#222;
    text-decoration:none;
    position:relative;
    transition:.3s;
}

#faqAccordion .btn:hover{
    color:#ff6b00;
}

/* Plus Icon */

#faqAccordion .btn::after{
    content:"+";
    position:absolute;
    right:25px;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    line-height:34px;
    text-align:center;
    border-radius:50%;
    background:#ff6b00;
    color:#fff;
    font-size:22px;
    transition:.35s;
}

#faqAccordion .btn:not(.collapsed)::after{
    content:"−";
    transform:translateY(-50%) rotate(180deg);
    background:#4c6ef5;
}

#faqAccordion .collapse.show .card-body{
    animation:fadeIn .4s ease;
}

.card-body{
    padding:0 25px 25px;
    font-size:16px;
    line-height:30px;
    color:#666;
}

/* Active Card */

#faqAccordion .card:has(.collapse.show){
    border-left:5px solid #ff6b00;
}

/* Animation */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeIn{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}

/* Responsive */

@media(max-width:991px){

.faq-section .common-heading h2{
    font-size:34px;
}

#faqAccordion .btn{
    font-size:17px;
}

}

@media(max-width:767px){

.faq-section .common-heading h2{
    font-size:28px;
}

#faqAccordion .btn{
    font-size:16px;
    padding:18px 55px 18px 18px;
}

.card-body{
    padding:0 18px 20px;
    line-height:28px;
}

}
/* =========================================
   Gateway Webs - Location Cards
========================================= */

.office-locations {
    position: relative;
    overflow: hidden;
}

.gateway-location-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.4s ease;
}

.gateway-location-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.13);
}


/* Image */

.gateway-location-card .landscp {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    background: #f3f6fa;
}

.gateway-location-card .landscp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.gateway-location-card:hover .landscp img {
    transform: scale(1.08);
}


/* Image Overlay */

.location-overlay {
    position: absolute;
    right: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.location-overlay i {
    font-size: 20px;
}

.gateway-location-card:hover .location-overlay {
    transform: scale(1.1);
}


/* Content */

.gateway-location-card .info-text-div {
    padding: 28px 25px 30px;
}


/* Office label */

.location-label {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;

    margin-bottom: 10px;
}

.location-label i {
    font-size: 13px;
}


/* Heading */

.gateway-location-card h4 {
    margin: 0 0 14px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
}

.gateway-location-card h4 a {
    text-decoration: none;
}


/* Address */

.gateway-location-card .office-address {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.7;
}


/* Contact */

.gateway-contact-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 15px;
}

.gateway-contact-list li {
    margin-bottom: 11px;
}

.gateway-contact-list li:last-child {
    margin-bottom: 0;
}

.gateway-contact-list li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    text-decoration: none;

    font-size: 14px;
    line-height: 1.5;

    transition: all 0.3s ease;
}

.gateway-contact-list li a i {
    width: 20px;
    min-width: 20px;
    margin-top: 3px;
    font-size: 14px;
}

.gateway-contact-list li a:hover {
    transform: translateX(4px);
}


/* Tablet */

@media (max-width: 991px) {

    .gateway-location-card .landscp {
        height: 220px;
    }

    .gateway-location-card .info-text-div {
        padding: 25px 22px;
    }

}


/* Mobile */

@media (max-width: 575px) {

    .gateway-location-card {
        border-radius: 15px;
    }

    .gateway-location-card .landscp {
        height: 210px;
    }

    .gateway-location-card .info-text-div {
        padding: 23px 20px 25px;
    }

    .gateway-location-card h4 {
        font-size: 21px;
    }

    .gateway-location-card .office-address {
        font-size: 14px;
    }

}
/* ==========================================
   Gateway Webs Portfolio Cards
   Unique classes - no template conflicts
========================================== */

.gw-portfolio-card {
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.gw-portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);
}


/* Image container */

.gw-portfolio-image {
    width: 100%;
    height: 300px;
    background: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


/* Full image */

.gw-portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}


/* Hover */

.gw-portfolio-card:hover .gw-portfolio-image img {
    transform: scale(1.04);
}


/* Content */

.gw-portfolio-info {
    min-height: 105px;
    padding: 20px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gw-portfolio-info h4 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.4;
}

.gw-portfolio-info h4 a {
    text-decoration: none;
}

.gw-portfolio-info p {
    margin: 0;
    font-size: 14px;
}


/* Tablet */

@media (max-width: 991px) {

    .gw-portfolio-image {
        height: 280px;
    }

}


/* Mobile */

@media (max-width: 767px) {

    .gw-portfolio-image {
        height: 250px;
    }

    .gw-portfolio-info {
        min-height: 95px;
        padding: 18px 12px;
    }

    .gw-portfolio-info h4 {
        font-size: 18px;
    }

}
 /* ==================================================
   GATEWAY WEBS - PORTFOLIO GRID
================================================== */

.gw-portfolio-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
   
    align-items: stretch;
}


/* Portfolio Column */

.gw-portfolio-col {
    width: 100%;
    min-width: 0;
    display: flex;
}


/* Portfolio Card */

.gw-portfolio-box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;

    background: #ffffff;

    border-radius: 16px;
    overflow: hidden;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

    position: relative;
}


/* Card Hover */

.gw-portfolio-box:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.14);
}


/* ==================================================
   IMAGE
================================================== */

.gw-portfolio-img {
    width: 100%;
    height: 215px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f8fc;

    overflow: hidden;

    position: relative;
}


/* Image */

.gw-portfolio-img img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
    object-position: center;

    transition: transform 0.5s ease;
}


/* Image Hover */

.gw-portfolio-box:hover .gw-portfolio-img img {
    transform: scale(1.04);
}


/* ==================================================
   CONTENT
================================================== */

.gw-portfolio-content {
    flex: 1;

    min-height: 115px;

    padding: 22px 18px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;
}


/* Title */

.gw-portfolio-content h4 {
    margin: 0 0 8px;

    font-size: 20px;
    line-height: 1.4;

    font-weight: 700;
}


.gw-portfolio-content h4 a {
    text-decoration: none;

    transition: color 0.3s ease;
}


/* Location */

.gw-portfolio-content p {
    margin: 0;

    font-size: 15px;

    line-height: 1.5;

    color: #777;
}


/* ==================================================
   HOVER EFFECT
================================================== */

.gw-portfolio-box::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 3px;

    transition: width 0.4s ease;
}


.gw-portfolio-box:hover::after {
    width: 100%;
}


/* ==================================================
   TABLET
================================================== */

@media (max-width: 991px) {

    .gw-portfolio-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 25px;
    }

    .gw-portfolio-img {
        height: 260px;
    }

}


/* ==================================================
   MOBILE
================================================== */

@media (max-width: 575px) {

    .gw-portfolio-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gw-portfolio-img {
        height: 240px;
    }

    .gw-portfolio-content {
        min-height: 100px;
        padding: 20px 15px;
    }

    .gw-portfolio-content h4 {
        font-size: 18px;
    }

}
.gateway-mission-card {
    height: 100%;
    padding: 35px 30px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.gateway-mission-card:hover {
    transform: translateY(-8px);
}

.gateway-mission-card .card-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.gateway-mission-card h3 {
    margin-bottom: 0;
    font-size: 26px;
}

.gateway-mission-card p {
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .gateway-mission-card {
        padding: 28px 22px;
    }

    .gateway-mission-card h3 {
        font-size: 23px;
    }
}
.gateway-why-card {
    height: 100%;
    min-height: 300px;
    padding: 30px 22px;
    border-radius: 15px;
    background: #fff;
    transition: all 0.4s ease;
}

.gateway-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.10);
}

.gateway-why-card .s-card-icon {
    margin-bottom: 20px;
}

.gateway-why-card .s-card-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.gateway-why-card h4 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.gateway-why-card p {
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 575px) {
    .gateway-why-card {
        min-height: auto;
        padding: 25px 20px;
    }
}
/* Gateway Webs Office Cards */

.our-office .office-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    transition: all 0.4s ease;
}

.our-office .office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}


/* Equal image size */

.our-office .office-card .landscp {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.our-office .office-card .landscp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.our-office .office-card:hover .landscp img {
    transform: scale(1.06);
}


/* Content */

.our-office .office-card .info-text-div {
    min-height: 280px;
    padding: 25px 22px;
}

.our-office .office-card .info-text-div h4 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 8px;
}

.our-office .office-card .info-text-div h6 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.our-office .office-card .info-text-div p {
    font-size: 14px;
    line-height: 1.7;
}


/* Contact details */

.our-office .office-card .-address-list li {
    margin-bottom: 10px;
}

.our-office .office-card .-address-list li a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.our-office .office-card .-address-list li i {
    margin-top: 4px;
    min-width: 18px;
}


/* Mobile */

@media (max-width: 767px) {

    .our-office .office-card .landscp {
        height: 210px;
    }

    .our-office .office-card .info-text-div {
        min-height: auto;
        padding: 22px 20px;
    }

    .our-office .office-card .info-text-div h4 {
        font-size: 20px;
    }

}
/* =========================================
   Gateway Webs Footer
========================================= */

.gateway-footer-row {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    padding: 50px 0 35px;
}


/* Footer Column */

.gateway-footer-col {
    width: 100%;
}


/* Footer Content */

.gateway-footer-block {
    height: 100%;
}

.gateway-footer-block h4 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.gateway-footer-block h5 {
    margin-bottom: 22px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Company Description */

.gateway-footer-block p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.gateway-footer-desc {
    opacity: 0.85;
}


/* =========================================
   QUICK LINKS
========================================= */

.gateway-footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.gateway-footer-links li {
    margin-bottom: 12px;
}

.gateway-footer-links li a {
    position: relative;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.gateway-footer-links li a:hover {
    padding-left: 7px;
}


/* =========================================
   CONTACT
========================================= */

.gateway-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gateway-contact a {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    text-decoration: none;

    font-size: 15px;
    line-height: 1.5;

    transition: all 0.3s ease;
}

.gateway-contact a i {
    width: 20px;
    min-width: 20px;
    margin-top: 3px;
}

.gateway-contact a:hover {
    transform: translateX(5px);
}


/* =========================================
   SOCIAL MEDIA
========================================= */

.gateway-social-title {
    margin-top: 32px;
}

.gateway-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gateway-social-icons a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;

    text-decoration: none;

    transition: all 0.35s ease;
}

.gateway-social-icons a:hover {
    transform: translateY(-5px);
}

.gateway-social-icons i {
    font-size: 16px;
}


/* =========================================
   COPYRIGHT
========================================= */

.gateway-footer-bottom {
    width: 100%;
    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.12);

    text-align: center;
}

.gateway-footer-bottom p {
    margin: 0;
    font-size: 14px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .gateway-footer-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .gateway-footer-col:last-child {
        grid-column: 1 / -1;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575px) {

    .gateway-footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px 0 25px;
    }

    .gateway-footer-col:last-child {
        grid-column: auto;
    }

    .gateway-footer-block h4 {
        font-size: 21px;
    }

    .gateway-footer-block h5 {
        font-size: 15px;
    }

    .gateway-social-icons a {
        width: 40px;
        height: 40px;
    }

}
.common-heading .text-effect {
    display: inline-block;
    position: relative;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
}

.common-heading .text-effect::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    margin: 12px auto 0;
    border-radius: 10px;
    background: currentColor;
}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-hero {
    overflow: hidden;
}

.contact-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-hero .bread-title h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
}

.contact-hero .bread-title h1 span {
    display: block;
}

.contact-banner-images {
    position: relative;
    min-height: 500px;
    padding: 40px;
}

.contact-img {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.contact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.contact-img:hover img {
    transform: scale(1.08);
}

.contact-img.img-one {
    width: 65%;
    height: 350px;
    right: 0;
    top: 30px;
}

.contact-img.img-two {
    width: 55%;
    height: 280px;
    left: 0;
    bottom: 10px;
    z-index: 2;
}

.floating-contact-card {
    position: absolute;
    right: 20px;
    bottom: 25px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.floating-contact-card span {
    display: block;
    font-size: 13px;
    color: #777;
}

.floating-contact-card strong {
    display: block;
    font-size: 17px;
}

.floating-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f2f2;
    font-size: 18px;
}


/* =========================================
   CONTACT INFO CARDS
========================================= */

.contact-info-card {
    height: 100%;
    padding: 35px 25px;
    text-align: center;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
    transition: all 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.contact-card-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    background: #f5f5f5;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    transform: rotateY(360deg);
}

.contact-info-card h3 {
    margin-bottom: 10px;
}

.contact-info-card p {
    color: #777;
    margin-bottom: 8px;
}

.contact-info-card a,
.contact-info-card span {
    font-weight: 600;
    text-decoration: none;
}


/* =========================================
   CONTACT FORM
========================================= */

.contact-form-box {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.form-header {
    margin-bottom: 25px;
}

.form-header span {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.form-header h3 {
    margin: 8px 0;
    font-size: 30px;
}

.form-header p {
    color: #777;
}

.contact-form-box .form-group {
    margin-bottom: 20px;
}

.contact-form-box .form-control {
    width: 100%;
    min-height: 52px;
    padding: 12px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form-box textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.contact-form-box .form-control:focus {
    border-color: #999;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
    transform: translateY(-2px);
}


/* =========================================
   BENEFITS
========================================= */

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.benefit-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

.benefit-item h4 {
    margin-bottom: 5px;
}

.benefit-item p {
    color: #777;
    margin: 0;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .contact-hero .bread-title h1 {
        font-size: 38px;
    }

    .contact-banner-images {
        min-height: 450px;
        margin-top: 40px;
    }

    .contact-img.img-one {
        width: 70%;
    }

    .contact-img.img-two {
        width: 60%;
    }
}

@media (max-width: 767px) {

    .contact-hero .bread-title h1 {
        font-size: 32px;
    }

    .contact-banner-images {
        min-height: 350px;
        padding: 20px;
    }

    .contact-img.img-one {
        width: 75%;
        height: 240px;
    }

    .contact-img.img-two {
        width: 65%;
        height: 190px;
    }

    .floating-contact-card {
        right: 5px;
        bottom: 5px;
        padding: 10px 14px;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .form-header h3 {
        font-size: 25px;
    }
}
/* =========================================================
   GATEWAY WEBS - CONTACT PAGE
========================================================= */

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 110px 0 100px;
    background: linear-gradient(120deg, #fff3f7 0%, #eefaff 50%, #e5fff9 100%);
}

/* Decorative background circles */
.contact-hero::before,
.contact-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatingShape 6s ease-in-out infinite;
}

.contact-hero::before {
    width: 150px;
    height: 150px;
    background: rgba(255, 77, 146, 0.08);
    top: 40px;
    left: -50px;
}

.contact-hero::after {
    width: 180px;
    height: 180px;
    background: rgba(49, 209, 255, 0.10);
    bottom: -70px;
    right: -50px;
}

@keyframes floatingShape {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(8deg);
    }
}


/* Breadcrumb */
.contact-hero .bread-menu {
    margin-bottom: 15px;
}

.contact-hero .bread-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-hero .bread-menu li {
    list-style: none;
}

.contact-hero .bread-menu li a {
    color: #606b92;
    font-size: 14px;
    text-decoration: none;
}

.contact-hero .bread-menu li:last-child a {
    font-weight: 600;
}


/* Hero heading */
.contact-hero .bread-title {
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(255, 52, 132, 0.08);
    color: #ff3181;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-hero .bread-title h1 {
    margin: 0;
    color: #101456;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 800;
}

.contact-hero .bread-title h1 span {
    display: block;
    background: linear-gradient(90deg, #ff4b92, #7b5cff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-hero .bread-title p {
    max-width: 570px;
    color: #66708f;
    font-size: 16px;
    line-height: 1.8;
}


/* Hero button */
.contact-hero .btn-main {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    padding: 15px 28px;
    background: linear-gradient(90deg, #ffad73, #ff3d91);
    box-shadow: 0 12px 25px rgba(255, 61, 145, 0.25);
    transition: all 0.35s ease;
}

.contact-hero .btn-main:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 35px rgba(255, 61, 145, 0.35);
}


/* =========================================================
   HERO IMAGES
========================================================= */

.contact-banner-images {
    position: relative;
    min-height: 530px;
    margin-left: 30px;
}

.contact-img {
    position: absolute;
    overflow: hidden;
    border-radius: 25px;
    background: #fff;
    border: 8px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 60px rgba(35, 48, 100, 0.18);
}

.contact-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.contact-img:hover img {
    transform: scale(1.08);
}

.contact-img.img-one {
    width: 70%;
    height: 390px;
    right: 0;
    top: 0;
    z-index: 1;
    animation: imageFloat 5s ease-in-out infinite;
}

.contact-img.img-two {
    width: 58%;
    height: 300px;
    left: 0;
    bottom: 0;
    z-index: 2;
    animation: imageFloat2 5s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes imageFloat2 {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}


/* =========================================================
   FLOATING CONTACT CARD
========================================================= */

.floating-contact-card {
    position: absolute;
    z-index: 5;
    right: 25px;
    bottom: 20px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;
    background: rgba(255,255,255,0.96);
    border-radius: 15px;

    box-shadow: 0 15px 40px rgba(30,40,80,0.15);

    animation: floatingCard 4s ease-in-out infinite;
}

@keyframes floatingCard {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.floating-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #ff5c9d, #7357ff);
    color: #fff;

    font-size: 18px;
}

.floating-contact-card span {
    display: block;
    color: #777;
    font-size: 13px;
}

.floating-contact-card strong {
    color: #111554;
    font-size: 16px;
}


/* =========================================================
   CONTACT INTRO
========================================================= */

.contact-info-section {
    position: relative;
    background: #fff;
}

.contact-info-section .common-heading span {
    display: inline-block;
    color: #ff3485;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.contact-info-section .common-heading h2 {
    color: #101456;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
}

.contact-info-section .common-heading p {
    max-width: 850px;
    margin: 20px auto 0;
    color: #737b99;
    line-height: 1.8;
}


/* =========================================================
   CONTACT INFO CARDS
========================================================= */

.contact-info-card {
    position: relative;
    height: 100%;

    padding: 35px 25px;

    text-align: center;

    background: #fff;

    border: 1px solid #edf0f7;
    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(28, 35, 80, 0.06);

    transition: all 0.4s ease;
}

.contact-info-card::before {
    content: "";
    position: absolute;

    left: 50%;
    top: 0;

    width: 0;
    height: 3px;

    transform: translateX(-50%);

    background: linear-gradient(90deg, #ff4d91, #7358ff);

    transition: width 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(28, 35, 80, 0.12);
}

.contact-info-card:hover::before {
    width: 70%;
}


/* Icon */
.contact-card-icon {
    position: relative;

    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        rgba(255, 76, 145, 0.12),
        rgba(114, 86, 255, 0.12)
    );

    color: #ff438c;

    font-size: 25px;

    transition: all 0.4s ease;
}

.contact-card-icon::after {
    content: "";
    position: absolute;

    inset: -6px;

    border: 1px dashed rgba(255, 67, 140, 0.35);
    border-radius: 50%;

    opacity: 0;

    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    color: #fff;
    background: linear-gradient(135deg, #ff4b91, #7257ff);
    transform: translateY(-5px) rotateY(360deg);
}

.contact-info-card:hover .contact-card-icon::after {
    opacity: 1;
    transform: rotate(180deg);
}

.contact-info-card h3 {
    color: #101456;
    font-size: 25px;
    font-weight: 750;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: #7b819b;
    margin-bottom: 8px;
}

.contact-info-card a,
.contact-info-card span {
    color: #101456;
    font-weight: 600;
    text-decoration: none;
}


/* =========================================================
   CONTACT FORM SECTION
========================================================= */

.contact-form-section {
    position: relative;
    overflow: hidden;
    background: #f7f8fc;
}

.contact-form-section::before {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 70, 140, 0.06);

    left: -120px;
    bottom: -100px;
}

.contact-form-section .common-heading span {
    display: inline-block;
    color: #ff3485;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.contact-form-section .common-heading h2 {
    color: #101456;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}


/* =========================================================
   BENEFITS
========================================================= */

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;

    margin-bottom: 22px;

    padding: 15px;

    border-radius: 12px;

    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: #fff;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(30,40,80,0.06);
}

.benefit-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #ff4d91, #7257ff);
    color: #fff;

    box-shadow: 0 8px 20px rgba(255, 77, 145, 0.25);
}

.benefit-item h4 {
    color: #101456;
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 5px;
}

.benefit-item p {
    color: #737b99;
    line-height: 1.6;
    margin: 0;
}


/* =========================================================
   FORM BOX
========================================================= */

.contact-form-box {
    position: relative;
    z-index: 2;

    padding: 40px;

    background: #fff;

    border: 1px solid #edf0f5;
    border-radius: 22px;

    box-shadow: 0 20px 60px rgba(30, 40, 80, 0.10);

    transition: all 0.4s ease;
}

.contact-form-box:hover {
    box-shadow: 0 25px 70px rgba(30, 40, 80, 0.14);
}

.form-header span {
    color: #ff3485;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.form-header h3 {
    color: #101456;
    font-size: 30px;
    font-weight: 800;
    margin: 7px 0;
}

.form-header p {
    color: #7a819c;
}


/* Form fields */
.contact-form-box .form-group {
    margin-bottom: 18px;
}

.contact-form-box .form-control {
    width: 100%;

    min-height: 52px;

    padding: 13px 16px;

    color: #222;

    background: #fafbfe;

    border: 1px solid #e4e7ef;

    border-radius: 9px;

    transition: all 0.3s ease;
}

.contact-form-box .form-control::placeholder {
    color: #9aa0b5;
}

.contact-form-box .form-control:focus {
    background: #fff;

    border-color: #ff4d91;

    box-shadow: 0 0 0 4px rgba(255, 77, 145, 0.08);

    transform: translateY(-2px);
}

.contact-form-box textarea.form-control {
    min-height: 140px;
    resize: vertical;
}


/* Submit button */
.contact-form-box .btn-main {
    border: 0;

    border-radius: 30px;

    padding: 14px 28px;

    background: linear-gradient(90deg, #ffac73, #ff3c91);

    color: #fff;

    box-shadow: 0 12px 25px rgba(255, 60, 145, 0.22);

    transition: all 0.35s ease;
}

.contact-form-box .btn-main:hover {
    transform: translateY(-5px);

    box-shadow: 0 18px 35px rgba(255, 60, 145, 0.32);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .contact-hero {
        padding: 80px 0;
    }

    .contact-hero .bread-title h1 {
        font-size: 42px;
    }

    .contact-banner-images {
        min-height: 450px;
        margin: 50px 0 0;
    }

    .contact-info-section .common-heading h2,
    .contact-form-section .common-heading h2 {
        font-size: 34px;
    }

    .contact-form-box {
        margin-top: 30px;
    }
}


@media (max-width: 767px) {

    .contact-hero {
        padding: 60px 0;
    }

    .contact-hero .bread-title h1 {
        font-size: 34px;
    }

    .contact-hero .bread-title p {
        font-size: 14px;
    }

    .contact-banner-images {
        min-height: 350px;
    }

    .contact-img.img-one {
        width: 75%;
        height: 260px;
    }

    .contact-img.img-two {
        width: 65%;
        height: 200px;
    }

    .floating-contact-card {
        right: 0;
        bottom: 0;
        padding: 10px 14px;
    }

    .contact-info-section .common-heading h2,
    .contact-form-section .common-heading h2 {
        font-size: 29px;
    }

    .contact-form-box {
        padding: 25px 18px;
    }

    .form-header h3 {
        font-size: 25px;
    }

    .benefit-item {
        padding: 10px;
    }
}
.swal2-popup {
    border-radius: 20px !important;
    padding: 30px !important;
}

.swal2-title {
    color: #101456 !important;
    font-weight: 700 !important;
}

.swal2-html-container {
    color: #70789a !important;
}

.swal2-confirm {
    border-radius: 25px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
}
/* =========================================================
   LATEST BLOG SECTION
========================================================= */

.latest-blog-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* Section Heading */

.latest-blog-section .common-heading span {
    display: inline-block;
    color: #ff3485;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.latest-blog-section .common-heading h2 {
    color: #101456;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.latest-blog-section .common-heading p {
    max-width: 800px;
    margin: 20px auto 0;
    color: #737b99;
    line-height: 1.8;
}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {
    height: 100%;
    overflow: hidden;

    background: #fff;

    border: 1px solid #edf0f6;
    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(25, 35, 80, 0.06);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(25, 35, 80, 0.14);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f1f3f8;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    filter: brightness(0.88);
}


/* Image overlay */

.blog-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 40%;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.35)
    );

    pointer-events: none;
}


/* =========================================================
   CATEGORY
========================================================= */

.blog-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 2;

    padding: 7px 14px;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #ff4b91,
        #7357ff
    );

    box-shadow: 0 7px 20px rgba(255, 70, 140, 0.25);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.blog-content {
    padding: 25px;
}


/* =========================================================
   BLOG META
========================================================= */

.blog-meta {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 14px;

    flex-wrap: wrap;
}

.blog-meta span {
    color: #8a90a7;

    font-size: 12px;
}

.blog-meta i {
    margin-right: 5px;
    color: #ff438c;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.blog-content h3 {
    margin: 0 0 13px;
}

.blog-content h3 a {
    color: #101456;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 750;

    text-decoration: none;

    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #ff438c;
}


/* =========================================================
   BLOG DESCRIPTION
========================================================= */

.blog-content p {
    color: #737b99;

    font-size: 14px;
    line-height: 1.75;

    margin-bottom: 20px;
}


/* =========================================================
   READ MORE
========================================================= */

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #101456;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;
}

.blog-read-more i {
    color: #ff438c;

    transition: transform 0.35s ease;
}

.blog-read-more:hover {
    color: #ff438c;
}

.blog-read-more:hover i {
    transform: translateX(6px);
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.latest-blog-section .btn-main {
    border-radius: 30px;

    padding: 14px 28px;

    background: linear-gradient(
        90deg,
        #ffad73,
        #ff3c91
    );

    box-shadow:
        0 12px 25px rgba(255, 60, 145, 0.22);

    transition: all 0.35s ease;
}

.latest-blog-section .btn-main:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(255, 60, 145, 0.32);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .latest-blog-section .common-heading h2 {
        font-size: 34px;
    }

    .blog-image {
        height: 230px;
    }
}


@media (max-width: 767px) {

    .latest-blog-section .common-heading h2 {
        font-size: 29px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-content h3 a {
        font-size: 20px;
    }
}
/* =========================================================
   LATEST BLOG SECTION
========================================================= */

.latest-blog-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* Section Heading */

.latest-blog-section .common-heading span {
    display: inline-block;
    color: #ff3485;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.latest-blog-section .common-heading h2 {
    color: #101456;
    font-size: 40px;
    line-height: 1.2;
    font-weight: 800;
}

.latest-blog-section .common-heading p {
    max-width: 800px;
    margin: 20px auto 0;
    color: #737b99;
    line-height: 1.8;
}


/* =========================================================
   BLOG CARD
========================================================= */

.blog-card {
    height: 100%;
    overflow: hidden;

    background: #fff;

    border: 1px solid #edf0f6;
    border-radius: 20px;

    box-shadow: 0 10px 35px rgba(25, 35, 80, 0.06);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 55px rgba(25, 35, 80, 0.14);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #f1f3f8;
}

.blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s ease,
        filter 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
    filter: brightness(0.88);
}


/* Image overlay */

.blog-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 40%;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.35)
    );

    pointer-events: none;
}


/* =========================================================
   CATEGORY
========================================================= */

.blog-category {
    position: absolute;

    left: 18px;
    bottom: 18px;

    z-index: 2;

    padding: 7px 14px;

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    border-radius: 20px;

    background: linear-gradient(
        90deg,
        #ff4b91,
        #7357ff
    );

    box-shadow: 0 7px 20px rgba(255, 70, 140, 0.25);
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.blog-content {
    padding: 25px;
}


/* =========================================================
   BLOG META
========================================================= */

.blog-meta {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 14px;

    flex-wrap: wrap;
}

.blog-meta span {
    color: #8a90a7;

    font-size: 12px;
}

.blog-meta i {
    margin-right: 5px;
    color: #ff438c;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.blog-content h3 {
    margin: 0 0 13px;
}

.blog-content h3 a {
    color: #101456;

    font-size: 21px;
    line-height: 1.4;
    font-weight: 750;

    text-decoration: none;

    transition: color 0.3s ease;
}

.blog-content h3 a:hover {
    color: #ff438c;
}


/* =========================================================
   BLOG DESCRIPTION
========================================================= */

.blog-content p {
    color: #737b99;

    font-size: 14px;
    line-height: 1.75;

    margin-bottom: 20px;
}


/* =========================================================
   READ MORE
========================================================= */

.blog-read-more {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #101456;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: all 0.35s ease;
}

.blog-read-more i {
    color: #ff438c;

    transition: transform 0.35s ease;
}

.blog-read-more:hover {
    color: #ff438c;
}

.blog-read-more:hover i {
    transform: translateX(6px);
}


/* =========================================================
   VIEW ALL BUTTON
========================================================= */

.latest-blog-section .btn-main {
    border-radius: 30px;

    padding: 14px 28px;

    background: linear-gradient(
        90deg,
        #ffad73,
        #ff3c91
    );

    box-shadow:
        0 12px 25px rgba(255, 60, 145, 0.22);

    transition: all 0.35s ease;
}

.latest-blog-section .btn-main:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 35px rgba(255, 60, 145, 0.32);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .latest-blog-section .common-heading h2 {
        font-size: 34px;
    }

    .blog-image {
        height: 230px;
    }
}


@media (max-width: 767px) {

    .latest-blog-section .common-heading h2 {
        font-size: 29px;
    }

    .blog-image {
        height: 220px;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-content h3 a {
        font-size: 20px;
    }
}
.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #f7f8ff;
}

.blog-banner-image {
    position: relative;
    padding: 15px;
}

.blog-banner-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(20, 30, 80, 0.15);
    transition: all 0.4s ease;
}

.blog-banner-image img:hover {
    transform: translateY(-8px);
}

.blog-hero .bread-title h1 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #08145c;
}

.blog-hero .bread-title h1 span {
    display: block;
    color: #7447f5;
}

.blog-hero .contact-subtitle {
    display: inline-block;
    margin-bottom: 15px;
    color: #7447f5;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.blog-hero .bread-title p {
    color: #626a80;
    font-size: 17px;
    line-height: 1.7;
}

@media (max-width: 991px) {

    .blog-hero {
        padding: 60px 0;
    }

    .blog-hero .bread-title {
        margin-bottom: 40px;
    }

    .blog-hero .bread-title h1 {
        font-size: 38px;
    }

    .blog-banner-image {
        padding: 0;
    }
}

@media (max-width: 576px) {

    .blog-hero .bread-title h1 {
        font-size: 32px;
    }

    .blog-hero .bread-title p {
        font-size: 15px;
    }

    .blog-banner-image img {
        border-radius: 15px;
    }
}
