/*==================================================
            SAFENEST V2 - STYLE.CSS
            PART 1 - GLOBAL DESIGN SYSTEM
==================================================*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/*==================================================
                    RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #F7F9FC;
    color: #334155;
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 132px;
}

img {
    display: block;
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}

.container {
    width: min(92%, 1280px);
    margin: auto;
}

/*==================================================
                VARIABLES
==================================================*/

:root {

    --primary: #0F172A;
    --secondary: #FF6B00;
    --blue: #2563EB;
    --green: #10B981;

    --white: #ffffff;
    --light: #F7F9FC;

    --text: #334155;
    --gray: #64748B;

    --border: #E2E8F0;

    --radius: 22px;

    --transition: .35s ease;

    --shadow:
        0 15px 40px rgba(15, 23, 42, .08);

    --shadow-lg:
        0 30px 80px rgba(15, 23, 42, .14);

}

/*==================================================
                TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5 {

    font-family: 'Poppins', sans-serif;
    color: var(--primary);

}

h1 {

    font-size: 68px;

    line-height: 1.08;

    font-weight: 800;

}

h2 {

    font-size: 44px;

}

h3 {

    font-size: 30px;

}

p {

    font-size: 17px;

    color: var(--gray);

}

::selection {

    background: var(--secondary);

    color: #fff;

}

/*==================================================
                COMMON BUTTONS
==================================================*/

.btn-primary {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 18px 36px;

    background: var(--secondary);

    color: #fff;

    border-radius: 60px;

    font-weight: 600;

    transition: .35s;

    box-shadow: var(--shadow);

}

.btn-primary:hover {

    transform: translateY(-5px);

    box-shadow: var(--shadow-lg);

}

.btn-outline {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 18px 34px;

    background: #fff;

    color: var(--primary);

    border: 2px solid #E5E7EB;

    border-radius: 60px;

    font-weight: 600;

    transition: .35s;

}

.btn-outline:hover {

    background: #25D366;

    border-color: #25D366;

    color: #fff;

}

/*==================================================
                TOP BAR
==================================================*/

.top-bar {

    background: var(--primary);

    color: #fff;

    padding: 12px 0;

    font-size: 14px;

}

.top-bar-content {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 35px;

    flex-wrap: wrap;

}

.top-item {

    display: flex;

    align-items: center;

    gap: 8px;

}

.top-item i {

    color: var(--secondary);

}

/*==================================================
                HEADER
==================================================*/

.header {

    position: fixed;

    top: 48px;

    left: 0;

    width: 100%;

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(12px);

    z-index: 1000;

    transition: all .35s ease;

    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);

}

.header.scrolled {
    top: 0;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
}

/*==================================================
                NAVBAR
==================================================*/

.navbar {

    height: 88px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.logo {

    display: flex;

    align-items: center;

}

.logo img {

    height: 65px;

    width: auto;

}

/* .logo img{

    height:60px;

} */

.nav-links {

    display: flex;

    align-items: center;

    gap: 38px;

}

.nav-links li {

    position: relative;

}

.nav-links li a {

    font-weight: 600;

    color: var(--primary);

    transition: .35s;

}

.nav-links li a:hover {

    color: var(--secondary);

}

.nav-right {

    display: flex;

    align-items: center;

    gap: 15px;

}

.menu-toggle {

    display: none;

    font-size: 30px;

    cursor: pointer;

    color: var(--primary);

}

/*==================================================
                MEGA MENU
==================================================*/

/*==========================
SERVICES DROPDOWN
==========================*/

.dropdown {

    position: relative;

}

.services-dropdown {

    position: absolute;

    top: calc(100% + 12px);

    left: 50%;

    transform: translateX(-50%);

    width: 900px;

    background: #fff;

    border-radius: 18px;

    padding: 25px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    border: 1px solid #ececec;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .10);

    opacity: 0;

    visibility: hidden;

    transition: .3s ease;

    z-index: 9999;

}

.dropdown:hover .services-dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(8px);

}

.services-dropdown a {

    padding: 14px 18px;

    border-radius: 12px;

    text-decoration: none;

    color: #1f2937;

    font-size: 15px;

    font-weight: 500;

    transition: .3s;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.services-dropdown a::after {

    content: "↗";

    opacity: 0;

    transition: .3s;

    color: #FF6B00;

}

.services-dropdown a:hover {

    background: #FFF7F2;

    color: #FF6B00;

    transform: translateX(5px);

}

.services-dropdown a:hover::after {

    opacity: 1;

}

@media(max-width:991px) {

    .services-dropdown {

        display: none;

    }

}

.service-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: 100%;

    padding: 14px;

    margin-top: 18px;

    border-radius: 12px;

    background: #FF6B00;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    transition: .35s;

}

.service-btn:hover {

    background: #0F172A;

    transform: translateY(-3px);

}

/*======================================
LEFT PANEL
======================================*/

.mega-category {

    background: #F8FAFC;

    padding: 30px;

    border-right: 1px solid #EEF2F7;

}

.category-item {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 18px;

    border-radius: 18px;

    margin-bottom: 14px;

    cursor: pointer;

    transition: .35s;

}

.category-item:hover {


    background: #FFF7F2;

    color: #FF6B00;


}

.category-item.active {

    background: #FF6B00;

    color: #fff;

}

.category-item i:first-child {

    width: 48px;

    height: 48px;

    display: flex;

    justify-content: center;

    align-items: center;

    border-radius: 14px;

    background: #fff;

    color: #FF6B00;

    font-size: 20px;

}

.category-item.active i:first-child {

    background: rgba(255, 255, 255, .18);

    color: #fff;

}

.category-item h4 {

    font-size: 17px;

    margin-bottom: 4px;

}

.category-item span {

    font-size: 13px;

    opacity: .8;

}

.category-item .fa-angle-right {

    margin-left: auto;

}

/*======================================
CENTER PANEL
======================================*/

.mega-services {

    height: 560px;

    overflow-y: auto;

    overflow-x: hidden;

    padding: 35px;

}

.service-group {

    display: none;

    grid-template-columns: 1fr;

    gap: 15px;

    animation: fadeMenu .35s ease;

}

.service-group.active {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.service-group a {

    display: flex;

    flex-direction: column;

    gap: 6px;

    padding: 16px 18px;

    border-radius: 14px;

    background: #F8FAFC;

    transition: .3s;

    text-decoration: none;

}

.service-group a strong {

    color: #0F172A;

    font-size: 16px;

    font-weight: 700;

}

.service-group a span {

    color: #64748B;

    font-size: 13px;

    line-height: 1.5;

}

.service-group a:hover {

    background: #FFF7F2;

    transform: translateX(8px);
    border-left: 4px solid #FF6B00;

}

.service-group a:hover strong {

    color: #FF6B00;

}

/*======================================
RIGHT PREVIEW PANEL
======================================*/

.mega-preview {

    background: #FAFBFD;
    padding: 30px;

    display: flex;
    position: sticky;

    top: 20px;
    flex-direction: column;

    justify-content: flex-start;

    border-left: 1px solid #EEF2F7;
    gap: 20px;

}

.mega-preview img {

    width: 100%;

    height: 220px;

    object-fit: cover;

    border-radius: 18px;

    transition: .4s ease;

    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.mega-preview:hover img {

    transform: scale(1.03);

}

.mega-preview h3 {

    margin-top: 25px;

    font-size: 24px;

    color: #0F172A;

}

.mega-preview p {

    margin: 15px 0 25px;

    color: #64748B;

    line-height: 1.7;

}

.preview-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 15px;

    border-radius: 14px;

    background: #FF6B00;

    color: #fff;

    font-weight: 600;

    transition: .35s;

}

.preview-btn:hover {

    background: #2563EB;

    transform: translateY(-4px);

}

/*======================================
MEGA MENU ANIMATION
======================================*/

.category-item {

    position: relative;

    overflow: hidden;

}

.category-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 100%;

    background: rgba(255, 107, 0, .08);

    transition: .35s;

}

.category-item:hover::before {

    width: 100%;

}

.category-item>* {

    position: relative;

    z-index: 2;

}

.service-group {

    animation: fadeMenu .35s ease;

}

@keyframes fadeMenu {

    from {

        opacity: 0;

        transform: translateY(15px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*======================================
CUSTOM SCROLLBAR
======================================*/

.mega-services::-webkit-scrollbar {

    width: 6px;

}

.mega-services::-webkit-scrollbar-thumb {

    background: #FF6B00;

    border-radius: 20px;

}

/*======================================
PREMIUM SHADOWS
======================================*/

.category-item:hover {

    box-shadow: 0 10px 25px rgba(255, 107, 0, .10);

}

.service-group a:hover {

    box-shadow: 0 12px 30px rgba(37, 99, 235, .10);

}

.preview-btn {

    box-shadow: 0 15px 35px rgba(255, 107, 0, .25);

}

/*======================================
DESKTOP RESPONSIVE
======================================*/

@media(max-width:1200px) {

    .mega-menu {

        width: 960px;

        grid-template-columns: 250px 1fr 260px;

    }

}

@media(max-width:1024px) {

    .mega-menu {

        width: 900px;

    }

    .category-item h4 {

        font-size: 16px;

    }

    .service-group {

        grid-template-columns: 1fr;

    }

}

/* Hide desktop mega menu on tablet/mobile */

@media(max-width:991px) {

    .mega-menu {

        display: none;

    }

}

/*==========================
BACKGROUND BLOBS
==========================*/

.hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    background: #2563EB;

    opacity: .08;

    filter: blur(120px);

    top: -180px;

    right: -180px;

    border-radius: 50%;

}

.hero {
    padding-top: 90px;
    padding-bottom: 120px;
}

.hero-subheading {

    font-size: 28px;

    font-weight: 700;

    color: #0F172A;

    margin: 20px 0 18px;

    line-height: 1.4;

}

.hero-subheading::after {

    content: "";

    display: block;

    width: 80px;

    height: 4px;

    background: #FF6B00;

    border-radius: 20px;

    margin-top: 12px;

}

.hero::after {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: #FF6B00;

    opacity: .08;

    filter: blur(90px);

    bottom: -120px;

    left: -120px;

    border-radius: 50%;

}

/*==========================
LAYOUT
==========================*/

.hero-wrapper {

    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;

}

/*==========================
LEFT CONTENT
==========================*/

.hero-content {

    max-width: 620px;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 22px;

    background: #fff;

    border-radius: 60px;

    box-shadow: var(--shadow);

    margin-bottom: 28px;

    font-weight: 600;

}

.hero-badge i {

    color: var(--secondary);

}

.hero-content h1 {

    margin-bottom: 25px;

}

.hero-content h1 span {

    color: var(--secondary);

}

.hero-content p {

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 35px;

}

/*==========================
FEATURE LIST
==========================*/

.hero-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 40px;

}

.hero-features div {

    display: flex;

    align-items: center;

    gap: 10px;

    font-weight: 600;

}

.hero-features i {

    color: var(--green);

}

/*==========================
BUTTONS
==========================*/

.hero-buttons {

    display: flex;

    gap: 40px;

    margin-bottom: 50px;

}

/*==========================
STATS
==========================*/

.hero-stats {

    display: flex;

    gap: 50px;

}

.stat-box h2 {

    color: var(--secondary);

    font-size: 42px;

    margin-bottom: 5px;

}

.stat-box span {

    color: var(--gray);

    font-size: 15px;

}

/*==================================================
            HERO IMAGE
==================================================*/

.hero-image {

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

}

/* Blue Organic Background */

.hero-shape {

    position: absolute;

    width: 520px;

    height: 520px;

    background: linear-gradient(135deg,
            #3B82F6,
            #2563EB);

    border-radius: 58% 42% 65% 35% / 35% 55% 45% 65%;

    animation: morph 10s ease-in-out infinite;

}

/* Main Image */

.hero-image img {

    position: relative;

    z-index: 5;

    width: 420px;

    height: 560px;

    object-fit: cover;

    border-radius: 45% 55% 50% 50% / 40% 60% 40% 60%;

    border: 8px solid white;

    box-shadow: 0 35px 80px rgba(15, 23, 42, .18);

    transition: .45s;

}

.hero-image:hover img {

    transform: scale(1.03);

}

/*==========================
FLOATING GLASS CARDS
==========================*/

.floating-card {

    position: absolute;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(18px);

    border-radius: 22px;

    padding: 40px 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

    z-index: 20;

}

.rating-card {

    top: 30px;

    left: -20px;

}

.rating-card .stars {

    color: #fbbf24;

    margin-bottom: 8px;

}

.rating-card h4 {

    font-size: 16px;

}

.rating-card p {

    font-size: 13px;

}

.experience-card {

    bottom: 40px;

    right: -20px;

    text-align: center;

}

.experience-card h3 {

    color: var(--secondary);

    font-size: 34px;

}

/* .trust-card{

    top:130px;

    right:-60px;

    display:flex;

    align-items:center;

    gap: 30px;

} */

.trust-icon {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: #10B981;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

}

/*==========================
SERVICE TAGS
==========================*/

.service-tag {

    position: absolute;

    background: #fff;

    padding: 10px 18px;

    border-radius: 50px;

    box-shadow: var(--shadow);

    font-weight: 600;

    font-size: 14px;

}

.tag-one {

    top: 80px;

    right: -30px;

}

.tag-two {

    bottom: 140px;

    left: -50px;

}

.tag-three {

    bottom: 10px;

    left: 40px;

}

/*==================================================
            PART 3A
            RESPONSIVE DESIGN
==================================================*/

/*==============================
LAPTOP
==============================*/

@media (max-width:1200px) {

    .container {

        width: 95%;

    }

    .hero-wrapper {

        gap: 50px;

    }

    .hero-content h1 {

        font-size: 58px;

    }

    .hero-image img {

        width: 380px;

        height: 520px;

    }

    .hero-shape {

        width: 460px;

        height: 460px;

    }

}

/*==============================
TABLET
==============================*/

@media (max-width:991px) {

    .footer .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 24px !important;
    }

    .top-bar {

        width: 100%;

        background: #0F172A;

        color: #fff;

        font-size: 14px;

        padding: 10px 0;

        position: relative;

        z-index: 1001;

    }

    .top-wrapper {

        display: flex;

        justify-content: center;

    }

    .top-info {

        display: flex;

        gap: 35px;

        flex-wrap: wrap;

        justify-content: center;

        align-items: center;

    }

    .top-info span {

        display: flex;

        align-items: center;

        gap: 8px;

    }

    .top-info i {

        color: #FF6B00;

    }

    .header {

        top: 40px;

    }

    body {

        padding-top: 88px;

    }

    .nav-links {

        display: flex;
        align-items: center;
        gap: 38px
    }

    .nav-links>li {

        position: relative;

    }

    .nav-right {

        display: none;

    }



    .menu-toggle {

        display: block;

    }

    .navbar {

        height: 80px;

    }

    .hero {

        padding-top: 120px;

        padding-bottom: 70px;

    }

    .hero-wrapper {

        display: flex;

        flex-direction: column;

        gap: 70px;

        text-align: center;

    }

    .hero-content {

        max-width: 100%;

        order: 2;

    }

    .hero-image {

        order: 1;

    }

    .hero-content h1 {

        font-size: 52px;

    }

    .hero-content p {

        margin: auto;

        max-width: 650px;

    }

    .hero-features {

        justify-content: center;

        grid-template-columns: repeat(2, 1fr);

    }

    .hero-buttons {

        justify-content: center;

    }

    .hero-stats {

        justify-content: center;

        flex-wrap: wrap;

    }

    .hero-image img {

        width: 360px;

        height: 470px;

    }

    .hero-shape {

        width: 430px;

        height: 430px;

    }

    .rating-card {

        left: 0;

    }

    .experience-card {

        right: 0;

    }

    .trust-card {

        right: 0;

    }

}

/*==============================
MOBILE
==============================*/

@media (max-width:768px) {

    .footer .container {
        padding: 0 18px !important;
    }

    .hero {

        padding-top: 110px;

        min-height: auto;

    }

    .hero-wrapper {

        gap: 45px;

    }

    .hero-content h1 {

        font-size: 40px;

        line-height: 1.2;

    }

    .hero-content p {

        font-size: 16px;

        line-height: 1.8;

    }

    .hero-features {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .hero-buttons {

        flex-direction: column;

        align-items: center;

    }

    .btn-primary,

    .btn-outline {

        width: 100%;

        max-width: 280px;

    }

    .hero-stats {

        gap: 25px;

    }

    .hero-image {

        padding: 20px;

    }

    .hero-image img {

        width: 290px;

        height: 380px;

    }

    .hero-shape {

        width: 340px;

        height: 340px;

    }

    .rating-card {

        top: -10px;

        left: 0;

        transform: scale(.85);

    }

    .experience-card {

        right: 0;

        bottom: 0;

        transform: scale(.85);

    }

    .trust-card {

        display: none;

    }

    .service-tag {

        display: none;

    }

}

/*==============================
SMALL MOBILE
==============================*/

@media (max-width:480px) {

    .hero-content h1 {

        font-size: 34px;

    }

    .hero-image img {

        width: 240px;

        height: 320px;

    }

    .hero-shape {

        width: 290px;

        height: 290px;

    }

    .hero-stats {

        flex-direction: column;

        gap: 18px;

    }

    .hero-badge {

        font-size: 13px;

        padding: 10px 18px;

    }

}

/*==================================================
            PART 3B
            PREMIUM ANIMATIONS
==================================================*/

/*==============================
FLOATING CONTACT
==============================*/

.floating-contact{

    position:fixed;

    right:20px;

    bottom:110px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:12px;

    padding:10px;

    border-radius:999px;

    background: rgba(255,255,255,.95);

    box-shadow: 0 16px 40px rgba(0, 0, 0, .16);

    backdrop-filter: blur(10px);

    z-index:9999;

}

.floating-contact a {

    width: 56px;

    height: 56px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 22px;

    color: #fff;

    box-shadow: 0 12px 28px rgba(0, 0, 0, .16);

    transition: .35s ease;

    flex-shrink: 0;

}

.whatsapp {

    background: #25D366;

}

.phone {

    background: #2563EB;

    animation: phoneRing 1.5s infinite;

    transform-origin: center;

}

/*==============================
PHONE RING ANIMATION
==============================*/

@keyframes phoneRing {

    0%,
    100% {
        transform: rotate(0deg);
    }

    5% {
        transform: rotate(-18deg);
    }

    10% {
        transform: rotate(18deg);
    }

    15% {
        transform: rotate(-15deg);
    }

    20% {
        transform: rotate(15deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    30% {
        transform: rotate(10deg);
    }

    35% {
        transform: rotate(0deg);
    }

}

.mail {

    background: #FF6B00;

}

.floating-contact a:hover {

    transform: translateY(-6px) scale(1.08);

}

/*==============================
WHATSAPP PULSE
==============================*/

.whatsapp {

    animation: pulse 2.5s infinite;

}

.floating-contact a:hover {

    transform: translateY(-4px) scale(1.04);

}

@keyframes pulse {

    0% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, .45);

    }

    70% {

        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);

    }

}

/*==============================
FLOATING GLASS CARDS
==============================*/

.floating-card {

    animation: cardFloat 5s ease-in-out infinite;

}

.rating-card {

    animation-delay: 0s;

}

.experience-card {

    animation-delay: 1.5s;

}

.trust-card {

    animation-delay: 3s;

}

@keyframes cardFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

    100% {

        transform: translateY(0);

    }

}

/*==============================
HERO SHAPE
==============================*/

.hero-shape {

    animation: morphShape 10s ease-in-out infinite;

}

@keyframes morphShape {

    0% {

        border-radius: 58% 42% 65% 35% / 35% 55% 45% 65%;

    }

    50% {

        border-radius: 40% 60% 35% 65% / 60% 40% 60% 40%;

    }

    100% {

        border-radius: 58% 42% 65% 35% / 35% 55% 45% 65%;

    }

}

/*==============================
IMAGE HOVER
==============================*/

.hero-image img {

    transition: .45s ease;

}

.hero-image:hover img {

    transform: scale(1.04);

}

/*==============================
BUTTON SHINE
==============================*/

.btn-primary {

    position: relative;

    overflow: hidden;

}

.btn-primary::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 60%;

    height: 100%;

    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .5),
            transparent);

    transition: .8s;

}

.btn-primary:hover::before {

    left: 140%;

}

/*==============================
NAVBAR SHADOW
==============================*/

.header.scrolled {

    background: rgba(255, 255, 255, .90);

    backdrop-filter: blur(18px);

    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);

}

/*==============================
TOP BAR ICON
==============================*/

.top-item i {

    transition: .3s;

}

.top-item:hover i {

    transform: rotate(15deg) scale(1.2);

}

/*==============================
SERVICE TAGS
==============================*/

.service-tag {

    animation: tagFloat 6s ease-in-out infinite;

}

.tag-two {

    animation-delay: 2s;

}

.tag-three {

    animation-delay: 4s;

}

@keyframes tagFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-8px);

    }

    100% {

        transform: translateY(0);

    }

}

/*==============================
SCROLLBAR
==============================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #EEF2F7;

}

::-webkit-scrollbar-thumb {

    background: #FF6B00;

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #e95d00;

}

/*==================================================
            PART 3C
        FINAL POLISH & UTILITIES
==================================================*/

/*==================================================
            MOBILE & TABLET (991px)
==================================================*/

@media (max-width:991px) {

    /* Hide Desktop Elements */

    .top-bar {
        display: block;
    }

    .nav-right {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border-radius: 12px;
        background: #F8FAFC;
        cursor: pointer;
        font-size: 22px;
    }

    /* Header */

    .header {
        position: fixed;
        top: 48px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(16px);
        z-index: 999;
    }

    .navbar {
        height: 78px;
    }

    .logo img {
        height: 58px;
    }

    /* Hero */

    .hero {
        padding: 40px 0 70px;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column-reverse;
        gap: 45px;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 40px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .hero-subheading {
        font-size: 20px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.8;
        max-width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        margin: 30px 0;
    }

    .hero-features div {
        justify-content: center;
        font-size: 14px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .hero-buttons a {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        max-width: 360px;
        margin: auto;
        position: relative;
    }

    .hero-image img {
        width: 100%;
        border-radius: 28px;
    }

    /* Floating Cards */

    .rating-card {
        top: 10px;
        left: -10px;
        transform: scale(.85);
    }

    .experience-card {
        bottom: 10px;
        right: -5px;
        transform: scale(.85);
    }

    .trust-card {
        right: -12px;
        top: 45%;
        transform: translateY(-50%) scale(.85);
    }

    /* Stats */

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 35px;
    }

    .stat-box {
        padding: 18px 12px;
    }

    .stat-box h2 {
        font-size: 24px;
    }

    .stat-box span {
        font-size: 13px;
    }

    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        min-height: auto;
        height: auto;
    }

    .service-image {
        height: 240px;
    }

    .service-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .service-call-btn {

        display: inline-flex;

        align-items: center;

        justify-content: center;

        gap: 10px;

        width: 100%;

        padding: 14px;

        margin-top: 18px;

        border-radius: 12px;

        background: #FF6B00;

        color: #fff;

        text-decoration: none;

        font-weight: 600;

        transition: .35s;

    }

    .service-call-btn:hover {

        background: #0F172A;

        transform: translateY(-3px);

    }

    /* Floating Contact */

    .floating-contact {
        right: 14px;
        left: auto;
        bottom: 95px;
        top: auto;
        transform: none;
        gap: 10px;
        padding: 8px;
        width: auto;
        max-width: none;
        flex-direction: column;
        justify-content: center;
    }

    .floating-contact a {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/*==================================================
            MOBILE DRAWER
==================================================*/

.mobile-menu {

    position: fixed;

    top: 0;

    right: -100%;

    width: 88%;

    max-width: 360px;

    height: 100vh;

    background: #fff;

    z-index: 99999;

    display: flex;

    flex-direction: column;

    transition: right .4s ease;

    box-shadow: -10px 0 35px rgba(0, 0, 0, .12);

    overflow-y: auto;

    padding: 25px;

}

.mobile-menu.active {

    right: 0;

}

.mobile-header {

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 28px;
    padding: 0 0 20px;

    border-bottom: 1px solid #EEF2F7;

}

/* .mobile-header img{

    height:58px;
    width:auto;

    padding:10px 16px;

    background:#fff;

    border:1px solid #EEF2F7;

    border-radius:16px;

    box-shadow:0 8px 20px rgba(15,23,42,.08);

    transition:.3s;

} */
.mobile-header img {

    height: 65px;

    width: auto;

    object-fit: contain;

}

.mobile-header img:hover {

    transform: scale(1.03);

}

.close-menu {

    width: 46px;
    height: 46px;

    border-radius: 14px;

    background: #F8FAFC;

    transition: .3s;

}

.close-menu:hover {

    background: #FF6B00;
    color: #fff;

}

.mobile-nav {

    display: flex;

    flex-direction: column;

    gap: 6px;

}

.mobile-nav i {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #FFF4EC;

    color: #FF6B00;

    border-radius: 12px;

    font-size: 16px;

}

.mobile-nav a {

    display: flex;

    align-items: center;

    gap: 16px;

    padding: 16px 18px;

    background: #fff;

    border: 1px solid #EEF2F7;

    border-radius: 16px;

    font-weight: 600;

    color: #0F172A;

    transition: .35s;

}

.mobile-nav a:hover {

    background: #FFF7F2;

    border-color: #FF6B00;

    transform: translateX(5px);

}

.mobile-buttons {

    margin-top: 25px;

    display: flex;

    flex-direction: column;

    gap: 15px;

}

/*==================================================
            MOBILE DROPDOWN
==================================================*/

.mobile-dropdown-btn {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 16px 18px;

    background: #fff;

    border: 1px solid #EEF2F7;

    border-radius: 16px;

    transition: .3s;

}

.mobile-dropdown-btn:hover {

    background: #FFF7F2;

}

.mobile-dropdown-btn>div {

    display: flex;

    align-items: center;

    gap: 14px;

}

body.menu-open #backToTop,
body.menu-open #spBackToTop{

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

}

@media (max-width: 768px) {

    body.menu-open .back-to-top,
    body.menu-open .sp-back-to-top {

        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;

    }

}

.mobile-dropdown-btn .arrow {

    transition: .3s;

}

.mobile-dropdown.active .arrow {

    transform: rotate(180deg);

}

.mobile-submenu {

    margin-top: 10px;

    padding-left: 18px;

    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition: max-height 0.3s ease, opacity 0.3s ease;

}

.mobile-dropdown.active .mobile-submenu {

    max-height: 900px;

    opacity: 1;

}

.mobile-submenu li {

    list-style: none;

}

.mobile-submenu a {

    padding: 12px 15px;

    font-size: 15px;

    border-left: 3px solid transparent;

    transition: .3s;

}

.mobile-submenu a:hover {

    border-left: 3px solid #FF6B00;

    background: #FFF7F2;

    padding-left: 22px;

}

.mobile-buttons {

    margin-top: auto;

    display: flex;

    gap: 12px;

}

.mobile-buttons a {

    flex: 1;

    padding: 14px;

    border-radius: 14px;

    text-align: center;

    font-weight: 600;

    text-decoration: none;

}

.mobile-call {

    background: #FF6B00;

    color: #fff;

}

.mobile-whatsapp {

    background: #25D366;

    color: #fff;

}

/*==============================
OVERLAY
==============================*/

.overlay {

    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, .55);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 9990;

}

.overlay.active {

    opacity: 1;

    visibility: visible;

}

/*==============================
SECTION REVEAL
==============================*/

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition: all .8s ease;

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}

/*==============================
HOVER EFFECTS
==============================*/

.nav-links li a {

    position: relative;

}

.nav-links li a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -6px;

    width: 0;

    height: 2px;

    background: #FF6B00;

    transition: .35s;

}

.nav-links li:hover a::after {

    width: 100%;

}

.mega-column a {

    position: relative;

}

.dropdown:hover .mega-menu {

    opacity: 1;

    visibility: visible;

    transform: translateX(-50%) translateY(0);

}

.mega-menu {

    position: absolute;

    top: calc(100% + 18px);
    /* <-- Creates space below navbar */

    left: 78%;
    right: 50%;

    transform: translate(-50%, 15px);

    opacity: 0;

    visibility: hidden;

    transition: .35s ease;

}

/*==============================
IMAGE OPTIMIZATION
==============================*/

.hero-image img,

.mega-image img {

    user-select: none;

    -webkit-user-drag: none;

}

/*==============================
FOCUS STATES
==============================*/

a:focus,

button:focus {

    outline: 3px solid rgba(37, 99, 235, .25);

    outline-offset: 4px;

}

/*==============================
SMOOTH TRANSITIONS
==============================*/

.hero-content,
.hero-image,
.floating-card,
.btn-primary,
.btn-outline,
.nav-links a {

    transition: .35s ease;

}

/*==============================
FOOTER PLACEHOLDER
==============================*/

.footer {

    background: #0F172A;

    color: #fff;

    padding: 70px 0 30px;

}

/*==============================
EXTRA MOBILE FIXES
==============================*/

@media(max-width:768px) {

    .floating-contact {

        right: 12px;

        left: auto;

        bottom: 90px;

        top: auto;

        transform: none;

        gap: 10px;

        padding: 8px;

        flex-direction: column;

        justify-content: center;

    }

    .floating-contact a {

        width: 48px;

        height: 48px;

        font-size: 20px;

    }

    .mobile-menu {

        width: 100%;

    }

    .top-bar {

        display: block;

    }

    .hero-buttons {

        width: 100%;

    }

    .hero-buttons .btn-primary,

    .hero-buttons .btn-outline {

        max-width: 100%;

    }

}

/*====================================
        TRUST STRIP
====================================*/

.trust-strip {

    margin-top: -20px;
    position: relative;
    z-index: 10;
}

.trust-grid {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);

}

.trust-item {

    display: flex;

    align-items: center;

    gap: 18px;

}

.trust-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: linear-gradient(135deg, #2563EB, #0EA5E9);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    transition: .35s;

}

.trust-item:hover .trust-icon {

    transform: translateY(-8px) rotate(5deg);

}

.trust-item h3 {

    font-size: 30px;

    color: #0F172A;

}

.trust-item p {

    color: #64748B;

    margin-top: 5px;

}

@media(max-width:992px) {

    .trust-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:576px) {

    .trust-grid {

        grid-template-columns: 1fr;

        padding: 25px;

    }

    .trust-item {

        justify-content: flex-start;

    }

}

/*==================================================
                SERVICES SECTION
==================================================*/

.services {

    padding: 50px 0;

    background: #F8FAFC;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.services::before {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    top: -180px;

    right: -180px;

    filter: blur(70px);

}

.services::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    bottom: -150px;

    left: -120px;

    filter: blur(70px);

}

/*==================================================
                SECTION TITLE
==================================================*/

.section-title {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 70px;

    position: relative;

    z-index: 2;

}

.section-title span {

    display: inline-block;

    padding: 10px 22px;

    background: rgba(255, 107, 0, .12);

    color: #FF6B00;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 1px;

    margin-bottom: 18px;

}

.section-title h2 {

    font-size: 46px;

    color: #0F172A;

    margin-bottom: 18px;

    line-height: 1.2;

}

.section-title p {

    color: #64748B;

    font-size: 18px;

    line-height: 1.8;

}

/*==================================================
                GRID
==================================================*/

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    position: relative;

    z-index: 2;

}

/*==================================================
                CARD
==================================================*/

/* Scroll Animation */

/*=========================
SERVICE CARD
=========================*/
.service-card{
    opacity:1;
    transform:translateY(0);
    transition:all .7s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card {

    display: flex;

    flex-direction: column;

    height: 520px;

    min-height: 520px;

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);

    transition: .4s ease;

    position: relative;

}

.service-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 50px rgba(0, 0, 0, .12);

}

.service-card.show {

    opacity: 1;

    transform: translateY(0) scale(1);

}

.service-card img {

    width: 100%;

    height: 240px;

    object-fit: cover;

}

/* Orange Top Border */

.service-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 5px;

    background: #FF6B00;

    transition: .4s;

}

.service-card:hover::before {

    width: 100%;

}

/*==================================================
                IMAGE
==================================================*/
/*  */

.service-image {

    position: relative;

    width: 100%;

    height: 240px;

    overflow: hidden;

}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-image img {

    transform: scale(1.08);

}

/* Dark Overlay */

.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(transparent,
            rgba(0, 0, 0, .15));

    pointer-events: none;

}

/*==================================================
                CONTENT
==================================================*/

.service-content {

    position: relative;

    z-index: 2;

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 24px;

}

.service-content h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 15px;

}

.service-content p {

    min-height: 72px;

    color: #64748B;

    line-height: 1.7;

}

/*==================================================
                ICON
==================================================*/
.service-buttons {

    margin-top: auto;

    display: flex;

    gap: 12px;

}

.service-icon {

    width: 68px;

    height: 68px;

    border-radius: 18px;

    background: linear-gradient(135deg, #2563EB, #0EA5E9);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    margin-top: -65px;

    margin-bottom: 20px;

    position: relative;

    z-index: 5;

    box-shadow: 0 15px 35px rgba(37, 99, 235, .25);

}

.services-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;

}

@media(max-width:992px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .services-grid {

        grid-template-columns: 1fr;

    }

}

/*==================================================
            SERVICES PART 2
==================================================*/

/*==========================
SERVICE CALL BUTTON
==========================*/

.service-call-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 14px 28px;

    margin-top: 20px;

    background: #FF6B00;

    color: #fff;

    text-decoration: none;

    font-size: 15px;

    font-weight: 600;

    border-radius: 50px;

    box-shadow: 0 10px 25px rgba(255, 107, 0, .25);

    transition: .35s ease;

}

.service-call-btn i {

    font-size: 15px;

}

.service-call-btn:hover {

    background: #0F172A;

    transform: translateY(-4px);

    box-shadow: 0 18px 35px rgba(15, 23, 42, .25);

}

.service-call-btn:active {

    transform: scale(.97);

}

/*==============================
CARD HOVER
==============================*/

.service-card:hover .service-icon {

    transform: rotate(-8deg) scale(1.08);

    background: linear-gradient(135deg, #FF6B00, #ff8f3d);

}

.service-card:hover h3 {

    color: #FF6B00;

}

.service-card:hover {

    border: 1px solid rgba(255, 107, 0, .18);

}

/*==============================
IMAGE SHADOW
==============================*/

.service-image img {

    filter: brightness(.96);

}

.service-card:hover .service-image img {

    filter: brightness(1);

}

/*==============================
SECTION ANIMATION
==============================*/

@keyframes serviceFade {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

/*==============================
TABLET
==============================*/

@media(max-width:992px) {

    .services-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 28px;

    }

    .section-title h2 {

        font-size: 38px;

    }

    .service-image {

        height: 220px;

    }

}

/*==============================
MOBILE
==============================*/

@media(max-width:768px) {

    .services {

        padding: 90px 0;

    }

    .services-grid {

        grid-template-columns: 1fr;

    }

    .section-title {

        margin-bottom: 50px;

    }

    .section-title h2 {

        font-size: 30px;

    }

    .section-title p {

        font-size: 16px;

    }

    .service-image {

        height: 230px;

    }

    .service-content {

        padding: 25px;

    }

    .service-content h3 {

        font-size: 22px;

    }

    .service-buttons {

        gap: 15px;

    }

}

/*==============================
SMALL MOBILE
==============================*/

@media(max-width:480px) {

    .service-image {

        height: 210px;

    }

    .service-icon {

        width: 58px;

        height: 58px;

        font-size: 24px;

    }

    .service-content {

        padding: 20px;

    }

    .service-buttons {

        flex-direction: row;

    }

}

/*==============================
MOBILE NAV
==============================*/

.mobile-nav {

    display: flex;

    flex-direction: column;

    gap: 8px;

    margin: 35px 0;

}

.mobile-nav li {

    list-style: none;

}

.mobile-nav li a {

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 18px;

    border-radius: 14px;

    color: #0F172A;

    font-weight: 600;

    transition: .35s;

}

.mobile-nav li a:hover {

    background: #FFF3EB;

    color: #FF6B00;

}

.mobile-nav li a i {

    width: 22px;

    font-size: 18px;

    color: #FF6B00;

}

.mobile-buttons {

    margin-top: auto;

    padding: 25px 0 10px;

}

/*==================================================
            WHY CHOOSE US
==================================================*/

.why-choose {

    padding: 110px 0;

    background: #F8FAFC;

    position: relative;

    overflow: hidden;

}

.why-choose::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: #FF6B00;

    opacity: .05;

    filter: blur(100px);

    top: -100px;

    right: -120px;

    border-radius: 50%;

}

.why-choose::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    background: #2563EB;

    opacity: .05;

    filter: blur(90px);

    bottom: -80px;

    left: -80px;

    border-radius: 50%;

}

/*==========================
SECTION TITLE
==========================*/

.section-header {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;

}

.section-tag {

    display: inline-block;

    padding: 8px 18px;

    background: #FFF3EB;

    color: #FF6B00;

    font-weight: 600;

    border-radius: 50px;

    margin-bottom: 18px;

}

.section-header h2 {

    font-size: 42px;

    color: #0F172A;

    margin-bottom: 20px;

    line-height: 1.3;

}

.section-header p {

    color: #64748B;

    font-size: 17px;

    line-height: 1.8;

}

/*==================================================
            WHY CARD GRID
==================================================*/

.why-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    position: relative;

    z-index: 2;

}

/*==================================================
            WHY CARD
==================================================*/

.why-card {

    background: #ffffff;

    padding: 35px 30px;

    border-radius: 22px;

    text-align: center;

    position: relative;

    overflow: hidden;

    border: 1px solid #EEF2F7;

    box-shadow: 0 15px 40px rgba(15, 23, 42, .06);

    transition: all .4s ease;

}

.why-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: linear-gradient(90deg, #FF6B00, #2563EB);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.why-card:hover::before {

    transform: scaleX(1);

}

.why-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 25px 55px rgba(15, 23, 42, .12);

}

/*==================================================
            ICON
==================================================*/

.why-icon {

    width: 82px;

    height: 82px;

    margin: 0 auto 24px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 32px;

    color: #FF6B00;

    background: linear-gradient(135deg, #FFF4EC, #FFE5D4);

    transition: .4s;

}

.why-card:hover .why-icon {

    background: #FF6B00;

    color: #ffffff;

    transform: rotateY(180deg);

}

/*==================================================
            TITLE
==================================================*/

.why-card h3 {

    font-size: 22px;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 15px;

}

/*==================================================
            DESCRIPTION
==================================================*/

.why-card p {

    font-size: 15px;

    color: #64748B;

    line-height: 1.8;

    margin: 0;

    min-height: 82px;

}

/*==================================================
            HOVER GLOW
==================================================*/

.why-card:hover {

    background: #ffffff;

}

.why-card:hover h3 {

    color: #FF6B00;

}

/*==================================================
        WHY CHOOSE US RESPONSIVE
==================================================*/

/* Large Tablet */

@media (max-width:1200px) {

    .why-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 24px;

    }

}

/* Tablet */

@media (max-width:991px) {

    .why-choose {

        padding: 90px 0;

    }

    .section-header {

        margin-bottom: 50px;

        padding: 0 20px;

    }

    .section-header h2 {

        font-size: 34px;

    }

    .section-header p {

        font-size: 16px;

    }

    .why-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 22px;

    }

    .why-card {

        padding: 30px 25px;

    }

}

/* Mobile */

@media (max-width:768px) {

    .why-choose {

        padding: 70px 0;

    }

    .section-header {

        margin-bottom: 40px;

    }

    .section-tag {

        font-size: 13px;

        padding: 8px 18px;

    }

    .section-header h2 {

        font-size: 28px;

        line-height: 1.4;

    }

    .section-header p {

        font-size: 15px;

        line-height: 1.8;

    }

    .why-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .why-card {

        padding: 28px 22px;

        border-radius: 18px;

    }

    .why-icon {

        width: 70px;

        height: 70px;

        font-size: 28px;

        margin-bottom: 20px;

    }

    .why-card h3 {

        font-size: 20px;

    }

    .why-card p {

        min-height: auto;

        font-size: 15px;

    }

}

/* Small Mobile */

@media (max-width:480px) {

    .why-choose {

        padding: 60px 0;

    }

    .section-header h2 {

        font-size: 24px;

    }

    .why-card {

        padding: 24px 20px;

    }

}

/*==================================================
        WHY CARD ANIMATION
==================================================*/

.why-card {

    opacity: 0;

    transform: translateY(50px);

    transition: all .7s ease;

}

.why-card.show {

    opacity: 1;

    transform: translateY(0);

}

/*==========================================
    WHY CHOOSE BACKGROUND IMAGE
==========================================*/

.why-choose {

    position: relative;

    overflow: hidden;

    padding: 110px 0;

    background:
        linear-gradient(rgba(255, 255, 255, .82),
            rgba(255, 255, 255, .82)),
        url("../images/background/apartment-main.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    background-attachment: fixed;

}

.why-choose {

    position: relative;

}

.why-choose::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(255, 107, 0, .08);

    filter: blur(40px);

    top: -120px;

    right: -120px;

    border-radius: 50%;

}

.why-choose::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    background: rgba(37, 99, 235, .08);

    filter: blur(40px);

    bottom: -120px;

    left: -100px;

    border-radius: 50%;

}

/*==================================================
            INSTALLATION PROCESS
==================================================*/

.process-section {

    position: relative;

    padding: 120px 0;

    background: #FFFFFF;

    overflow: hidden;

}

/*==================================
BACKGROUND DECORATION
==================================*/

.process-section::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(255, 107, 0, .05);

    filter: blur(90px);

    top: -120px;

    right: -120px;

    border-radius: 50%;

}

.process-section::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 280px;

    background: rgba(37, 99, 235, .05);

    filter: blur(90px);

    bottom: -120px;

    left: -120px;

    border-radius: 50%;

}

/*==================================
WRAPPER
==================================*/

.process-wrapper {

    display: grid;

    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;

    align-items: center;

    gap: 25px;

    margin-top: 70px;

    position: relative;

}

/*==================================
CARD
==================================*/

.process-card {

    position: relative;

    background: #ffffff;

    padding: 40px 28px;

    border-radius: 22px;

    text-align: center;

    border: 1px solid #EEF2F7;

    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);

    transition: .4s ease;

    overflow: hidden;

}

.process-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

}

/* Top Border Animation */

.process-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #FF6B00, #2563EB);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.process-card:hover::before {

    transform: scaleX(1);

}

/*==================================
STEP NUMBER
==================================*/

.process-number {

    position: absolute;

    top: 18px;

    right: 20px;

    font-size: 38px;

    font-weight: 800;

    color: #EEF2F7;

}

/*==================================
ICON
==================================*/

.process-icon {

    width: 85px;

    height: 85px;

    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    background: #FFF4EC;

    color: #FF6B00;

    font-size: 34px;

    transition: .35s;

}

.process-card:hover .process-icon {

    background: #FF6B00;

    color: #fff;

    transform: rotateY(180deg);

}

/*==================================
TEXT
==================================*/

.process-card h3 {

    font-size: 22px;

    color: #0F172A;

    margin-bottom: 16px;

    font-weight: 700;

}

.process-card p {

    color: #64748B;

    line-height: 1.8;

    font-size: 15px;

}

/*==================================
ARROWS
==================================*/

.process-arrow {

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 28px;

    color: #FF6B00;

    animation: arrowMove 2s infinite;

}

@keyframes arrowMove {

    0% {

        transform: translateX(0);

    }

    50% {

        transform: translateX(8px);

    }

    100% {

        transform: translateX(0);

    }

}

/*==================================
HOVER
==================================*/

.process-card:hover .process-number {

    color: #FF6B00;

    opacity: .18;

    transition: .35s;

}

.process-card:hover {

    border-color: #FF6B00;

}

/*==================================================
        PROCESS RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px) {

    .process-wrapper {

        grid-template-columns: repeat(4, 1fr);

        gap: 25px;

    }

    .process-arrow {

        display: none;

    }

}

/* Tablet */

@media(max-width:992px) {

    .process-section {

        padding: 90px 0;

    }

    .process-wrapper {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

    .process-card {

        padding: 35px 25px;

    }

    .process-number {

        font-size: 34px;

    }

}

/* Mobile */

@media(max-width:768px) {

    .process-section {

        padding: 70px 0;

    }

    .process-wrapper {

        grid-template-columns: 1fr;

        gap: 22px;

    }

    .process-card {

        padding: 30px 24px;

    }

    .process-icon {

        width: 72px;

        height: 72px;

        font-size: 28px;

        margin-bottom: 20px;

    }

    .process-card h3 {

        font-size: 20px;

    }

    .process-card p {

        font-size: 15px;

        line-height: 1.7;

    }

    .process-number {

        font-size: 28px;

        top: 16px;

        right: 18px;

        opacity: .15;

    }

    .process-arrow {

        display: none;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .process-card {

        padding: 26px 20px;

    }

}

/*==================================================
        PROCESS CARD ANIMATION
==================================================*/

.process-card {

    opacity: 0;

    transform: translateY(60px);

    transition:

        opacity .7s ease,

        transform .7s ease,

        box-shadow .35s ease;

}

.process-card.show {

    opacity: 1;

    transform: translateY(0);

}

.process-wrapper {

    position: relative;

}

.process-wrapper::before {

    content: "";

    position: absolute;

    left: 10%;

    right: 10%;

    top: 43%;

    height: 3px;

    background: linear-gradient(90deg, #FF6B00, #2563EB);

    z-index: 0;

    opacity: .15;

}

.process-card {

    position: relative;

    z-index: 2;

}

@media(max-width:1200px) {

    .process-wrapper::before {

        display: none;

    }

}

/*==================================================
                GALLERY SECTION
==================================================*/

.gallery-section {

    position: relative;

    padding: 120px 0;

    background: #F8FAFC;

    overflow: hidden;

}

/* Background Decorations */

.gallery-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    filter: blur(120px);

    top: -150px;

    right: -150px;

}

.gallery-section::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    filter: blur(100px);

    bottom: -120px;

    left: -120px;

}

/*==================================================
                GRID
==================================================*/

.gallery-grid {

    margin-top: 70px;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

/* Premium Masonry

.gallery-card:nth-child(1){

    grid-row:span 2;

}

.gallery-card:nth-child(4){

    grid-column:span 2;

}

.gallery-card:nth-child(8){

    grid-column:span 2;

}

.gallery-card:nth-child(11){

    grid-row:span 2;

} */

/*==================================================
                CARD
==================================================*/

.gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;

    background: #fff;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);

    transition: .45s;
    opacity: 1;
    transform: none
}

.gallery-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 60px rgba(15, 23, 42, .15);

}

/*==================================================
                IMAGE
==================================================*/

.gallery-card img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    display: block;

}


.gallery-card:hover img {

    transform: scale(1.12);

}

/*==================================================
                OVERLAY
==================================================*/

.gallery-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(transparent,

            rgba(15, 23, 42, .15),

            rgba(15, 23, 42, .85));

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 30px;

    color: #fff;

    opacity: 0;

    transition: .4s;

}

.gallery-card:hover .gallery-overlay {

    opacity: 1;

}

/*==================================================
                TEXT
==================================================*/

.gallery-overlay h3 {

    font-size: 24px;

    margin-bottom: 8px;

    transform: translateY(20px);

    transition: .35s;

}

.gallery-overlay p {

    font-size: 15px;

    opacity: .9;

    transform: translateY(20px);

    transition: .45s;

}

.gallery-card:hover .gallery-overlay h3,

.gallery-card:hover .gallery-overlay p {

    transform: translateY(0);

}

/*==================================================
            SEARCH ICON
==================================================*/

.gallery-overlay::before {

    content: "\f00e";

    font-family: "Font Awesome 6 Free";

    font-weight: 900;

    position: absolute;

    top: 22px;

    right: 22px;

    width: 52px;

    height: 52px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .18);

    backdrop-filter: blur(10px);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 18px;

    transform: scale(0);

    transition: .35s;

}

.gallery-card:hover .gallery-overlay::before {

    transform: scale(1);

}

/*==================================================
            IMAGE BORDER
==================================================*/

.gallery-card::after {

    content: "";

    position: absolute;

    inset: 0;

    border: 2px solid transparent;

    border-radius: 24px;

    transition: .35s;

}

.gallery-card:hover::after {

    border-color: #FF6B00;

}

/*==================================================
            FLOATING SHADOW
==================================================*/

.gallery-card:hover {

    filter: drop-shadow(0 20px 35px rgba(255, 107, 0, .15));

}

/*==================================================
            GALLERY RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px) {

    .gallery-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 20px;

    }

}

/* Tablet */

@media(max-width:992px) {

    .gallery-section {

        padding: 90px 0;

    }

    .gallery-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .gallery-card:nth-child(4),

    .gallery-card:nth-child(8) {

        grid-column: span 2;

    }

    .gallery-card:nth-child(1),

    .gallery-card:nth-child(11) {

        grid-row: span 1;

    }

}

/* Mobile */

@media(max-width:768px) {

    .gallery-section {

        padding: 70px 0;

    }

    .gallery-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .gallery-card,

    .gallery-card:nth-child(1),

    .gallery-card:nth-child(4),

    .gallery-card:nth-child(8),

    .gallery-card:nth-child(11) {

        grid-column: span 1;

        grid-row: span 1;

        height: 260px;

    }

    .gallery-overlay {

        padding: 22px;

    }

    .gallery-overlay h3 {

        font-size: 20px;

    }

    .gallery-overlay p {

        font-size: 14px;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .gallery-card {

        height: 220px;

    }

}

/*==================================================
            GALLERY ANIMATION
==================================================*/

.gallery-card {

    position: relative;

    overflow: hidden;

    border-radius: 24px;

    cursor: pointer;

    background: #fff;

    min-height: 320px;

    height: 320px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    transition: .35s;

}

.gallery-card.show {

    opacity: 1;

    transform: translateY(0);

}

/*=========================
LIGHTBOX
=========================*/

.gallery-lightbox {

    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, .92);

    display: flex;

    justify-content: center;

    align-items: center;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 99999;

}

.gallery-lightbox.active {

    opacity: 1;

    visibility: visible;

}

.gallery-lightbox img {

    max-width: 90%;

    max-height: 90%;

    border-radius: 20px;

}

.close-lightbox {

    position: absolute;

    top: 35px;

    right: 35px;

    font-size: 34px;

    color: #fff;

    cursor: pointer;

}

/*==================================================
                CUSTOMER REVIEWS
==================================================*/

.reviews-section {

    position: relative;

    padding: 120px 0;

    background: #F8FAFC;

    overflow: hidden;

}

/*==================================
BACKGROUND DECORATION
==================================*/

.reviews-section::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    filter: blur(120px);

    top: -150px;

    right: -150px;

}

.reviews-section::after {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    filter: blur(100px);

    bottom: -120px;

    left: -120px;

}

/*==================================
GOOGLE RATING
==================================*/

.google-rating {

    margin: 60px auto;

    background: #ffffff;

    border-radius: 24px;

    padding: 30px 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);

    border: 1px solid #EEF2F7;

}

.google-left {

    display: flex;

    align-items: center;

    gap: 20px;

}

.google-left img {

    width: 65px;

}

.google-left h3 {

    font-size: 28px;

    color: #0F172A;

    margin-bottom: 6px;

}

.google-left p {

    color: #64748B;

}

.rating-stars {

    display: flex;

    gap: 8px;

}

.rating-stars i {

    color: #FFC107;

    font-size: 28px;

}

/*==================================
REVIEWS GRID
==================================*/

.reviews-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 28px;

}

/*==================================
REVIEW CARD
==================================*/

.review-card {

    position: relative;

    background: #ffffff;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid #EEF2F7;

    box-shadow: 0 18px 40px rgba(15, 23, 42, .08);

    transition: .4s;

    overflow: hidden;

}

.review-card:hover {

    border-color: #FF6B00;

}

.review-card:hover .review-stars {

    transform: scale(1.05);

    transition: .35s;

}

.review-card:hover .user-avatar {

    transform: rotate(8deg) scale(1.08);

}

/* Orange Top Line */

.review-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background: linear-gradient(90deg, #FF6B00, #2563EB);

    transform: scaleX(0);

    transform-origin: left;

    transition: .4s;

}

.review-card:hover::before {

    transform: scaleX(1);

}

/*==================================
QUOTE ICON
==================================*/

.review-card::after {

    content: "❝";

    position: absolute;

    top: 18px;

    right: 25px;

    font-size: 80px;

    color: rgba(255, 107, 0, .08);

    font-weight: bold;

}

/*==================================
STARS
==================================*/

.review-stars {

    color: #FFC107;

    font-size: 20px;

    letter-spacing: 2px;

    margin-bottom: 20px;

}

/*==================================
TEXT
==================================*/

.review-card p {

    color: #64748B;

    line-height: 1.9;

    margin-bottom: 30px;

    font-size: 15px;

}

/*==================================
USER
==================================*/

.review-user {

    display: flex;

    align-items: center;

    gap: 16px;

}

/* Avatar */

.user-avatar {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: linear-gradient(135deg, #FF6B00, #2563EB);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-weight: 700;

    font-size: 20px;

}

.review-user h4 {

    color: #0F172A;

    margin-bottom: 4px;

    font-size: 18px;

}

.review-user span {

    color: #64748B;

    font-size: 14px;

}

/*==================================
HOVER EFFECT
==================================*/

.review-card:hover h4 {

    color: #FF6B00;

}

.review-card:hover .user-avatar {

    transform: scale(1.08);

    transition: .35s;

}

/*==================================================
            REVIEWS RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px) {

    .reviews-grid {

        grid-template-columns: repeat(3, 1fr);

        gap: 22px;

    }

}

/* Tablet */

@media(max-width:992px) {

    .reviews-section {

        padding: 90px 0;

    }

    .google-rating {

        flex-direction: column;

        text-align: center;

        gap: 25px;

        padding: 30px;

    }

    .google-left {

        flex-direction: column;

    }

    .reviews-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* Mobile */

@media(max-width:768px) {

    .reviews-section {

        padding: 70px 0;

    }

    .reviews-grid {

        grid-template-columns: 1fr;

        gap: 20px;

    }

    .review-card {

        padding: 28px 22px;

    }

    .google-left h3 {

        font-size: 24px;

    }

    .rating-stars i {

        font-size: 22px;

    }

    .review-user {

        gap: 14px;

    }

    .user-avatar {

        width: 52px;

        height: 52px;

        font-size: 18px;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .review-card {

        padding: 24px 18px;

    }

    .google-rating {

        padding: 24px 18px;

    }

}

/*==================================================
            REVIEW ANIMATION
==================================================*/

.review-card {

    opacity: 0;

    transform: translateY(60px);

    transition:

        opacity .7s ease,

        transform .7s ease,

        box-shadow .35s ease;

}

.review-card.show {

    opacity: 1;

    transform: translateY(0);

}

.rating-stars i {

    animation: starGlow 2s infinite;

}

.rating-stars i:nth-child(2) {

    animation-delay: .2s;

}

.rating-stars i:nth-child(3) {

    animation-delay: .4s;

}

.rating-stars i:nth-child(4) {

    animation-delay: .6s;

}

.rating-stars i:nth-child(5) {

    animation-delay: .8s;

}

@keyframes starGlow {

    0%,
    100% {

        transform: scale(1);

    }

    50% {

        transform: scale(1.2);

    }

}

.verified {

    display: flex;

    align-items: center;

    gap: 6px;

    margin-top: 6px;

    font-size: 13px;

    font-weight: 600;

    color: #22C55E;

}

.verified i {

    font-size: 14px;

}

/*==================================================
                FAQ SECTION
==================================================*/

.faq-section {

    position: relative;

    padding: 120px 0;

    background: #F8FAFC;

    overflow: hidden;

}

/*==================================
BACKGROUND DECORATION
==================================*/

.faq-section::before {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    filter: blur(110px);

    top: -120px;

    right: -120px;

}

.faq-section::after {

    content: "";

    position: absolute;

    width: 300px;

    height: 300px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    filter: blur(100px);

    bottom: -100px;

    left: -100px;

}

/*==================================
LAYOUT
==================================*/

.faq-wrapper {

    display: grid;

    grid-template-columns: 420px 1fr;

    gap: 60px;

    align-items: center;

    margin-top: 70px;

}

/*==================================
IMAGE
==================================*/

.faq-image {

    position: sticky;

    top: 120px;

}

.faq-image img {

    width: 100%;

    border-radius: 30px;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .10);

}

/*==================================
FAQ LIST
==================================*/

.faq-list {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

/*==================================
FAQ CARD
==================================*/

.faq-item {

    background: #fff;

    border-radius: 18px;

    overflow: hidden;

    border: 1px solid #EEF2F7;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .06);

    transition: .35s;

}

.faq-item:hover {

    border-color: #FF6B00;

}

.faq-question:hover h3 {

    color: #FF6B00;

    transition: .3s;

}

.faq-question:hover i {

    transform: scale(1.08);

}

/*==================================
QUESTION
==================================*/

.faq-question {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 22px 26px;

    cursor: pointer;

}

.faq-question h3 {

    font-size: 18px;

    color: #0F172A;

    font-weight: 600;

    line-height: 1.5;

}

/*==================================
PLUS ICON
==================================*/

.faq-question i {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background: #FFF3EB;

    color: #FF6B00;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s;

}

/*==================================
ANSWER
==================================*/

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height .45s ease;

}

.faq-answer p {

    padding: 0 26px 24px;

    color: #64748B;

    line-height: 1.8;

    font-size: 15px;

}

/*==================================
ACTIVE
==================================*/

.faq-item.active {

    border-color: #FF6B00;

}

.faq-item.active .faq-question {

    background: #FFF8F3;

}

.faq-item.active .faq-question i {

    background: #FF6B00;

    color: #fff;

    transform: rotate(45deg);

}

.faq-item.active .faq-answer {

    max-height: 500px;

}

/*==================================
TOP BORDER
==================================*/

.faq-item::before {

    content: "";

    display: block;

    height: 4px;

    width: 0;

    background: linear-gradient(90deg, #FF6B00, #2563EB);

    transition: .35s;

}

.faq-item:hover::before,

.faq-item.active::before {

    width: 100%;

}

/*==================================================
                FAQ RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px) {

    .faq-wrapper {

        grid-template-columns: 350px 1fr;

        gap: 40px;

    }

}

/* Tablet */

@media(max-width:992px) {

    .faq-section {

        padding: 90px 0;

    }

    .faq-wrapper {

        grid-template-columns: 1fr;

        gap: 45px;

    }

    .faq-image {

        position: relative;

        top: 0;

        max-width: 450px;

        margin: auto;

    }

}

/* Mobile */

@media(max-width:768px) {

    .faq-section {

        padding: 70px 0;

    }

    .faq-question {

        padding: 18px 20px;

    }

    .faq-question h3 {

        font-size: 17px;

        padding-right: 10px;

    }

    .faq-answer p {

        padding: 0 20px 20px;

        font-size: 15px;

    }

    .faq-question i {

        width: 38px;

        height: 38px;

        font-size: 15px;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .faq-image {

        max-width: 100%;

    }

    .faq-question h3 {

        font-size: 16px;

    }

}

/*==================================================
            FAQ ANIMATION
==================================================*/

.faq-item {

    opacity: 1;

    transform: translateY(0);

    transition: .6s ease;

}

.faq-item.show {

    opacity: 1;

    transform: translateY(0);

}

/*==================================================
                CONTACT SECTION
==================================================*/

.contact-section {

    position: relative;

    padding: 120px 0;

    background: #F8FAFC;

    overflow: hidden;

}

/*==================================
BACKGROUND DECORATION
==================================*/

.contact-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    filter: blur(120px);

    top: -150px;

    right: -150px;

}

.contact-section::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    filter: blur(110px);

    bottom: -150px;

    left: -150px;

}

/*==================================
LAYOUT
==================================*/

.contact-wrapper {

    display: grid;

    grid-template-columns: 380px 1fr;

    gap: 50px;

    margin-top: 70px;

    align-items: start;

}

/*==================================
LEFT SIDE
==================================*/

.contact-info {

    display: flex;

    flex-direction: column;

    gap: 20px;

}

.contact-card {

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 24px;

    background: #fff;

    border-radius: 20px;

    border: 1px solid #EEF2F7;

    box-shadow: 0 15px 35px rgba(15, 23, 42, .07);

    transition: .35s;

}

.contact-card:hover {

    transform: translateY(-6px);

    border-color: #FF6B00;

    box-shadow: 0 25px 50px rgba(15, 23, 42, .12);

}

/*==================================
ICON
==================================*/

.contact-icon {

    width: 70px;

    height: 70px;

    border-radius: 18px;

    background: linear-gradient(135deg, #FF6B00, #FF8C3A);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    font-size: 28px;

    flex-shrink: 0;

    transition: .35s;

}

.contact-card:hover .contact-icon {

    transform: rotate(-10deg) scale(1.08);

}

/*==================================
TEXT
==================================*/

.contact-card h3 {

    color: #0F172A;

    margin-bottom: 6px;

    font-size: 20px;

}

.contact-card p {

    color: #111827;

    font-weight: 600;

    margin-bottom: 4px;

}

.contact-card span {

    color: #64748B;

    font-size: 14px;

}

/*==================================
FORM BOX
==================================*/

.contact-form-box {

    background: #fff;

    padding: 40px;

    border-radius: 24px;

    border: 1px solid #EEF2F7;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);

}

.contact-form-box form {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

/*==================================
INPUTS
==================================*/

.input-group input,

.input-group select,

.input-group textarea {

    width: 100%;

    padding: 18px 20px;

    border: 1px solid #DCE3EC;

    border-radius: 16px;

    font-size: 16px;

    outline: none;

    transition: .35s;

    background: #FAFBFC;

    font-family: inherit;

}

.input-group textarea {

    resize: none;

}

.input-group input:focus,

.input-group select:focus,

.input-group textarea:focus {

    border-color: #FF6B00;

    background: #fff;

    box-shadow: 0 0 0 4px rgba(255, 107, 0, .08);

}

.input-group {

    position: relative;

}

.input-group input:hover,

.input-group textarea:hover,

.input-group select:hover {

    border-color: #FF6B00;

}

.input-group input::placeholder,

.input-group textarea::placeholder {

    transition: .3s;

}

.input-group input:focus::placeholder,

.input-group textarea:focus::placeholder {

    opacity: .5;

    padding-left: 5px;

}

/*==================================
BUTTON
==================================*/

.contact-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 12px;

    padding: 18px;

    border: none;

    border-radius: 16px;

    background: linear-gradient(135deg, #FF6B00, #FF8C3A);

    color: #fff;

    font-size: 17px;

    font-weight: 600;

    cursor: pointer;

    transition: .35s;
    position: relative;
    overflow: hidden;
}

.contact-btn::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: rgba(255, 255, 255, .2);

    transition: .5s;

}

.contact-btn:hover::before {

    left: 100%;

}

.contact-btn:hover {

    transform: translateY(-4px);

    box-shadow: 0 18px 40px rgba(255, 107, 0, .35);

}

/*==================================
GOOGLE MAP
==================================*/

.contact-map {

    margin-top: 70px;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .08);

    border: 1px solid #EEF2F7;

}

.contact-map iframe {

    width: 100%;

    height: 420px;

    border: 0;

}

/*==================================================
            CONTACT RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px) {

    .contact-wrapper {

        grid-template-columns: 330px 1fr;

        gap: 35px;

    }

}

/* Tablet */

@media(max-width:992px) {

    .contact-section {

        padding: 90px 0;

    }

    .contact-wrapper {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .contact-info {

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 20px;

    }

    .contact-form-box {

        padding: 35px;

    }

    .contact-map iframe {

        height: 350px;

    }

}

/* Mobile */

@media(max-width:768px) {

    .contact-section {

        padding: 70px 0;

    }

    .contact-info {

        grid-template-columns: 1fr;

    }

    .contact-card {

        padding: 20px;

    }

    .contact-icon {

        width: 60px;

        height: 60px;

        font-size: 24px;

    }

    .contact-card h3 {

        font-size: 18px;

    }

    .contact-form-box {

        padding: 25px;

    }

    .input-group input,

    .input-group textarea,

    .input-group select {

        padding: 16px;

        font-size: 15px;

    }

    .contact-btn {

        padding: 16px;

        font-size: 16px;

    }

    .contact-map iframe {

        height: 300px;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .contact-form-box {

        padding: 20px;

    }

    .contact-card {

        gap: 15px;

    }

    .contact-icon {

        width: 55px;

        height: 55px;

        font-size: 22px;

    }

}

/*==================================================
            CONTACT ANIMATION
==================================================*/

.contact-card,

.contact-form-box,

.contact-map {

    opacity: 1;

    transform: translateY(0);

    transition:

        opacity .7s ease,

        transform .7s ease;

}

.contact-card.show,

.contact-form-box.show,

.contact-map.show {

    opacity: 1;

    transform: translateY(0);

}

.contact-card:hover .contact-icon {

    background: linear-gradient(135deg, #2563EB, #4F8CFF);

    transform: rotate(-8deg) scale(1.1);

}

.contact-card:hover h3 {

    color: #FF6B00;

}

/*==================================================
                PREMIUM FOOTER
==================================================*/

.footer{

    position:relative;
    background:#0F172A;
    color:#CBD5E1;
    width:100%;
    margin:0;
    padding-top:120px;
    overflow:hidden;

}
.footer .container{
    width:100%;
    max-width:2000px;   /* Increase this value */
    margin:0 auto;
    padding:0 40px;
}
/*==================================
BACKGROUND EFFECTS
==================================*/

.footer::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    background: rgba(255, 107, 0, .08);

    filter: blur(130px);

    top: -220px;

    right: -200px;

    border-radius: 50%;

}

.footer::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    background: rgba(37, 99, 235, .08);

    filter: blur(120px);

    bottom: -180px;

    left: -180px;

    border-radius: 50%;

}

/*==================================
FOOTER WAVE
==================================*/

.footer-wave{

    position:absolute;
    top:0;
    left:0;
    width:100vw;
    line-height:0;
    overflow:hidden;

}

.footer-wave svg{

    display:block;
    width:100%;
    height:95px;

}
html,
body{

    margin:0;
    padding:0;
    overflow-x:hidden;

}
.container{
    width:85%;
    margin:auto;
    box-sizing:border-box;
}

.footer .container{
    width:min(100%, 1400px);
    max-width:1400px;
    margin:0 auto;
    padding:0 40px;
    box-sizing:border-box;
}

/*==================================
GRID
==================================*/

.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2.3fr 1fr 1fr 1.5fr;
    gap: 60px;

    padding-top: 40px;
    /* add */
    padding-bottom: 70px;
}

/*==================================
LOGO
==================================*/

.footer-logo {

    width: 180px;

    margin-bottom: 22px;

}

.footer-column p {

    line-height: 1.9;

    color: #94A3B8;

    margin-bottom: 28px;

}

/*==================================
HEADINGS
==================================*/

.footer-column h3 {

    color: #fff;

    margin-bottom: 25px;

    font-size: 22px;

    position: relative;

}

.footer-column h3::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -10px;

    width: 55px;

    height: 3px;

    background: #FF6B00;

    border-radius: 30px;

}

/*==================================
LIST
==================================*/

.footer-column ul {

    display: flex;

    flex-direction: column;

    gap: 16px;

}

.footer-column ul li {

    list-style: none;

}

.footer-column ul li a {

    color: #94A3B8;

    text-decoration: none;

    transition: .35s;

}

.footer-column ul li a:hover {

    color: #FF6B00;

    padding-left: 8px;

}

/*==================================
CONTACT
==================================*/

.footer-contact li {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}

.footer-contact i {

    color: #FF6B00;

    font-size: 18px;

    margin-top: 3px;

}

.footer-contact span {

    color: #CBD5E1;

    line-height: 1.7;

}

/*==================================
SOCIAL
==================================*/

.footer-social {

    display: flex;

    gap: 15px;

}

.footer-social a {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    transition: .35s;

}

.footer-social a:hover {

    background: #FF6B00;

    transform: translateY(-6px);

}
.footer-content{

    width:100%;
    background:#0F172A;

}
/*==================================
BOTTOM
==================================*/

.footer-bottom {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding: 28px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #94A3B8;

    position: relative;

    z-index: 2;

}

.footer-bottom strong {

    color: #fff;

}

.footer-bottom i {

    color: #FF4D6D;

    margin: 0 5px;

}

/*==================================
BACK TO TOP
==================================*/

.back-to-top {

    position: fixed;

    right: 30px;

    bottom: 30px;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: linear-gradient(135deg,#FF6B00,#FF914D);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    text-decoration: none;

    font-size: 22px;

    box-shadow: 0 15px 35px rgba(255,107,0,.35);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999;

}

.back-to-top.active {

    opacity: 1;

    visibility: visible;

}
.back-to-top:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 45px rgba(255, 107, 0, .45);

}

/*==================================================
            FOOTER RESPONSIVE
==================================================*/

/* Laptop */

@media(max-width:1200px) {

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 50px;

    }

}

/* Tablet */

@media(max-width:992px) {

    .footer {

        padding-top: 90px;

    }

    .footer-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 40px;

    }

    .footer-bottom {

        flex-direction: column;

        gap: 15px;

        text-align: center;

    }

}

/* Mobile */

@media(max-width:768px) {

    .footer {

        padding-top: 70px;

    }

    .footer-grid {

        grid-template-columns: 1fr;

        gap: 35px;

    }

    .footer-logo {

        width: 160px;

    }

    .footer-column h3 {

        font-size: 20px;

    }

    .footer-column p {

        font-size: 15px;

    }

    .footer-social {

        justify-content: flex-start;

    }

    .footer-bottom {

        font-size: 14px;

        padding: 25px 0;

    }

    .back-to-top {

        width: 52px;

        height: 52px;

        right: 20px;

        bottom: 20px;

        font-size: 20px;

    }

}

/* Small Mobile */

@media(max-width:480px) {

    .footer-column {

        text-align: left;

    }

    .footer-contact li {

        align-items: flex-start;

    }

}

/*==================================================
        FOOTER ANIMATION
==================================================*/

.footer-column {

    opacity: 1;

    transform: translateY(0);

    transition:

        opacity .7s ease,

        transform .7s ease;

}

.footer-column.show {

    opacity: 1;

    transform: translateY(0);

}

.footer-social a {

    position: relative;

    overflow: hidden;

}

.footer-social a::before {

    content: "";

    position: absolute;

    width: 120%;

    height: 120%;

    background: rgba(255, 255, 255, .15);

    border-radius: 50%;

    transform: scale(0);

    transition: .4s;

}

.footer-social a:hover::before {

    transform: scale(1);

}

.footer-social a:hover {

    transform: translateY(-8px) rotate(8deg);

}

.back-to-top {

    transition:

        opacity .35s,

        transform .35s,

        box-shadow .35s;

}
.back-to-top.active {

    opacity: 1;
    visibility: visible;

}

.back-to-top:hover {

    transform: translateY(-8px) scale(1.08);

}

.footer-divider {

    height: 1px;

    background: linear-gradient(90deg,

            transparent,

            rgba(255, 255, 255, .25),

            transparent);

    margin-bottom: 25px;

}

/*==================================================
        MASTER SERVICE HERO
==================================================*/

.sp-hero {
    position: relative;
    height: 760px;
    margin-top: 40px;
    overflow: hidden;
    border-radius: 28px;
}

/*========================
BACKGROUND IMAGE
========================*/

.sp-bg {
    position: absolute;
    inset: 0;
}

.sp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 8s ease;
}

.sp-hero:hover .sp-bg img {
    transform: scale(1.05);
}

/*========================
OVERLAY
========================*/

.sp-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(7, 18, 33, .96) 0%,
            rgba(7, 18, 33, .90) 40%,
            rgba(7, 18, 33, .45) 70%,
            rgba(7, 18, 33, .05) 100%);
}

/*========================
CONTENT
========================*/

.sp-content {
    position: relative;
    z-index: 5;
    width: 55%;
    padding-top: 90px;
    color: #fff;
}

.sp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    font-size: 15px;
}

.sp-breadcrumb a {
    color: #d7dde5;
    text-decoration: none;
}

.sp-breadcrumb span {
    color: #FF6B00;
}

.sp-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 0, .15);
    color: #FF6B00;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 28px;
}

.sp-content h1 {
    font-size: 68px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 24px;
}

.sp-content h1 span {
    display: block;
    color: #FF6B00;
}

.sp-content p {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.9;
    color: #d8dee8;
    margin-bottom: 35px;
}

/*========================
FEATURES
========================*/

.sp-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}

.sp-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.sp-features i {
    color: #22C55E;
}

/*========================
BUTTONS
========================*/

.sp-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.sp-btn-primary,
.sp-btn-secondary {

    text-decoration: none;
    padding: 18px 34px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    transition: .35s;
}

.sp-btn-primary {
    background: #FF6B00;
    color: #fff;
}

.sp-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(255, 107, 0, .35);
}

.sp-btn-secondary {
    background: #25D366;
    color: #fff;
}

.sp-btn-secondary:hover {
    transform: translateY(-4px);
}

/*========================
RATING
========================*/

.sp-rating {
    display: flex;
    align-items: center;
    gap: 18px;
}

.sp-stars {
    color: #FFC107;
    font-size: 24px;
}

.sp-rating span {
    color: #fff;
    font-size: 17px;
}

/*========================
FLOATING CARD
========================*/

.sp-card {

    position: absolute;
    right: 70px;
    bottom: 90px;
    z-index: 10;

    background: #fff;

    width: 260px;

    border-radius: 22px;

    padding: 24px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);

}

.sp-card-icon {

    width: 70px;

    height: 70px;

    border-radius: 50%;

    background: #FFF3EB;

    display: flex;

    justify-content: center;

    align-items: center;

    color: #FF6B00;

    font-size: 28px;

}

.sp-card h3 {

    font-size: 42px;

    color: #0F172A;

}

.sp-card p {

    color: #64748B;

    margin-top: 6px;

}

/*========================
BOTTOM TRUST BAR
========================*/

.sp-trust {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.sp-trust-wrapper {

    background: #fff;

    border-radius: 24px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);

    overflow: hidden;

}

.sp-trust-box {

    padding: 35px;

    text-align: center;

}

.sp-trust-box:nth-child(2),
.sp-trust-box:nth-child(3),
.sp-trust-box:nth-child(4) {

    border-left: 1px solid #eee;

}

.sp-trust-box h2 {

    color: #FF6B00;

    font-size: 38px;

    margin-bottom: 8px;

}

.sp-trust-box p {

    color: #64748B;

}

/*==================================================
        MASTER SERVICE HERO - RESPONSIVE
==================================================*/

/*------------------------------
ANIMATIONS
------------------------------*/

.sp-content {
    animation: spFadeLeft .9s ease;
}

.sp-card {
    animation: spFloat 4s ease-in-out infinite;
}

@keyframes spFadeLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

@keyframes spFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/*------------------------------
BUTTON HOVER
------------------------------*/

.sp-btn-primary:hover {

    transform: translateY(-5px);

    box-shadow: 0 18px 45px rgba(255, 107, 0, .35);

}

.sp-btn-secondary:hover {

    background: #1ebe5d;

    box-shadow: 0 18px 45px rgba(37, 211, 102, .30);

}

/*------------------------------
FEATURES
------------------------------*/

.sp-features div {

    transition: .35s;

}

.sp-features div:hover {

    transform: translateX(8px);

}

/*==================================================
TABLET
==================================================*/

@media(max-width:1200px) {

    .sp-content {

        width: 60%;

    }

    .sp-content h1 {

        font-size: 58px;

    }

    .sp-card {

        right: 40px;

    }

}

/*==================================================
992px
==================================================*/

@media(max-width:992px) {

    .sp-hero {

        height: auto;

        padding-bottom: 40px;

        border-radius: 20px;

    }

    .sp-overlay {

        background: linear-gradient(180deg,
                rgba(7, 18, 33, .92),
                rgba(7, 18, 33, .60));

    }

    .sp-content {

        width: 100%;

        padding: 70px 20px 0;

    }

    .sp-content h1 {

        font-size: 46px;

    }

    .sp-content p {

        font-size: 17px;

    }

    .sp-features {

        grid-template-columns: repeat(2, 1fr);

    }

    .sp-bg {

        position: relative;

        height: 420px;

    }

    .sp-bg img {

        height: 420px;

    }

    .sp-card {

        position: absolute;

        right: 25px;

        bottom: 25px;

        width: 240px;

        padding: 20px;

    }

    .sp-trust {

        margin-top: 40px;

    }

    .sp-trust-wrapper {

        grid-template-columns: repeat(2, 1fr);

    }

}

/*==================================================
768px
==================================================*/

@media(max-width:768px) {

    .sp-hero {

        margin-top: 20px;

    }

    .sp-content {

        padding: 45px 18px;

    }

    .sp-content h1 {

        font-size: 36px;

        line-height: 1.15;

    }

    .sp-content p {

        font-size: 16px;

        line-height: 1.8;

    }

    .sp-breadcrumb {

        font-size: 13px;

        flex-wrap: wrap;

    }

    .sp-tag {

        font-size: 13px;

        padding: 10px 18px;

    }

    .sp-features {

        grid-template-columns: 1fr;

        gap: 14px;

    }

    .sp-buttons {

        flex-direction: column;

    }

    .sp-btn-primary,

    .sp-btn-secondary {

        width: 100%;

        justify-content: center;

    }

    .sp-rating {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .sp-bg {

        height: 340px;

    }

    .sp-bg img {

        height: 340px;

    }

    .sp-card {

        position: absolute;

        left: 50%;

        transform: translateX(-50%);

        bottom: 18px;

        width: 220px;

        padding: 18px;

    }

    .sp-card h3 {

        font-size: 34px;

    }

    .sp-card-icon {

        width: 60px;

        height: 60px;

        font-size: 24px;

    }

    .sp-trust-wrapper {

        grid-template-columns: 1fr;

    }

    .sp-trust-box {

        padding: 25px;

    }

    .sp-trust-box:nth-child(2),
    .sp-trust-box:nth-child(3),
    .sp-trust-box:nth-child(4) {

        border-left: none;

        border-top: 1px solid #eee;

    }

}

/*==================================================
480px
==================================================*/

@media(max-width:480px) {

    .sp-content h1 {

        font-size: 30px;

    }

    .sp-content p {

        font-size: 15px;

    }

    .sp-bg {

        height: 280px;

    }

    .sp-bg img {

        height: 280px;

    }

    .sp-card {

        width: 190px;

        padding: 15px;

    }

    .sp-card h3 {

        font-size: 28px;

    }

    .sp-card p {

        font-size: 13px;

    }

    .sp-trust-box h2 {

        font-size: 30px;

    }

}

/*==================================================
        ABOUT SECTION
==================================================*/

.sp-about {

    padding: 120px 0;

    background: #fff;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.sp-about::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    top: -180px;

    left: -180px;

    filter: blur(80px);

}

.sp-about::after {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    bottom: -180px;

    right: -180px;

    filter: blur(80px);

}

/*=================================
LAYOUT
=================================*/

.sp-about-wrapper {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;

    position: relative;

    z-index: 2;

}

/*=================================
IMAGE
=================================*/

.sp-about-image {

    position: relative;

}

.sp-about-image img {

    width: 100%;

    height: 650px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

    transition: .5s;

}

.sp-about-image:hover img {

    transform: scale(1.03);

}

/*=================================
FLOATING EXPERIENCE CARD
=================================*/

.sp-about-card {

    position: absolute;

    right: -30px;

    bottom: 40px;

    background: #fff;

    width: 220px;

    padding: 24px;

    border-radius: 22px;

    text-align: center;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

    border-top: 5px solid #FF6B00;

}

.sp-about-card h2 {

    font-size: 48px;

    color: #FF6B00;

    margin-bottom: 10px;

}

.sp-about-card p {

    color: #64748B;

    font-size: 15px;

    line-height: 1.6;

}

/*=================================
CONTENT
=================================*/

.sp-section-tag {

    display: inline-block;

    padding: 10px 22px;

    background: #FFF3EB;

    color: #FF6B00;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 20px;

}

.sp-about-content h2 {

    font-size: 48px;

    color: #0F172A;

    line-height: 1.2;

    margin-bottom: 24px;

}

.sp-about-content h2 span {

    color: #FF6B00;

}

.sp-about-content p {

    color: #64748B;

    line-height: 1.9;

    font-size: 17px;

    margin-bottom: 30px;

}

/*=================================
FEATURES
=================================*/

.sp-about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin-bottom: 35px;

}

.sp-about-features div {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    color: #0F172A;

    transition: .3s;

}

.sp-about-features div:hover {

    transform: translateX(8px);

}

.sp-about-features i {

    color: #22C55E;

    font-size: 18px;

}

/*=================================
STATS
=================================*/

.sp-about-stats {

    display: flex;

    gap: 40px;

    margin-bottom: 35px;

}

.sp-about-stats h3 {

    color: #FF6B00;

    font-size: 34px;

    margin-bottom: 5px;

}

.sp-about-stats span {

    color: #64748B;

}

/*=================================
BUTTON
=================================*/

.sp-about-btn {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 16px 34px;

    background: #FF6B00;

    color: #fff;

    text-decoration: none;

    border-radius: 50px;

    font-weight: 600;

    transition: .35s;

}

.sp-about-btn:hover {

    background: #0F172A;

    transform: translateY(-4px);

    box-shadow: 0 20px 40px rgba(15, 23, 42, .18);

}

/*==================================================
        ABOUT SECTION RESPONSIVE
==================================================*/

/*-------------------------
IMAGE ANIMATION
-------------------------*/

.sp-about-image {

    overflow: hidden;

}

.sp-about-image img {

    transition: transform .8s ease;

}

.sp-about:hover .sp-about-image img {

    transform: scale(1.05);

}

/*-------------------------
FLOATING CARD
-------------------------*/

.sp-about-card {

    animation: aboutFloat 4s ease-in-out infinite;

}

@keyframes aboutFloat {

    0% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

    100% {

        transform: translateY(0);

    }

}

/*-------------------------
FEATURE HOVER
-------------------------*/

.sp-about-features div {

    transition: .35s;

}

.sp-about-features div:hover {

    color: #FF6B00;

}

.sp-about-features div:hover i {

    transform: scale(1.2);

}

/*-------------------------
STATS HOVER
-------------------------*/

.sp-about-stats div {

    transition: .35s;

}

.sp-about-stats div:hover {

    transform: translateY(-6px);

}

.sp-about-stats div:hover h3 {

    color: #2563EB;

}

/*-------------------------
BUTTON
-------------------------*/

.sp-about-btn {

    box-shadow: 0 15px 35px rgba(255, 107, 0, .18);

}

.sp-about-btn:hover {

    box-shadow: 0 25px 45px rgba(255, 107, 0, .30);

}

/*==================================================
TABLET
==================================================*/

@media(max-width:992px) {

    .sp-about {

        padding: 90px 0;

    }

    .sp-about-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .sp-about-image img {

        height: 520px;

    }

    .sp-about-card {

        right: 20px;

        bottom: 20px;

    }

    .sp-about-content {

        text-align: center;

    }

    .sp-about-content p {

        max-width: 700px;

        margin: auto auto 30px;

    }

    .sp-about-features {

        grid-template-columns: repeat(2, 1fr);

        text-align: left;

    }

    .sp-about-stats {

        justify-content: center;

    }

}

/*==================================================
MOBILE
==================================================*/

@media(max-width:768px) {

    .sp-about {

        padding: 70px 0;

    }

    .sp-about-wrapper {

        gap: 35px;

    }

    .sp-about-image img {

        height: 340px;

        border-radius: 20px;

    }

    .sp-about-card {

        width: 170px;

        padding: 16px;

        right: 15px;

        bottom: 15px;

    }

    .sp-about-card h2 {

        font-size: 34px;

    }

    .sp-about-card p {

        font-size: 13px;

    }

    .sp-section-tag {

        font-size: 12px;

        padding: 8px 16px;

    }

    .sp-about-content h2 {

        font-size: 32px;

    }

    .sp-about-content p {

        font-size: 15px;

        line-height: 1.8;

    }

    .sp-about-features {

        grid-template-columns: 1fr;

        gap: 15px;

    }

    .sp-about-stats {

        flex-direction: column;

        gap: 20px;

        align-items: center;

    }

    .sp-about-btn {

        width: 100%;

        justify-content: center;

    }

}

/*==================================================
SMALL MOBILE
==================================================*/

@media(max-width:480px) {

    .sp-about-image img {

        height: 280px;

    }

    .sp-about-card {

        width: 150px;

        padding: 14px;

    }

    .sp-about-card h2 {

        font-size: 28px;

    }

    .sp-about-content h2 {

        font-size: 28px;

    }

    .sp-about-content p {

        font-size: 14px;

    }

    .sp-about-stats h3 {

        font-size: 28px;

    }

}

/*==================================================
            WHY OUR SAFETY NETS
==================================================*/

.sp-benefits {

    padding: 110px 0;

    background: #F8FAFC;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.sp-benefits::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    top: -180px;

    right: -150px;

    filter: blur(70px);

}

.sp-benefits::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    bottom: -180px;

    left: -150px;

    filter: blur(70px);

}

/*=============================
TITLE
=============================*/

.sp-title {

    text-align: center;

    max-width: 760px;

    margin: 0 auto 70px;

    position: relative;

    z-index: 2;

}

.sp-title span {

    display: inline-block;

    padding: 10px 22px;

    background: #FFF3EB;

    color: #FF6B00;

    border-radius: 50px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .5px;

    margin-bottom: 18px;

}

.sp-title h2 {

    font-size: 48px;

    color: #0F172A;

    line-height: 1.2;

    margin-bottom: 20px;

}

.sp-title h2 span {

    background: none;

    color: #FF6B00;

    padding: 0;

}

.sp-title p {

    color: #64748B;

    font-size: 18px;

    line-height: 1.8;

}

/*=============================
GRID
=============================*/

.sp-benefit-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    position: relative;

    z-index: 2;

}

/*=============================
CARD
=============================*/

.sp-benefit-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 24px;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .4s ease;

    border: 1px solid transparent;

}

.sp-benefit-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 5px;

    background: #FF6B00;

    transition: .4s;

}

.sp-benefit-card:hover::before {

    width: 100%;

}

.sp-benefit-card:hover {

    transform: translateY(-12px);

    border-color: rgba(255, 107, 0, .15);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);

}

/*=============================
ICON
=============================*/

.sp-benefit-icon {

    width: 85px;

    height: 85px;

    margin: 0 auto 25px;

    border-radius: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    color: #fff;

    background: linear-gradient(135deg, #2563EB, #0EA5E9);

    transition: .35s;

    box-shadow: 0 18px 35px rgba(37, 99, 235, .25);

}

.sp-benefit-card:hover .sp-benefit-icon {

    background: linear-gradient(135deg, #FF6B00, #ff9a4a);

    transform: rotate(-8deg) scale(1.08);

}

/*=============================
TEXT
=============================*/

.sp-benefit-card h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 15px;

    transition: .3s;

}

.sp-benefit-card:hover h3 {

    color: #FF6B00;

}

.sp-benefit-card p {

    color: #64748B;

    line-height: 1.8;

    font-size: 16px;

}

/*=============================
RESPONSIVE
=============================*/

@media(max-width:992px) {

    .sp-benefit-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .sp-title h2 {

        font-size: 40px;

    }

}

@media(max-width:768px) {

    .sp-benefits {

        padding: 80px 0;

    }

    .sp-benefit-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .sp-title {

        margin-bottom: 50px;

    }

    .sp-title h2 {

        font-size: 30px;

    }

    .sp-title p {

        font-size: 16px;

    }

    .sp-benefit-card {

        padding: 30px 25px;

    }

    .sp-benefit-icon {

        width: 75px;

        height: 75px;

        font-size: 30px;

    }

}

@media(max-width:480px) {

    .sp-benefit-card {

        padding: 25px 20px;

    }

    .sp-benefit-icon {

        width: 65px;

        height: 65px;

        font-size: 26px;

    }

    .sp-benefit-card h3 {

        font-size: 22px;

    }

}

/*==================================================
        WHERE OUR SAFETY NETS CAN BE USED
==================================================*/

.sp-applications {

    padding: 110px 0;

    background: #ffffff;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.sp-applications::before {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    top: -180px;

    left: -150px;

    filter: blur(70px);

}

.sp-applications::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    bottom: -180px;

    right: -150px;

    filter: blur(70px);

}

/*==============================
GRID
==============================*/

.sp-app-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    position: relative;

    z-index: 2;

}

/*==============================
CARD
==============================*/

.sp-app-card {

    background: #fff;

    padding: 40px 30px;

    border-radius: 22px;

    text-align: center;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    transition: .35s ease;

    border: 1px solid #edf2f7;

    position: relative;

    overflow: hidden;

}

.sp-app-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 5px;

    background: #FF6B00;

    transform: scaleX(0);

    transition: .35s;

    transform-origin: left;

}

.sp-app-card:hover::before {

    transform: scaleX(1);

}

.sp-app-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

/*==============================
APPLICATION IMAGE
==============================*/

.sp-app-image {

    width: 100%;

    height: 220px;

    overflow: hidden;

    border-radius: 18px 18px 0 0;

    margin-bottom: 20px;

}

.sp-app-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s ease;

}

.sp-app-card:hover .sp-app-image img {

    transform: scale(1.08);

}

/*==============================
TEXT
==============================*/

.sp-app-card h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 15px;

    transition: .3s;

}

.sp-app-card:hover h3 {

    color: #FF6B00;

}

.sp-app-card p {

    color: #64748B;

    line-height: 1.8;

    font-size: 16px;

    margin-bottom: 10px;

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px) {

    .sp-app-grid {

        grid-template-columns: repeat(2, 1fr);

    }

    .sp-app-image {

        height: 200px;

    }

}

@media(max-width:768px) {

    .sp-applications {

        padding: 80px 0;

    }

    .sp-app-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .sp-app-card {

        padding: 0 0 25px;

    }

    .sp-app-image {

        height: 220px;

        margin-bottom: 20px;

    }

    .sp-app-card h3 {

        padding: 0 25px;

    }

    .sp-app-card p {

        padding: 0 25px;

    }

}

@media(max-width:480px) {

    .sp-app-image {

        height: 180px;

    }

    .sp-app-card h3 {

        font-size: 21px;

        padding: 0 20px;

    }

    .sp-app-card p {

        font-size: 15px;

        padding: 0 20px;

    }

}

/*==============================
APPLICATION BUTTON
==============================*/

.sp-app-btn {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: calc(100% - 40px);

    margin: 25px auto 0;

    padding: 15px;

    background: #FF6B00;

    color: #fff;

    text-decoration: none;

    font-weight: 600;

    border-radius: 12px;

    transition: .35s ease;

    box-shadow: 0 12px 25px rgba(255, 107, 0, .20);

}

.sp-app-btn:hover {

    background: #0F172A;

    transform: translateY(-4px);

    box-shadow: 0 18px 35px rgba(15, 23, 42, .20);

}

.sp-app-btn i {

    font-size: 15px;

}

/*==================================================
            INSTALLATION PROCESS
==================================================*/

.sp-process {

    padding: 110px 0;

    background: #F8FAFC;

    position: relative;

    overflow: hidden;

}

/* Background */

.sp-process::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    top: -180px;

    right: -180px;

    filter: blur(80px);

}

.sp-process::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    bottom: -150px;

    left: -150px;

    filter: blur(80px);

}

/*=========================
GRID
=========================*/

.sp-process-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 35px;

    margin-top: 70px;

    position: relative;

    z-index: 2;

}

/*=========================
CARD
=========================*/

.sp-process-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px 30px;

    text-align: center;

    position: relative;

    transition: .4s;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);

    overflow: hidden;

}

.sp-process-card::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 0;

    height: 5px;

    background: #FF6B00;

    transition: .4s;

}

.sp-process-card:hover::before {

    width: 100%;

}

.sp-process-card:hover {

    transform: translateY(-12px);

    box-shadow: 0 30px 60px rgba(0, 0, 0, .12);

}

/*=========================
STEP NUMBER
=========================*/

.sp-process-number {

    position: absolute;

    top: 18px;

    right: 20px;

    font-size: 58px;

    font-weight: 800;

    color: rgba(255, 107, 0, .08);

}

/*=========================
ICON
=========================*/

.sp-process-icon {

    width: 90px;

    height: 90px;

    margin: 0 auto 25px;

    border-radius: 50%;

    background: linear-gradient(135deg, #2563EB, #0EA5E9);

    color: #fff;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 34px;

    box-shadow: 0 15px 35px rgba(37, 99, 235, .25);

    transition: .35s;

}

.sp-process-card:hover .sp-process-icon {

    background: linear-gradient(135deg, #FF6B00, #ff9348);

    transform: rotate(-10deg) scale(1.08);

}

/*=========================
TEXT
=========================*/

.sp-process-card h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 15px;

    transition: .3s;

}

.sp-process-card:hover h3 {

    color: #FF6B00;

}

.sp-process-card p {

    color: #64748B;

    line-height: 1.8;

    font-size: 16px;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px) {

    .sp-process-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .sp-process {

        padding: 80px 0;

    }

    .sp-process-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .sp-process-card {

        padding: 30px 25px;

    }

    .sp-process-icon {

        width: 75px;

        height: 75px;

        font-size: 30px;

    }

    .sp-process-number {

        font-size: 44px;

    }

}

@media(max-width:480px) {

    .sp-process-card {

        padding: 25px 20px;

    }

    .sp-process-icon {

        width: 65px;

        height: 65px;

        font-size: 26px;

    }

    .sp-process-card h3 {

        font-size: 22px;

    }

    .sp-process-card p {

        font-size: 15px;

    }

}

/*==================================================
        RECENT PROJECTS
==================================================*/

.sp-projects {

    padding: 110px 0;

    background: #ffffff;

    position: relative;

    overflow: hidden;

}

/* Decorative Background */

.sp-projects::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    background: rgba(37, 99, 235, .05);

    border-radius: 50%;

    top: -180px;

    left: -180px;

    filter: blur(80px);

}

.sp-projects::after {

    content: "";

    position: absolute;

    width: 350px;

    height: 350px;

    background: rgba(255, 107, 0, .05);

    border-radius: 50%;

    bottom: -180px;

    right: -180px;

    filter: blur(80px);

}

/*==============================
GRID
==============================*/

.sp-project-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 32px;

    position: relative;

    z-index: 2;

}

/*==============================
CARD
==============================*/

.sp-project-card {

    background: #fff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);

    transition: .4s ease;

    border: 1px solid transparent;

}

.sp-project-card:hover {

    transform: translateY(-12px);

    border-color: rgba(255, 107, 0, .18);

    box-shadow: 0 28px 60px rgba(0, 0, 0, .15);

}

/*==============================
IMAGE
==============================*/

.sp-project-image {

    height: 260px;

    overflow: hidden;

    position: relative;

}

.sp-project-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s ease;

}

.sp-project-card:hover .sp-project-image img {

    transform: scale(1.08);

}

/* Dark Overlay */

.sp-project-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background: linear-gradient(transparent,

            rgba(0, 0, 0, .12));

}

/*==============================
CONTENT
==============================*/

.sp-project-content {

    padding: 28px;

}

/*==============================
LOCATION
==============================*/

.sp-location {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    background: #FFF3EB;

    color: #FF6B00;

    padding: 8px 18px;

    border-radius: 40px;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;

}

.sp-location i {

    font-size: 14px;

}

/*==============================
TEXT
==============================*/

.sp-project-content h3 {

    font-size: 24px;

    color: #0F172A;

    margin-bottom: 15px;

    transition: .3s;

}

.sp-project-card:hover h3 {

    color: #FF6B00;

}

.sp-project-content p {

    color: #64748B;

    line-height: 1.8;

    font-size: 16px;

    margin-bottom: 22px;

}

/*==============================
RATING
==============================*/

.sp-project-rating {

    color: #FFC107;

    font-size: 20px;

    letter-spacing: 3px;

    margin-bottom: 22px;

}

/*==============================
BUTTON
==============================*/

.sp-project-btn {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    width: 100%;

    padding: 15px;

    background: #FF6B00;

    color: #fff;

    text-decoration: none;

    border-radius: 12px;

    font-weight: 600;

    transition: .35s;

    box-shadow: 0 12px 25px rgba(255, 107, 0, .20);

}

.sp-project-btn:hover {

    background: #0F172A;

    transform: translateY(-3px);

    box-shadow: 0 18px 35px rgba(15, 23, 42, .25);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px) {

    .sp-project-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .sp-projects {

        padding: 80px 0;

    }

    .sp-project-grid {

        grid-template-columns: 1fr;

        gap: 28px;

    }

    .sp-project-image {

        height: 240px;

    }

    .sp-project-content {

        padding: 24px;

    }

}

@media(max-width:480px) {

    .sp-project-image {

        height: 210px;

    }

    .sp-project-content h3 {

        font-size: 22px;

    }

    .sp-project-content p {

        font-size: 15px;

    }

}

/*==================================================
            SERVICE AREAS
==================================================*/

.service-areas {

    padding: 100px 0;

    background: #fff;

}

.areas-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    margin-top: 50px;

}

.area-card {

    display: flex;

    align-items: center;

    gap: 12px;

    background: #fff;

    padding: 18px 22px;

    border-radius: 15px;

    border: 1px solid #E5E7EB;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

    transition: .35s;

    font-weight: 600;

    color: #0F172A;

}

.area-card i {

    color: #FF6B00;

    font-size: 18px;

}

.area-card:hover {

    transform: translateY(-5px);

    border-color: #FF6B00;

    box-shadow: 0 18px 40px rgba(255, 107, 0, .15);

}

@media(max-width:992px) {

    .areas-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

@media(max-width:768px) {

    .areas-grid {

        grid-template-columns: 1fr;

    }

}
/*==================================================
        SERVICE PAGE BACK TO TOP
==================================================*/

.sp-back-to-top{

    position:fixed;
    right:30px;
    bottom:30px;

    width:60px;
    height:60px;

    background:red !important;

    color:white;

    display:flex !important;

    justify-content:center;
    align-items:center;

    border-radius:50%;

    z-index:999999;

    opacity:1 !important;
    visibility:visible !important;

}

.sp-back-to-top:hover{

    transform:translateY(-8px) scale(1.08);

    box-shadow:0 20px 45px rgba(255,107,0,.45);

}

/* Icon */

.sp-back-to-top i{

    pointer-events:none;

}

/* Mobile */

@media(max-width:768px){

.sp-back-to-top{

    width:55px;

    height:55px;

    right:18px;

    bottom:18px;

    font-size:20px;

}

}