/*=========================================
  GOOGLE FONT
=========================================*/
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

/*=========================================
  RESET
=========================================*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input {
    font-family: inherit;
}

/*=========================================
 VARIABLES
=========================================*/
:root {

    /* Primary Brand Color (Logo Blue) */
    --primary: #486f1f;

    /* Hover Blue */
    --primary-dark: #486f1f;

    /* Secondary Dark Blue */
    --secondary: #0F2D73;

    /* Dark Background */
    --dark: #071631;

    /* White */
    --white: #ffffff;

    /* Paragraph Text */
    --text: #BFC8D8;

    /* Heading */
    --heading: #ffffff;

    /* Light Background */
    --bg: #F4F7FC;

    /* Border */
    --border: rgba(255, 255, 255, .08);

    /* Accent */
    --accent: #4F86FF;

    /* Radius */
    --radius: 18px;

    /* Transition */
    --transition: .35s ease;

    /* Shadow */
    --shadow:
        0 15px 40px rgba(7, 22, 49, .25);

    /* Container */
    --container: 1320px;

}

/*=========================================
 CONTAINER
=========================================*/

.container {

    width: 100%;

    max-width: var(--container);

    margin: auto;

    padding: 0 20px;

}

/*=========================================
 HEADER
=========================================*/

.header {

    position: fixed;
    padding: 0px 20px;
    left: 0;

    top: 0;

    width: 100%;

    z-index: 9999;

    border-bottom: 1px solid rgba(255, 255, 255, .06);

    transition: .4s;

    backdrop-filter: blur(18px);

    /* background: rgba(7, 29, 27, .88); */
    background: #fff;

}

.header.scrolled {

    background: #081f1d;

    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);

}

/*======================================
TOP HEADER
======================================*/
/*=========================================
TOP HEADER
=========================================*/

.top-header {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, #012E8A 0%, #0652C4 55%, #0A72E8 100%);
    z-index: 9999;
}

.top-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at left top,
            rgba(255, 255, 255, .18),
            transparent 45%),
        radial-gradient(circle at right bottom,
            rgba(255, 255, 255, .10),
            transparent 40%);
    pointer-events: none;
}

.top-header .container {
    position: relative;
    z-index: 2;
    min-height: 54px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/*=========================================
RIGHT SIDE
=========================================*/

.top-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-right>a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: .35s;
    position: relative;
}

/* Divider */

.top-right>a:not(:last-of-type)::after {
    content: "";
    position: absolute;
    right: -10px;
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, .20);
}

/*=========================================
ICONS
=========================================*/

.top-right>a i {

    width: 38px;
    height: 38px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, .14);

    border: 1px solid rgba(255, 255, 255, .18);

    backdrop-filter: blur(15px);

    font-size: 15px;

    transition: .35s;
}

.top-right>a:hover {
    color: #FFD54F;
}

.top-right>a:hover i {
    background: #fff;
    color: #012E8A;
    transform: rotate(-8deg) scale(1.08);
}

/*=========================================
SOCIAL
=========================================*/

.social {

    display: flex;
    align-items: center;
    gap: 10px;

    margin-left: 8px;
}

.social a {

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    color: #fff;

    background: rgba(255, 255, 255, .14);

    border: 1px solid rgba(255, 255, 255, .18);

    transition: .35s;
}

.social a:hover {

    background: #fff;
    color: #012E8A;

    transform: translateY(-4px);

    box-shadow: 0 12px 24px rgba(0, 0, 0, .20);
}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px) {

    .top-header {
        display: none;
    }

}

@media(max-width:768px) {

    .top-header .container {
        justify-content: center;
        padding: 8px 15px;
    }

    .top-right {
        justify-content: center;
        gap: 12px;
    }

    .top-right>a {

        font-size: 13px;
    }

    .top-right>a i {

        width: 34px;
        height: 34px;
    }

    .social {

        width: 100%;
        justify-content: center;
        margin-top: 6px;
        margin-left: 0;
    }

}

@media(max-width:576px) {

    .top-right {

        flex-direction: column;
        gap: 10px;
    }

    .top-right>a::after {
        display: none;
    }

    .social {
        width: auto;
    }

}

/*=========================================
 NAVBAR
=========================================*/

/* .navbar {

    height: 115px;

    display: flex;

    align-items: center;

    justify-content: space-between;

} */

/*=========================================
 LOGO
=========================================*/

.logo {

    display: flex;

    align-items: center;

}

.logo img {
    height: 104px;

}

/*=========================================
 MENU
=========================================*/

.nav-menu {

    display: flex;

    align-items: center;

    gap: 40px;

}

.nav-menu>li {

    position: relative;

}

.nav-menu>li>a {

    display: flex;

    align-items: center;

    gap: 6px;

    font-size: 17px;

    font-weight: 600;

    color: #333;

    transition: var(--transition);

    position: relative;

    padding: 42px 0;

}

.nav-menu>li>a i {

    font-size: 18px;

    transition: .3s;

}

.nav-menu>li:hover>a {

    color: var(--primary);

}

.nav-menu>li:hover>a i {

    transform: rotate(180deg);

}

/* underline */

.nav-menu>li>a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 28px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: .4s;

}

.nav-menu>li:hover>a::after {

    width: 100%;

}

/*=========================================
 RIGHT
=========================================*/

.nav-right {

    display: flex;

    align-items: center;

    gap: 18px;

}

/*=========================================
 SEARCH
=========================================*/

.search-btn {

    width: 54px;

    height: 54px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: rgba(255, 255, 255, .08);

    color: #333;

    transition: .35s;

    font-size: 20px;

}

.search-btn:hover {

    background: var(--primary);

    transform: translateY(-3px);

}

/*=========================================
 QUOTE BUTTON
=========================================*/

.quote-btn {

    height: 56px;

    padding: 0 34px;

    border-radius: 999px;

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    background: var(--primary) !important;

    color: #fff;

    transition: .35s;

    font-size: 16px;

}

.quote-btn i {

    transition: .35s;

}

.quote-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(239, 99, 45, .45);

}

.quote-btn:hover i {

    transform: translateX(6px);

}

/*=========================================
 9 DOT MENU
=========================================*/
/*==============================
MENU BUTTON
==============================*/

.menu-btn {

    border: none;
    outline: none;
    cursor: pointer;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    border-radius: 50%;
    transition: .35s ease;
}

/* Common */

.menu-btn span {
    height: 3px;
    background: #1d2b3a !important;
    border-radius: 50px;
    transition: all .35s ease;
}

/* First Line (Longest) */

.menu-btn span:nth-child(1) {
    width: 28px;
}

/* Second Line */

.menu-btn span:nth-child(2) {
    width: 20px;
}

/* Third Line (Smallest) */

.menu-btn span:nth-child(3) {
    width: 13px;
}

/* Hover */

/* .menu-btn:hover {
    background: #0652C4;
} */

.menu-btn:hover span {
    width: 28px;
}

/* Optional Animation */

.menu-btn:hover span:nth-child(1) {
    transform: translateX(-2px);
}

.menu-btn:hover span:nth-child(2) {
    transform: translateX(0);
}

.menu-btn:hover span:nth-child(3) {
    transform: translateX(-2px);
}

/*=========================================
 MOBILE MENU BUTTON
=========================================*/

.mobile-toggle {

    width: 52px;

    height: 52px;

    display: none;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 28px;

}

/*=========================================
 DROPDOWN PLACEHOLDER
=========================================*/

.submenu {

    display: none;

}

/*=========================================
 HERO PLACEHOLDER
=========================================*/

.hero {

    min-height: 100svh;

    padding-top: 110px;

}

/*=========================================
 SELECTION
=========================================*/

::selection {

    background: var(--primary);

    color: #fff;

}

/*=========================================
 SCROLLBAR
=========================================*/

::-webkit-scrollbar {

    width: 8px;

}

::-webkit-scrollbar-track {

    background: #ffffff;

}

::-webkit-scrollbar-thumb {

    background: var(--primary);

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #ff7a45;

}

/*==================================================
  DROPDOWN MENU
==================================================*/

.dropdown {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 280px;
    background: #ffffff;

    padding: 18px 0;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(25px);
    transition: all .35s ease;
    z-index: 999;
    display: block;
}

.dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/*==================================================
  SUBMENU ITEMS
==================================================*/

.submenu li {
    position: relative;
}

.submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 600;
    color: #222;
    transition: .35s;
    position: relative;
}

.submenu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    color: #000;
    height: 2px;
    background: #fff;
    transition: .35s;
}

.submenu li:hover>a {
    color: var(--primary);
    padding-left: 42px;
}

.submenu li:hover>a::before {
    width: 18px;
}

/*==================================================
  SECOND LEVEL DROPDOWN
==================================================*/

.submenu .dropdown {
    position: relative;
}

.submenu .dropdown>a::after {
    content: "\ea6e";
    font-family: "remixicon";
    font-size: 16px;
}

.submenu .dropdown>.submenu {
    top: -18px;
    left: 100%;
    margin-left: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
}

.submenu .dropdown:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/*==================================================
  DROPDOWN DIVIDER
==================================================*/

.submenu li+li {
    border-top: 1px solid rgba(0, 0, 0, .05);
}

/*==================================================
  DROPDOWN LABEL
==================================================*/

.menu-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 22px;
    background: var(--primary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 30px;
    margin-left: 10px;
    text-transform: uppercase;
}

/*==================================================
  MEGA MENU PLACEHOLDER
==================================================*/

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(25px);
    width: 1080px;
    background: #fff;
    border-radius: 22px;
    padding: 45px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .18);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

.has-mega:hover>.mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/*==================================================
  MEGA MENU TITLE
==================================================*/

.mega-title {
    font-size: 17px;
    font-weight: 800;
    color: #111;
    margin-bottom: 18px;
}

.mega-menu ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mega-menu ul li a {
    color: #555;
    font-size: 15px;
    transition: .3s;
}

.mega-menu ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/*==================================================
  DROPDOWN ANIMATION
==================================================*/

@keyframes dropdownFade {

    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.dropdown:hover>.submenu {
    animation: dropdownFade .35s ease;
}

/*==================================================
  OVERLAY
==================================================*/

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: .4s ease;
    z-index: 9998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/*==================================================
  OFFCANVAS
==================================================*/

.offcanvas {
    position: fixed;
    top: 0;
    right: -430px;
    width: 420px;
    max-width: 100%;
    height: 100vh;

    height: 100svh;
    background: #fff !important;
    color: #333;
    z-index: 99999;
    transition: .45s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: -25px 0 60px rgba(0, 0, 0, .35);
}

.offcanvas.active {
    right: 0;
}

/*==================================================
  HEADER
==================================================*/

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 30px 8px;
    border-bottom: 2px solid rgb(0 0 0 / 8%);
}

.offcanvas-header img {
    height: 80px;
    width: 80px;
}

.offcanvas-header button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #000;
    font-size: 22px;
    transition: .35s;
}

.offcanvas-header button:hover {
    background: var(--primary);
    transform: rotate(90deg);
}

/*==================================================
  BODY
==================================================*/

.offcanvas-content {
    flex: 1;
    overflow-y: auto;
    padding: 35px 30px 40px;
}

.offcanvas-content h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 18px;
}

.offcanvas-content p {
    color: #000;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/*==================================================
  BUTTON
==================================================*/

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 58px;
    border-radius: 999px;
    background: var(--primary);
    color: #FFF;
    font-size: 16px;
    font-weight: 700;
    transition: .35s;
    margin-bottom: 45px;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(239, 99, 45, .35);
}

/*==================================================
 CONTACT BOX
==================================================*/

.contact-box {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 35px;
}

.contact-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-item i {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #486f1f;
    color: #FFF;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item span {
    color: #333;
    line-height: 1.8;
    font-size: 15px;
}

/*==================================================
 SOCIAL
==================================================*/

.socials {
    display: flex;
    gap: 15px;
    margin-top: 45px;
}

.socials a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #486f1f;
    color: #FFF;
    transition: .35s;
    font-size: 18px;
}

.socials a:hover {
    background: var(--primary);
    transform: translateY(-4px);
}

/*==================================================
 SCROLLBAR
==================================================*/

.offcanvas-content::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-content::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 20px;
}

.offcanvas-content::-webkit-scrollbar-track {
    background: transparent;
}

/*==================================================
 OPEN ANIMATION
==================================================*/

.offcanvas.active {
    animation: drawerOpen .45s ease;
}

@keyframes drawerOpen {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

/*==================================================
 CLOSE ICON
==================================================*/

#closeMenu {
    cursor: pointer;
}

/*==================================================
 SMALL DEVICES
==================================================*/

@media(max-width:575px) {

    .offcanvas {

        width: 100%;

    }

    .offcanvas-header {

        padding: 20px;

    }

    .offcanvas-content {

        padding: 25px 20px 35px;

    }

}

.offcanvas {
    visibility: visible !important;
}

/*==================================================
  HERO SECTION - PREMIUM LAYOUT
==================================================*/

/* .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
 background-image: url("slider-v3-img1.jpg");
    align-items: center;
    padding-top: 110px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #061513 100%);
} */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    overflow: hidden;

    background:
        linear-gradient(180deg, rgba(7, 29, 27, 0.8) 0%, rgba(6, 21, 19, 0.9) 100%),
        url("slider-v3-img1.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* background glow */
.hero-bg {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 30%, rgba(239, 99, 45, .25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 120, 255, .18), transparent 45%);
    z-index: 0;
}

/* container layout */
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/*==================================================
  LEFT SIDE
==================================================*/

.hero-left {
    flex: 1;
    max-width: 650px;
    position: relative;
}

/* scroll box */
.scroll-box {
    position: absolute;
    left: -70px;
    top: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    letter-spacing: 2px;
}

.scroll-box .prev {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
    backdrop-filter: blur(10px);
}

.scroll-box .prev:hover {
    background: var(--primary);
    transform: translateX(-3px);
}

/* hero text */
.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--primary);
    position: relative;
}

/* underline animation for span */
.hero-content h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: var(--primary);
    opacity: .6;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, .75);
    max-width: 520px;
    line-height: 1.8;
}

/*==================================================
  RIGHT SIDE IMAGE
==================================================*/

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-right img {
    width: 100%;
    max-width: 520px;

    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, .4));
    transform: translateY(0);
    animation: floatHero 6s ease-in-out infinite;
}

/* floating animation */
@keyframes floatHero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/*==================================================
  NEXT BUTTON (RIGHT ARROW)
==================================================*/

.hero-next {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: .35s;
    backdrop-filter: blur(12px);
    z-index: 3;
}

.hero-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
}

/*==================================================
  HERO DECORATIVE SHAPES
==================================================*/

/* big circle glow */
.hero::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 99, 45, .15), transparent 60%);
    top: -200px;
    left: -200px;
    z-index: 0;
}

/* diagonal line effect */
.hero::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, .08), transparent);
    left: 50%;
    top: 0;
    z-index: 1;
    opacity: .4;
}

/*==================================================
  RESPONSIVE HERO FIX (basic)
==================================================*/

@media(max-width:1200px) {
    .hero-content h1 {
        font-size: 52px;
    }
}

@media(max-width:991px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .scroll-box {
        display: none;
    }

    .hero-next {
        display: none;
    }
}

@media(max-width:575px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

.hero-section.style-6::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0;
    mix-blend-mode: hard-light;
    background: rgba(3, 42, 42, .9019607843137255);
    transition: 0.4s ease-in-out;
}


/* ================================
GLOBAL FIX
================================ */

/* ================================
HEADER
================================ */

.header {
    /* position: fixed !important;
    top: 0 !important;
    left: 0 !important; */
    width: 100% !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #eee !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05) !important;
}

.header {

    top: 0;
}

/* ================================
CONTAINER
================================ */
.container {
    max-width: 1320px !important;
    margin: auto !important;
    padding: 0 20px !important;
}

/* ================================
NAVBAR
================================ */
.navbar {
    height: 110px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 4px !important;
}

/*==========================
PHONE ICON
==========================*/

.phone-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.18);
    color: #fff;

    animation: ring 2.2s infinite;
    transform-origin: center;
}

.phone-icon i {
    font-size: 18px;
}

/* Ring Animation */

@keyframes ring {

    0% {
        transform: rotate(0deg);
    }

    3% {
        transform: rotate(18deg);
    }

    6% {
        transform: rotate(-18deg);
    }

    9% {
        transform: rotate(14deg);
    }

    12% {
        transform: rotate(-14deg);
    }

    15% {
        transform: rotate(8deg);
    }

    18% {
        transform: rotate(-8deg);
    }

    21% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }

}

/* Premium Hover */

.quote-btn:hover .phone-icon {

    animation-play-state: paused;

    background: #fff;
    color: #012E8A;

    transform: scale(1.08);
}

/* Arrow Animation */

.arrow-icon {
    transition: .35s;
}

.quote-btn:hover .arrow-icon {
    transform: translateX(6px);
}

/* ================================
LOGO FIX (BLUE BOX)
================================ */
/* .logo{
    display:flex !important;
    align-items:center !important;
    background:#0b5cff !important;
    padding:12px 18px !important;
    border-radius:10px !important;
}

.logo img{
    height:40px !important;
    filter:brightness(0) invert(1) !important;
} */

/* ================================
MENU
================================ */
.nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: 25px !important;
}

.nav-menu>li>a {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #1d2b3a !important;
    padding: 35px 0 !important;
    position: relative !important;
    transition: .3s !important;
}

.nav-menu>li:hover>a {
    color: #0b5cff !important;
}

/* underline */
.nav-menu>li>a::after {
    content: "" !important;
    position: absolute !important;
    bottom: 25px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: #0b5cff !important;
    transition: .3s !important;
}

.nav-menu>li:hover>a::after {
    width: 100% !important;
}

/* ================================
RIGHT SIDE
================================ */
.nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
    margin-bottom: 6px !important;
}

/* SEARCH */
.search-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: #f3f6fb !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #1d2b3a !important;
}

.search-btn:hover {
    background: #0b5cff !important;
    color: #fff !important;
}

/* CTA BUTTON */
.quote-btn {

    color: #fff !important;
    padding: 14px 8px 14px 14px !important;
    border-radius: 10px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

/* 9 DOT MENU */



/* ================================
DROPDOWN MENU
================================ */
.dropdown {
    position: relative !important;
}

.submenu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 220px !important;
    background: #fff !important;
    /* border-radius:12px !important; */
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12) !important;
    padding: 10px 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(15px) !important;
    transition: .3s !important;
    z-index: 9999 !important;
}

.dropdown:hover>.submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* submenu items */
.submenu li a {
    display: block !important;
    padding: 12px 18px !important;
    color: #333 !important;
    font-size: 14px !important;
    transition: .3s !important;
}

.submenu li a:hover {
    background: #486f1f !important;
    color: #fff !important;
    padding-left: 22px !important;
}

/* ================================
OVERLAY / OFFCANVAS (SAFE)
================================ */
.overlay {
    position: fixed !important;
    inset: 0 !important;
    background: rgba(0, 0, 0, .5) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.offcanvas {
    position: fixed !important;
    top: 0 !important;
    right: -420px !important;
    width: 400px !important;
    height: 100vh !important;
    background: #ffffff !important;
    transition: .4s !important;
}

.offcanvas.active {
    right: 0 !important;
}

/* ================================
RESPONSIVE BASIC
================================ */
@media(max-width:991px) {
    .nav-menu {
        display: none !important;
    }
}

/*=========================================================
  PREMIUM CLEANING SERVICES
  PART 2.1
=========================================================*/

:root {

    /* Brand Colors */
    --primary: #486f1f;
    /* Main Logo Blue */
    --primary-dark: #143C90;
    /* Dark Blue */
    --primary-light: #4D7BE8;
    /* Hover Blue */

    /* Accent */
    --accent: #5DA9FF;
    /* Light Accent Blue */

    /* Text */
    --secondary: #111827;
    /* Heading */
    --paragraph: #6B7280;
    /* Paragraph */

    /* Background */
    --white: #FFFFFF;
    --bg: #F7F9FC;
    --card-bg: #FFFFFF;
    --border: #E5EAF3;

    /* Effects */
    --shadow: 0 15px 40px rgba(30, 79, 182, 0.12);
    --shadow-hover: 0 25px 60px rgba(30, 79, 182, 0.22);

    /* Radius */
    --radius: 24px;

    /* Transition */
    --transition: all .4s ease;

    /* Optional Gradient */
    --gradient: linear-gradient(135deg,
            #486f1f 0%,
            #2E68E6 100%);

}


img {

    width: 100%;
    display: block;

}

a {

    text-decoration: none;

}

ul {

    list-style: none;

}

.container {

    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;

}


/*========================================
SECTION
========================================*/

.service-section {

    position: relative;
    padding: 60px 30px;
    background: #fff;
    overflow: hidden;

}


/*========================================
LEFT DOTS
========================================*/

.dot-pattern {

    position: absolute;

    width: 120px;
    height: 220px;

    left: 20px;
    top: 180px;

    background-image:

        radial-gradient(#b6d8ff 1.6px, transparent 1.6px);

    background-size: 14px 14px;

    opacity: .8;

}


/*========================================
HEADING
========================================*/

.section-heading {

    text-align: center;
    margin-bottom: 70px;

}

.mini-title {

    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #4b7721;

    font-size: 14px;

    letter-spacing: 3px;

    font-weight: 700;

    text-transform: uppercase;

}

.mini-title span {

    width: 28px;
    height: 2px;
    background: var(--primary);

}

.section-heading h2 {

    margin-top: 18px;

    font-size: 58px;

    line-height: 1.15;

    font-weight: 800;

    color: #111;

}

.section-heading h2 span {

    color: var(--primary);

}

.section-heading p {

    margin-top: 20px;

    font-size: 18px;

    color: var(--paragraph);

    max-width: 720px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.8;

}


/*========================================
GRID
========================================*/

.service-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 35px;

}


/*========================================
CARD
========================================*/

.service-card {

    position: relative;

    border-radius: 24px;

    overflow: visible;

    transition: var(--transition);

}


/*========================================
IMAGE
========================================*/

.image-box {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    height: 300px;

}

.image-box img {

    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: .7s;

}


/*========================================
CONTENT CARD
========================================*/

.service-content {

    position: relative;

    width: 100%;

    margin: -60px auto 0;

    background: #fff;

    border-radius: 22px;

    padding: 28px 24px;

    box-shadow:

        0 20px 50px rgba(0, 0, 0, .10);

    border-bottom: 4px solid var(--primary);

    transition: var(--transition);

    z-index: 5;

}


/*========================================
ICON
========================================*/

.service-icon {

    position: absolute;

    width: 68px;
    height: 68px;

    border-radius: 50%;

    background: var(--primary);

    top: -34px;
    left: 24px;

    display: flex;
    justify-content: center;
    align-items: center;

    border: 5px solid #fff;

    box-shadow:

        0 12px 30px rgba(139, 197, 63, .35);

}

.service-icon i {

    color: #fff;

    font-size: 28px;

}


/*========================================
TITLE
========================================*/

.service-content h3 {

    margin-top: 18px;

    font-size: 18px;

    line-height: 1.3;

    color: #111;

    font-weight: 700;

}


/*========================================
PARAGRAPH
========================================*/

.service-content p {

    margin-top: 5px;
    color: var(--paragraph);
    line-height: 1.8;
    font-size: 15px;
    min-height: 75px;

}


/*========================================
BOTTOM AREA
========================================*/

.card-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-top: 28px;

    padding-top: 18px;

    border-top: 1px solid var(--border);

}

.service-link {

    color: #111;

    font-size: 15px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;

}

/*==========================================
BUTTON
==========================================*/

.card-bottom button {

    width: 48px;
    height: 48px;

    border: none;
    outline: none;

    border-radius: 50%;

    background: #f3f3f3;

    cursor: pointer;

    transition: .4s;

    display: flex;
    justify-content: center;
    align-items: center;

}

.card-bottom button i {

    font-size: 18px;
    transition: .4s;

}


/*==========================================
CARD HOVER
==========================================*/

.service-card:hover {

    transform: translateY(-15px);

}

.service-card:hover .image-box img {

    transform: scale(1.10);

}

.service-card:hover .service-content {

    box-shadow:
        0 35px 70px rgba(0, 0, 0, .18);

}

.service-card:hover .service-icon {

    transform: rotate(8deg) scale(1.08);

}

.service-card:hover button {

    background: var(--primary);

}

.service-card:hover button i {

    color: #fff;

    transform: translateX(4px);

}

.service-card:hover .service-link {

    color: var(--primary);

}


/*==========================================
VIEW ALL BUTTON
==========================================*/

.service-btn {

    margin-top: 70px;

    text-align: center;

}

.service-btn a {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 18px 42px;

    background: var(--primary);

    color: #fff;

    border-radius: 60px;

    font-size: 16px;

    font-weight: 600;

    letter-spacing: .5px;

    transition: .4s;

    box-shadow:
        0 20px 45px rgba(139, 197, 63, .35);

}

.service-btn a i {

    transition: .4s;

}

.service-btn a:hover {

    background: var(--primary-dark);

    transform: translateY(-4px);

}

.service-btn a:hover i {

    transform: translateX(6px);

}


/*==========================================
ANIMATION
==========================================*/

.service-card {

    animation: fadeUp .8s ease both;

}

.service-card:nth-child(2) {

    animation-delay: .1s;

}

.service-card:nth-child(3) {

    animation-delay: .2s;

}

.service-card:nth-child(4) {

    animation-delay: .3s;

}

.service-card:nth-child(5) {

    animation-delay: .4s;

}

.service-card:nth-child(6) {

    animation-delay: .5s;

}

.service-card:nth-child(7) {

    animation-delay: .6s;

}

.service-card:nth-child(8) {

    animation-delay: .7s;

}

@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(60px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/*==========================================
LARGE DESKTOP
==========================================*/

@media(max-width:1400px) {

    .container {

        max-width: 1140px;

    }

    .image-box {

        height: 270px;

    }

    .section-heading h2 {

        font-size: 52px;

    }

}


/*==========================================
LAPTOP
==========================================*/

@media(max-width:1200px) {

    .service-grid {

        grid-template-columns: repeat(3, 1fr);

    }

    .image-box {

        height: 260px;

    }

    .section-heading h2 {

        font-size: 48px;

    }

}


/*==========================================
TABLET
==========================================*/

@media(max-width:991px) {

    .service-section {

        padding: 80px 0;

    }

    .service-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 30px;

    }

    .section-heading h2 {

        font-size: 42px;

    }

    .section-heading p {

        font-size: 16px;

    }

    .image-box {

        height: 250px;

    }

}


/*==========================================
MOBILE
==========================================*/

@media(max-width:767px) {

    .section-heading {

        margin-bottom: 50px;

    }

    .section-heading h2 {

        font-size: 34px;

    }

    .service-grid {

        grid-template-columns: 1fr;

    }

    .service-content {

        width: 92%;

        padding: 24px;

    }

    .service-content h3 {

        font-size: 24px;

    }

    .service-btn {

        margin-top: 50px;

    }

    .service-btn a {

        padding: 16px 34px;

        font-size: 15px;

    }

    .dot-pattern {

        display: none;

    }

}


/*==========================================
SMALL MOBILE
==========================================*/

@media(max-width:480px) {

    .service-section {

        padding: 60px 0;

    }

    .container {

        padding: 0 18px;

    }

    .section-heading h2 {

        font-size: 28px;

        line-height: 1.3;

    }

    .section-heading p {

        font-size: 15px;

        line-height: 1.7;

    }

    .image-box {

        height: 220px;

    }

    .service-content {

        padding: 22px;

    }

    .service-content h3 {

        font-size: 21px;

    }

    .service-content p {

        font-size: 14px;

        min-height: auto;

    }

    .card-bottom {

        margin-top: 20px;

        padding-top: 15px;

    }

    .service-btn a {

        width: 100%;

        justify-content: center;

    }

}


/*==========================================
EXTRA HOVER GLOW
==========================================*/

.service-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    border-radius: 24px;

    background: linear-gradient(135deg,
            rgba(139, 197, 63, .15),
            transparent 60%);

    opacity: 0;

    transition: .5s;

    pointer-events: none;

}

.service-card:hover::before {

    opacity: 1;

}


/*==========================================
SMOOTH TRANSITIONS
==========================================*/

.service-card,
.image-box img,
.service-content,
.service-icon,
.service-link,
button,
button i,
.service-btn a {

    transition: all .4s ease;

}

/* Scroll Reveal */

.service-card {

    opacity: 0;

    transform: translateY(80px);

}

.service-card.show {

    opacity: 1;

    transform: translateY(0);

}

/* Ripple */

.card-bottom button {

    position: relative;

    overflow: hidden;

}

.ripple {

    position: absolute;

    border-radius: 50%;

    transform: scale(0);

    animation: ripple .6s linear;

    background: rgba(255, 255, 255, .5);

    pointer-events: none;

}

@keyframes ripple {

    to {

        transform: scale(4);

        opacity: 0;

    }

}

/*==========================================
SWIPER SLIDER FIX
==========================================*/

.serviceSlider {
    width: 100% !important;
    overflow: hidden !important;
    padding: 20px 5px 70px !important;
    position: relative !important;
}

.serviceSlider .swiper-wrapper {
    display: flex !important;
    align-items: flex-start !important;
}

.serviceSlider .swiper-slide {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    height: auto !important;
    box-sizing: border-box !important;
}

/* CARD */

.serviceSlider .service-card {
    width: 100% !important;
    height: auto !important;
    min-height: unset !important;
    display: block !important;
    margin: 0 !important;
    transform: none !important;
}

/* IMAGE */

.serviceSlider .image-box {
    height: 300px !important;
    overflow: hidden !important;
    border-radius: 24px !important;
}

.serviceSlider .image-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* CONTENT */

.serviceSlider .service-content {
    width: 92% !important;
    margin: -60px auto 0 !important;
    padding: 28px 24px !important;
    height: auto !important;
    min-height: unset !important;
    display: block !important;
}

/* TITLE */

.serviceSlider .service-content h3 {
    min-height: auto !important;
    margin-bottom: 0 !important;
}

/* PARAGRAPH */

.serviceSlider .service-content p {
    min-height: auto !important;
    margin-bottom: 0 !important;
}

/* BUTTON AREA */

.serviceSlider .card-bottom {
    margin-top: 22px !important;
}

/* PAGINATION */

.serviceSlider .swiper-pagination {
    bottom: 0 !important;
}

.serviceSlider .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #d9d9d9 !important;
    opacity: 1 !important;
    transition: .35s !important;
}

.serviceSlider .swiper-pagination-bullet-active {
    width: 28px !important;
    border-radius: 30px !important;
    background: var(--primary) !important;
}

/* ARROWS */

.serviceSlider .swiper-button-next,
.serviceSlider .swiper-button-prev {

    width: 52px !important;
    height: 52px !important;

    border-radius: 50% !important;

    background: #fff !important;

    color: var(--primary) !important;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15) !important;

    transition: .35s !important;
}

.serviceSlider .swiper-button-next:hover,
.serviceSlider .swiper-button-prev:hover {

    background: var(--primary) !important;

    color: #fff !important;

}

.serviceSlider .swiper-button-next:after,
.serviceSlider .swiper-button-prev:after {

    font-size: 18px !important;

    font-weight: 700 !important;

}

/* HOVER */

.serviceSlider .service-card:hover {

    transform: translateY(-12px) !important;

}

.serviceSlider .service-card:hover .image-box img {

    transform: scale(1.08) !important;

}

/*==========================================
RESPONSIVE
==========================================*/

@media(max-width:1200px) {

    .serviceSlider .image-box {

        height: 270px !important;

    }

}

@media(max-width:991px) {

    .serviceSlider {

        padding-bottom: 60px !important;

    }

    .serviceSlider .image-box {

        height: 250px !important;

    }

}

@media(max-width:767px) {

    .serviceSlider .image-box {

        height: 220px !important;

    }

    .serviceSlider .service-content {

        width: 94% !important;

        padding: 24px !important;

    }

    .serviceSlider .swiper-button-next,
    .serviceSlider .swiper-button-prev {

        width: 42px !important;

        height: 42px !important;

    }

}

@media(max-width:480px) {

    .serviceSlider .image-box {

        height: 200px !important;

    }

    .serviceSlider .service-content {

        width: 95% !important;

        padding: 20px !important;

    }

}



/*==================================================
 WHY CHOOSE US SECTION
==================================================*/

.choose-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background:
        linear-gradient(135deg, #ffffff 0%, #f7fbef 45%, #ffffff 100%);
    z-index: 1;
}

/*==================================
BACKGROUND SHAPES
==================================*/

.choose-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.shape-one {
    width: 450px;
    height: 450px;
    background: rgba(139, 197, 63, .08);
    top: -180px;
    left: -150px;
    filter: blur(10px);
}

.shape-two {
    width: 300px;
    height: 300px;
    background: rgba(139, 197, 63, .12);
    right: -80px;
    bottom: -120px;
    filter: blur(15px);
}

/*==================================
LAYOUT
==================================*/

.choose-wrapper {

    display: grid;

    grid-template-columns: 1fr 560px;

    align-items: center;

    gap: 80px;

}

/*==================================
LEFT CONTENT
==================================*/

.choose-left {

    position: relative;

}

.choose-tag {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(139, 197, 63, .10);

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 30px;

}

.choose-tag span {

    width: 30px;

    height: 2px;

    background: var(--primary);

}

/*==================================
HEADING
==================================*/

.choose-left h2 {

    font-size: 32px;

    line-height: 1.15;

    font-weight: 800;

    color: #111;

    margin-bottom: 30px;

}

.choose-left h2 span {

    color: var(--primary);

}

.choose-left h2 strong {

    display: block;

    margin: 18px 0;

    color: var(--primary);

    font-size: 22px;

    line-height: 1;

}

/*==================================
DESCRIPTION
==================================*/

.choose-left p {

    font-size: 18px;

    line-height: 1.9;

    color: #666;

    max-width: 650px;

    margin-bottom: 45px;

}

/*==================================
FEATURE GRID
==================================*/

.choose-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;

    margin-bottom: 50px;

}

/*==================================
FEATURE CARD
==================================*/

.feature-box {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #fff;

    padding: 22px 22px;

    border-radius: 22px;

    box-shadow:

        0 12px 40px rgba(0, 0, 0, .08);

    border: 1px solid rgba(0, 0, 0, .05);

    transition: .40s;

    cursor: pointer;

}

.feature-box:hover {

    transform: translateY(-8px);

    box-shadow:

        0 25px 55px rgba(0, 0, 0, .14);

    border-color: rgba(139, 197, 63, .30);

}

/*==================================
FEATURE ICON
==================================*/

.feature-icon {

    width: 68px;

    height: 68px;

    min-width: 68px;

    border-radius: 18px;

    background:

        linear-gradient(135deg, var(--primary), var(--primary));

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:

        0 12px 28px rgba(139, 197, 63, .35);

    transition: .40s;

}

.feature-icon i {

    color: #fff;

    font-size: 28px;

}

.feature-box:hover .feature-icon {

    transform: rotate(-8deg) scale(1.08);

}

/*==================================
FEATURE TEXT
==================================*/

.feature-box h4 {

    margin: 0;

    font-size: 18px;

    font-weight: 700;

    color: #111;

    line-height: 1.3;

}

.feature-box span {

    display: block;

    margin-top: 6px;

    color: #777;

    font-size: 15px;

}

/*==================================
CTA BUTTON
==================================*/

.choose-btn {

    margin-top: 10px;

}

.choose-btn a {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 18px 42px;

    background:

        linear-gradient(135deg, var(--primary), var(--primary));

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    border-radius: 60px;

    text-decoration: none;

    box-shadow:

        0 18px 40px rgba(139, 197, 63, .35);

    transition: .35s;

}

.choose-btn a i {

    transition: .35s;

}

.choose-btn a:hover {

    transform: translateY(-6px);

    box-shadow:

        0 25px 55px rgba(139, 197, 63, .45);

}

.choose-btn a:hover i {

    transform: translateX(8px);

}

/*==================================
LIGHT GLOW
==================================*/

.choose-left::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .08);

    top: -40px;

    left: -70px;

    filter: blur(45px);

    z-index: -1;

}

/*==================================================
RIGHT SIDE
==================================================*/

.choose-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/*==================================
MAIN IMAGE
==================================*/

.main-image {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 35px;
    overflow: hidden;
    background: #fff;
    padding: 14px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .12);
    transition: .45s;
}

.main-image img {
    width: 100%;
    display: block;
    border-radius: 28px;
    object-fit: cover;
    transition: .7s;
}

.main-image:hover {
    transform: translateY(-12px);
    box-shadow:
        0 35px 90px rgba(0, 0, 0, .18);
}

.main-image:hover img {
    transform: scale(1.08);
}

/*==================================
IMAGE OVERLAY
==================================*/

.main-image::before {

    content: "";

    position: absolute;

    inset: 14px;

    border-radius: 28px;

    background: linear-gradient(to top,
            rgba(0, 0, 0, .30),
            transparent 55%);

    opacity: 0;

    transition: .4s;

    z-index: 2;

}

.main-image:hover::before {

    opacity: 1;

}

/*==================================
GREEN BORDER
==================================*/

.main-image::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    border: 5px solid var(--primary);

    border-radius: 30px;

    top: -20px;

    right: -20px;

    z-index: -1;

}

/*==================================
EXPERIENCE CARD
==================================*/

.experience-card {

    position: absolute;

    left: -45px;

    bottom: 40px;

    width: 180px;

    padding: 28px 22px;

    border-radius: 28px;

    background: linear-gradient(135deg,
            var(--primary),
            #74af2d);

    color: #fff;

    text-align: center;

    box-shadow:
        0 20px 50px rgba(139, 197, 63, .40);

    animation: floatCard 4s ease-in-out infinite;

    z-index: 5;

}

.experience-card h3 {

    margin: 0;

    font-size: 56px;

    font-weight: 800;

    line-height: 1;

}

.experience-card h3 span {

    display: inline-block;

}

.experience-card p {

    margin-top: 12px;

    font-size: 16px;

    line-height: 1.5;

    color: #fff;

    font-weight: 600;

}

/*==================================
FLOATING REVIEW CARD
==================================*/

.floating-review {

    position: absolute;

    right: -40px;

    top: 55px;

    width: 260px;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(14px);

    border-radius: 22px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .12);

    animation: floatReview 5s ease-in-out infinite;

}

.review-icon {

    width: 62px;

    height: 62px;

    min-width: 62px;

    border-radius: 18px;

    background: linear-gradient(135deg,
            #FFD54F,
            #FFC107);

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:
        0 10px 30px rgba(255, 193, 7, .35);

}

.review-icon i {

    color: #fff;

    font-size: 28px;

}

.floating-review h4 {

    margin: 0;

    color: #111;

    font-size: 20px;

    font-weight: 700;

}

.floating-review span {

    display: block;

    margin-top: 6px;

    color: #777;

    font-size: 15px;

}

/*==================================
SMALL FLOATING CIRCLE
==================================*/

.choose-right::before {

    content: "";

    position: absolute;

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .18);

    top: 80px;

    left: -30px;

    animation: circleMove 6s linear infinite;

}

.choose-right::after {

    content: "";

    position: absolute;

    width: 28px;

    height: 28px;

    border-radius: 50%;

    background: var(--primary);

    right: 30px;

    bottom: 25px;

    animation: circlePulse 2.8s ease-in-out infinite;

}

/*==================================
ANIMATIONS
==================================*/

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

@keyframes floatReview {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(10px);

    }

}

@keyframes circleMove {

    0% {

        transform: translateY(0) rotate(0);

    }

    50% {

        transform: translateY(25px) rotate(180deg);

    }

    100% {

        transform: translateY(0) rotate(360deg);

    }

}

@keyframes circlePulse {

    0%,
    100% {

        transform: scale(1);

        opacity: 1;

    }

    50% {

        transform: scale(1.35);

        opacity: .55;

    }

}

/*==================================================
BOTTOM STATISTICS
==================================================*/

.stats-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

    margin-top: 100px;

}

/*=========================================
STAT CARD
=========================================*/

.stat-card {

    position: relative;

    background: rgba(255, 255, 255, .92);

    backdrop-filter: blur(14px);

    border-radius: 28px;

    padding: 45px 30px;

    text-align: center;

    overflow: hidden;

    border: 1px solid rgba(139, 197, 63, .12);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .08);

    transition: .45s;

}

.stat-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .08);

    top: -120px;

    right: -100px;

    transition: .45s;

}

.stat-card:hover {

    transform: translateY(-12px);

    border-color: rgba(139, 197, 63, .30);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, .15);

}

.stat-card:hover::before {

    transform: scale(1.4);

}

.stat-card i {

    width: 82px;

    height: 82px;

    border-radius: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    margin: 0 auto 24px;

    background: linear-gradient(135deg,
            var(--primary),
            var(--primary));

    color: #fff;

    font-size: 34px;

    box-shadow:
        0 18px 40px rgba(139, 197, 63, .35);

    transition: .4s;

}

.stat-card:hover i {

    transform: rotate(-8deg) scale(1.08);

}

.stat-card h3 {

    margin: 0;

    font-size: 52px;

    font-weight: 800;

    color: #111;

    line-height: 1;

}

.stat-card h3 span {

    color: var(--primary);

}

.stat-card p {

    margin-top: 14px;

    font-size: 17px;

    color: #666;

    font-weight: 500;

}

/*=========================================
HOVER GLOW
=========================================*/

.stat-card::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg,
            var(--primary),
            #b5df7d);

    transform: scaleX(0);

    transition: .4s;

}

.stat-card:hover::after {

    transform: scaleX(1);

}

/*=========================================
SECTION DECORATION
=========================================*/

.choose-section::before {

    content: "";

    position: absolute;

    width: 520px;

    height: 520px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .05);

    right: -220px;

    top: 120px;

    filter: blur(50px);

}

.choose-section::after {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .06);

    left: -150px;

    bottom: -150px;

    filter: blur(45px);

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1200px) {

    .choose-wrapper {

        grid-template-columns: 1fr;

        gap: 70px;

    }

    .choose-left {

        text-align: center;

    }

    .choose-left p {

        margin: auto;

        margin-bottom: 45px;

    }

    .choose-tag {

        justify-content: center;

    }

    .choose-features {

        max-width: 760px;

        margin: 0 auto 50px;

    }

    .choose-btn {

        text-align: center;

    }

    .main-image {

        max-width: 650px;

        margin: auto;

    }

    .experience-card {

        left: 20px;

        bottom: 20px;

    }

    .floating-review {

        right: 20px;

        top: 20px;

    }

    .stats-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px) {

    .choose-section {

        padding: 80px 0;

    }

    .choose-left h2 {

        font-size: 38px;

    }

    .choose-left h2 strong {

        font-size: 54px;

    }

    .choose-left p {

        font-size: 16px;

    }

    .choose-features {

        grid-template-columns: 1fr;

    }

    .main-image {

        padding: 10px;

    }

    .main-image img {

        border-radius: 18px;

    }

    .experience-card {

        width: 145px;

        padding: 22px;

        left: 10px;

        bottom: 10px;

    }

    .experience-card h3 {

        font-size: 42px;

    }

    .experience-card p {

        font-size: 14px;

    }

    .floating-review {

        width: 210px;

        padding: 16px;

        right: 8px;

        top: 8px;

    }

    .review-icon {

        width: 50px;

        height: 50px;

        min-width: 50px;

    }

    .review-icon i {

        font-size: 22px;

    }

    .stats-wrapper {

        grid-template-columns: 1fr;

        gap: 22px;

        margin-top: 70px;

    }

    .stat-card {

        padding: 35px 20px;

    }

    .stat-card i {

        width: 70px;

        height: 70px;

        font-size: 28px;

    }

    .stat-card h3 {

        font-size: 42px;

    }

}

/*=========================================
SMALL MOBILE
=========================================*/

@media(max-width:480px) {

    .choose-left h2 {

        font-size: 30px;

    }

    .choose-left h2 strong {

        font-size: 44px;

    }

    .choose-btn a {

        width: 100%;

        justify-content: center;

    }

    .feature-box {

        padding: 18px;

    }

    .feature-icon {

        width: 58px;

        height: 58px;

        min-width: 58px;

    }

    .feature-icon i {

        font-size: 24px;

    }

    .stat-card {

        border-radius: 22px;

    }

}

/*=========================================
SMOOTH TRANSITIONS
=========================================*/

.choose-section *,
.choose-section *::before,
.choose-section *::after {

    transition: .35s ease;

}


/*=========================================================
        100K+ JOBS SECTION
=========================================================*/

.jobs-section {
    position: relative;
    padding: 30px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f7fbf3 0%, #ffffff 45%, #eef8e3 100%);
    z-index: 1;
}

/*=========================================
BACKGROUND SHAPES
=========================================*/

.jobs-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.jobs-circle-one {
    width: 420px;
    height: 420px;
    left: -180px;
    top: -150px;
    background: rgba(139, 197, 63, .12);
    filter: blur(15px);
}

.jobs-circle-two {
    width: 320px;
    height: 320px;
    right: -120px;
    bottom: -120px;
    background: rgba(139, 197, 63, .08);
    filter: blur(20px);
}

/*=========================================
MAIN WRAPPER
=========================================*/

.jobs-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 57px 47px;
    background: #ffffff;
    border-radius: 35px;
    overflow: hidden;
    border: 1px solid rgba(139, 197, 63, .15);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .08);
}

/*=========================================
TOP GREEN STRIP
=========================================*/

.jobs-wrapper::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 6px;

    background:
        linear-gradient(90deg,
            var(--primary),
            #a6d85b,
            var(--primary));

}

/*=========================================
LEFT PATTERN
=========================================*/

.jobs-left-pattern {

    width: 90px;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

}

.pattern-box {

    width: 30px;

    height: 30px;

    border-radius: 10px;

    background: rgba(139, 197, 63, .12);

    transition: .4s;

}

.pattern-box:nth-child(2) {

    background: var(--primary);

}

.pattern-box:nth-child(3) {

    background: #dff2be;

}

.pattern-box:hover {

    transform: rotate(20deg) scale(1.15);

}

/*=========================================
CONTENT
=========================================*/

.jobs-content {

    flex: 1;

    text-align: center;

    max-width: 760px;

    margin: auto;

}

/*=========================================
BADGE
=========================================*/

.jobs-badge {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 12px 28px;

    border-radius: 60px;

    background: rgba(139, 197, 63, .10);

    color: var(--primary);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 28px;

}

.badge-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 0 0 8px rgba(139, 197, 63, .18);

}

/*=========================================
HEADING
=========================================*/

.jobs-content h2 {

    margin: 0;

    color: #111;

    font-size: 28px;

    line-height: 1.25;

    font-weight: 800;

}

.jobs-content h2 span {

    color: var(--primary);

}

.jobs-content h2 strong {

    display: block;

    margin: 18px 0;

    color: var(--primary);

    font-size: 34px;

    line-height: 1;

}

/*=========================================
CTA BUTTON
=========================================*/

.jobs-btn {

    margin-top: 45px;

}

.jobs-btn a {

    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 18px 24px;

    text-decoration: none;

    color: #fff;

    font-size: 16px;

    font-weight: 700;

    border-radius: 60px;

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary));

    box-shadow:
        0 20px 45px rgba(139, 197, 63, .35);

    transition: .35s;

}

.jobs-btn a i {

    transition: .35s;

}

.jobs-btn a:hover {

    transform: translateY(-6px);

    box-shadow:
        0 30px 60px rgba(139, 197, 63, .45);

}

.jobs-btn a:hover i {

    transform: translateX(8px);

}

/*=========================================
LIGHT GLOW
=========================================*/

.jobs-content::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .08);

    left: 50%;

    top: 50%;

    transform: translate(-50%, -50%);

    filter: blur(60px);

    z-index: -1;

}

/*=========================================================
RIGHT SIDE DESIGN
=========================================================*/

.jobs-right-design {

    position: relative;

    width: 220px;

    display: flex;

    justify-content: center;

    align-items: center;

}

/*=========================================
FLOATING CARD
=========================================*/

.jobs-floating-card {

    position: relative;

    width: 180px;

    padding: 32px 25px;

    text-align: center;

    border-radius: 28px;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(14px);

    border: 1px solid rgba(139, 197, 63, .18);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .12);

    z-index: 5;

    animation: jobsFloat 4s ease-in-out infinite;

    transition: .4s;

}

.jobs-floating-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .18);

}

.jobs-floating-card h3 {

    margin: 0;

    font-size: 52px;

    font-weight: 800;

    color: var(--primary);

    line-height: 1;

}

.jobs-floating-card p {

    margin-top: 12px;

    font-size: 16px;

    font-weight: 600;

    color: #666;

}

/*=========================================
OUTER RING
=========================================*/

.jobs-ring {

    position: absolute;

    width: 230px;

    height: 230px;

    border-radius: 50%;

    border: 2px dashed rgba(139, 197, 63, .30);

    animation: rotateRing 18s linear infinite;

}

.jobs-ring::before {

    content: "";

    position: absolute;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--primary);

    top: -9px;

    left: 50%;

    transform: translateX(-50%);

}

.jobs-ring::after {

    content: "";

    position: absolute;

    width: 12px;

    height: 12px;

    border-radius: 50%;

    background: #b9e66d;

    bottom: 12px;

    right: 30px;

}

/*=========================================
DECORATIVE GLOW
=========================================*/

.jobs-right-design::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .12);

    filter: blur(45px);

    z-index: -1;

}

.jobs-right-design::after {

    content: "";

    position: absolute;

    width: 18px;

    height: 18px;

    border-radius: 50%;

    background: var(--primary);

    top: 15px;

    right: 0;

    box-shadow:
        0 0 0 10px rgba(139, 197, 63, .15);

}

/*=========================================
WRAPPER HOVER
=========================================*/

.jobs-wrapper:hover {

    transform: translateY(-6px);

    box-shadow:
        0 35px 80px rgba(0, 0, 0, .10);

}

/*=========================================
FLOATING ANIMATION
=========================================*/

@keyframes jobsFloat {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0px);

    }

}

/*=========================================
ROTATING RING
=========================================*/

@keyframes rotateRing {

    from {

        transform: rotate(0deg);

    }

    to {

        transform: rotate(360deg);

    }

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px) {

    .jobs-wrapper {

        flex-direction: column;

        padding: 60px 50px;

        gap: 45px;

    }

    .jobs-left-pattern {

        display: none;

    }

    .jobs-right-design {

        width: 100%;

        margin-top: 20px;

    }

    .jobs-content {

        max-width: 100%;

    }

}

@media(max-width:768px) {

    .jobs-section {

        padding: 80px 0;

    }

    .jobs-wrapper {

        padding: 40px 25px;

        border-radius: 25px;

    }

    .jobs-content h2 {

        font-size: 26px;

    }

    .jobs-content h2 strong {

        font-size: 56px;

    }

    .jobs-badge {

        font-size: 12px;

        padding: 10px 20px;

        letter-spacing: 1px;

    }

    .jobs-btn {

        margin-top: 30px;

    }

    .jobs-btn a {

        padding: 16px 32px;

        font-size: 15px;

    }

    .jobs-floating-card {

        width: 150px;

        padding: 24px;

    }

    .jobs-floating-card h3 {

        font-size: 42px;

    }

    .jobs-ring {

        width: 190px;

        height: 190px;

    }

}

@media(max-width:480px) {

    .jobs-content h2 {

        font-size: 28px;

        line-height: 1.4;

    }

    .jobs-content h2 strong {

        font-size: 44px;

    }

    .jobs-btn a {

        width: 100%;

        justify-content: center;

    }

    .jobs-right-design {

        display: none;

    }

    .jobs-wrapper {

        padding: 35px 20px;

    }

}








/*=========================================================
            PREMIUM FOOTER
            PART 2A
=========================================================*/

.premium-footer {

    position: relative;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #0b0b0b 0%,
            #121212 45%,
            #171717 100%);

    padding: 110px 0 35px;

    color: #ffffff;

    z-index: 1;

}

/*=====================================
BACKGROUND SHAPES
=====================================*/

.footer-shape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}

.footer-shape-1 {

    width: 500px;

    height: 500px;

    background: rgba(139, 197, 63, .08);

    left: -180px;

    top: -180px;

    filter: blur(70px);

}

.footer-shape-2 {

    width: 400px;

    height: 400px;

    background: rgba(139, 197, 63, .06);

    right: -150px;

    bottom: -180px;

    filter: blur(80px);

}

/*=====================================
GRID
=====================================*/

.footer-main {

    position: relative;

    display: grid;

    grid-template-columns:
        1.3fr .9fr 1.1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;

    border-bottom:
        1px solid rgba(255, 255, 255, .08);

}

/*=====================================
ABOUT
=====================================*/

.footer-about {

    position: relative;

}

.footer-logo {

    display: inline-block;

    margin-bottom: 28px;

}

.footer-logo img {

    width: 270px;

    max-width: 100%;

    transition: .45s;

}

.footer-logo:hover img {

    transform: scale(1.04);

}

.footer-about p {

    color: #cfcfcf;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 14px;

}

/*=====================================
BUTTONS
=====================================*/

.footer-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

    margin-top: 35px;

}

.footer-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    padding: 15px 30px;

    border-radius: 60px;

    text-decoration: none;

    font-size: 15px;

    font-weight: 700;

    transition: .35s;

}

.primary-btn {

    background: var(--primary);

    color: #111;

    box-shadow:
        0 18px 35px rgba(139, 197, 63, .30);

}

.primary-btn:hover {

    background: #9fdc4b;

    transform: translateY(-5px);

}

.secondary-btn {

    color: #fff;

    border: 2px solid rgba(255, 255, 255, .14);

}

.secondary-btn:hover {

    background: #fff;

    color: #111;

    border-color: #fff;

}

/*=====================================
COLUMN TITLE
=====================================*/

.footer-links h3,
.footer-posts h3,
.footer-newsletter h3 {

    position: relative;

    font-size: 24px;

    margin-bottom: 30px;

    font-weight: 700;

    padding-bottom: 18px;

}

.footer-links h3::after,
.footer-posts h3::after,
.footer-newsletter h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 55px;

    height: 4px;

    border-radius: 20px;

    background: var(--primary);

}

/*=====================================
LINKS
=====================================*/

.footer-links ul {

    list-style: none;

    padding: 0;

    margin: 0;

}

.footer-links li {

    margin-bottom: 18px;

}

.footer-links a {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #d4d4d4;

    text-decoration: none;

    transition: .35s;

    font-size: 16px;

}

.footer-links a i {

    color: var(--primary);

    font-size: 13px;

}

.footer-links a:hover {

    color: #ffffff;

    padding-left: 8px;

}

/*=====================================
HOVER GLOW
=====================================*/

.footer-main>div {

    transition: .35s;

}

.footer-main>div:hover {

    transform: translateY(-6px);

}

/*=====================================
LIGHT GLOW
=====================================*/

.footer-about::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background: rgba(139, 197, 63, .07);

    top: 20px;

    left: -40px;

    filter: blur(60px);

    z-index: -1;

}

/*=====================================
SMOOTH
=====================================*/

.premium-footer *,
.premium-footer *::before,
.premium-footer *::after {

    transition: all .35s ease;

}

/*=========================================================
        PREMIUM FOOTER
        PART 2B
=========================================================*/

/*=====================================
POPULAR POSTS
=====================================*/

.footer-post {

    padding-bottom: 25px;

    margin-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, .08);

}

.footer-post:last-child {

    margin-bottom: 0;

    padding-bottom: 0;

    border: none;

}

.post-date {

    display: flex;

    align-items: center;

    gap: 8px;

    font-size: 14px;

    color: #9b9b9b;

    margin-bottom: 14px;

}

.post-date i {

    color: var(--primary);

}

.footer-post a {

    display: block;

    text-decoration: none;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.8;

    font-weight: 600;

    transition: .35s;

}

.footer-post a:hover {

    color: var(--primary);

}

/*=====================================
NEWSLETTER
=====================================*/

.footer-newsletter p {

    color: #cfcfcf;

    line-height: 1.8;

    margin-bottom: 25px;

}

.newsletter-form {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.newsletter-input {

    position: relative;

}

.newsletter-input i {

    position: absolute;

    left: 20px;

    top: 50%;

    transform: translateY(-50%);

    color: var(--primary);

    font-size: 17px;

}

.newsletter-input input {

    width: 100%;

    height: 58px;

    border: none;

    outline: none;

    padding: 0 20px 0 55px;

    border-radius: 14px;

    background: #ffffff;

    color: #111;

    font-size: 15px;

}

.newsletter-input input::placeholder {

    color: #888;

}

.newsletter-form button {

    height: 58px;

    border: none;

    outline: none;

    cursor: pointer;

    border-radius: 14px;

    background: linear-gradient(135deg, var(--primary), #74af2d);

    color: #111;

    font-size: 16px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: .35s;

    box-shadow: 0 18px 35px rgba(139, 197, 63, .28);

}

.newsletter-form button:hover {

    transform: translateY(-4px);

    box-shadow: 0 24px 45px rgba(139, 197, 63, .40);

}

.newsletter-form button i {

    transition: .35s;

}

.newsletter-form button:hover i {

    transform: translateX(6px);

}

/*=====================================
FOOTER BOTTOM
=====================================*/

.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding-top: 35px;

}

.copyright {

    color: #bcbcbc;

    font-size: 15px;

    line-height: 1.7;

}

/*=====================================
SOCIAL
=====================================*/

.footer-social {

    display: flex;

    align-items: center;

    gap: 14px;

}

.footer-social span {

    color: #d7d7d7;

    font-weight: 600;

    margin-right: 8px;

}

.footer-social a {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    text-decoration: none;

    color: #ffffff;

    background: rgba(255, 255, 255, .08);

    transition: .35s;

}

.footer-social a:hover {

    background: var(--primary);

    color: #111;

    transform: translateY(-5px);

}

/*=====================================
SCROLL TOP
=====================================*/

.scroll-top {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 55px;

    height: 55px;

    border: none;

    outline: none;

    cursor: pointer;

    border-radius: 50%;

    background: linear-gradient(135deg, var(--primary), #74af2d);

    color: #111;

    font-size: 18px;

    box-shadow: 0 20px 40px rgba(139, 197, 63, .35);

    transition: .35s;

    z-index: 999;

}

.scroll-top:hover {

    transform: translateY(-6px);

    box-shadow: 0 28px 50px rgba(139, 197, 63, .45);

}

/*=====================================
HOVER EFFECT
=====================================*/

.footer-post,
.footer-links li,
.footer-social a,
.footer-btn,
.newsletter-form button {

    transition: all .35s ease;

}



/*==================================================
        ABOUT COMPANY SECTION
        PART 2A
==================================================*/

.about-company-section {

    position: relative;

    overflow: hidden;

    padding: 60px 0;

    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #f3f8ff 45%,
            #ffffff 100%);

    z-index: 1;

}

/*====================================
BACKGROUND SHAPES
====================================*/

.about-bg-circle {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

}

.about-bg-circle-1 {

    width: 520px;

    height: 520px;

    background: rgba(31, 79, 184, .06);

    top: -220px;

    left: -180px;

    filter: blur(10px);

}

.about-bg-circle-2 {

    width: 380px;

    height: 380px;

    background: rgba(31, 79, 184, .05);

    right: -150px;

    bottom: -120px;

    filter: blur(20px);

}

/*====================================
DOT PATTERN
====================================*/

.about-dots {

    position: absolute;

    width: 170px;

    height: 170px;

    opacity: .35;

    background-image:
        radial-gradient(#1F4FB8 2px,
            transparent 2px);

    background-size: 22px 22px;

}

.about-dots-left {

    left: -20px;

    top: 80px;

}

.about-dots-right {

    right: -10px;

    bottom: 60px;

}

/*====================================
WRAPPER
====================================*/

.about-wrapper {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 80px;

    position: relative;

}

/*====================================
LEFT
====================================*/

.about-media {

    position: relative;

    min-height: 760px;

}

/*====================================
RIGHT
====================================*/

.about-content {

    position: relative;

    z-index: 5;

}

/*====================================
SECTION BADGE
====================================*/

.section-badge {

    display: inline-flex;

    align-items: center;

    gap: 14px;

    color: #1F4FB8;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin-bottom: 25px;

}

.section-badge span {

    width: 34px;

    height: 3px;

    border-radius: 30px;

    background: #1F4FB8;

}

/*====================================
HEADING
====================================*/

.about-content h2 {

    font-size: 35px;

    line-height: 1.1;

    font-weight: 800;

    color: #081B44;

    margin-bottom: 30px;

}

.about-content h2 span {

    color: #1F4FB8;

    position: relative;

}

.about-content h2 span::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 100%;

    height: 7px;

    border-radius: 30px;

    background:
        linear-gradient(90deg,
            #1F4FB8,
            #3d7dff);

    opacity: .15;

}

/*====================================
INTRO
====================================*/

.about-intro {

    font-size: 16px;

    line-height: 1.8;

    color: #5e6473;

    max-width: 620px;

    margin-bottom: 45px;

}

/*====================================
GLASS EFFECT
====================================*/

.about-company-section::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(31, 79, 184, .08),
            transparent 70%);

    left: -260px;

    bottom: -260px;

}

.about-company-section::after {

    content: "";

    position: absolute;

    width: 480px;

    height: 480px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(31, 79, 184, .05),
            transparent 70%);

    right: -150px;

    top: -180px;

}

/*====================================
DECORATIVE LINE
====================================*/

.about-content::before {

    content: "";

    position: absolute;

    width: 90px;

    height: 5px;

    background: #1F4FB8;

    border-radius: 30px;

    left: 0;

    top: 120px;

    opacity: .08;

}

/*====================================
TRANSITION
====================================*/

.about-company-section * {

    transition: all .35s ease;

}

/*==================================================
        ABOUT COMPANY SECTION
        PART 2B
        IMAGE COMPOSITION
==================================================*/

/*====================================
LEFT IMAGE AREA
====================================*/

.about-media {

    display: flex;

    justify-content: center;

    align-items: center;

    position: relative;

    min-height: 760px;

}

/*====================================
MAIN IMAGE
====================================*/

/* .main-image-card {

    position: relative;

    width: 100%;

    max-width: 560px;

    border-radius: 40px;

    overflow: hidden;

    background: #ffffff;

    padding: 12px;

    box-shadow:
        0 35px 80px rgba(8, 27, 68, .15);


    z-index: 2;

} */
.main-image-card {
    position: relative;
    width: 100%;
    /* max-width: 560px; */
    /* border-radius: 40px; */
    overflow: hidden;
    /* background: #ffffff; */
    /* padding: 12px; */
    /* box-shadow: 0 35px 80px rgba(8, 27, 68, .15); */
    z-index: 2;
}

.main-image-card img {

    width: 100%;

    height: 640px;

    object-fit: cover;

    display: block;

    border-radius: 12px;

    transition: .7s;

}

.main-image-card:hover {

    transform:
        rotate(-2deg) translateY(-12px);

}

.main-image-card:hover img {

    transform: scale(1.08);

}

/*====================================
SECOND IMAGE
====================================*/

.small-image-card {
    position: absolute;
    right: -33px;
    bottom: 46px;
    width: 330px;
    background: #fff;
    padding: 10px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
    overflow: hidden;
    /* transform: rotate(8deg); */
    z-index: 4;
}

.small-image-card img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    border-radius: 20px;

    transition: .7s;

}

.small-image-card:hover {

    transform:
        rotate(3deg) translateY(-12px);

}

.small-image-card:hover img {

    transform: scale(1.08);

}

/*====================================
FLOATING SPARKLE
====================================*/

.floating-badge {

    position: absolute;

    right: 30px;

    top: 30px;

    width: 95px;

    height: 95px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #1F4FB8,
            #3D7DFF);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    border: 8px solid #fff;

    box-shadow:
        0 20px 45px rgba(31, 79, 184, .35);

    animation: floatIcon 4s ease-in-out infinite;

    z-index: 5;

}

@keyframes floatIcon {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-14px);

    }

    100% {

        transform: translateY(0);

    }

}

/*====================================
GOOGLE REVIEW CARD
====================================*/

.review-card {
    position: absolute;
    left: 14px;
    bottom: -131px;
    width: 434px;
    display: flex;
    align-items: center;
    gap: 26px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 18px 10px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .18);
    z-index: 8;
    overflow: hidden;
}

.review-card::before {

    content: "";

    position: absolute;

    width: 220px;

    height: 220px;

    background:
        radial-gradient(rgba(31, 79, 184, .12),
            transparent 70%);

    left: -70px;

    bottom: -70px;

}

/* .review-logo {

    width: 85px;

    height: 85px;

    min-width: 85px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);

} */

.review-logo img {

    width: 120px;

}

.review-content {

    position: relative;

    z-index: 2;

}

.review-stars {

    color: #FDBB2D;

    margin-bottom: 10px;

    display: flex;

    gap: 4px;

}

.review-content h3 {

    font-size: 54px;

    color: #1F4FB8;

    font-weight: 800;

    line-height: 1;

    margin-bottom: 10px;

}

.review-content h4 {

    color: #081B44;

    font-size: 21px;

    margin-bottom: 8px;

    font-weight: 700;

}

.review-content p {

    color: #666;

    font-size: 15px;

    line-height: 1.7;

}

/*====================================
DECORATIVE CIRCLE
====================================*/

.about-media::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(31, 79, 184, .12),
            transparent 70%);

    top: 0;

    left: -40px;

}

.about-media::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
        radial-gradient(rgba(31, 79, 184, .08),
            transparent 70%);

    right: -80px;

    bottom: 60px;

}

/*====================================
FLOATING HEART
====================================*/

.small-image-card::after {

    content: "\f004";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #1F4FB8;

    font-size: 22px;

    right: 15px;

    bottom: 18px;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .15);

}

/*====================================
HOVER EFFECTS
====================================*/

.main-image-card,
.small-image-card,
.review-card {

    transition: all .45s ease;

}

.review-card:hover {

    transform:
        translateY(-10px);

    box-shadow:
        0 45px 90px rgba(31, 79, 184, .18);

}

/*==================================================
        ABOUT COMPANY SECTION
        PART 2C
==================================================*/

/*====================================
FEATURE CARD
====================================*/

.feature-box {

    position: relative;

    display: flex;

    align-items: center;

    gap: 25px;

    padding: 28px;

    margin-bottom: 28px;

    background: #ffffff;

    border-radius: 28px;

    border: 1px solid rgba(31, 79, 184, .08);

    box-shadow: 0 18px 45px rgba(8, 27, 68, .08);

    overflow: hidden;

}

.feature-box:last-child {

    margin-bottom: 40px;

}

.feature-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 6px;

    height: 100%;

    background: linear-gradient(180deg, #1F4FB8, #3D7DFF);

    transform: scaleY(0);

    transform-origin: top;

    transition: .45s;

}

.feature-box:hover {

    transform: translateY(-10px);

    box-shadow: 0 30px 60px rgba(31, 79, 184, .15);

}

.feature-box:hover::before {

    transform: scaleY(1);

}

/*====================================
ICON
====================================*/

.feature-icon {

    width: 82px;

    height: 82px;

    min-width: 82px;

    border-radius: 24px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #486f1f;

    color: #fff;

    font-size: 34px;

    box-shadow: 0 20px 40px rgba(31, 79, 184, .28);

}

.feature-box:hover .feature-icon {

    transform: rotate(-8deg) scale(1.08);

}

/*====================================
CONTENT
====================================*/

.feature-info {

    flex: 1;

}

.feature-info h3 {

    font-size: 24px;

    font-weight: 800;

    color: #081B44;

    margin-bottom: 12px;

}

.feature-info p {

    font-size: 16px;

    line-height: 1.8;

    color: #666;

}

/*====================================
ARROW BUTTON
====================================*/

.feature-arrow {

    width: 58px;

    height: 58px;

    min-width: 58px;

    border-radius: 50%;

    background: #F4F8FF;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    color: #1F4FB8;

    font-size: 20px;

    transition: .35s;

}

.feature-box:hover .feature-arrow {

    background: #1F4FB8;

    color: #fff;

    transform: translateX(6px);

}

/*====================================
CHECKLIST
====================================*/

.about-check-list {

    display: grid;

    gap: 18px;

}

.check-item {

    display: flex;

    align-items: center;

    gap: 18px;

    background: #ffffff;

    padding: 18px 24px;

    border-radius: 60px;

    border: 1px solid rgba(31, 79, 184, .08);

    box-shadow: 0 12px 35px rgba(8, 27, 68, .05);

}

.check-item:hover {

    transform: translateX(10px);

    box-shadow: 0 18px 45px rgba(31, 79, 184, .12);

}

.check-icon {

    width: 46px;

    height: 46px;

    min-width: 46px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #486f1f;

    color: #fff;

    font-size: 16px;

}

.check-item span {

    font-size: 17px;

    color: #081B44;

    font-weight: 600;

}

/*====================================
TABLET
====================================*/

@media(max-width:1200px) {

    .about-wrapper {

        gap: 50px;

    }

    .about-content h2 {

        font-size: 52px;

    }

    .main-image-card img {

        height: 560px;

    }

    .small-image-card {

        width: 260px;

        right: 0;

    }

    .review-card {

        width: 320px;

        left: 0;

    }

}

@media(max-width:991px) {

    .about-company-section {

        padding: 90px 0;

    }

    .about-wrapper {

        grid-template-columns: 1fr;

    }

    .about-media {

        order: 2;

        min-height: 650px;

    }

    .about-content {

        order: 1;

    }

    .about-content h2 {

        font-size: 46px;

    }

    .small-image-card {

        width: 240px;

    }

    .review-card {

        left: 20px;

        bottom: 0;

    }

}

/*====================================
MOBILE
====================================*/

@media(max-width:767px) {

    .about-company-section {

        padding: 70px 0;

    }

    .about-content h2 {

        font-size: 34px;

    }

    .about-intro {

        font-size: 17px;

    }

    .about-media {

        min-height: auto;

    }

    .main-image-card {

        transform: none;

    }

    .main-image-card img {

        height: 420px;

    }

    .small-image-card {

        position: relative;

        width: 85%;

        margin: -70px auto 0;

        right: auto;

        bottom: auto;

        transform: none;

    }

    .review-card {

        position: relative;

        width: 100%;

        left: auto;

        bottom: auto;

        margin-top: 25px;

        flex-direction: column;

        text-align: center;

    }

    .feature-box {

        flex-direction: column;

        text-align: center;

    }

    .feature-arrow {

        margin-top: 15px;

    }

    .check-item {

        border-radius: 20px;

        align-items: flex-start;

    }

}

@media(max-width:480px) {

    .about-content h2 {

        font-size: 28px;

    }

    .feature-box {

        padding: 22px;

    }

    .feature-info h3 {

        font-size: 20px;

    }

    .feature-info p {

        font-size: 15px;

    }

    .review-content h3 {

        font-size: 42px;

    }

    .review-content h4 {

        font-size: 18px;

    }

    .main-image-card img {

        height: 340px;

    }

    .small-image-card {

        width: 100%;

    }

}

/*=========================================================
            WHY CHOOSE US
            PART 2A
            SECTION + LAYOUT + BACKGROUND
=========================================================*/

/* .whyChooseSection {

    position: relative;

    overflow: hidden;

    padding: 60px 0;

    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #f4f8ff 45%,
            #ffffff 100%);

    z-index: 1;

} */
.whyChooseSection {

    position: relative;
    overflow: hidden;
    padding: 60px 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.75),
            rgba(248, 251, 255, 0.75)),
        url("../images/why-choose-v3-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 1;
}

.whyChooseSection {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: url("../images/why-choose-v3-bg.jpg");
    background-size: cover;
    background-position: center;
}

.whyChooseSection::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, 0.65);
    /* adjust 0.5–0.7 */

    z-index: 0;
}

.whyChooseSection .container {
    position: relative;
    z-index: 2;
}

/* .whyChooseSection {

    position: relative;
    overflow: hidden;
    padding: 60px 0;

    background:
        linear-gradient(135deg,
            rgba(248, 251, 255, 0.92),
            rgba(244, 248, 255, 0.92),
            rgba(255, 255, 255, 0.92)),
        url("../images/why-choose-v3-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    z-index: 1;
} */

/*=========================================
BACKGROUND SHAPES
=========================================*/

.wcShape {

    position: absolute;

    border-radius: 50%;

    pointer-events: none;

    z-index: -1;

}

.wcShape1 {

    width: 620px;

    height: 620px;

    left: -260px;

    top: -240px;

    background:
        radial-gradient(circle,
            rgba(34, 87, 214, .08),
            transparent 72%);

}

.wcShape2 {

    width: 480px;

    height: 480px;

    right: -180px;

    bottom: -180px;

    background:
        radial-gradient(circle,
            rgba(34, 87, 214, .06),
            transparent 72%);

}

/*=========================================
DOT PATTERN
=========================================*/

.wcDots {

    position: absolute;

    width: 180px;

    height: 180px;

    background-image:
        radial-gradient(#2c63db 2px, transparent 2px);

    background-size: 22px 22px;

    opacity: .12;

    z-index: -1;

}

.wcDotsLeft {

    left: 30px;

    top: 60px;

}

.wcDotsRight {

    right: 40px;

    bottom: 70px;

}

/*=========================================
CONTAINER
=========================================*/

.whyChooseSection .container {

    position: relative;

    z-index: 5;

}

/*=========================================
HEADING
=========================================*/

.wcHeading {

    text-align: center;

    margin-bottom: 70px;

}

/*=========================================
SMALL TITLE
=========================================*/

.wcMiniTitle {

    display: inline-flex;

    align-items: center;

    gap: 16px;

    color: #1d56d7;

    font-size: 14px;

    letter-spacing: 2px;

    font-weight: 700;

    text-transform: uppercase;

}

.wcMiniTitle span {

    width: 34px;

    height: 2px;

    background: #1d56d7;

    border-radius: 20px;

}

/*=========================================
MAIN TITLE
=========================================*/

.wcHeading h2 {

    margin-top: 18px;

    font-size: 35px;

    font-weight: 800;

    line-height: 1.1;

    color: #071c48;

}

.wcHeading h2 span {

    display: block;
    margin-top: 12px;
    color: #1d56d7;

    position: relative;

}

.wcHeading h2 span::after {

    content: "";

    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    bottom: -14px;

    width: 130px;

    height: 6px;

    border-radius: 30px;

    background:
        linear-gradient(90deg,
            #2b67ff,
            #30d6ff);

}

/*=========================================
WRAPPER
=========================================*/

.wcWrapper {

    display: grid;

    grid-template-columns:

        1.15fr .95fr;

    gap: 45px;

    align-items: stretch;

}

/*=========================================
FEATURE GRID
=========================================*/

.wcFeatures {

    display: grid;

    grid-template-columns:

        repeat(2, 1fr);

    gap: 28px;

}

/*=========================================
PROMO PANEL
=========================================*/

.wcPromo {

    position: relative;

    border-radius: 36px;

    overflow: hidden;

    min-height: 720px;

    background:

        linear-gradient(145deg,
            #1a55dd 0%,
            #2176ff 55%,
            #21d4fd 100%);

    box-shadow:

        0 40px 80px rgba(32, 74, 170, .22);

}

/*=========================================
GRADIENT OVERLAY
=========================================*/

.wcGlow {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(circle at top right,
            rgba(255, 255, 255, .20),
            transparent 45%),

        radial-gradient(circle at bottom left,
            rgba(255, 255, 255, .15),
            transparent 55%);

}

/*=========================================
DECORATIVE CIRCLE
=========================================*/

.wcCircle {

    position: absolute;

    width: 360px;

    height: 360px;

    border: 2px dashed rgba(255, 255, 255, .28);

    border-radius: 50%;

    right: -120px;

    bottom: -40px;

}

/*=========================================
SPARKLES
=========================================*/

.wcSpark {

    position: absolute;

    border-radius: 50%;

    background: #ffffff;

    opacity: .75;

}

.wcSpark1 {

    width: 8px;

    height: 8px;

    left: 70px;

    bottom: 110px;

}

.wcSpark2 {

    width: 12px;

    height: 12px;

    top: 110px;

    right: 90px;

}

.wcSpark3 {

    width: 6px;

    height: 6px;

    top: 250px;

    left: 55%;

}

/*=========================================
GLOBAL TRANSITIONS
=========================================*/

.wcCard,

.wcPromo,

.wcBtn,

.wcIcon,

.wcVehicle img,

.wcBadge,

.wcSpark {

    transition: all .4s ease;

}

/*=========================================
HOVER EFFECT
=========================================*/

.wcPromo:hover {

    transform: translateY(-10px);

    box-shadow:

        0 55px 90px rgba(33, 78, 196, .28);

}

/*=========================================================
        WHY CHOOSE US
        PART 2B
        FEATURE CARDS + PROMO CONTENT
=========================================================*/

/*=========================================
FEATURE CARD
=========================================*/

.wcCard {

    position: relative;

    background: #ffffff;

    border-radius: 28px;

    padding: 45px 35px;

    overflow: hidden;

    box-shadow:
        0 20px 45px rgba(0, 0, 0, .06);

    border: 1px solid rgba(40, 90, 220, .08);

    transition: .45s;

}

.wcCard::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 100%;

    background: linear-gradient(180deg,
            #1d56d7,
            #31d8ff);

    transform: scaleY(0);

    transform-origin: top;

    transition: .45s;

}

.wcCard:hover {

    transform: translateY(-12px);

    box-shadow:
        0 35px 65px rgba(33, 82, 201, .14);

}

.wcCard:hover::before {

    transform: scaleY(1);

}

/*=========================================
ICON
=========================================*/

.wcIcon {

    width: 90px;

    height: 90px;

    border-radius: 50%;

    background:
        linear-gradient(135deg,
            #1d56d7,
            #31d8ff);

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 28px;

    box-shadow:
        0 18px 35px rgba(35, 88, 220, .25);

}

.wcIcon i {

    color: #fff;

    font-size: 36px;

}

.wcCard:hover .wcIcon {

    transform: rotate(-10deg) scale(1.08);

}

/*=========================================
TITLE
=========================================*/

.wcCard h3 {

    font-size: 26px;

    color: #071c48;

    margin-bottom: 15px;

    font-weight: 800;

}

/*=========================================
DESCRIPTION
=========================================*/

.wcCard p {

    font-size: 16px;

    color: #6b7484;

    line-height: 1.8;

}

/*=========================================
NUMBER
=========================================*/

.wcNumber {

    position: absolute;

    right: 25px;

    top: 20px;

    font-size: 78px;

    font-weight: 800;

    color: rgba(29, 86, 215, .05);

    line-height: 1;

}

/*=========================================
PROMO BADGE
=========================================*/

.wcBadge {

    position: absolute;

    left: 35px;

    top: 35px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: rgba(255, 255, 255, .16);

    backdrop-filter: blur(15px);

    color: #fff;

    padding: 12px 22px;

    border-radius: 40px;

    font-size: 15px;

    font-weight: 700;

    border: 1px solid rgba(255, 255, 255, .20);

}

.wcBadge i {

    color: #ffd84f;

}

/*=========================================
PROMO CONTENT
=========================================*/

.wcPromoContent {

    position: absolute;

    left: 40px;

    top: 120px;

    z-index: 5;

    max-width: 330px;

}

.wcPromoContent h3 {

    color: #fff;

    font-size: 35px;

    line-height: 1.15;

    font-weight: 800;

    margin-bottom: 35px;

}

/*=========================================
CHECK LIST
=========================================*/

.wcPromoContent ul {

    list-style: none;

    padding: 0;

    margin: 0 0 35px;

}

.wcPromoContent li {

    display: flex;

    align-items: center;

    gap: 14px;

    color: #fff;

    margin-bottom: 18px;

    font-size: 17px;

    font-weight: 500;

}

.wcPromoContent li i {

    color: #5CFF9D;

    font-size: 18px;

}

/*=========================================
BUTTON
=========================================*/

.wcBtn {

    display: inline-flex;

    align-items: center;

    gap: 16px;

    padding: 14px 20px;

    border-radius: 60px;

    background: #ffffff;

    color: #1d56d7;

    font-size: 16px;

    font-weight: 700;

    text-decoration: none;

    transition: .4s;

}

.wcBtn i {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #1d56d7;

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .4s;

}

.wcBtn:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, .18);

}

.wcBtn:hover i {

    transform: translateX(5px);

}

/*=========================================
VAN IMAGE
=========================================*/

.wcVehicle {

    position: absolute;

    right: 4px;

    bottom: 20px;

    width: 95%;

    z-index: 2;

}

.wcVehicle img {

    width: 100%;

    display: block;

    filter:
        drop-shadow(0 30px 45px rgba(0, 0, 0, .25));

}

.wcPromo:hover .wcVehicle img {

    transform:
        translateY(-10px) scale(1.03);

}

/*=========================================
FLOATING ANIMATION
=========================================*/

@keyframes wcFloat {

    0% {

        transform: translateY(0px);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0px);

    }

}

.wcBadge {

    animation: wcFloat 4s ease-in-out infinite;

}

.wcSpark {

    animation: wcFloat 3s ease-in-out infinite;

}

.wcSpark2 {

    animation-delay: .8s;

}

.wcSpark3 {

    animation-delay: 1.5s;

}

.fxHero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    font-family: sans-serif;
}

/* SLIDES */
.fxSlides {
    position: absolute;
    inset: 0;
}

.fxSlide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: all 1s ease;
}

.fxSlide.active {
    opacity: 1;
    transform: scale(1);
}

/* DARK OVERLAY FOR TEXT READABILITY */
.fxOverlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.35),
            rgba(0, 0, 0, 0.2));
    z-index: 1;
}

/* CONTENT */
.fxContainer {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.fxContent {
    max-width: 650px;
    color: #fff;
}

.fxContent h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.fxContent h1 span {
    color: #00c2ff;
}

.fxContent p {
    margin-top: 18px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
}

/* CONTROLS */
.fxControls {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.fxBtnPrev,
.fxBtnNext {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.fxBtnPrev:hover,
.fxBtnNext:hover {
    background: #00c2ff;
    border-color: #00c2ff;
    transform: scale(1.1);
}

/* DOTS */
.fxDots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background: #00c2ff;
    transform: scale(1.2);
}

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --text-main: #111625;
    --text-muted: #475569;
    --font-hero: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.saasHero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    font-family: var(--font-hero);
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #EBF2F8;
    /* Fallback frame fill */
}

/* 🖼️ REAL BACKGROUND IMAGE STYLING */
.heroBgImageWrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.heroBgRealImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Premium subtle dark/light tint blend layer so text remains fully legible */
.heroBgImageWrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(235, 242, 248, 0.4) 0%, rgba(235, 242, 248, 0.7) 100%);
    pointer-events: none;
}

/* MODERN BLUR BLOBS OVER THE REAL BACKGROUND IMAGE */
.blob-bg {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.45;
    z-index: 2;
    pointer-events: none;
}

.blob-1 {
    width: 450px;
    height: 450px;
    background: #60A5FA;
    top: -5%;
    right: 10%;
}

.blob-2 {
    width: 550px;
    height: 550px;
    background: #34D399;
    bottom: -10%;
    left: 25%;
}

/* CONTAINER LOGIC */
.saasContainer {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
    padding: 80px 40px 40px 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 85vh;
}

.saasSlider {
    position: relative;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* SLIDE MOVEMENT TRANSITIONS */
.saasSlide {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
}

.saasSlide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.slideGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.slideGrid.layout-reverse {
    grid-template-columns: 1fr 1fr;
}

.slideGrid.layout-reverse .slideVisual {
    order: 2;
}

.slideGrid.layout-reverse .slideContent {
    order: 1;
}

.slideVisual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heroRealImage {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 30px 60px rgba(17, 22, 37, 0.12));
}

/* TEXT ARCHITECTURE */
.slideContent h1 {
    font-size: 56px;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, #1D4ED8 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.slideContent p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 40px;
}

/* CALL TO ACTION ACCENTS */
.saasCTAs {
    display: flex;
    gap: 16px;
}

.btn-gradient {
    padding: 16px 32px;
    background: #486f1f;
    color: #FFFFFF;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 100px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.35);
}

.btn-glass {
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 100px;
    transition: background 0.2s;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* CONTROLS DASHBOARD PANEL */
.saasControls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    border-top: 1px solid rgba(17, 22, 37, 0.08);
    padding-top: 30px;
}

.sliderCounter {
    font-weight: 700;
    font-size: 32px;
    color: var(--text-main);
}

.sliderCounter .totalNum {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 6px;
}

/* PROGRESS SLIDER ELEMENTS */
.sliderCenterMeta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.progressBarWrapper {
    width: 240px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.progressBarFill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3B82F6, #10B981);
    border-radius: 100px;
}

.navigationDots {
    display: flex;
    gap: 8px;
}

.navDot {
    width: 8px;
    height: 8px;
    background: rgba(17, 22, 37, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.navDot.active {
    background: var(--text-main);
    transform: scale(1.2);
}

/* BUTTON CONTROLS */
.sliderArrows {
    display: flex;
    gap: 12px;
}

.arrowBtn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s, transform 0.2s;
}

.arrowBtn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.05);
}

/* RESPONSIVE LAYOUT RESPONSES */
@media(max-width: 992px) {

    .slideGrid,
    .slideGrid.layout-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .slideGrid.layout-reverse .slideVisual {
        order: unset;
    }

    .slideGrid.layout-reverse .slideContent {
        order: unset;
    }

    .slideContent h1 {
        font-size: 36px;
    }

    .slideContent p {
        margin: 0 auto 30px auto;
    }

    .saasCTAs {
        justify-content: center;
    }

    .saasControls {
        flex-direction: column;
        gap: 30px;
    }
}





:root {
    --blue-900: #122b7a;
    --blue-800: #173aa3;
    --blue-700: #1d4ed8;
    --blue-600: #2f5bea;
    --blue-500: #3b6ff2;
    --blue-50: #eef2ff;
    --bg: #eef3fc;
    --ink: #0f172a;
    --gray: #5b6472;
    --star: #ffb400;
    --white: #ffffff;
    --radius-lg: 22px;
    --radius-md: 16px;
    --shadow-card: 0 10px 30px rgba(18, 43, 122, 0.08);
    --shadow-soft: 0 4px 14px rgba(18, 43, 122, 0.06);
}

/* *{box-sizing:border-box;}
  body{
    margin:0;
    font-family:'Segoe UI',Arial,Helvetica,sans-serif;
    background:var(--bg);
    color:var(--ink);
  } */

.gr-section {
    position: relative;
    overflow: hidden;
    padding: 72px 5vw 100px;
    background:
        radial-gradient(circle at 8% 90%, rgba(29, 78, 216, 0.06) 0, transparent 40%),
        linear-gradient(180deg, #eef3fc 0%, #f5f8fe 100%);
}

.dot-grid {
    position: absolute;
    left: 4vw;
    bottom: 60px;
    width: 140px;
    height: 100px;
    background-image: radial-gradient(circle, rgba(29, 78, 216, 0.18) 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    pointer-events: none;
}

.sparkle {
    position: absolute;
    color: rgba(29, 78, 216, 0.12);
    pointer-events: none;
}

.sparkle svg {
    width: 100%;
    height: 100%;
}

.sparkle.s1 {
    top: 60px;
    left: 30%;
    width: 34px;
    height: 34px;
}

.sparkle.s2 {
    top: 120px;
    right: 22%;
    width: 22px;
    height: 22px;
}

.sparkle.s3 {
    bottom: 180px;
    right: 6%;
    width: 26px;
    height: 26px;
}

.wave {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 170px;
    background: linear-gradient(120deg, rgba(29, 78, 216, 0.10), rgba(29, 78, 216, 0.03));
    clip-path: path('M0,90 C 25%,10 55%,150 100%,40 L100%,220 L0,220 Z');
    pointer-events: none;
}

.gr-container {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    margin: 0 auto;
}

.gr-header {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 36px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 14px;
}

.eyebrow svg {
    width: 14px;
    height: 14px;
    fill: var(--blue-700);
}

.score {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 800;
    font-size: 64px;
    color: var(--blue-700);
    line-height: 1;
    margin: 0 0 6px;
}

.score svg {
    width: 38px;
    height: 38px;
    fill: var(--blue-700);
}

.headline {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.12;
    color: var(--ink);
    margin: 0 0 18px;
}

.underline {
    width: 70px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--blue-700), rgba(29, 78, 216, 0));
}

.quote-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 34px 36px;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 28px;
    position: relative;
}

.quote-mark {
    position: absolute;
    top: -22px;
    left: 34px;
    width: 46px;
    height: 46px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(18, 43, 122, 0.10);
}

.quote-mark svg {
    width: 22px;
    height: 22px;
    fill: var(--blue-700);
}

.quote-text {
    flex: 1;
    padding-top: 8px;
}

.quote-text p {
    margin: 0 0 10px;
    font-size: 16px;
    color: var(--ink);
    line-height: 1.55;
}

.quote-text strong {
    color: var(--blue-700);
    font-weight: 700;
}

.google-g {
    flex-shrink: 0;
    width: 96px;
    height: 96px;
}

.gr-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.rating-card {
    background: linear-gradient(135deg, #486f1f 0%, #486f1f 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    text-align: center;
    padding: 40px 26px 32px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    min-height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-card .big-star {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 120px;
    height: 120px;
    opacity: 0.12;
}

.rating-card .label {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.rating-card .stars {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-bottom: 16px;
}

.rating-card .stars svg {
    width: 26px;
    height: 26px;
    fill: var(--star);
}

.rating-card .based-on {
    font-size: 15px;
    opacity: 0.92;
    margin-bottom: 18px;
}

.rating-card .based-on b {
    font-weight: 800;
}

.rating-card .divider {
    width: 80%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 18px;
}

.rating-card .google-word {
    font-size: 28px;
    font-weight: 700;
    font-family: Arial, sans-serif;
    color: var(--white);
    letter-spacing: 0.5px;
}

.carousel-wrap {
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 24px;
    overflow: hidden;
}

.review-cards {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 26px 24px 22px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 360px;
    min-width: 0;
    box-shadow: var(--shadow-soft);
    border-bottom: 4px solid var(--blue-700);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, flex-basis .3s ease;
}

.review-cards:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.review-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 16px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
}

.review-name-wrap {
    flex: 1;
    min-width: 0;
}

.review-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
}

.review-time {
    font-size: 12.5px;
    color: var(--gray);
}

.review-google-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.review-stars svg.star {
    width: 16px;
    height: 16px;
    fill: var(--star);
}

.verified-badge {
    width: 15px;
    height: 15px;
    margin-left: 4px;
}

.review-text {
    font-size: 14.5px;
    line-height: 1.55;
    color: #374151;
    margin: 0;
}

.read-more {
    display: inline-block;
    margin-top: 8px;
    color: var(--blue-700);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 6px 16px rgba(18, 43, 122, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background .2s;
}

.carousel-btn:hover {
    background: var(--blue-50);
}

.carousel-btn.prev {
    left: -19px;
}

.carousel-btn.next {
    right: -19px;
    background: #486f1f;
}

.carousel-btn.next:hover {
    background: var(--blue-800);
}

.carousel-btn svg {
    width: 16px;
    height: 16px;
}

.carousel-btn.prev svg {
    fill: var(--blue-700);
}

.carousel-btn.next svg {
    fill: var(--white);
}

.cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #486f1f 0%, #486f1f 100%);
    color: var(--white);
    border: none;
    padding: 16px 30px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(29, 78, 216, 0.28);
    transition: transform .2s ease, box-shadow .2s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(29, 78, 216, 0.34);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

@media (max-width:980px) {
    .gr-header {
        grid-template-columns: 1fr;
    }

    .gr-body {
        grid-template-columns: 1fr;
    }

    .rating-card {
        min-height: auto;
        padding: 32px 20px;
    }

    .quote-card {
        flex-direction: column;
        text-align: center;
    }

    .google-g {
        width: 70px;
        height: 70px;
    }

    .headline {
        font-size: 34px;
    }

    .score {
        font-size: 50px;
    }

    .review-cards {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width:680px) {
    .carousel-track {
        gap: 16px;
    }

    .review-cards {
        flex-basis: 100%;
    }

    .carousel-btn.prev {
        left: 0;
    }

    .carousel-btn.next {
        right: 0;
    }

    .gr-section {
        padding: 56px 5vw 80px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .review-cards,
    .cta-btn {
        transition: none;
    }
}


.carousel-wrap {
    position: relative;
    overflow: hidden;
    /* ✅ IMPORTANT */
}

.carousel-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.5s ease;
}













/*==================================================
        GOOGLE FONT
==================================================*/



a {
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    border: none;
    outline: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

:root {

    /* --primary: #486f1f; */
    --secondary: #15224b;
    --white: #ffffff;
    --light: #f4f7fb;
    --text: #51566d;
    --shadow: 0 20px 60px rgba(18, 31, 58, .12);
    --radius: 36px;
    --transition: .45s ease;

}

/*==================================================
                SECTION
==================================================*/

.eliteCleaningSection {

    position: relative;
    padding: 90px 0 130px;
    overflow: hidden;
    background:
        linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);

}

.container {

    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 15px;
    position: relative;
    z-index: 5;

}

/*==================================================
                GRID
==================================================*/

.ecsWrapper {

    display: grid;
    grid-template-columns: 1.12fr .95fr;
    gap: 22px;
    align-items: stretch;

}

/*==================================================
                CARD
==================================================*/

.ecsCard {

    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #fff;
    box-shadow: var(--shadow);
    transition: var(--transition);

}

.ecsCard:hover {

    transform: translateY(-10px);

}

.ecsLeftCard {

    min-height: 730px;

}

.ecsRightCard {

    min-height: 730px;

}

/*==================================================
                IMAGE
==================================================*/

.ecsMainImage {

    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s;

}

.ecsCard:hover .ecsMainImage {

    transform: scale(1.06);

}

/*==================================================
                OVERLAY
==================================================*/

.ecsOverlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(255, 255, 255, .12),
            rgba(245, 247, 251, .90) 60%,
            rgba(245, 247, 251, .98));

    z-index: 1;

}

/*==================================================
            BACKGROUND SHAPES
==================================================*/

.ecsBlur {

    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;

}

.ecsBlurOne {

    width: 320px;
    height: 320px;
    background: #d7ef52;
    top: -120px;
    left: -140px;
    opacity: .45;

}

.ecsBlurTwo {

    width: 400px;
    height: 400px;
    background: #d9e7ff;
    bottom: -180px;
    right: -150px;
    opacity: .75;

}

/*==================================================
                DOTS
==================================================*/

.ecsDots {

    position: absolute;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#cfd5df 2px, transparent 2px);
    background-size: 18px 18px;
    opacity: .65;

}

.ecsDotsLeft {

    left: 35px;
    bottom: 150px;

}

.ecsDotsRight {

    right: 60px;
    top: 120px;

}

/*==================================================
                WAVE
==================================================*/

.ecsWave {

    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -110px;
    height: 220px;

    background: linear-gradient(90deg, #102456, #d4ef2e);

    border-radius: 50% 50% 0 0;

    transform: rotate(-2deg);

    opacity: .12;

}





/* --- UI Layout Stylesheet --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

.cleaning-service-section {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    background-color: #f7fafc;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cleaning-service-section *,
.cleaning-service-section *::before,
.cleaning-service-section *::after {
    box-sizing: border-box;
}

/* --- Card Grid Configuration --- */
.cleaning-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}

.cleaning-card {
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.02);
}

/* --- Left Dynamic Image Card --- */
.left-image-card {
    height: 520px;
}

.left-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Deep Fabric Floating Badge --- */
.fabric-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #ffffff;
    border-radius: 24px;
    padding: 12px 28px 12px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 12px 30px rgba(18, 30, 54, 0.08);
}

.badge-icon-circle {
    background: #111b30;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sparkle-icon {
    width: 22px;
    height: 22px;
    color: #486f1f;
}

.badge-text-box {
    display: flex;
    flex-direction: column;
}

.badge-title,
.badge-subtitle {
    color: #111b30;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
}

/* --- Right Structural Info Card --- */
.right-content-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 520px;
    background: linear-gradient(180deg, #ffffff 0%, #fcfdfe 100%);
}

.card-inner-text {
    padding: 48px 48px 20px 48px;
}

/* Dotted Circle Effect around Bucket */
.bucket-icon-wrapper {
    position: relative;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.bucket-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
}

.bucket-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #e6f6a2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bucket-svg {
    width: 26px;
    height: 26px;
    color: #111b30;
}

.right-content-card h2 {
    color: #111b30;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 32px 0;
    letter-spacing: -0.02em;
}

/* Features Component */
.clean-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.clean-features li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.checkmark-circle {
    width: 26px;
    height: 26px;
    background-color: #486f1f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.85rem;
}

.feature-name {
    color: #111b30;
    font-weight: 600;
    font-size: 1.05rem;
}

/* Mattress Bottom Graphic */
/* Mattress Bottom Graphic - Fixed 404 Link */
.mattress-image-bg {
    height: 190px;
    width: 100%;
    background-image: url('../images/video-v1-bg2.jpg');
    background-size: cover;
    background-position: center;
}

/* --- Banner Layout Row Container --- */
.banner-wrapper-row {
    position: relative;
    width: 100%;
    padding-right: 64px;
    /* Room for the floating corner button */
}

.satisfaction-banner {
    background: #ffffff;
    border-radius: 100px;
    padding: 12px 32px 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
}

.banner-main-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Thumbs Up Dotted Border Frame */
.thumb-circle-frame {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-circle-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
}

.thumb-circle-inner {
    width: 94px;
    height: 94px;
    border-radius: 50%;
    background-color: #486f1f;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-svg {
    width: 38px;
    height: 38px;

}

/* Typography Headings */
.banner-headings h3 {
    margin: 0;
    color: #111b30;
    font-size: 1.65rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.banner-headings p {
    margin: 4px 0 0 0;
    color: #486f1f;
    /* Richer olive-lime value matching screenshot saturation */
    font-weight: 700;
    font-size: 1.75rem;
}

/* Heart Frame Action Styling */
.banner-main-right {
    display: flex;
    align-items: center;
    padding-left: 24px;
    border-left: 1px solid #e2e8f0;
}

.favorite-heart-toggle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #093a82;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.favorite-heart-toggle:hover {
    transform: scale(1.05);
}

.heart-svg {
    width: 22px;
    height: 22px;
    color: #fff;
    fill: none;
}

/* Overlapping Chevron Anchor Button */
.corner-chevron-nav {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background-color: #486f1f;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(199, 235, 37, 0.4);
}

.chevron-svg {
    width: 20px;
    height: 20px;
    color: #111b30;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .cleaning-grid-container {
        grid-template-columns: 1fr;
    }

    .banner-wrapper-row {
        padding-right: 0;
    }

    .corner-chevron-nav {
        position: static;
        margin: 16px auto 0 auto;
        transform: none;
    }

    .satisfaction-banner {
        flex-direction: column;
        gap: 20px;
        border-radius: 32px;
        padding: 24px;
    }

    .banner-main-left {
        flex-direction: column;
        text-align: center;
    }

    .banner-main-right {
        border-left: none;
        padding-left: 0;
    }
}

/* --- Premium FAQ UI Stylesheet --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

.premium-faq-section {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 1120px;
    margin: 40px auto;
    padding: 0 24px;
    background-color: transparent;
    box-sizing: border-box;
}

.premium-faq-section *,
.premium-faq-section *::before,
.premium-faq-section *::after {
    box-sizing: border-box;
}

/* --- Header Component Styling --- */
.faq-header-block {
    text-align: center;
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-icon-wrapper {
    position: relative;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px dashed #cbd5e1;
    border-radius: 50%;
}

.faq-circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #e6f6a2;
    /* Custom light lime accent */
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-svg {
    width: 24px;
    height: 24px;
    color: #111b30;
}

.faq-header-block h2 {
    color: #111b30;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 10px 0;
}

.faq-header-block p {
    color: #64748b;
    font-size: 1.1rem;
    margin: 0;
    max-width: 480px;
    line-height: 1.5;
}

/* --- Accordion Panel Design --- */
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0px 8px 30px rgba(18, 30, 54, 0.02);
    border: 1px solid rgba(226, 232, 240, 0.6);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

/* Hover & Active States */
.faq-item:hover {
    border-color: rgba(17, 27, 48, 0.15);
    box-shadow: 0px 12px 35px rgba(18, 30, 54, 0.04);
}

.faq-item.active {
    border-color: #111b30;
    box-shadow: 0px 16px 40px rgba(18, 30, 54, 0.05);
}

/* Accordion Click Header Trigger */
.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    cursor: pointer;
    text-align: left;
}

.faq-question {
    color: #111b30;
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.faq-item.active .faq-question {
    color: #111b30;
}

/* Premium Minimal Action Plus/Minus Icon Indicator */
.faq-status-icon {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: #042445;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.faq-status-icon::before,
.faq-status-icon::after {
    content: '';
    position: absolute;
    background-color: #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.2s ease;
}

/* Horizontal line */
.faq-status-icon::before {
    width: 14px;
    height: 2px;
}

/* Vertical line */
.faq-status-icon::after {
    width: 2px;
    height: 14px;
}

/* Transition to Open state */
.faq-item.active .faq-status-icon {
    background-color: #486f1f;
    /* Matches layout signature lime */
    transform: rotate(180deg);
}

.faq-item.active .faq-status-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg);
}

/* --- Smooth Content Panels Animation Area --- */
.faq-content-pane {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-inner-text {
    padding: 0 32px 28px 32px;
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    letter-spacing: -0.005em;
}

/* Mobile Breakpoint Optimizations */
@media (max-width: 600px) {
    .faq-header-block h2 {
        font-size: 1.8rem;
    }

    .faq-trigger {
        padding: 20px 24px;
    }

    .faq-inner-text {
        padding: 0 24px 20px 24px;
        font-size: 0.95rem;
    }

    .faq-question {
        font-size: 1.05rem;
    }

    .faq-status-icon {
        width: 32px;
        height: 32px;
    }
}

/* --- Compact Premium Pre-Footer Stylesheet --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

.compact-prefooter-ribbon {
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 24px;
    box-sizing: border-box;
}

.compact-prefooter-ribbon *,
.compact-prefooter-ribbon *::before,
.compact-prefooter-ribbon *::after {
    box-sizing: border-box;
}

/* Linear Single Row Wrapper */
.ribbon-inner-flex {
    background: #ffffff;
    border-radius: 32px;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0px 10px 35px rgba(18, 30, 54, 0.03);
}

/* Left Section: Typography */
.ribbon-branding {
    flex: 1.2;
    min-width: 280px;
}

.ribbon-branding h2 {
    color: #111b30;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    letter-spacing: -0.02em;
}

.ribbon-branding p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

/* Center Section: Shared Pill Container */
.ribbon-support-hub {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1.5;
}

.micro-support-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px 10px 12px;
    border-radius: 20px;
    flex: 1;
    min-width: 180px;
}

.dark-pill {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}


.white-pill {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
}

.pill-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgb(16 57 140);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
}

.pill-icon svg {
    width: 18px;
    height: 18px;
}

.lime-bg {
    background-color: #486f1f;
    color: #ffffff;
}

.pill-meta {
    display: flex;
    flex-direction: column;
}

.pill-label {
    font-size: 0.70rem;
    font-weight: 500;
    color: rgb(0 0 0 / 60%);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.text-muted {
    color: #64748b;
}

.pill-value {
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    color: #333 !important;
    line-height: 1.2;
    margin-top: 2px;
}

.text-white {
    color: #ffffff;
}

.text-dark-blue {
    color: #111b30;
}

/* Right Section: Compact Custom Action Node */
.ribbon-action-node {
    display: flex;
    justify-content: flex-end;
}

.ribbon-action-btn {
    background-color: #486f1f;
    color: #ffffff;
    border: none;
    padding: 8px 10px 8px 24px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-arrow-circle {
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    /* Theme Signature Accent Lime */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111b30;
}

.btn-arrow-circle svg {
    width: 16px;
    height: 16px;
}

.ribbon-action-btn:hover {
    background-color: #1c2b4a;
    transform: translateY(-1px);
}

/* --- Responsive Adaptability Matrix --- */
@media (max-width: 1024px) {
    .ribbon-inner-flex {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
        padding: 24px;
    }

    .ribbon-branding {
        text-align: center;
    }

    .ribbon-action-node {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .ribbon-support-hub {
        flex-direction: column;
    }

    .micro-support-pill {
        width: 100%;
    }

    .ribbon-action-btn {
        width: 100%;
        justify-content: space-between;
    }
}

/* --- Premium Scroll-Triggered UI --- */
.premium-top-btn {
    position: fixed;
    bottom: 35px;
    right: 35px;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 999999;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;

    /* डिफ़ॉल्ट रूप से छुपा हुआ और नीचे की तरफ सेट */
    opacity: 0;
    visibility: hidden;
    transform: translateY(30px) scale(0.8);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* JS इस क्लास को स्क्रॉल करने पर ऑटोमैटिक जोड़ देगा */
.premium-top-btn.show-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* बटन का अंदर का हिस्सा (Core) */
.btn-inner-core {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #111b30;
    /* Premium Dark Navy */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(17, 27, 48, 0.25);
    z-index: 2;
    transition: all 0.3s ease;
}

.arrow-svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

/* पीछे चलता हुआ लाइट पल्स वेव इफ़ेक्ट */
.btn-pulse-wave {
    position: absolute;
    inset: 0;
    background-color: #c7eb25;
    /* Your Signature Lime Green */
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transform: scale(1);
}

/* --- Premium Hover Animations --- */
.premium-top-btn:hover .btn-inner-core {
    background-color: #c7eb25;
    /* Hover करने पर लाइम ग्रीन */
    color: #111b30;
    /* टेक्स्ट डार्क नेवी */
    box-shadow: 0 12px 30px rgba(199, 235, 37, 0.4);
}

.premium-top-btn:hover .arrow-svg {
    transform: translateY(-4px);
    /* तीर ऊपर की तरफ मूव करेगा */
}

/* Hover करने पर वेव इफ़ेक्ट ट्रिगर होगा */
.premium-top-btn:hover .btn-pulse-wave {
    animation: premiumPulse 1.5s infinite ease-out;
}

@keyframes premiumPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


@media (max-width: 768px) {
    .premium-top-btn {
        bottom: 25px;
        right: 25px;
        width: 46px;
        height: 46px;
    }
}

/*=========================================================
  HEADER RESPONSIVE FIX PACK (FINAL)
  Append after your existing style.css.
  Everything is inside @media queries — desktop (>991px)
  is completely untouched.
=========================================================*/

/*=========================================================
  1. TOP HEADER (phone/email bar)
=========================================================*/
@media (max-width: 575px) {

    .top-header {
        display: none !important;
    }
}

/*=========================================================
  2. NAVBAR / LOGO
=========================================================*/
@media (max-width: 991px) {

    .navbar {
        height: 84px !important;
    }

    .logo img {
        height: 46px !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 575px) {

    .navbar {
        height: 72px !important;
    }

    .logo img {
        height: 68px !important;
    }

    .container {
        padding: 0 16px !important;
    }
}

/*=========================================================
  3. MAIN NAV MENU
  Hidden on tablet/mobile — its links live inside the
  offcanvas (see .offcanvas-nav below), opened by the
  existing 9-dot menuBtn.
=========================================================*/
@media (max-width: 991px) {

    .nav-menu {
        display: none !important;
    }
}

/*=========================================================
  4. RIGHT SIDE CONTROLS (search / quote / menu-btn)
=========================================================*/
@media (max-width: 991px) {

    .nav-right {
        gap: 10px !important;
    }

    .header {
        padding: 0px 0px !IMPORTANT
    }

    .search-btn {
        display: none !important;
    }

    .quote-btn {
        height: 44px !important;
        padding: 0 18px !important;
        font-size: 14px !important;
        gap: 6px !important;
        white-space: nowrap !important;
        /* fix: stops "Get a Quote" wrapping */
        flex-shrink: 0;
    }

    .menu-btn {
        width: 44px !important;
        height: 44px !important;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {

    .quote-btn {
        padding: 0 14px !important;
        font-size: 13px !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 380px) {

    /* On the smallest phones there isn't room for the full
     label next to the 9-dot button — collapse to icon-only
     instead of letting text wrap or overflow. */
    .quote-btn {
        width: 100px !important;
        height: 47px !important;
        padding: 0 !important;
        /* border-radius: 50% !important; */
        justify-content: center !important;
        font-size: 12px !important;
    }

    .quote-btn i {
        display: block !important;
        font-size: 16px !important;
    }
}

/*=========================================================
  5. OFFCANVAS NAV LINKS (mobile menu content)
=========================================================*/

.offcanvas-nav {
    list-style: none;
    margin: 0 0 35px;
    padding: 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.offcanvas-nav>li {
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.offcanvas-nav>li>a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    transition: .3s;
}

.offcanvas-nav>li>a:hover {
    color: var(--primary);
    padding-left: 10px;
}

/* Services dropdown trigger */
.offcanvas-dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 4px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    cursor: pointer;
    transition: .3s;
}

.offcanvas-dropdown-trigger i {
    transition: transform .3s;
}

.offcanvas-dropdown.open .offcanvas-dropdown-trigger i {
    transform: rotate(180deg);
}

.offcanvas-dropdown.open .offcanvas-dropdown-trigger {
    color: var(--primary);
}

/* Submenu (collapsed by default) */
.offcanvas-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.offcanvas-dropdown.open .offcanvas-submenu {
    max-height: 500px;
}

.offcanvas-submenu li a {
    display: block;
    padding: 12px 4px 12px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.offcanvas-submenu li a:hover {
    color: var(--primary);
    padding-left: 24px;
}

/*=========================================================
  6. SMALLEST PHONES — tighten offcanvas nav text
=========================================================*/
@media (max-width: 375px) {

    .offcanvas-nav>li>a,
    .offcanvas-dropdown-trigger {
        font-size: 15px;
    }
}

/*==================================================
        ABOUT COMPANY SECTION
        COMPLETE + FULLY RESPONSIVE (!important)
==================================================*/

.about-company-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background:
        linear-gradient(135deg,
            #f8fbff 0%,
            #f3f8ff 45%,
            #ffffff 100%);
    z-index: 1;
}

.about-bg-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-bg-circle-1 {
    width: 520px;
    height: 520px;
    background: rgba(31, 79, 184, .06);
    top: -220px;
    left: -180px;
    filter: blur(10px);
}

.about-bg-circle-2 {
    width: 380px;
    height: 380px;
    background: rgba(31, 79, 184, .05);
    right: -150px;
    bottom: -120px;
    filter: blur(20px);
}

.about-dots {
    position: absolute;
    width: 170px;
    height: 170px;
    opacity: .35;
    background-image: radial-gradient(#1F4FB8 2px, transparent 2px);
    background-size: 22px 22px;
}

.about-dots-left {
    left: -20px;
    top: 80px;
}

.about-dots-right {
    right: -10px;
    bottom: 60px;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    position: relative;
}

.about-media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 760px;
}

.about-media::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(rgba(31, 79, 184, .12), transparent 70%);
    top: 0;
    left: -40px;
}

.about-media::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(rgba(31, 79, 184, .08), transparent 70%);
    right: -80px;
    bottom: 60px;
}

.about-content {
    position: relative;
    z-index: 5;
}

.about-content::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 5px;
    background: #1F4FB8;
    border-radius: 30px;
    left: 0;
    top: 120px;
    opacity: .08;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #1F4FB8;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.section-badge span {
    width: 34px;
    height: 3px;
    border-radius: 30px;
    background: #1F4FB8;
}

.about-content h2 {
    font-size: 35px;
    line-height: 1.1;
    font-weight: 800;
    color: #081B44;
    margin-bottom: 30px;
}

.about-content h2 span {
    color: #1F4FB8;
    position: relative;
}

.about-content h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 7px;
    border-radius: 30px;
    background: linear-gradient(90deg, #1F4FB8, #3d7dff);
    opacity: .15;
}

.about-intro {
    font-size: 16px;
    line-height: 1.8;
    color: #5e6473;
    max-width: 620px;
    margin-bottom: 45px;
}

.about-company-section::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(rgba(31, 79, 184, .08), transparent 70%);
    left: -260px;
    bottom: -260px;
}

.about-company-section::after {
    content: "";
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(rgba(31, 79, 184, .05), transparent 70%);
    right: -150px;
    top: -180px;
}

.about-company-section * {
    transition: all .35s ease;
}

.main-image-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 2;
}

.main-image-card img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: .7s;
}

.main-image-card:hover {
    transform: rotate(-2deg) translateY(-12px);
}

.main-image-card:hover img {
    transform: scale(1.08);
}

.small-image-card {
    position: absolute;
    right: -33px;
    bottom: 46px;
    width: 330px;
    background: #fff;
    padding: 10px;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
    overflow: hidden;
    z-index: 4;
}

.small-image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    transition: .7s;
}

.small-image-card:hover {
    transform: rotate(3deg) translateY(-12px);
}

.small-image-card:hover img {
    transform: scale(1.08);
}

.small-image-card::after {
    content: "\f004";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #1F4FB8;
    font-size: 22px;
    right: 15px;
    bottom: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
}

.floating-badge {
    position: absolute;
    right: 30px;
    top: 30px;
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #486f1f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    border: 8px solid #fff;
    box-shadow: 0 20px 45px rgba(31, 79, 184, .35);
    animation: floatIcon 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }

    100% {
        transform: translateY(0);
    }
}

.review-card {
    position: absolute;
    left: 14px;
    bottom: -131px;
    width: 434px;
    display: flex;
    align-items: center;
    gap: 26px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 18px 10px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .18);
    z-index: 8;
    overflow: hidden;
}

.review-card::before {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(rgba(31, 79, 184, .12), transparent 70%);
    left: -70px;
    bottom: -70px;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 45px 90px rgba(31, 79, 184, .18);
}

.review-logo img {
    width: 120px;
}

.review-content {
    position: relative;
    z-index: 2;
}

.review-stars {
    color: #FDBB2D;
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
}

.review-content h3 {
    font-size: 54px;
    color: #1F4FB8;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.review-content h4 {
    color: #081B44;
    font-size: 21px;
    margin-bottom: 8px;
    font-weight: 700;
}

.review-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

.feature-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 28px;
    margin-bottom: 28px;
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(31, 79, 184, .08);
    box-shadow: 0 18px 45px rgba(8, 27, 68, .08);
    overflow: hidden;
}

.feature-box:last-child {
    margin-bottom: 40px;
}

.feature-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #1F4FB8, #3D7DFF);
    transform: scaleY(0);
    transform-origin: top;
    transition: .45s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(31, 79, 184, .15);
}

.feature-box:hover::before {
    transform: scaleY(1);
}

.feature-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #486f1f;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 20px 40px rgba(31, 79, 184, .28);
}

.feature-box:hover .feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

.feature-info {
    flex: 1;
}

.feature-info h3 {
    font-size: 24px;
    font-weight: 800;
    color: #081B44;
    margin-bottom: 12px;
}

.feature-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

.feature-arrow {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #F4F8FF;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #1F4FB8;
    font-size: 20px;
    transition: .35s;
}

.feature-box:hover .feature-arrow {
    background: #1F4FB8;
    color: #fff;
    transform: translateX(6px);
}

.about-check-list {
    display: grid;
    gap: 18px;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    padding: 18px 24px;
    border-radius: 60px;
    border: 1px solid rgba(31, 79, 184, .08);
    box-shadow: 0 12px 35px rgba(8, 27, 68, .05);
}

.check-item:hover {
    transform: translateX(10px);
    box-shadow: 0 18px 45px rgba(31, 79, 184, .12);
}

.check-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #486f1f;
    color: #fff;
    font-size: 16px;
}

.check-item span {
    font-size: 17px;
    color: #081B44;
    font-weight: 600;
}

/*=================== RESPONSIVE — ABOUT SECTION ===================*/

@media (max-width: 1200px) {
    .about-wrapper {
        gap: 50px !important;
    }

    .about-content h2 {
        font-size: 32px !important;
    }

    .main-image-card img {
        height: 560px !important;
    }

    .small-image-card {
        width: 260px !important;
        right: 0 !important;
    }

    .review-card {
        width: 320px !important;
        left: 0 !important;
    }
}

@media (max-width: 1200px) and (min-width: 992px) {
    .review-content h3 {
        font-size: 46px !important;
    }

    .floating-badge {
        width: 80px !important;
        height: 80px !important;
        font-size: 28px !important;
    }
}

@media (max-width: 991px) {
    .about-company-section {
        padding: 90px 0 !important;
    }

    .about-bg-circle-1,
    .about-bg-circle-2 {
        width: 320px !important;
        height: 320px !important;
    }

    .about-dots {
        display: none !important;
    }

    .about-wrapper {
        grid-template-columns: 1fr !important;
    }

    .about-media {
        order: 2 !important;
        min-height: 650px !important;
    }

    .about-content {
        order: 1 !important;
        text-align: center !important;
    }

    .section-badge {
        justify-content: center !important;
    }

    .about-intro {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .about-content h2 {
        font-size: 30px !important;
    }

    .about-content::before {
        display: none !important;
    }

    .small-image-card {
        width: 240px !important;
    }

    .review-card {
        width: calc(100% - 40px) !important;
        max-width: 340px !important;
        left: 20px !important;
        bottom: -20px !important;
        padding: 16px !important;
        gap: 16px !important;
    }

    .review-logo img {
        width: 90px !important;
    }

    .review-content h3 {
        font-size: 40px !important;
    }

    .review-content h4 {
        font-size: 17px !important;
    }

    .review-content p {
        font-size: 14px !important;
    }

    .floating-badge {
        width: 70px !important;
        height: 70px !important;
        font-size: 24px !important;
        right: 15px !important;
        top: 15px !important;
        border-width: 5px !important;
    }

    .feature-arrow {
        display: none !important;
    }
}

@media (max-width: 575px) {

    .about-bg-circle-1,
    .about-bg-circle-2 {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .about-company-section {
        padding: 70px 0 !important;
    }

    .about-content h2 {
        font-size: 28px !important;
    }

    .about-intro {
        font-size: 16px !important;
    }

    .about-media {
        min-height: auto !important;
        display: flex !IMPORTANT;
        flex-direction: column !IMPORTANT;
    }

    .about-media::before,
    .about-media::after {
        display: none !important;
    }

    .main-image-card {
        transform: none !important;
    }

    .main-image-card img {
        height: 420px !important;
    }

    .small-image-card {
        position: relative !important;
        width: 85% !important;
        margin: -70px auto 0 !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .review-card {
        position: relative !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        bottom: auto !important;
        margin-top: 25px !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 22px !important;
    }

    .review-logo img {
        width: 100px !important;
        margin: 0 auto !important;
    }

    .feature-box {
        flex-direction: column !important;
        text-align: center !important;
    }

    .about-check-list {
        justify-items: center !important;
    }

    .check-item {
        width: 100% !important;
        max-width: 420px !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 20px !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 600px) {
    .main-image-card img {
        height: 380px !important;
    }
}

@media (max-width: 480px) {
    .about-content h2 {
        font-size: 24px !important;
    }

    .feature-box {
        padding: 22px !important;
    }

    .feature-icon {
        width: 66px !important;
        height: 66px !important;
        min-width: 66px !important;
        font-size: 26px !important;
    }

    .feature-info h3 {
        font-size: 20px !important;
    }

    .feature-info p {
        font-size: 15px !important;
    }

    .review-content h3 {
        font-size: 38px !important;
    }

    .review-content h4 {
        font-size: 17px !important;
    }

    .main-image-card img {
        height: 300px !important;
    }

    .small-image-card {
        width: 100% !important;
    }

    .floating-badge {
        width: 58px !important;
        height: 58px !important;
        font-size: 20px !important;
    }
}

@media (max-width: 375px) {
    .about-content h2 {
        font-size: 21px !important;
    }

    .review-content h3 {
        font-size: 32px !important;
    }

    .review-logo img {
        width: 80px !important;
    }

    .feature-icon {
        width: 58px !important;
        height: 58px !important;
        min-width: 58px !important;
        font-size: 22px !important;
    }

    .feature-info h3 {
        font-size: 18px !important;
    }

    .feature-info p {
        font-size: 14px !important;
    }
}


/*==================================================
        WHY CHOOSE US SECTION
        COMPLETE + FULLY RESPONSIVE (!important)
==================================================*/

.whyChooseSection {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background: url("../images/why-choose-v3-bg.jpg");
    background-size: cover;
    background-position: center;
}

.whyChooseSection::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.65);
    z-index: 0;
}

.whyChooseSection .container {
    position: relative;
    z-index: 5;
}

.wcShape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
}

.wcShape1 {
    width: 620px;
    height: 620px;
    left: -260px;
    top: -240px;
    background: radial-gradient(circle, rgba(34, 87, 214, .08), transparent 72%);
}

.wcShape2 {
    width: 480px;
    height: 480px;
    right: -180px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(34, 87, 214, .06), transparent 72%);
}

.wcDots {
    position: absolute;
    width: 180px;
    height: 180px;
    background-image: radial-gradient(#2c63db 2px, transparent 2px);
    background-size: 22px 22px;
    opacity: .12;
    z-index: -1;
}

.wcDotsLeft {
    left: 30px;
    top: 60px;
}

.wcDotsRight {
    right: 40px;
    bottom: 70px;
}

.wcHeading {
    text-align: center;
    margin-bottom: 70px;
}

.wcMiniTitle {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #1d56d7;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.wcMiniTitle span {
    width: 34px;
    height: 2px;
    background: #1d56d7;
    border-radius: 20px;
}

.wcHeading h2 {
    margin-top: 18px;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.1;
    color: #071c48;
}

.wcHeading h2 span {
    display: block;
    margin-top: 12px;
    color: #1d56d7;
    position: relative;
}

.wcHeading h2 span::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -14px;
    width: 130px;
    height: 6px;
    border-radius: 30px;
    background: linear-gradient(90deg, #2b67ff, #30d6ff);
}

.wcWrapper {
    display: grid;
    grid-template-columns: 1.15fr .95fr;
    gap: 45px;
    align-items: stretch;
}

.wcFeatures {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.wcPromo {
    position: relative;
    border-radius: 36px;
    overflow: hidden;
    min-height: 720px;
    background: linear-gradient(145deg, #1a55dd 0%, #2176ff 55%, #21d4fd 100%);
    box-shadow: 0 40px 80px rgba(32, 74, 170, .22);
}

.wcGlow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgb(72 111 31), transparent 45%), radial-gradient(circle at bottom left, rgba(255, 255, 255, .15), #486f1f 55%);
}

.wcCircle {
    position: absolute;
    width: 360px;
    height: 360px;
    border: 2px dashed rgba(255, 255, 255, .28);
    border-radius: 50%;
    right: -120px;
    bottom: -40px;
}

.wcSpark {
    position: absolute;
    border-radius: 50%;
    background: #ffffff;
    opacity: .75;
}

.wcSpark1 {
    width: 8px;
    height: 8px;
    left: 70px;
    bottom: 110px;
}

.wcSpark2 {
    width: 12px;
    height: 12px;
    top: 110px;
    right: 90px;
}

.wcSpark3 {
    width: 6px;
    height: 6px;
    top: 250px;
    left: 55%;
}

.wcCard,
.wcPromo,
.wcBtn,
.wcIcon,
.wcVehicle img,
.wcBadge,
.wcSpark {
    transition: all .4s ease;
}

.wcPromo:hover {
    transform: translateY(-10px);
    box-shadow: 0 55px 90px rgba(33, 78, 196, .28);
}

.wcCard {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    padding: 45px 35px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .06);
    border: 1px solid rgba(40, 90, 220, .08);
    transition: .45s;
}

.wcCard::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #1d56d7, #31d8ff);
    transform: scaleY(0);
    transform-origin: top;
    transition: .45s;
}

.wcCard:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 65px rgba(33, 82, 201, .14);
}

.wcCard:hover::before {
    transform: scaleY(1);
}

.wcIcon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #486f1f;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 28px;
    box-shadow: 0 18px 35px rgba(35, 88, 220, .25);
}

.wcIcon i {
    color: #fff;
    font-size: 36px;
}

.wcCard:hover .wcIcon {
    transform: rotate(-10deg) scale(1.08);
}

.wcCard h3 {
    font-size: 26px;
    color: #071c48;
    margin-bottom: 15px;
    font-weight: 800;
}

.wcCard p {
    font-size: 16px;
    color: #6b7484;
    line-height: 1.8;
}

.wcNumber {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 78px;
    font-weight: 800;
    color: rgba(29, 86, 215, .05);
    line-height: 1;
}

.wcBadge {
    position: absolute;
    left: 35px;
    top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .16);
    backdrop-filter: blur(15px);
    color: #fff;
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, .20);
    animation: wcFloat 4s ease-in-out infinite;
}

.wcBadge i {
    color: #ffd84f;
}

.wcPromoContent {
    position: absolute;
    left: 40px;
    top: 120px;
    z-index: 5;
    max-width: 330px;
}

.wcPromoContent h3 {
    color: #fff;
    font-size: 35px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 35px;
}

.wcPromoContent ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px;
}

.wcPromoContent li {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
}

.wcPromoContent li i {
    color: #5CFF9D;
    font-size: 18px;
}

.wcBtn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 60px;
    background: #ffffff;
    color: #1d56d7;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: .4s;
}

.wcBtn i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1d56d7;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .4s;
}

.wcBtn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.wcBtn:hover i {
    transform: translateX(5px);
}

.wcVehicle {
    position: absolute;
    right: 4px;
    bottom: 20px;
    width: 95%;
    z-index: 2;
}

.wcVehicle img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .25));
}

.wcPromo:hover .wcVehicle img {
    transform: translateY(-10px) scale(1.03);
}

@keyframes wcFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.wcSpark {
    animation: wcFloat 3s ease-in-out infinite;
}

.wcSpark2 {
    animation-delay: .8s;
}

.wcSpark3 {
    animation-delay: 1.5s;
}

/*=================== RESPONSIVE — WHY CHOOSE US ===================*/

@media (max-width: 1200px) {
    .wcWrapper {
        gap: 32px !important;
    }

    .wcPromoContent {
        max-width: 280px !important;
        left: 32px !important;
    }

    .wcCard {
        padding: 38px 28px !important;
    }
}

@media (max-width: 991px) {
    .whyChooseSection {
        padding: 80px 0 !important;
    }

    .wcShape1,
    .wcShape2 {
        width: 380px !important;
        height: 380px !important;
    }

    .wcDots {
        display: none !important;
    }

    .wcHeading {
        margin-bottom: 50px !important;
    }

    .wcHeading h2 {
        font-size: 30px !important;
    }

    .wcWrapper {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .wcFeatures {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .wcPromo {
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 50px 35px 35px !important;
        order: -1 !important;
    }

    .wcBadge {
        position: static !important;
        margin-bottom: 25px !important;
    }

    .wcPromoContent {
        position: static !important;
        max-width: 100% !important;
        margin-bottom: 30px !important;
    }

    .wcVehicle {
        position: static !important;
        width: 100% !important;
        margin-top: 10px !important;
    }

    .wcCircle,
    .wcSpark {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .whyChooseSection {
        padding: 60px 0 !important;
    }

    .wcHeading h2 {
        font-size: 26px !important;
    }

    .wcFeatures {
        grid-template-columns: 1fr !important;
    }

    .wcCard {
        padding: 32px 26px !important;
    }

    .wcPromoContent h3 {
        font-size: 26px !important;
        margin-bottom: 25px !important;
    }

    .wcPromo {
        padding: 40px 25px 30px !important;
    }
}

@media (max-width: 575px) {

    .wcShape1,
    .wcShape2 {
        display: none !important;
    }

    .wcIcon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
    }

    .wcIcon i {
        font-size: 28px !important;
    }

    .wcCard h3 {
        font-size: 21px !important;
    }

    .wcCard p {
        font-size: 15px !important;
    }

    .wcNumber {
        font-size: 56px !important;
        right: 18px !important;
        top: 14px !important;
    }

    .wcBadge {
        font-size: 13px !important;
        padding: 10px 18px !important;
    }

    .wcPromoContent h3 {
        font-size: 23px !important;
    }

    .wcPromoContent li {
        font-size: 15px !important;
        margin-bottom: 14px !important;
    }

    .wcBtn {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 400px) {
    .wcHeading h2 {
        font-size: 22px !important;
    }

    .wcCard {
        padding: 26px 20px !important;
    }
}


/*=========================================================
        RESPONSIVE — PREMIUM FOOTER
        (desktop above 1200px is untouched)
=========================================================*/

/*====================================
LARGE TABLET (≤1200px)
Footer-main had NO breakpoint at all
before this — 4 fixed columns would
have crushed on any tablet width.
====================================*/
@media (max-width: 1200px) {

    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        row-gap: 55px !important;
        column-gap: 40px !important;
    }

    .footer-about {
        grid-column: 1 / -1 !important;
    }
}

/*====================================
TABLET (≤991px)
====================================*/
@media (max-width: 991px) {

    .premium-footer {
        padding: 80px 0 30px !important;
    }

    .footer-shape-1,
    .footer-shape-2 {
        width: 300px !important;
        height: 300px !important;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 45px !important;
        padding-bottom: 50px !important;
    }

    .footer-about {
        grid-column: 1 / -1 !important;
        text-align: center !important;
    }

    .footer-logo {
        display: block !important;
    }

    .footer-about p {
        max-width: 520px !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .footer-buttons {
        justify-content: center !important;
    }

    .footer-links h3,
    .footer-posts h3,
    .footer-newsletter h3 {
        font-size: 21px !important;
        margin-bottom: 22px !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        text-align: center !important;
        gap: 18px !important;
    }

    .footer-social {
        justify-content: center !important;
    }
}

/*====================================
MOBILE (≤767px)
====================================*/
@media (max-width: 767px) {

    .footer-main {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
        text-align: center !important;
    }

    .footer-about,
    .footer-links,
    .footer-posts,
    .footer-newsletter {
        grid-column: auto !important;
    }

    .footer-links h3::after,
    .footer-posts h3::after,
    .footer-newsletter h3::after {
        left: 8% !important;
        transform: translateX(-50%) !important;
    }


    .footer-post {
        text-align: center !important;
    }

    .btn-gradient {
        font-size: 11px !IMPORTANT
    }

    .btn-glass {
        font-size: 11px !IMPORTANT
    }

    /*.post-date {*/
    /*    justify-content: center !important;*/
    /*}*/

    .newsletter-input input {
        text-align: left !important;
    }

    .newsletter-form button {
        width: 100% !important;
    }
}

/*====================================
SMALL MOBILE (≤575px)
====================================*/
@media (max-width: 575px) {

    .footer-shape-1,
    .footer-shape-2 {
        display: none !important;
    }

    .footer-logo img {
        width: 220px !important;
    }

    .footer-about p {
        font-size: 15.5px !important;
    }

    .footer-logo img {
        margin-left: 71px !IMPORTANT;
    }

    .footer-buttons {
        flex-direction: column !important;
        width: 100% !important;
    }

    .footer-btn {
        width: 100% !important;
        text-align: center !important;
    }

    .footer-links h3,
    .footer-posts h3,
    .footer-newsletter h3 {
        font-size: 19px !important;
        text-align: left !IMPORTANT;
    }

    .footer-post a {
        font-size: 15.5px !important;
        text-align: left !IMPORTANT;
    }

    .copyright {
        font-size: 13.5px !important;
    }

    .footer-social a {
        width: 42px !important;
        height: 42px !important;
    }
}

/*====================================
SCROLL TO TOP — SMALL PHONES
(already partially covered in your CSS
at 768px; this fills the gap below it)
====================================*/
@media (max-width: 480px) {

    .scroll-top {
        right: 18px !important;
        bottom: 18px !important;
        width: 48px !important;
        height: 48px !important;
        font-size: 16px !important;
    }
}


/*=========================================
Inner Banner
=========================================*/

.inner-banner {
    position: relative;
    overflow: hidden;
    padding: 150px 0 120px;
    isolation: isolate;
}

/*====================================
Background Image
====================================*/

.banner-bg {
    position: absolute;
    inset: 0;
    z-index: -3;
}

.banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
}

/* Dark Green Overlay */

.banner-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(40, 63, 15, .92) 0%, rgb(39 39 39 / 88%) 40%, rgba(72, 111, 31, .75) 100%)
}

/* Optional Pattern Overlay */

.banner-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .25;
    z-index: 1;
}

.inner-banner::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: rgba(255, 255, 255, .05);
    border-radius: 50%;
    top: -220px;
    right: -180px;
    z-index: 2;
}

.inner-banner::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
    bottom: -180px;
    left: -130px;
    z-index: -2;
}

.inner-banner .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    position: relative;
    z-index: 2;
}

.inner-banner-content {
    display: flex;
    flex-direction: column;

    justify-content: center;
}


.banner-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.banner-subtitle::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
}

.inner-banner h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    padding: 18px 34px;
    background: #fff;
    margin-left: 40%;
    color: #486f1f;
    font-size: 17px;
    margin-top: 20px;
    font-weight: 700;
    border-radius: 60px;
    text-decoration: none;
    transition: .4s;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.banner-btn i {
    transition: .4s;
    font-size: 18px;
}

.banner-btn:hover {
    background: #2d4712;
    color: #fff;
    transform: translateY(-6px);
}

.banner-btn:hover i {
    transform: translateX(6px);
}

.banner-shape {
    position: absolute;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.shape-1 {
    width: 130px;
    height: 130px;
    border: 2px solid rgba(255, 255, 255, .12);
    top: 18%;
    right: 10%;
}

.shape-2 {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, .08);
    bottom: 18%;
    right: 24%;
}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*=====================================
Responsive
=====================================*/

@media(max-width:991px) {

    .inner-banner {
        padding: 140px 0 110px;
    }

    .inner-banner h1 {
        font-size: 48px;
    }

    .inner-banner p {
        font-size: 17px;
        line-height: 30px;
    }

}

@media(max-width:767px) {

    .inner-banner {
        padding: 120px 0 90px;
        text-align: center;
    }

    .inner-banner-content {
        margin: auto;
    }

    .inner-banner h1 {
        font-size: 36px;
    }

    .inner-banner p {
        font-size: 16px;
        line-height: 28px;
    }

    .banner-btn {
        padding: 16px 28px;
        font-size: 16px;
    }

    .banner-subtitle {
        font-size: 14px;
    }

    .shape-1 {
        display: none;
    }

}

.hero-content {
    max-width: 650px !important;
    position: relative !important;
    z-index: 20 !important;
}

/* .hero-slider .container {
    padding: 0 100px !important;

} */

@media (max-width:991px) {
    .hero-slider .container {
        padding: 0 15px !important;
    }
}

/*====================================================
SERVICE INTRO V2
====================================================*/

.service-intro-v2 {
    position: relative;
    padding: 80px 0;
    background: #fff;
    overflow: hidden;
}

.service-intro-v2::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(72, 111, 31, .05);
    top: -180px;
    right: -180px;
}

.service-intro-v2::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(72, 111, 31, .04);
    bottom: -120px;
    left: -120px;
}

/*=============================
LEFT IMAGE
=============================*/

.service-intro-v2__image {
    position: relative;
    padding-right: 40px;
}

.service-intro-v2__image img {
    width: 100%;
    display: block;
    height: 769px;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .12);
    transition: .5s;
}

.service-intro-v2__image:hover img {
    transform: scale(1.03);
}

/*=============================
BADGE
=============================*/

.service-intro-v2__badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    width: 190px;
    background: #486f1f;
    color: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(72, 111, 31, .35);
    animation: introFloat 4s ease-in-out infinite;
}

.service-intro-v2__badge span {
    display: block;
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
}

.service-intro-v2__badge p {
    margin: 8px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .9) !important;
}

@keyframes introFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/*=============================
RIGHT CONTENT
=============================*/

.service-intro-v2__content {
    padding-left: 40px;
}

.service-intro-v2__subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(72, 111, 31, .10);
    color: #486f1f;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: .5px;
}

.service-intro-v2__content h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
    margin-bottom: 25px;
}

.service-intro-v2__content p {
    font-size: 17px;
    line-height: 32px;
    color: #666;
    margin-bottom: 35px;
}

/*=============================
FEATURES
=============================*/

.service-intro-v2__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.service-intro-v2__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid #eef2eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .35s;
    font-weight: 600;
    color: #333;
}

.service-intro-v2__item i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #486f1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.service-intro-v2__item:hover {
    transform: translateY(-6px);
    border-color: #486f1f;
}

/*=============================
BUTTONS
=============================*/

.service-intro-v2__buttons {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.service-intro-v2__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 34px;
    background: #486f1f;
    color: #fff;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 700;
    transition: .35s;
}

.service-intro-v2__btn:hover {
    background: #2f4b13;
    color: #fff;
    transform: translateY(-5px);
}

.service-intro-v2__call {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #222;
    font-weight: 700;
    transition: .35s;
}

.service-intro-v2__call i {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #486f1f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.service-intro-v2__call:hover {
    color: #486f1f;
}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:991px) {

    .service-intro-v2 {
        padding: 90px 0;
    }

    .service-intro-v2__image {
        padding-right: 0;
        margin-bottom: 60px;
    }

    .service-intro-v2__content {
        padding-left: 0;
    }

    .service-intro-v2__content h2 {
        font-size: 36px;
    }

    .service-intro-v2__features {
        grid-template-columns: 1fr;
    }

    .service-intro-v2__badge {
        left: 20px;
        bottom: 20px;
    }

}

@media(max-width:767px) {

    .service-intro-v2 {
        padding: 70px 0;
    }

    .service-intro-v2__content {
        text-align: center;
    }

    .service-intro-v2__content h2 {
        font-size: 30px;
    }

    .service-intro-v2__content p {
        font-size: 16px;
        line-height: 28px;
    }

    .service-intro-v2__features {
        gap: 15px;
    }

    .service-intro-v2__item {
        justify-content: center;
    }

    .service-intro-v2__buttons {
        justify-content: center;
    }

    .service-intro-v2__badge {
        width: 170px;
        padding: 20px;
    }

    .service-intro-v2__badge span {
        font-size: 38px;
    }

}