/*=========================================
SMP INFOTECH
=========================================*/

/*==================================================
01. VARIABLES
==================================================*/

/*==================================================
02. RESET
==================================================*/

/*==================================================
03. TYPOGRAPHY
==================================================*/

/*==================================================
04. COMMON COMPONENTS
==================================================*/

/*==================================================
05. HEADER
==================================================*/

/*==================================================
06. HOME PAGE
==================================================*/

/*==================================================
13. FOOTER
==================================================*/

/*==================================================
15. RESPONSIVE
==================================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================================
01. VARIABLES
=========================================*/

:root {

    /*==================================
      Brand Colors
    ==================================*/

    --primary: #0d6efd;
    --primary-dark: #084298;
    --secondary: #00b4ff;
    --accent: #38bdf8;

    /*==================================
      Text Colors
    ==================================*/

    --heading: #111827;
    --dark: #0b1220;
    --text: #6b7280;
    --text-light: #9ca3af;
    --white: #ffffff;

    /*==================================
      Background Colors
    ==================================*/

    --bg: #f8fbff;
    --bg-light: #ffffff;
    --bg-dark: #111827;

    /*==================================
      Border Colors
    ==================================*/

    --border: #e5e7eb;
    --border-light: #f1f5f9;

    /*==================================
      Status Colors
    ==================================*/

    --success: #16a34a;
    --warning: #f59e0b;
    --danger: #dc2626;
    --info: #0ea5e9;

    /*==================================
      Border Radius
    ==================================*/

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 30px;
    --radius-pill: 50px;

    /*==================================
      Shadows
    ==================================*/

    --shadow-xs: 0 5px 12px rgba(0, 0, 0, .04);
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, .05);
    --shadow-md: 0 12px 35px rgba(0, 0, 0, .08);
    --shadow-lg: 0 18px 50px rgba(0, 0, 0, .12);
    --shadow-xl: 0 25px 70px rgba(0, 0, 0, .18);

    /*==================================
      Transition
    ==================================*/

    --transition-fast: .25s ease;
    --transition: .35s ease;
    --transition-slow: .5s ease;

    /*==================================
      Layout
    ==================================*/

    --container-width: 1320px;

    --section-padding: 100px;
    --section-padding-md: 80px;
    --section-padding-sm: 60px;

}

/*==================================================
02. RESET
==================================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg-light);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
    outline: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

::selection {
    background: var(--primary);
    color: var(--white);
}

/*=========================================
CONTAINER
=========================================*/
.container {
    max-width: 1320px;
}

/*==================================================
03. TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 18px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--heading);
    letter-spacing: -0.3px;
}

h1 {
    font-size: 58px;
}

h2 {
    font-size: 42px;
}

h3 {
    font-size: 34px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

/*==================================
SECTION HEADING
==================================*/

.section-subtitle {

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    margin-bottom: 18px;
    border-radius: var(--radius-pill);
    background: #eaf4ff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
}

.section-title {
    margin-bottom: 20px;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--heading);
}

.section-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: var(--text);
}

.padding-lg {
    padding: var(--section-padding)
}

.padding-md {
    padding: var(--section-padding-md)
}

.padding-sm {
    padding: var(--section-padding-sm)
}

/*04. COMMON COMPONENTS*/

/*==================================
SECTION HEADER
==================================*/

.section-header {
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-header.text-center {
    text-align: center;
}

.section-header.text-left {
    max-width: 650px;
    margin-bottom: 60px;
    text-align: left;
}

/*==================================================
BUTTON SYSTEM
==================================================*/

.btn-primary,
.btn-outline,
.btn-gradient {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--light);
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn-gradient {
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: #fff;
}

.btn-gradient:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(13, 110, 253, .25);
    transition: var(--transition);
}

.btn-primary-custom:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, .35);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border: 2px solid var(--primary);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    background: #fff;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-5px);
}

/*=========================================
COMMON CARDS
=========================================*/
.service-card,
.product-card,
.industry-card,
.tech-card,
.process-card,
.portfolio-card,
.testimonial-card,
.blog-card,
.counter-card,
.achievement-card,
.client-box {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover,
.product-card:hover,
.industry-card:hover,
.tech-card:hover,
.process-card:hover,
.portfolio-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.counter-card:hover,
.achievement-card:hover,
.client-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/*==================================================
CARD SYSTEM
==================================================*/

.card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-modern {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .12);
}

/*==================================
ICON BOX
==================================*/

.icon-box {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 24px;
    color: #fff;
    font-size: 38px;
    transition: var(--transition);
}

.card:hover .icon-box {
    transform: rotate(-8deg) scale(1.08);
}

/* Gradient Color */
.school {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.hospital {
    background: linear-gradient(135deg, #dc2626, #fb7185);
}

.crm {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.inventory {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.billing {
    background: linear-gradient(135deg, #059669, #34d399);
}

.hrms {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.payroll {
    background: linear-gradient(135deg, #ca8a04, #facc15);
}

.app {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    background: #eef6ff;
    color: var(--primary);
}

.section-divider {
    width: 90px;
    height: 4px;
    margin: 20px auto;
    border-radius: 50px;
    background: linear-gradient(90deg,
            var(--primary),
            var(--secondary));
}

/*=========================================
PRELOADER
=========================================*/
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid #dbeafe;
    border-top: 5px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/*=========================================
SCROLLBAR
=========================================*/
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #eef4ff;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--accent));
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary);
}

/*=========================================
TEXT SELECTION
=========================================*/
::selection {
    background: var(--primary);
    color: #fff;
}

/*=========================================
UTILITY
=========================================*/
.text-primary {
    color: var(--primary) !important;
}

.bg-light {
    background: #f7fbff !important;
}

.rounded-20 {
    border-radius: 20px;
}

.shadow-custom {
    box-shadow: var(--shadow);
}

.transition {
    transition: var(--transition);
}

/*=========================================
05 HEADER
=========================================*/

.site-header {
    position: relative;
    z-index: 999;
}

/*======================
TOP BAR
======================*/

.top-header {
    background: var(--dark);
    color: var(--white);
    font-size: 14px;
}

.top-header a {
    color: rgba(255, 255, 255, .85);
}

.top-header a:hover {
    color: var(--secondary);
}

.top-bar {
    background: #071d49;
    padding: 10px 0;
    font-size: 14px;
    color: #fff;
}

.top-contact,
.top-social {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-contact a,
.top-social a {
    color: #fff;
    transition: .3s;
}

.top-contact a:hover,
.top-social a:hover {
    color: #7fd3ff;
}

.top-contact i,
.top-social i {
    margin-right: 6px;
}

/*======================
NAVBAR
======================*/

.custom-navbar {
    position: relative;
    background: rgba(255, 255, 255, .98);
    transition: all .35s ease;
    z-index: 999;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 18px !important;
    font-weight: 600;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-item.active>.nav-link {
    color: var(--primary) !important;
}

/*======================
LOGO
======================*/

.logo {
    height: 58px;
    width: auto;
    transition: var(--transition);
}

.custom-navbar.sticky .logo {
    height: 52px;
}

/*======================
STICKY NAVBAR
======================*/

.custom-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: headerSlide .35s ease;
    background: rgba(255, 255, 255, .98);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
}

@keyframes headerSlide {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/*======================
MENU
======================*/

.navbar-nav {
    align-items: center;
    gap: 1px;
}

.nav-item {
    position: relative;
}

.nav-link {
    position: relative;
    padding: 12px 14px !important;
    font-size: 15px;
    font-weight: 600;
    color: #222 !important;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: #0d6efd !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    border-radius: 30px;
    transform: translateX(-50%);
    transition: .35s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/*======================
DROPDOWN
======================*/

.navbar .dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(.98);
    transition: .25s ease;
    pointer-events: none;
    margin-top: 0;
    min-width: 240px;
    border: none;
    border-radius: 16px;
    padding: 12px 0;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
}

.dropdown-item {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    border-radius: 0;
    transition: .3s;
}

.dropdown-item:hover {
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    color: #fff;
    padding-left: 28px;
}

.dropdown:hover>.dropdown-menu {
    transform: translateY(0) scale(1);
}

.navbar .dropdown-toggle::after {
    display: none;
}

.navbar .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar .dropdown-toggle::before {
    content: "\F285";
    font-family: "bootstrap-icons";
    font-size: 12px;
    color: #888;
    margin-left: 8px;
    order: 2;
    transition: .3s;
}

/*======================
DESKTOP
======================*/

@media (min-width:992px) {

    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar .dropdown:hover>.dropdown-toggle::before {
        transform: rotate(90deg);
        color: #0d6efd;
    }

}

/*======================
MOBILE
======================*/

@media (max-width:991.98px) {

    .dropdown-menu {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        width: 100%;
        min-width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        box-shadow: none;
        background: transparent;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 12px 20px;
        margin: 0;
        background: transparent;
        border-radius: 0;
        color: #555;
    }

    .dropdown-item:hover {
        background: #eef5ff;
        color: #0d6efd;
        padding-left: 28px;
    }

    .navbar-nav .dropdown-toggle {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }

    .navbar-nav .dropdown-toggle::before {
        margin-left: 0;
        font-size: 14px;
        color: #999;
    }

    .navbar-toggler {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: #f5f7fb;
    }

    .navbar-toggler:hover {
        background: #edf4ff;
    }
}

/*======================
NAV RIGHT
======================*/

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: 5px;
}

.nav-search {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 18px;
    transition: .3s;
}

.nav-search:hover {
    background: #0d6efd;
    color: #fff;
    transform: rotate(15deg);
}

/*======================
QUOTE BUTTON
======================*/

.quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(13, 110, 253, .25);
    transition: .35s;
}

.quote-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/*======================
TOGGLER
======================*/

.navbar-toggler {
    padding: 8px;
    border: none;
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 34px;
    color: #0d6efd;
}

/*======================
MOBILE
======================*/

@media(max-width:991px) {

    .top-bar {
        display: none;
    }

    .custom-navbar {
        padding: 14px 0;
    }

    .navbar-collapse {
        margin-top: 20px;
        padding: 20px;
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 0;
    }

    .nav-link {
        width: 100%;
        padding: 14px 10px !important;
    }

    .dropdown-menu {
        box-shadow: none;
        padding-left: 12px;
        margin-top: 5px;
    }

    .nav-actions {
        margin-top: 18px;
        margin-left: 0;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .quote-btn {
        width: 100%;
    }

    .nav-search {
        display: none;
    }

    .logo {
        height: 50px;
    }

    .logo-text h3 {
        font-size: 22px;
    }

}

/*=========================================
HERO SECTION
PART 3A
=========================================*/

.hero {
    position: relative;
    padding: 30px 0 30px;
    background: linear-gradient(135deg, #071d49 0%, #0d6efd 55%, #00b4ff 100%);
    overflow: hidden;
    z-index: 1;
}

.hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.hero::after {
    content: "";
    position: inherit;
    left: -150px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    color: #ffd54f;
    font-size: 18px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.18;
    color: #fff;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #ffd54f;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .92);
    max-width: 620px;
    margin-bottom: 35px;
}

.hero-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 45px;
}

.hero-btn .btn-primary-custom {
    padding: 17px 36px;
}

.hero-btn .btn-outline-custom {
    padding: 17px 36px;
    border: 2px solid rgba(255, 255, 255, .45);
    background: transparent;
    color: #fff;
}

.hero-btn .btn-outline-custom:hover {
    background: #fff;
    color: #0d6efd;
    border-color: #fff;
}

.hero-feature {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 15px;
}

.hero-feature .item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
}

.hero-feature .item i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .12);
    border-radius: 50%;
    font-size: 18px;
    color: #ffd54f;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.hero-stat {
    color: #fff;
}

.hero-stat h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.hero-stat span {
    display: block;
    margin-top: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, .82);
}

.hero-divider {
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, .25);
}

/*=========================================
HERO SECTION
PART 3B
=========================================*/

/* Hero Image */

.hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: heroFloat 5s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    margin: auto;
    filter: drop-shadow(0 35px 60px rgba(0, 0, 0, .30));
}

/* Floating Cards */

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .15);
    animation: floatingCard 4s ease-in-out infinite;
    z-index: 3;
}

.floating-card i {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    font-size: 24px;
}

.floating-card h6 {
    margin: 0;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
}

.floating-card p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #666;
}

/* Card Positions */

.card-one {
    top: 60px;
    left: -40px;
}

.card-two {
    right: -35px;
    top: 180px;
    animation-delay: 1s;
}

.card-three {
    bottom: 40px;
    left: 40px;
    animation-delay: 2s;
}

/* Background Shapes */

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    animation: shapeMove 10s linear infinite;
}

.hero-shape.one {
    width: 90px;
    height: 90px;
    top: 80px;
    left: 8%;
}

.hero-shape.two {
    width: 70px;
    height: 70px;
    top: 45%;
    right: 10%;
    animation-duration: 12s;
}

.hero-shape.three {
    width: 120px;
    height: 120px;
    bottom: 40px;
    right: 28%;
    animation-duration: 15s;
}

.hero-shape.four {
    width: 45px;
    height: 45px;
    top: 20%;
    right: 35%;
    animation-duration: 8s;
}

/* Mouse Scroll */

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-down a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    color: #0d6efd;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    animation: scrollBounce 2s infinite;
}

/* Animations */

@keyframes heroFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes floatingCard {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

@keyframes shapeMove {

    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-25px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }

}

@keyframes scrollBounce {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }

}

/* Responsive */

@media (max-width:991px) {

    .hero {
        padding: 100px 0 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p {
        margin: auto auto 30px;
    }

    .hero-btn {
        justify-content: center;
    }

    .hero-feature {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    .hero-divider {
        display: none;
    }

    .hero-image {
        margin-top: 60px;
    }

    .card-one,
    .card-two,
    .card-three {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 20px auto;
        max-width: 320px;
    }

    .hero-image img {
        max-width: 420px;
    }

}

@media (max-width:767px) {

    .hero {
        padding: 90px 0 70px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-btn .btn-primary-custom,
    .hero-btn .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .hero-feature {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
    }

    .hero-image img {
        max-width: 320px;
    }

    .scroll-down {
        display: none;
    }

}

/*=========================================
CLIENTS SECTION
PART 4
=========================================*/

.clients-section {
    background: #fff;
    padding: 70px 0;
}

.client-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05);
    transition: .35s;
}

.client-box img {
    max-width: 140px;
    max-height: 55px;
    filter: grayscale(100%);
    opacity: .65;
    transition: .35s;
}

.client-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);
    border-color: #0d6efd;
}

.client-box:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

/*=========================================
ABOUT SECTION
=========================================*/

.about-section,
.about-company {
    position: relative;
    background: var(--white);
    overflow: hidden;
    padding: var(--section-padding-sm);
}

.about-image {
    position: relative;
    padding-right: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.about-experience {
    position: absolute;
    right: 0;
    bottom: 30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: experienceFloat 4s ease-in-out infinite;
}

.about-experience h2 {
    font-size: 46px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    line-height: 1;
}

.about-experience span {
    margin-top: 8px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    color: var(--text);
}

.about-content {
    padding-left: 30px;
}

.about-content h2 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/*=========================================
FEATURE LIST
=========================================*/

.about-list {
    margin-top: 30px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #444;
}

.about-list li i {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eaf4ff;
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    flex-shrink: 0;
    transition: .3s;
}

.about-list li:hover i {
    background: #0d6efd;
    color: #fff;
    transform: rotate(-10deg);
}

.about-counter {
    background: linear-gradient(135deg, #071d49, #0d6efd);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.about-counter::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.about-counter::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.about-floating {
    position: absolute;
    right: -20px;
    top: 40px;
    background: #fff;
    padding: 18px 24px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-floating i {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));
    color: #fff;
    font-size: 26px;
}

.mission-section {
    position: relative;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
    padding: var(--section-padding-md);
}

.mission-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .05);
}

.mission-section::after {
    content: "";
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(0, 180, 255, .05);
}

.mission-card {
    position: relative;
    background: var(--white);
    padding: 45px 35px;
    height: 100%;
    text-align: center;
    border-radius: 28px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.mission-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: .4s;
    transform-origin: left;
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.mission-card i {
    width: 90px;
    height: 90px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    font-size: 40px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: .4s;
}

.mission-card:hover i {
    transform: rotate(-8deg) scale(1.08);
}

.mission-card h3 {
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 700;
    color: var(--heading);
}

.mission-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text);
}

@media(max-width:991px) {

    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .about-exp {
        left: 20px;
        bottom: 20px;
    }

    .about-floating {
        display: none;
    }

}

/*=========================================
MISSION VISION
=========================================*/

.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .12);
}

.about-card .icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    font-size: 28px;
    margin-bottom: 22px;
}

.about-card h4 {
    margin-bottom: 15px;
    font-weight: 700;
}

.about-card p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

/*=========================================
ABOUT SHAPES
=========================================*/

.about-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(13, 110, 253, .05);
    z-index: 0;
}

.about-shape.one {
    width: 250px;
    height: 250px;
    top: -100px;
    right: -80px;
}

.about-shape.two {
    width: 180px;
    height: 180px;
    bottom: -60px;
    left: -60px;
}

/*=========================================
ANIMATION
=========================================*/

@keyframes experienceFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .about-image {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .about-content {
        padding-left: 0;
        text-align: center;
    }

    .about-list {
        text-align: left;
    }

    .about-experience {
        position: relative;
        margin: 25px auto 0;
        right: auto;
        bottom: auto;
    }

}

@media(max-width:767px) {

    .about-content h2 {
        font-size: 34px;
    }

    .about-content p {
        font-size: 16px;
    }

    .about-experience {
        width: 150px;
        height: 150px;
    }

    .about-experience h2 {
        font-size: 36px;
    }

    .about-card {
        padding: 25px;
    }

}

/*==================================
WHY CHOOSE SMP
==================================*/

.why-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Dots */

.why-section::before {
    content: "";
    position: absolute;
    left: -80px;
    top: 40px;
    width: 220px;
    height: 220px;
    background: url("assets/images/dots.png") no-repeat center;
    opacity: .15;
}

.why-section::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: 40px;
    width: 220px;
    height: 220px;
    background: url("assets/images/dots.png") no-repeat center;
    opacity: .15;
}

/*=========================
Heading
=========================*/

.section-heading {
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.section-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 22px;
    border-radius: 50px;
    background: #eef6ff;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {

    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
}

.section-title span {

    color: #0d6efd;

}

.section-text {

    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
}

/*=========================
Cards
=========================*/

.why-card {

    background: #fff;
    border-radius: 30px;
    padding: 35px 28px;
    text-align: center;
    position: relative;
    height: 100%;
    overflow: hidden;
    z-index: 1;

    border: 1px solid #edf2f7;

    box-shadow:
        0 10px 30px rgba(15, 23, 42, .05);

    transition: .35s;
}

.card-top-line {

    position: absolute;
    left: 50%;
    top: 0;

    transform: translateX(-50%);

    width: 160px;
    height: 5px;

    border-radius: 20px;

    background: linear-gradient(90deg, #0d6efd, #00b4ff);

}

.card-wave {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 45px;

    background: url("assets/images/wave-light.svg") no-repeat center bottom;
    background-size: cover;

    opacity: .5;

}

/*=========================
Icon
=========================*/

.why-icon {

    width: 105px;
    height: 105px;

    margin: auto;

    border-radius: 50%;

    background: #fff;

    border: 2px solid #d9ecff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;

    color: #0d6efd;

    box-shadow: 0 10px 25px rgba(13, 110, 253, .10);

    transition: .35s;

}

.icon-divider {

    width: 40px;
    height: 3px;

    margin: 18px auto;

    border-radius: 20px;

    background: linear-gradient(90deg, #0d6efd, #00b4ff);

}

.why-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    white-space: nowrap;
}

.why-card p {

    font-size: 15px;
    line-height: 1.6;
    color: #64748b;

}

/*=========================
Hover
=========================*/

.why-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 60px rgba(13, 110, 253, .15);

}

.why-card:hover .why-icon {

    transform: translateY(-8px) scale(1.08);

    background: linear-gradient(135deg, #0d6efd, #00b4ff);

    color: #fff;

    border-color: transparent;

}

.why-card::before {

    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    background: rgba(13, 110, 253, .05);

    border-radius: 50%;

    top: -130px;
    right: -130px;

    transition: .5s;

}

.why-card::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    background: rgba(0, 180, 255, .05);

    border-radius: 50%;

    bottom: -120px;
    left: -120px;

    transition: .5s;

}

.why-card:hover::before {

    transform: scale(1.4);

}

.why-card:hover::after {

    transform: scale(1.4);

}

/*=========================================
SERVICES SECTION
=========================================*/

.services-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.service-card {
    background: #fff;
    border-radius: 22px;
    padding: 35px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, .15);
}

.service-icon {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .4s;
}

.service-card:hover .service-icon {
    transform: rotate(-10deg) scale(1.08);
}

.service-card h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/*=========================================
SERVICE BUTTON
=========================================*/

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: .35s;
    box-shadow: 0 12px 30px rgba(13, 110, 253, .25);
}

.service-btn i {
    transition: .35s;
}

.service-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, .35);
}

.service-btn:hover i {
    transform: translateX(6px);
}

/*=========================================
SERVICE LIST
=========================================*/

.service-list {
    margin: 25px 0;
    padding: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.service-list i {
    color: #0d6efd;
    font-size: 17px;
}

/*=========================================
BACKGROUND SHAPES
=========================================*/

.services-section::before {
    content: "";
    position: absolute;
    top: -140px;
    right: -140px;
    width: 320px;
    height: 320px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
}

.services-section::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: rgba(0, 180, 255, .05);
    border-radius: 50%;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .why-box {
        flex-direction: column;
        text-align: center;
    }

    .why-icon {
        margin: auto;
    }

    .service-card {
        padding: 30px 25px;
    }

    .service-icon {
        margin: auto auto 25px;
    }

    .service-card {
        text-align: center;
    }

    .service-list {
        text-align: left;
    }

}

@media(max-width:767px) {

    .why-content h4,
    .service-card h4 {
        font-size: 21px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

    .service-btn {
        width: 100%;
        justify-content: center;
    }

}

/*=========================================
PRODUCTS SECTION
PART 6
=========================================*/

.products-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.product-card {
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    border: 1px solid #edf2f7;
}

.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .14);
}

.product-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 38px;
    color: #fff;
    transition: .4s;
}

.product-card:hover .product-icon {
    transform: rotate(-8deg) scale(1.08);
}

/* Product Colors */

.product-icon.school {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.product-icon.hotel {
    background: linear-gradient(135deg, #dc2626, #fb7185);
}

.product-icon.billing {
    background: linear-gradient(135deg, #059669, #34d399);
}

.product-icon.inventory {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.product-icon.crm {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.product-icon.hrms {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.product-icon.payroll {
    background: linear-gradient(135deg, #ca8a04, #facc15);
}

.product-icon.app {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.product-card h5 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.product-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    font-weight: 600;
    transition: .3s;
}

.product-btn i {
    transition: .3s;
}

.product-btn:hover {
    color: #084298;
}

.product-btn:hover i {
    transform: translateX(6px);
}

/*=========================================
INDUSTRIES SECTION
=========================================*/

.industries-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.industry-card {
    background: #fff;
    padding: 30px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    transition: .35s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.industry-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 34px;
    color: #fff;
    transition: .35s;
}

.industry-card:hover .industry-icon {
    transform: scale(1.08) rotate(-8deg);
}

/* Industry Colors */

.education {
    background: linear-gradient(135deg, #2563eb, #60a5fa);
}

.healthcare {
    background: linear-gradient(135deg, #dc2626, #fb7185);
}

.retail {
    background: linear-gradient(135deg, #ea580c, #fb923c);
}

.manufacturing {
    background: linear-gradient(135deg, #4f46e5, #818cf8);
}

.finance {
    background: linear-gradient(135deg, #059669, #34d399);
}

.logistics {
    background: linear-gradient(135deg, #0891b2, #22d3ee);
}

.realestate {
    background: linear-gradient(135deg, #7c3aed, #c084fc);
}

.ecommerce {
    background: linear-gradient(135deg, #ca8a04, #fde047);
}

.industry-card h5 {
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 700;
}

.industry-card p {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

/* Background Shapes */

.products-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
}

.industries-section::after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 250px;
    height: 250px;
    background: rgba(0, 180, 255, .05);
    border-radius: 50%;
}

/* Responsive */

@media(max-width:991px) {

    .product-card,
    .industry-card {
        padding: 28px 22px;
    }

    .product-icon,
    .industry-icon {
        width: 75px;
        height: 75px;
        font-size: 30px;
    }

}

@media(max-width:767px) {

    .product-card h5,
    .industry-card h5 {
        font-size: 20px;
    }

    .product-btn {
        justify-content: center;
    }

}

/*=========================================
BUSINESS COUNTER
PART 7
=========================================*/

.business-counter {
    background: linear-gradient(135deg, #071d49, #0d6efd);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.business-counter::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -150px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.business-counter::after {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.counter-card {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 22px;
    padding: 40px 25px;
    text-align: center;
    transition: .35s;
    height: 100%;
}

.counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .12);
}

.counter-card i {
    font-size: 46px;
    color: #ffd54f;
    margin-bottom: 20px;
    display: block;
}

.counter-card h2 {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.counter-card span {
    font-size: 16px;
    color: rgba(255, 255, 255, .9);
}

/*=========================================
TECHNOLOGY STACK
=========================================*/

.technology-section {
    background: #f8fbff;
    position: relative;
}

.tech-card {
    background: #fff;
    padding: 35px 15px;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #eef2f7;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .05);
    transition: .35s;
    height: 100%;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
}

.tech-card i {
    font-size: 46px;
    margin-bottom: 18px;
    display: block;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-card h6 {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    color: #111827;
}

/*=========================================
PROCESS SECTION
=========================================*/

.process-section {
    background: #fff;
    position: relative;
}

.process-card {
    position: relative;
    background: #fff;
    padding: 35px 30px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s;
    overflow: hidden;
    height: 100%;
}

.process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    transform: scaleX(0);
    transition: .35s;
    transform-origin: left;
}

.process-card:hover::before {
    transform: scaleX(1);
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 52px;
    font-weight: 800;
    color: #edf4ff;
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
    transition: .35s;
}

.process-card:hover .process-icon {
    transform: rotate(-8deg) scale(1.08);
}

.process-card h5 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827;
}

.process-card p {
    margin: 0;
    line-height: 1.8;
    color: #666;
}

/*=========================================
BACKGROUND SHAPES
=========================================*/

.technology-section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 260px;
    height: 260px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
}

.process-section::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 280px;
    height: 280px;
    background: rgba(0, 180, 255, .05);
    border-radius: 50%;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .counter-card {
        padding: 30px 20px;
    }

    .counter-card h2 {
        font-size: 38px;
    }

    .tech-card {
        padding: 28px 15px;
    }

    .process-card {
        padding: 30px 25px;
    }

    .process-number {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .counter-card {
        margin-bottom: 20px;
    }

    .tech-card i {
        font-size: 38px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .process-card h5 {
        font-size: 20px;
    }

    .process-number {
        font-size: 34px;
    }

}

/*=========================================
PORTFOLIO SECTION
PART 8
=========================================*/

.portfolio-section {
    background: #f8fbff;
    position: relative;
    overflow: hidden;
}

.portfolio-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .4s;
    height: 100%;
}

.portfolio-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .15);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: .5s;
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 29, 73, .75);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
}

.portfolio-link {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
    font-size: 24px;
    color: #0d6efd;
    transform: scale(.7);
    transition: .35s;
}

.portfolio-card:hover .portfolio-link {
    transform: scale(1);
}

.portfolio-link:hover {
    background: #0d6efd;
    color: #fff;
}

.portfolio-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 18px;
    background: #0d6efd;
    color: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
}

.portfolio-content {
    padding: 28px;
}

.portfolio-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 22px;
}

.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #edf2f7;
    padding-top: 18px;
    font-size: 15px;
}

.portfolio-footer span {
    color: #666;
}

.portfolio-footer a {
    font-weight: 600;
    color: #0d6efd;
}

.portfolio-footer a:hover {
    color: #084298;
}

/*=========================================
TESTIMONIAL SECTION
=========================================*/

.testimonial-section {
    background: #fff;
}

.testimonial-slider {
    padding-bottom: 60px;
}

.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    height: 100%;
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.rating {
    margin-bottom: 18px;
}

.rating i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 4px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.client-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info h5 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
}

.client-info span {
    font-size: 14px;
    color: #777;
}

.swiper-pagination-bullet {
    background: #0d6efd;
    opacity: .4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 28px;
    border-radius: 30px;
}

/*=========================================
ACHIEVEMENT SECTION
=========================================*/

.achievement-section {
    background: #f8fbff;
}

.achievement-card {
    background: #fff;
    padding: 35px 25px;
    text-align: center;
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .14);
}

.achievement-card i {
    font-size: 48px;
    color: #0d6efd;
    margin-bottom: 18px;
    display: block;
}

.achievement-card h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #111827;
}

.achievement-card p {
    margin: 0;
    color: #666;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .portfolio-content {
        padding: 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

}

@media(max-width:767px) {

    .portfolio-image img {
        height: 220px;
    }

    .portfolio-content h4 {
        font-size: 21px;
    }

    .portfolio-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .achievement-card h3 {
        font-size: 34px;
    }

}

/*=========================================
BUSINESS CTA
PART 9
=========================================*/

.business-cta {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #04142f, #071d49, #0d6efd);
    overflow: hidden;
}

.business-cta::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.business-cta::after {
    content: "";
    position: absolute;
    bottom: -140px;
    right: -140px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .20);
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 22px;
}

.cta-badge i {
    color: #ffd54f;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 25px;
}

.cta-content h2 span {
    color: #ffd54f;
}

.cta-content p {
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .90);
    margin-bottom: 35px;
    max-width: 700px;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.cta-feature i {
    font-size: 20px;
    color: #4ade80;
}

/*========== BUTTONS ==========*/

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    background: #fff;
    color: #0d6efd;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(255, 255, 255, .20);
}

.cta-btn-primary:hover {
    background: #ffd54f;
    color: #071d49;
    transform: translateY(-5px);
}

.cta-btn-primary i {
    transition: .35s;
}

.cta-btn-primary:hover i {
    transform: translateX(6px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 34px;
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: .35s;
}

.cta-btn-outline:hover {
    background: #fff;
    color: #0d6efd;
    border-color: #fff;
    transform: translateY(-5px);
}

/*========== STATS ==========*/

.cta-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: .35s;
}

.stat-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .15);
    border-color: #4ecbff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .20);
}

.stat-box h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ffd54f;
    margin-bottom: 10px;
}

.stat-box p {
    margin: 0;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
}

/*========== RESPONSIVE ==========*/

@media(max-width:991px) {

    .business-cta {
        padding: 80px 0;
    }

    .cta-wrapper {
        padding: 40px;
    }

    .cta-content {
        text-align: center;
    }

    .cta-content h2 {
        font-size: 36px;
    }

    .cta-content p {
        max-width: 100%;
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        justify-content: center;
        margin-bottom: 40px;
    }

    .cta-stats {
        margin-top: 20px;
    }

}

@media(max-width:767px) {

    .business-cta {
        padding: 70px 0;
    }

    .cta-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-feature {
        font-size: 15px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn-primary,
    .cta-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .cta-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 22px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

}

/*========== FLOAT ANIMATION ==========*/

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0);
    }
}

.stat-box:nth-child(1) {
    animation: floatCard 4s ease-in-out infinite;
}

.stat-box:nth-child(2) {
    animation: floatCard 4s ease-in-out .5s infinite;
}

.stat-box:nth-child(3) {
    animation: floatCard 4s ease-in-out 1s infinite;
}

.stat-box:nth-child(4) {
    animation: floatCard 4s ease-in-out 1.5s infinite;
}

/*=========================================
BLOG SECTION
=========================================*/

.blog-section {
    background: #f8fbff;
}

.blog-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
}

.blog-image {
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: .4s;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.blog-content {
    padding: 28px;
}

.blog-date {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: #eaf4ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-link {
    font-weight: 600;
    color: #0d6efd;
}

.blog-link i {
    margin-left: 6px;
    transition: .3s;
}

.blog-link:hover i {
    transform: translateX(6px);
}

/*=========================================
LATEST NEWS
=========================================*/

.news-section {
    padding: 100px 0;
    background: #f7faff;
    position: relative;
    overflow: hidden;
}

.news-section::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: rgba(13, 110, 253, .05);
    border-radius: 50%;
}

.news-section::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 350px;
    height: 350px;
    background: rgba(0, 180, 255, .05);
    border-radius: 50%;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #e9f3ff;
    color: #0d6efd;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 15px;
}

.news-section h2 {
    font-size: 44px;
    font-weight: 700;
    color: #071d49;
    margin-bottom: 20px;
}

.news-section h2 span {
    color: #0d6efd;
}

.news-section p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}

.featured-news {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.featured-news:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, .15);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: .5s;
}

.featured-news:hover .news-image img {
    transform: scale(1.08);
}

.news-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #0d6efd;
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.news-content {
    padding: 35px;
}

.news-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 18px;
    font-size: 14px;
    color: #777;
}

.news-meta i {
    color: #0d6efd;
    margin-right: 5px;
}

.news-content h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    color: #071d49;
    margin-bottom: 18px;
    transition: .3s;
}

.featured-news:hover h3 {
    color: #0d6efd;
}

.news-content p {
    margin: 0 0 25px;
    max-width: 100%;
    text-align: left;
    font-size: 16px;
}

.read-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.read-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, .30);
}

.read-btn i {
    transition: .35s;
}

.read-btn:hover i {
    transform: translateX(6px);
}

.news-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, .18);
}

.news-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: .5s;
}

.news-card:hover img {
    transform: scale(1.08);
}

.news-body {
    padding: 22px;
}

.news-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f1ff;
    color: #0d6efd;
    font-size: 13px;
    font-weight: 600;
    border-radius: 30px;
    margin-bottom: 15px;
}

.news-body h5 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: #071d49;
    margin-bottom: 15px;
    transition: .3s;
}

.news-card:hover h5 {
    color: #0d6efd;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #777;
}

.news-date i {
    color: #0d6efd;
}

.main-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(13, 110, 253, .25);
}

.main-btn i {
    transition: .35s;
}

.main-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(13, 110, 253, .35);
}

.main-btn:hover i {
    transform: translateX(6px);
}

/*========== Responsive ==========*/

@media(max-width:991px) {

    .news-section {
        padding: 80px 0;
    }

    .news-section h2 {
        font-size: 36px;
    }

    .featured-news {
        margin-bottom: 30px;
    }

    .news-image img {
        height: 260px;
    }

    .news-content {
        padding: 28px;
    }

    .news-content h3 {
        font-size: 24px;
    }

}

@media(max-width:767px) {

    .news-section {
        padding: 70px 0;
    }

    .news-section h2 {
        font-size: 30px;
        line-height: 1.4;
    }

    .news-section p {
        font-size: 15px;
    }

    .news-image img {
        height: 220px;
    }

    .news-content {
        padding: 22px;
    }

    .news-content h3 {
        font-size: 22px;
    }

    .news-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .news-card img {
        height: 190px;
    }

    .news-body {
        padding: 18px;
    }

    .news-body h5 {
        font-size: 18px;
    }

    .main-btn {
        padding: 14px 28px;
        font-size: 15px;
    }

}

/*=========================================
FAQ SECTION
=========================================*/

.faq-section {
    background: #fff;
}

.accordion-item {
    border: none;
    border-radius: 18px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .06);
    margin-bottom: 18px;
}

.accordion-button {
    padding: 22px 24px;
    font-weight: 600;
    font-size: 17px;
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: #0d6efd;
    color: #fff;
}

.accordion-body {
    padding: 22px 24px;
    line-height: 1.8;
    color: #666;
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .cta-content h2 {
        font-size: 38px;
    }

    .newsletter-box {
        border-radius: 20px;
        flex-direction: column;
    }

    .newsletter-box input,
    .newsletter-box button {
        width: 100%;
    }

}

@media(max-width:767px) {

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-content p {
        font-size: 16px;
    }

    .blog-content {
        padding: 22px;
    }

    .blog-content h4 {
        font-size: 21px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .accordion-body {
        padding: 18px;
    }

}

/*=========================================
FOOTER
PART 10
=========================================*/

.footer {
    position: relative;
    background: linear-gradient(135deg, #04142f, #071d49, #0b2d70);
    padding-top: 70px;
    color: #cfd8e3;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
}

.shape-1 {
    width: 320px;
    height: 320px;
    top: -140px;
    left: -140px;
}

.shape-2 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -80px;
}

.footer-top {
    padding-bottom: 20px;
}

.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-logo img {
    height: 62px;
    margin-bottom: 20px;
}

.footer-widget h3 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

.footer-widget h3 span {
    color: #4ecbff;
}

.footer-widget p {
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 28px;
    color: #c8d5e4;
}

/*========== COMPANY HIGHLIGHTS ==========*/

.company-highlights {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 30px 0;
}

.highlight-box {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    backdrop-filter: blur(10px);
    transition: .35s;
}

.highlight-box:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .12);
    border-color: #4ecbff;
}

.highlight-box i {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    font-size: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.highlight-box h5 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.highlight-box span {
    font-size: 14px;
    color: #d4deea;
}

/*========== SOCIAL ICONS ==========*/

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
    transition: .35s;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border-color: transparent;
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(13, 110, 253, .35);
}

/*========== FOOTER TITLES ==========*/

.footer-title {
    position: relative;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    padding-bottom: 14px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
}

/*========== LINKS ==========*/

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d8e2ef;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: .35s;
}

.footer-links a i {
    font-size: 13px;
    color: #4ecbff;
    transition: .35s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-links a:hover i {
    transform: translateX(5px);
    color: #fff;
}

/*========== CONTACT ==========*/

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    transition: .35s;
}

.contact-item:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-5px);
    border-color: #4ecbff;
}

.contact-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: #fff;
}

.contact-item h6 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.contact-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #d2dceb;
}

/*========== DIVIDER ==========*/

.footer-divider {
    margin: 0;
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

/*========== FOOTER BOTTOM ==========*/

.footer-bottom {
    padding: 28px 0;
}

.copyright {
    margin: 0;
    font-size: 15px;
    color: #cfd8e3;
}

.copyright strong {
    color: #fff;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom-links a {
    color: #d4deea;
    font-size: 15px;
    text-decoration: none;
    transition: .35s;
}

.footer-bottom-links a:hover {
    color: #4ecbff;
}

/*========== BACK TO TOP ==========*/

.back-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d6efd, #00b4ff);
    color: #fff;
    border-radius: 50%;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(13, 110, 253, .30);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .35s ease;
    z-index: 999;
}

.back-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-top:hover {
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 110, 253, .45);
}

.back-top i {
    transition: .35s ease;
}

.back-top:hover i {
    transform: translateY(-3px);
}

/*========== WHATSAPP ==========*/

.whatsapp-btn {
    position: fixed;
    left: 25px;
    bottom: 25px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(37, 211, 102, .35);
    animation: whatsappPulse 2s infinite;
    z-index: 999;
}

.whatsapp-btn:hover {
    color: #fff;
    transform: scale(1.1);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/*========== RESPONSIVE ==========*/

@media(max-width:991px) {

    .newsletter-card {
        padding: 40px;
        text-align: center;
    }

    .newsletter-content h2 {
        font-size: 34px;
    }

    .newsletter-features {
        justify-content: center;
    }

    .newsletter-input-group {
        flex-direction: column;
        padding: 20px;
        border-radius: 25px;
    }

    .newsletter-input-group i {
        display: none;
    }

    .newsletter-input-group input {
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding-top: 150px;
    }

    .footer-widget {
        margin-bottom: 40px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-top: 18px;
        flex-wrap: wrap;
        gap: 18px;
    }

    .copyright {
        text-align: center;
    }

}

@media(max-width:767px) {

    .newsletter-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .newsletter-content h2 {
        font-size: 28px;
    }

    .newsletter-content p {
        font-size: 15px;
    }

    .newsletter-features {
        flex-direction: column;
        align-items: flex-start;
    }

    .company-highlights {
        gap: 15px;
    }

    .highlight-box {
        padding: 15px;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-contact {
        gap: 15px;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }

    .back-top {
        right: 18px;
        bottom: 90px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn {
        left: 18px;
        bottom: 18px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

}

/*========== FOOTER ANIMATION ==========*/

.footer-widget {
    animation: fadeUp .8s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*========== END FOOTER ==========*/

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #00b4ff);
    z-index: 99999;
    transition: width .15s linear;
}

/* Mouse Glow */

.mouse-glow {
    position: fixed;
    width: 18px;
    height: 18px;
    background: #0d6efd;
    border-radius: 50%;
    pointer-events: none;
    opacity: .15;
    filter: blur(12px);
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: left .08s linear, top .08s linear;
}

/* Page Loaded */

.loaded {
    animation: fadePage .5s ease;
}

@keyframes fadePage {

    from {

        opacity: 0;

    }

    to {

        opacity: 1;

    }

}

/*=========================================
CONTACT
=========================================*/

.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.contact-item {

    display: flex;

    gap: 20px;

    align-items: flex-start;

    margin-bottom: 35px;

}

.contact-item:last-child {

    margin-bottom: 0;

}

.contact-icon {

    width: 65px;

    height: 65px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--secondary));

    color: #fff;

    font-size: 24px;

}

.contact-item h5 {

    margin-bottom: 8px;

}

.contact-item p {

    margin: 0;

    color: var(--text);

}

.form-control,
.form-select {

    height: 58px;

    border-radius: 14px;

    border: 1px solid var(--border);

    padding: 15px 18px;

    box-shadow: none;

}

textarea.form-control {

    height: auto;

    min-height: 170px;

    resize: none;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary);

    box-shadow: 0 0 0 4px rgba(13, 110, 253, .10);

}

/*=========================================
END OF STYLE.CSS
=========================================*/