        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #0f172a;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: auto;
            padding: 0 24px;
        }

        /* =======================
HEADER
======================= */

        header {
            width: 100%;
            background: #fff;
            border-bottom: 1px solid #edf2f7;
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .navbar {
            height: 88px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            width: 210px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 42px;
        }

        .nav-menu a {
            color: #0f172a;
            font-size: 15px;
            font-weight: 500;
            transition: .3s;
        }

        .nav-menu a:hover {
            color: #2563eb;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 22px;
        }

        .nav-menu li a.active {
            color: #2563eb;
            font-weight: 700;
            position: relative;
        }

        .nav-menu li a.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 2px;
            background: #2563eb;
            border-radius: 10px;
        }

        .mobile-menu ul li a.active {
            color: #2563eb;
        }

        .phone {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #0f172a;
            font-weight: 600;
        }

        .phone i {
            color: #2563eb;
        }

        .btn-primary {
            background: #2563eb;
            color: #fff;
            padding: 14px 24px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            transition: .3s;
        }

        .btn-primary:hover {
            background: #1d4ed8;
        }

        .mobile-toggle {
            display: none;
        }

        /* =========================================================
HOME HERO
========================================================= */

        .hero-section {
            position: relative;
            background: #f5f9ff;
            padding: 90px 0 80px;
            overflow: hidden;
        }

        /* =========================================================
TEXTURE DOTS
========================================================= */

        .hero-dots {
            position: absolute;
            width: 220px;
            height: 220px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 14px 14px;
            opacity: .8;
            z-index: 1;
        }

        .hero-dots-left {
            left: -70px;
            top: 120px;
        }

        .hero-dots-right {
            right: -60px;
            top: 170px;
        }

        /* =========================================================
LAYOUT
========================================================= */

        .hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 70px;
            position: relative;
            z-index: 2;
        }

        /* =========================================================
LEFT
========================================================= */

        .hero-content {
            width: 46%;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            padding: 12px 18px;
            border-radius: 100px;
            color: #2563eb;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 30px;
            box-shadow: 0 12px 35px rgba(37, 99, 235, .06);
        }

        .hero-badge i {
            font-size: 18px;
        }

        .hero-content h1 {
            color: #0f172a;
            font-size: 68px;
            line-height: .98;
            letter-spacing: -3px;
            font-weight: 800;
            margin-bottom: 26px;
        }

        .hero-content h1 span {
            color: #2563eb;
            display: block;
        }

        .hero-content p {
            color: #64748b;
            font-size: 19px;
            line-height: 2;
            max-width: 620px;
            margin-bottom: 34px;
        }

        /* =========================================================
BUTTONS
========================================================= */

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 18px;
            margin-bottom: 34px;
        }

        .btn-outline {
            height: 58px;
            padding: 0 34px;
            border-radius: 100px;
            border: 2px solid #c7d2fe;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #2563eb;
            font-size: 16px;
            font-weight: 700;
            transition: .3s;
            background: #fff;
        }

        .btn-outline:hover {
            background: #2563eb;
            border-color: #2563eb;
            color: #fff;
        }

        /* =========================================================
FEATURES
========================================================= */

        .hero-features {
            display: flex;
            align-items: center;
            gap: 28px;
            flex-wrap: wrap;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0f172a;
            font-size: 15px;
            font-weight: 600;
        }

        .hero-feature i {
            color: #2563eb;
            font-size: 20px;
        }

        /* =========================================================
RIGHT IMAGE
========================================================= */

        .hero-image-area {
            width: 54%;
            position: relative;
        }

        .hero-image-area img {
            width: 100%;
            display: block;
        }

        /* =========================================================
RESPONSIVE
========================================================= */

        @media(max-width:1100px) {

            .hero-wrapper {
                flex-direction: column;
                text-align: center;
            }

            .hero-content,
            .hero-image-area {
                width: 100%;
            }

            .hero-content h1 {
                font-size: 62px;
            }

            .hero-content p {
                margin: auto auto 34px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-features {
                justify-content: center;
            }

        }

        @media(max-width:768px) {

            .hero-section {
                padding: 70px 0 60px;
            }

            .hero-content h1 {
                font-size: 46px;
                letter-spacing: -2px;
            }

            .hero-content p {
                font-size: 16px;
                line-height: 1.9;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-buttons .btn-primary,
            .hero-buttons .btn-outline {
                width: 100%;
            }

            .hero-features {
                gap: 18px;
            }

            .hero-feature {
                font-size: 14px;
            }

        }

        /* =======================
SECTIONS
======================= */

        section {
            padding: 110px 0;
        }

        .section-top {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-top span {
            color: #2563eb;
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .section-top h2 {
            font-size: 46px;
            margin-top: 18px;
            font-weight: 800;
        }

        /* =======================
SERVICES
======================= */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }

        .service-card {
            border: 1px solid #edf2f7;
            border-radius: 26px;
            padding: 40px 32px;
            transition: .35s;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(37, 99, 235, .08);
        }

        .service-icon {
            width: 72px;
            height: 72px;
            border-radius: 20px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 28px;
        }

        .service-icon i {
            color: #2563eb;
            font-size: 32px;
        }

        .service-card h3 {
            font-size: 22px;
            margin-bottom: 16px;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.8;
        }

        /* =======================
WHY US
======================= */

        .why-us {
            background: #f8fbff;
        }

        .why-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .why-content h2 {
            font-size: 52px;
            line-height: 1.15;
            margin-bottom: 26px;
            font-weight: 800;
        }

        .why-content h2 span {
            color: #2563eb;
        }

        .why-content p {
            color: #64748b;
            line-height: 1.9;
            font-size: 17px;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .why-card {
            background: #fff;
            border-radius: 24px;
            padding: 32px;
        }

        .why-card i {
            color: #2563eb;
            font-size: 34px;
            margin-bottom: 20px;
        }

        .why-card h4 {
            margin-bottom: 14px;
            font-size: 20px;
        }

        .why-card p {
            color: #64748b;
            line-height: 1.7;
        }

        /* =======================
PROCESS
======================= */

        .process-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }

        .process-item {
            flex: 1;
        }

        .process-icon {
            width: 110px;
            height: 110px;
            border-radius: 100%;
            background: #fff;
            border: 1px solid #edf2f7;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 28px;
        }

        .process-icon i {
            color: #2563eb;
            font-size: 40px;
        }

        .process-number {
            width: 34px;
            height: 34px;
            background: #2563eb;
            border-radius: 100%;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            position: absolute;
            left: -6px;
            bottom: 0;
        }

        .process-item h3 {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .process-item p {
            color: #64748b;
            line-height: 1.9;
        }

        .process-line {
            flex: 0 0 80px;
            border-top: 2px dashed #dbeafe;
            margin-top: 55px;
        }

        /* =======================
BRANDS
======================= */

        .brands-section {
            background: #f8fbff;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 24px;
        }

        .brand-box {
            background: #fff;
            border: 1px solid #edf2f7;
            border-radius: 20px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px;
        }

        .brand-box img {
            max-width: 100%;
            max-height: 42px;
            object-fit: contain;
        }

        .brand-btn-wrap {
            text-align: center;
            margin-top: 40px;
        }

        .view-brand-btn {
            color: #2563eb;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
        }

        /* =======================
TESTIMONIALS
======================= */

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            border: 1px solid #edf2f7;
            border-radius: 28px;
            padding: 38px;
        }

        .quote-icon {
            color: #2563eb;
            font-size: 34px;
            margin-bottom: 20px;
        }

        .testimonial-card p {
            color: #475569;
            line-height: 2;
            margin-bottom: 32px;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .testimonial-user img {
            width: 58px;
            height: 58px;
            border-radius: 100%;
        }

        .testimonial-user h4 {
            margin-bottom: 8px;
        }

        .stars {
            display: flex;
            gap: 4px;
        }

        .stars i {
            color: #fbbf24;
        }

        /* =======================
CTA
======================= */

        .cta-box {
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            border-radius: 34px;
            padding: 70px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .cta-box h2 {
            color: #fff;
            font-size: 48px;
            line-height: 1.15;
            margin-bottom: 18px;
        }

        .cta-box p {
            color: rgba(255, 255, 255, .85);
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: 18px;
        }

        .btn-white {
            background: #fff;
            color: #2563eb;
            padding: 15px 28px;
            border-radius: 14px;
            font-weight: 700;
        }

        .btn-dark {
            background: #0f172a;
            color: #fff;
            padding: 15px 28px;
            border-radius: 14px;
            font-weight: 700;
        }

        /* =======================
FOOTER
======================= */

        footer {
            background: #0f172a;
            padding: 90px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 70px;
        }

        .footer-logo img {
            width: 210px;
            margin-bottom: 26px;
            filter: brightness(0) invert(1);
        }

        .footer-about {
            color: #cbd5e1;
            line-height: 1.9;
        }

        .footer-title {
            color: #fff;
            margin-bottom: 26px;
            font-size: 20px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-links a {
            color: #cbd5e1;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .footer-contact div {
            display: flex;
            gap: 12px;
            color: #cbd5e1;
            line-height: 1.8;
        }

        .footer-contact i {
            color: #3b82f6;
            font-size: 20px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 28px;
            display: flex;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .footer-bottom p {
            color: #94a3b8;
        }


        /* =======================
RESPONSIVE
======================= */

        @media(max-width:1100px) {

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .brands-grid {
                grid-template-columns: repeat(4, 1fr);
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

        }

        @media(max-width:900px) {

            .nav-menu,
            .nav-right {
                display: none;
            }

            .mobile-toggle {
                display: block;
                font-size: 32px;
            }

            .hero-wrapper,
            .why-wrapper,
            .cta-box {
                grid-template-columns: 1fr;
            }

            .hero-content {
                text-align: center;
            }

            .hero-buttons,
            .hero-features {
                justify-content: center;
            }

            .hero-content h1 {
                font-size: 48px;
            }

            .process-wrapper {
                flex-direction: column;
                gap: 50px;
            }

            .process-line {
                display: none;
            }

            .process-item {
                text-align: center;
            }

            .process-icon {
                margin: auto auto 24px;
            }

        }

        @media(max-width:640px) {

            .hero-content h1 {
                font-size: 38px;
            }

            .section-top h2 {
                font-size: 34px;
            }

            .services-grid,
            .why-grid,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .brand-box {
                height: 90px;
                padding: 20px;
                border-radius: 16px;
            }

            .brand-box img {
                max-height: 32px;
            }

            .cta-box {
                padding: 50px 30px;
                text-align: center;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .hero-buttons {
                flex-direction: column;
            }

        }

        /* =========================
FAVICON FIX
========================= */

        .logo img {
            width: 210px;
        }

        /* =========================
MOBILE MENU
========================= */

        .mobile-toggle {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: #0f172a;
        }

        .mobile-menu {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            padding: 30px 24px;
            border-top: 1px solid #edf2f7;
            display: none;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
        }

        .mobile-menu ul {
            display: flex;
            flex-direction: column;
            gap: 24px;
            margin-bottom: 30px;
        }

        .mobile-menu ul li a {
            color: #0f172a;
            font-size: 18px;
            font-weight: 600;
        }

        .mobile-contact {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .mobile-contact a {
            color: #0f172a;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .mobile-book-btn {
            background: #2563eb;
            color: #fff !important;
            justify-content: center;
            padding: 14px 20px;
            border-radius: 14px;
        }

        /* =========================
CTA SECTION
========================= */

        .cta-section {
            padding: 90px 0 110px;
        }

        .cta-box {
            position: relative;

            background: linear-gradient(90deg,
                    #2563eb 0%,
                    #3f7cff 100%);

            border-radius: 26px;

            padding: 44px 36px;

            display: flex;
            align-items: center;
            justify-content: space-between;

            overflow: hidden;
        }

        .cta-content span {
            color: rgba(255, 255, 255, .85);
            font-size: 16px;
            font-weight: 600;
            display: block;
            margin-bottom: 10px;
        }

        .cta-content h2 {
            color: #fff;
            font-size: 48px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 14px;
            letter-spacing: -1px;
        }

        .cta-content p {
            color: rgba(255, 255, 255, .85);
            font-size: 18px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            align-items: center;
            gap: 18px;
            z-index: 2;
        }

        .cta-btn-white {
            background: #fff;
            color: #0f172a;

            height: 62px;

            padding: 0 28px;

            border-radius: 100px;

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;

            font-weight: 700;
            font-size: 15px;

            white-space: nowrap;

            transition: .3s;
        }

        .cta-btn-white i {
            color: #25D366;
            font-size: 20px;
        }

        .cta-btn-outline {
            border: 1px solid rgba(255, 255, 255, .35);

            color: #fff;

            height: 62px;

            padding: 0 28px;

            border-radius: 100px;

            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;

            font-weight: 700;
            font-size: 15px;

            white-space: nowrap;

            transition: .3s;
        }

        .cta-btn-outline i {
            font-size: 22px;
        }

        .cta-btn-outline:hover,
        .cta-btn-white:hover {
            transform: translateY(-3px);
        }

        .cta-dots {
            position: absolute;
            right: 26px;
            bottom: 18px;

            width: 90px;
            height: 90px;

            background-image: radial-gradient(rgba(255, 255, 255, .4) 2px,
                    transparent 2px);

            background-size: 14px 14px;

            opacity: .8;
        }

        /* =========================
RESPONSIVE
========================= */

        @media(max-width:991px) {

            .mobile-toggle {
                display: block;
            }

            .nav-menu,
            .nav-right {
                display: none;
            }

            .cta-box {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }

            .cta-content h2 {
                font-size: 38px;
            }

        }

        @media(max-width:640px) {

            .cta-box {
                padding: 34px 24px;
                border-radius: 22px;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            .cta-content p {
                font-size: 15px;
            }

            .cta-buttons {
                width: 100%;
                flex-direction: column;
            }

            .cta-btn-white,
            .cta-btn-outline {
                width: 100%;
            }

        }

        .book-section {
            padding: 90px 0;
            background: #f8fbff;
        }

        .book-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .book-content span {
            color: #2563eb;
            font-size: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
            margin-bottom: 18px;
        }

        .book-content h1 {
            font-size: 68px;
            line-height: 1.05;
            font-weight: 800;
            margin-bottom: 26px;
            letter-spacing: -2px;
            color: #0f172a;
        }

        .book-content h1 span {
            color: #2563eb;
        }

        .book-content p {
            color: #64748b;
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 40px;
            max-width: 560px;
        }

        .book-features {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .book-feature {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .book-feature-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .book-feature-icon i {
            color: #2563eb;
            font-size: 26px;
        }

        .book-feature h4 {
            font-size: 18px;
            margin-bottom: 6px;
            color: #0f172a;
        }

        .book-feature p {
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
        }

        .book-form-card {
            background: #fff;
            border-radius: 34px;
            padding: 50px;
            box-shadow: 0 20px 60px rgba(37, 99, 235, .08);
            border: 1px solid #edf2f7;
        }

        .form-top {
            margin-bottom: 34px;
        }

        .form-top h2 {
            font-size: 38px;
            margin-bottom: 14px;
            font-weight: 800;
            color: #0f172a;
        }

        .form-top p {
            color: #64748b;
            line-height: 1.8;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-weight: 600;
            color: #0f172a;
        }

        .form-control {
            width: 100%;
            height: 62px;
            border: 1px solid #dbeafe;
            border-radius: 18px;
            padding: 0 22px;
            font-size: 16px;
            font-family: 'Inter', sans-serif;
            transition: .3s;
            outline: none;
            background: #fff;
        }

        .form-control:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
        }

        textarea.form-control {
            height: 160px;
            padding-top: 20px;
            resize: none;
        }

        .form-control select,
        select.form-control {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 8 10 12 14 8'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 18px center;
            background-size: 18px;
            cursor: pointer;
        }

        select.form-control option {
            color: #0f172a;
            background: #ffffff;
        }

        .submit-btn {
            width: 100%;
            height: 66px;
            border: none;
            border-radius: 18px;
            background: linear-gradient(90deg,
                    #2563eb,
                    #3b82f6);
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            transition: .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
        }

        .submit-btn.loading {
            opacity: .7;
            pointer-events: none;
        }

        .form-message {
            margin-top: 24px;
            padding: 18px;
            border-radius: 14px;
            display: none;
            font-weight: 600;
        }

        .form-message.success {
            background: #dcfce7;
            color: #166534;
        }

        .form-message.error {
            background: #fee2e2;
            color: #991b1b;
        }

        .help-box {
            margin-top: 28px;
            background: #eff6ff;
            border-radius: 22px;
            padding: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
        }

        .help-box h4 {
            margin-bottom: 8px;
            font-size: 18px;
            color: #0f172a;
        }

        .help-box p {
            color: #64748b;
            font-size: 15px;
        }

        .help-call {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            background: #2563eb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .help-call i {
            color: #fff;
            font-size: 24px;
        }

        @media(max-width:900px) {

            .book-wrapper {
                grid-template-columns: 1fr;
            }

            .book-content {
                text-align: center;
            }

            .book-content p {
                margin: auto auto 40px;
            }

            .book-feature {
                text-align: left;
            }

            .book-content h1 {
                font-size: 48px;
            }

        }

        @media(max-width:640px) {

            .book-section {
                padding: 60px 0;
            }

            .book-content h1 {
                font-size: 38px;
                letter-spacing: -1px;
            }

            .book-form-card {
                padding: 34px 24px;
                border-radius: 24px;
            }

            .form-top h2 {
                font-size: 30px;
            }

            .help-box {
                flex-direction: column;
                align-items: flex-start;
            }

        }


        /* =========================================================
SERVICES HERO
========================================================= */

        .services-hero {
            background: #f4f8ff;
            padding: 70px 0 50px;
            position: relative;
            overflow: hidden;
        }

        .services-hero::before {
            content: '';
            position: absolute;
            left: 0;
            top: 80px;
            width: 170px;
            height: 170px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 14px 14px;
            opacity: .8;
            z-index: 1;
        }

        .services-hero::after {
            content: '';
            position: absolute;
            right: 0;
            top: 80px;
            width: 170px;
            height: 170px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 14px 14px;
            opacity: .8;
            z-index: 1;
        }

        .services-hero .container{
    position:relative;
    z-index:2;
}

.services-hero-wrapper,
.services-hero-content,
.services-hero-image-wrap,
.services-hero-features{
    position:relative;
    z-index:2;
}

        .services-hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 38px;
        }

        .services-hero-content {
            width: 55%;
            padding-left: 10px;
        }

        .services-hero-image-wrap {
            width: 45%;
            text-align: right;
            position: relative;
        }

        .services-hero-image-wrap::before {
            content: '';
            position: absolute;
            width: 640px;
            height: 640px;
            border-radius: 100%;
            background: rgba(59, 130, 246, .08);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 1;
        }

        .services-hero-image {
            width: 100%;
            max-width: 620px;
            position: relative;
            z-index: 2;
        }

        .services-hero-label {
            color: #2563eb;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 18px;
        }

        .services-hero-content h1 {
            color: #0f172a;
            font-size: 72px;
            line-height: 1.02;
            font-weight: 800;
            letter-spacing: -3px;
            margin-bottom: 26px;
            max-width: 720px;
        }

        .services-hero-content p {
            color: #475569;
            font-size: 24px;
            line-height: 1.8;
            max-width: 720px;
        }

        /* =========================================================
HERO FEATURES
========================================================= */

        .services-hero-features {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
            width: 100%;
        }

        .services-feature-box {
            background: #fff;
            border-radius: 18px;
            padding: 22px;
            display: flex;
            align-items: center;
            gap: 16px;
            border: 1px solid #edf2f7;
        }

        .services-feature-icon {
            width: 58px;
            height: 58px;
            min-width: 58px;
            border-radius: 16px;
            background: #f1f5ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services-feature-icon i {
            color: #2563eb;
            font-size: 26px;
        }

        .services-feature-box h4 {
            color: #0f172a;
            font-size: 18px;
            font-weight: 700;
            line-height: 1.3;
            margin-bottom: 4px;
        }

        .services-feature-box span {
            color: #64748b;
            font-size: 15px;
        }

        /* =========================================================
SECTION
========================================================= */

        .services-page-section {
            padding: 90px 0;
            background: #fff;
        }

        .services-section-heading {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-section-heading span {
            color: #2563eb;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 16px;
        }

        .services-section-heading h2 {
            color: #0f172a;
            font-size: 56px;
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -2px;
            margin-bottom: 22px;
        }

        .services-section-heading p {
            color: #64748b;
            font-size: 19px;
            line-height: 1.8;
            max-width: 860px;
            margin: auto;
        }

        /* =========================================================
SERVICE BOX
========================================================= */

        .service-main-box {
            background: #fff;
            border: 1px solid #edf2f7;
            border-radius: 28px;
            padding: 34px;
            display: flex;
            align-items: stretch;
            justify-content: space-between;
            gap: 28px;
            margin-bottom: 28px;
        }

        .service-main-left {
            width: 34%;
            display: flex;
            align-items: flex-start;
            gap: 22px;
        }

        .service-main-right,
        .service-grid-items,
        .sales-grid {
            width: 66%;
        }

        .service-main-icon {
            width: 92px;
            height: 92px;
            min-width: 92px;
            border-radius: 26px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .service-main-icon i {
            color: #fff;
            font-size: 42px;
        }

        .blue {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .light-blue {
            background: linear-gradient(135deg, #60a5fa, #2563eb);
        }

        .green {
            background: linear-gradient(135deg, #34d399, #10b981);
        }

        .purple {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
        }

        .orange {
            background: linear-gradient(135deg, #fb923c, #f97316);
        }

        .pink {
            background: linear-gradient(135deg, #f472b6, #ec4899);
        }

        .service-main-left h3 {
            color: #0f172a;
            font-size: 32px;
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 14px;
            max-width: 260px;
        }

        .service-main-left p {
            color: #64748b;
            font-size: 18px;
            line-height: 1.9;
        }

        /* =========================================================
WHITE CARDS
========================================================= */

        .service-main-right {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .service-white-card {
            background: #f8fbff;
            border: 1px solid #edf2f7;
            border-radius: 20px;
            padding: 28px;
        }

        .service-white-card h4 {
            color: #2563eb;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 18px;
        }

        .service-white-card ul,
        .sales-grid ul {
            list-style: none;
            padding-left: 0;
        }

        .service-white-card ul li,
        .sales-grid ul li {
            position: relative;
            padding-left: 18px;
        }

        .service-white-card ul li {
            color: #0f172a;
            font-size: 17px;
            line-height: 2;
        }

        .service-white-card ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #2563eb;
            font-size: 18px;
            line-height: 1.6;
        }

        /* =========================================================
GRID ITEMS
========================================================= */

        .service-grid-items {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px 40px;
            background: #f8fbff;
            border: 1px solid #edf2f7;
            border-radius: 22px;
            padding: 30px 34px;
        }

        .service-grid-item {
            color: #0f172a;
            font-size: 17px;
            line-height: 1.8;
            position: relative;
            padding-left: 18px;
        }

        .service-grid-item::before {
            content: '•';
            position: absolute;
            left: 0;
            top: -1px;
            color: #2563eb;
            font-size: 18px;
            line-height: 1.6;
        }

        .icon-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding-left: 0;
        }

        .icon-item::before {
            display: none;
        }

        .icon-item i {
            color: #2563eb;
            font-size: 20px;
        }

        .green-item::before {
            color: #10b981;
        }

        .purple-item::before {
            color: #7c3aed;
        }

        .orange-item::before {
            color: #f97316;
        }



        /* =========================================================
SALES GRID
========================================================= */

        .sales-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .sales-grid ul {
            background: #fff5f8;
            border: 1px solid #fde2ea;
            border-radius: 20px;
            padding: 24px;
        }

        .sales-grid ul li {
            color: #0f172a;
            font-size: 16px;
            line-height: 2;
        }

        .sales-grid ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #ec4899;
            font-size: 18px;
            line-height: 1.6;
        }

        /* =========================================================
BOTTOM CTA
========================================================= */

        .services-bottom-cta {
            padding-bottom: 90px;
        }

        .services-cta-box {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            border-radius: 28px;
            padding: 34px 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .services-cta-box::after {
            content: '';
            position: absolute;
            right: 24px;
            bottom: 20px;
            width: 110px;
            height: 110px;
            background-image: radial-gradient(rgba(255, 255, 255, .45) 1.5px,
                    transparent 1.5px);
            background-size: 14px 14px;
        }

        .services-cta-left {
            display: flex;
            align-items: center;
            gap: 24px;
            position: relative;
            z-index: 2;
        }

        .services-cta-avatar {
            width: 88px;
            height: 88px;
            min-width: 88px;
            border-radius: 100%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .services-cta-avatar i {
            color: #2563eb;
            font-size: 42px;
        }

        .services-cta-left span {
            color: rgba(255, 255, 255, .85);
            font-size: 15px;
            display: block;
            margin-bottom: 8px;
        }

        .services-cta-left h2 {
            color: #fff;
            font-size: 52px;
            line-height: 1;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .services-cta-left p {
            color: rgba(255, 255, 255, .9);
            font-size: 18px;
        }

        .services-cta-buttons {
            display: flex;
            align-items: center;
            gap: 18px;
            position: relative;
            z-index: 2;
        }

        .services-cta-white-btn {
            background: #fff;
            color: #0f172a;
            height: 62px;
            padding: 0 34px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 700;
        }

        .services-cta-white-btn i {
            color: #22c55e;
            font-size: 22px;
        }

        .services-cta-outline-btn {
            border: 1px solid rgba(255, 255, 255, .4);
            color: #fff;
            height: 62px;
            padding: 0 34px;
            border-radius: 100px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 17px;
            font-weight: 700;
        }

        /* =========================================================
RESPONSIVE
========================================================= */

        @media(max-width:1200px) {

            .services-hero-content h1 {
                font-size: 56px;
            }

            .service-main-box {
                flex-direction: column;
            }

            .service-main-left,
            .service-main-right,
            .service-grid-items,
            .sales-grid {
                width: 100%;
            }

        }

        @media(max-width:991px) {

            .services-hero-wrapper {
                flex-direction: column;
            }

            .services-hero-content,
            .services-hero-image-wrap {
                width: 100%;
            }

            .services-hero-content h1 {
                font-size: 48px;
            }

            .services-hero-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .services-cta-box {
                flex-direction: column;
                align-items: flex-start;
            }

            .services-cta-left h2 {
                font-size: 40px;
            }

        }

        @media(max-width:640px) {

            .services-hero {
                padding: 50px 0;
            }

            .services-hero-content h1 {
                font-size: 38px;
                letter-spacing: -1px;
            }

            .services-hero-content p {
                font-size: 18px;
            }

            .services-hero-features {
                grid-template-columns: 1fr;
            }

            .services-section-heading h2 {
                font-size: 38px;
            }

            .service-main-box {
                padding: 24px;
            }

            .service-main-left {
                flex-direction: column;
            }

            .service-main-right {
                grid-template-columns: 1fr;
            }

            .service-grid-items {
                grid-template-columns: 1fr;
            }

            .sales-grid {
                grid-template-columns: 1fr;
            }

            .services-cta-left {
                flex-direction: column;
                align-items: flex-start;
            }

            .services-cta-buttons {
                width: 100%;
                flex-direction: column;
            }

            .services-cta-white-btn,
            .services-cta-outline-btn {
                width: 100%;
                justify-content: center;
            }

        }

        /* =========================================================
CONTACT HERO
========================================================= */

        .contact-hero {
            background: #f5f9ff;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .contact-hero::before {
            content: '';
            position: absolute;
            left: -40px;
            top: 40px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 18px 18px;
            opacity: .8;
        }

        .contact-hero::after {
            content: '';
            position: absolute;
            right: -20px;
            top: 140px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 18px 18px;
            opacity: .8;
        }

        .contact-hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 50px;
            position: relative;
            z-index: 2;
        }

        .contact-hero-content {
            width: 55%;
            max-width: 650px;
        }

        .contact-label {
            color: #2563eb;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 18px;
        }

        .contact-hero-content h1 {
            font-size: 68px;
            line-height: 1.02;
            letter-spacing: -2px;
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .contact-hero-content p {
            font-size: 19px;
            line-height: 1.85;
            color: #64748b;
            margin-bottom: 36px;
            max-width: 580px;
        }

        /* =========================================================
CONTACT FEATURES
========================================================= */

        .contact-features {
            display: flex;
            gap: 14px;
        }

        .contact-feature-box {
            background: #fff;
            border: 1px solid #edf2f7;
            border-radius: 16px;
            padding: 14px 18px;
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
            box-shadow: 0 8px 20px rgba(37, 99, 235, .04);
        }

        .contact-feature-icon {
            width: 46px;
            height: 46px;
            border-radius: 14px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-feature-icon i {
            color: #2563eb;
            font-size: 22px;
        }

        .contact-feature-box h4 {
            font-size: 13px;
            margin-bottom: 4px;
            color: #0f172a;
            font-weight: 700;
        }

        .contact-feature-box p {
            margin: 0;
            font-size: 12px;
            line-height: 1.4;
            color: #64748b;
        }

        /* =========================================================
CONTACT HERO IMAGE
========================================================= */

        .contact-hero-image {
            width: 45%;
            display: flex;
            justify-content: flex-end;
        }

        .contact-hero-image img {
            width: 100%;
            max-width: 620px;
            object-fit: contain;
        }

        /* =========================================================
CONTACT SECTION
========================================================= */

        .contact-section {
            padding: 90px 0;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 420px 1fr;
            gap: 40px;
        }

        /* =========================================================
CONTACT INFO
========================================================= */

        .contact-info {
            background: #0f172a;
            border-radius: 28px;
            padding: 42px;
            color: #fff;
        }

        .contact-info h2 {
            font-size: 38px;
            line-height: 1.1;
            margin-bottom: 18px;
            font-weight: 800;
        }

        .contact-info p {
            color: rgba(255, 255, 255, .7);
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .contact-info-list {
            display: flex;
            flex-direction: column;
            gap: 22px;
        }

        .contact-info-item {
            display: flex;
            gap: 18px;
        }

        .contact-info-icon {
            width: 58px;
            height: 58px;
            min-width: 58px;
            border-radius: 16px;
            background: rgba(255, 255, 255, .08);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-info-icon i {
            color: #3b82f6;
            font-size: 24px;
        }

        .contact-info-item h4 {
            margin-bottom: 6px;
            font-size: 18px;
        }

        .contact-info-item p,
        .contact-info-item a {
            margin: 0;
            color: rgba(255, 255, 255, .7);
            line-height: 1.8;
        }

        /* =========================================================
CONTACT FORM
========================================================= */

        .contact-form-wrap {
            background: #fff;
            border: 1px solid #edf2f7;
            border-radius: 28px;
            padding: 50px;
        }

        .contact-form-wrap h2 {
            font-size: 42px;
            line-height: 1.1;
            margin-bottom: 16px;
            color: #0f172a;
            font-weight: 800;
        }

        .contact-form-wrap p {
            color: #64748b;
            line-height: 1.8;
            margin-bottom: 36px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 22px;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group.full {
            grid-column: 1/-1;
        }

        .form-group label {
            display: block;
            margin-bottom: 12px;
            font-size: 15px;
            font-weight: 600;
            color: #0f172a;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            border: 1px solid #dbe4f0;
            border-radius: 16px;
            padding: 18px 20px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            outline: none;
            transition: .3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37, 99, 235, .08);
        }

        .form-group textarea {
            height: 180px;
            resize: none;
        }

        .submit-btn {
            background: #2563eb;
            color: #fff;
            border: none;
            height: 62px;
            padding: 0 32px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: .3s;
        }

        .submit-btn:hover {
            background: #1d4ed8;
        }

        .submit-btn.loading {
            opacity: .7;
            pointer-events: none;
        }

        /* =========================================================
FORM MESSAGE
========================================================= */

        .form-message {
            margin-top: 20px;
            font-size: 15px;
            font-weight: 600;
            display: none;
        }

        .form-message.success {
            color: #16a34a;
        }

        .form-message.error {
            color: #dc2626;
        }

        /* =========================================================
RESPONSIVE
========================================================= */

        @media(max-width:1100px) {

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

        }

        @media(max-width:991px) {

            .contact-hero-wrapper {
                flex-direction: column;
                text-align: center;
            }

            .contact-hero-content {
                width: 100%;
                max-width: 100%;
            }

            .contact-hero-content h1 {
                font-size: 52px;
            }

            .contact-hero-content p {
                margin-left: auto;
                margin-right: auto;
            }

            .contact-features {
                flex-wrap: wrap;
                justify-content: center;
            }

            .contact-hero-image {
                width: 100%;
                justify-content: center;
            }

            .contact-hero-image img {
                max-width: 520px;
            }

        }

        @media(max-width:640px) {

            .contact-hero {
                padding: 50px 0;
            }

            .contact-hero-content h1 {
                font-size: 40px;
                line-height: 1.05;
            }

            .contact-hero-content p {
                font-size: 16px;
            }

            .contact-features {
                flex-direction: column;
            }

            .contact-feature-box {
                width: 100%;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .contact-form-wrap {
                padding: 32px 24px;
            }

            .contact-info {
                padding: 32px 24px;
            }

            .contact-form-wrap h2 {
                font-size: 34px;
            }

        }

        /* =========================================================
ABOUT HERO
========================================================= */

        /* =========================================================
ABOUT HERO
========================================================= */

        .about-hero {
            background: #f5f9ff;
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            left: -40px;
            top: 40px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 18px 18px;
            opacity: .8;
        }

        .about-hero::after {
            content: '';
            position: absolute;
            right: -20px;
            bottom: 60px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 18px 18px;
            opacity: .8;
        }

        .about-hero-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 70px;
            position: relative;
            z-index: 2;
        }

        .about-hero-content {
            width: 46%;
        }

        .about-label {
            color: #2563eb;
            font-size: 14px;
            font-weight: 700;
            display: block;
            margin-bottom: 18px;
            letter-spacing: .5px;
        }

        .about-hero-content h1 {
            font-size: 68px;
            line-height: 1.02;
            letter-spacing: -2px;
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 26px;
        }

        .about-hero-content p {
            font-size: 18px;
            line-height: 1.9;
            color: #64748b;
            margin-bottom: 36px;
        }

        .about-hero-btn {
            background: #2563eb;
            color: #fff;
            height: 58px;
            padding: 0 28px;
            border-radius: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            font-weight: 700;
            transition: .3s;
        }

        .about-hero-btn:hover {
            background: #1d4ed8;
        }

        .about-hero-image-wrap {
            width: 54%;
            position: relative;
        }

        .about-hero-image {
            width: 100%;
            border-radius: 28px;
            display: block;
        }

        .about-floating-box {
            position: absolute;
            left: -20px;
            bottom: -20px;
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            display: flex;
            align-items: center;
            gap: 18px;
            box-shadow: 0 20px 40px rgba(15, 23, 42, .08);
        }

        .about-floating-icon {
            width: 62px;
            height: 62px;
            border-radius: 18px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-floating-icon i {
            color: #2563eb;
            font-size: 30px;
        }

        .about-floating-box h3 {
            font-size: 34px;
            color: #0f172a;
            margin-bottom: 2px;
        }

        .about-floating-box p {
            color: #64748b;
            margin: 0;
        }

        /* =========================================================
OUR STORY SECTION
========================================================= */

        .our-story-section {
            padding: 90px 0 70px;
        }

        .our-story-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 48px;
        }

        .our-story-image {
            width: 48%;
        }

        .our-story-image img {
            width: 100%;
            border-radius: 20px;
            display: block;
        }

        .our-story-content {
            width: 52%;
            padding-top: 8px;
        }

        .story-label {
            color: #2563eb;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .5px;
            margin-bottom: 14px;
            display: block;
        }

        .our-story-content h2 {
            font-size: 52px;
            line-height: 1.05;
            letter-spacing: -1.5px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 20px;
            max-width: 520px;
        }

        .our-story-content>p {
            color: #64748b;
            font-size: 15px;
            line-height: 1.9;
            margin-bottom: 28px;
            max-width: 560px;
        }

        .story-features {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .story-feature {
            background: #f8fbff;
            border-radius: 16px;
            padding: 16px 18px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .story-feature-icon {
            width: 52px;
            height: 52px;
            min-width: 52px;
            border-radius: 14px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .story-feature-icon i {
            color: #2563eb;
            font-size: 24px;
        }

        .story-feature h4 {
            font-size: 16px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 6px;
        }

        .story-feature p {
            margin: 0;
            color: #64748b;
            font-size: 13px;
            line-height: 1.7;
        }

        .about-extra-content {
            margin-top: 26px;
        }

        .about-extra-content p {
            color: #64748b;
            font-size: 15px;
            line-height: 1.9;
            margin: 0;
        }

        /* =========================================================
STATS SECTION
========================================================= */

        .about-stats-section {
            padding: 0 0 70px;
        }

        .about-stats-grid {
            background: #f8fbff;
            border-radius: 18px;
            padding: 38px 20px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
        }

        .about-stat-box {
            text-align: center;
            position: relative;
        }

        .about-stat-box::after {
            content: '';
            position: absolute;
            right: 0;
            top: 10px;
            width: 1px;
            height: 80px;
            background: #e2e8f0;
        }

        .about-stat-box:last-child::after {
            display: none;
        }

        .about-stat-box i {
            color: #2563eb;
            font-size: 34px;
            margin-bottom: 14px;
        }

        .about-stat-box h3 {
            font-size: 42px;
            line-height: 1;
            color: #0f172a;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .about-stat-box p {
            color: #64748b;
            font-size: 14px;
            font-weight: 500;
        }

        /* =========================================================
WHY CHOOSE US
========================================================= */

        .about-why-section {
            padding: 0 0 80px;
        }

        .section-heading {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 42px;
        }

        .section-heading span {
            color: #2563eb;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 12px;
        }

        .section-heading h2 {
            font-size: 48px;
            line-height: 1.1;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .section-heading p {
            color: #64748b;
            font-size: 14px;
            line-height: 1.8;
            max-width: 620px;
            margin: auto;
        }

        .about-why-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 18px;
        }

        .about-why-card {
            border: 1px solid #edf2f7;
            border-radius: 18px;
            padding: 30px 24px;
            transition: .3s;
            background: #fff;
        }

        .about-why-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(37, 99, 235, .06);
        }

        .about-why-icon {
            width: 62px;
            height: 62px;
            border-radius: 16px;
            background: #eff6ff;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .about-why-icon i {
            color: #2563eb;
            font-size: 30px;
        }

        .about-why-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .about-why-card p {
            color: #64748b;
            font-size: 13px;
            line-height: 1.8;
        }

        .about-company-tagline {
            text-align: center;
            margin-top: 50px;
        }

        .about-company-tagline h3 {
            font-size: 34px;
            font-weight: 800;
            color: #0f172a;
            margin-bottom: 10px;
        }

        .about-company-tagline p {
            color: #2563eb;
            font-size: 18px;
            font-weight: 600;
        }

        /* =========================================================
BOTTOM CTA
========================================================= */

        .about-bottom-cta {
            padding-bottom: 90px;
        }

        .about-cta-box {
            background: linear-gradient(90deg, #0f3fe8, #2563eb);
            border-radius: 16px;
            padding: 34px 38px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            position: relative;
            overflow: hidden;
        }

        .about-cta-box::after {
            content: '';
            position: absolute;
            right: 24px;
            bottom: 18px;
            width: 90px;
            height: 90px;
            background-image: radial-gradient(rgba(255, 255, 255, .35) 2px,
                    transparent 2px);
            background-size: 14px 14px;
        }

        .about-cta-content {
            position: relative;
            z-index: 2;
        }

        .about-cta-content span {
            color: #bfdbfe;
            font-size: 11px;
            font-weight: 700;
            display: block;
            margin-bottom: 10px;
        }

        .about-cta-content h2 {
            color: #fff;
            font-size: 38px;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .about-cta-content p {
            color: rgba(255, 255, 255, .85);
            font-size: 14px;
            line-height: 1.7;
        }

        .about-cta-buttons {
            display: flex;
            align-items: center;
            gap: 14px;
            position: relative;
            z-index: 2;
        }

        .about-btn-white {
            background: #fff;
            color: #2563eb;
            height: 52px;
            padding: 0 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        .about-btn-outline {
            border: 1px solid rgba(255, 255, 255, .35);
            color: #fff;
            height: 52px;
            padding: 0 24px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            white-space: nowrap;
        }

        /* =========================================================
RESPONSIVE
========================================================= */

        @media(max-width:991px) {

            .about-hero-wrapper,
            .our-story-wrapper {
                flex-direction: column;
            }

            .about-hero-content,
            .about-hero-image-wrap,
            .our-story-image,
            .our-story-content {
                width: 100%;
            }

            .about-hero-content h1 {
                font-size: 54px;
            }

            .about-stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .about-stat-box::after {
                display: none;
            }

            .about-why-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-cta-box {
                flex-direction: column;
                align-items: flex-start;
            }

        }

        @media(max-width:640px) {

            .about-hero {
                padding: 40px 0;
            }

            .about-hero-content h1,
            .our-story-content h2,
            .section-heading h2 {
                font-size: 34px;
            }

            .about-hero-content p {
                font-size: 15px;
            }

            .about-why-grid,
            .about-stats-grid {
                grid-template-columns: 1fr;
            }

            .about-floating-box {
                position: relative;
                left: 0;
                bottom: 0;
                margin-top: 20px;
            }

            .about-cta-content h2 {
                font-size: 30px;
            }

            .about-cta-buttons {
                width: 100%;
                flex-direction: column;
            }

            .about-btn-white,
            .about-btn-outline {
                width: 100%;
                justify-content: center;
            }

        }

        /* =========================================================
INNER HERO
========================================================= */

        .inner-hero-section {
            background: #f4f8ff;
            padding: 90px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .inner-hero-section::before {
            content: '';
            position: absolute;
            left: -40px;
            top: 80px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 14px 14px;
            opacity: .8;
        }

        .inner-hero-section::after {
            content: '';
            position: absolute;
            right: -40px;
            top: 100px;
            width: 180px;
            height: 180px;
            background-image: radial-gradient(#c7d7ff 1.5px, transparent 1.5px);
            background-size: 14px 14px;
            opacity: .8;
        }

        .inner-hero-content {
            max-width: 900px;
            margin: auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .inner-hero-content span {
            color: #2563eb;
            font-size: 15px;
            font-weight: 700;
            letter-spacing: .5px;
            display: block;
            margin-bottom: 18px;
        }

        .inner-hero-content h1 {
            color: #0f172a;
            font-size: 72px;
            line-height: 1.02;
            font-weight: 800;
            letter-spacing: -3px;
            margin-bottom: 24px;
        }

        .inner-hero-content p {
            color: #64748b;
            font-size: 22px;
            line-height: 1.9;
            max-width: 760px;
            margin: auto;
        }

        /* =========================================================
TERMS PAGE
========================================================= */

        .terms-page-section {
            padding: 90px 0;
            background: #fff;
        }

        .terms-page-wrapper {
            display: flex;
            align-items: flex-start;
            gap: 36px;
        }

        /* =========================================================
SIDEBAR
========================================================= */

        .terms-sidebar {
            width: 300px;
            position: sticky;
            top: 120px;
        }

        .terms-sidebar-box {
            background: #f8fbff;
            border: 1px solid #edf2f7;
            border-radius: 24px;
            padding: 30px;
        }

        .terms-sidebar-box h4 {
            color: #0f172a;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .terms-sidebar-box ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .terms-sidebar-box ul li {
            margin-bottom: 14px;
        }

        .terms-sidebar-box ul li:last-child {
            margin-bottom: 0;
        }

        .terms-sidebar-box ul li a {
            color: #475569;
            font-size: 16px;
            font-weight: 500;
            line-height: 1.7;
            transition: .3s;
            display: block;
        }

        .terms-sidebar-box ul li a:hover {
            color: #2563eb;
            transform: translateX(4px);
        }

        /* =========================================================
CONTENT
========================================================= */

        .terms-content-area {
            flex: 1;
        }

        .terms-content-box {
            display: flex;
            align-items: flex-start;
            gap: 28px;
            padding: 34px;
            border: 1px solid #edf2f7;
            border-radius: 28px;
            margin-bottom: 28px;
            background: #fff;
        }

        .terms-count {
            width: 78px;
            height: 78px;
            min-width: 78px;
            border-radius: 22px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            font-weight: 800;
        }

        .terms-text {
            flex: 1;
        }

        .terms-text h2 {
            color: #0f172a;
            font-size: 36px;
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -1px;
            margin-bottom: 18px;
        }

        .terms-text p {
            color: #64748b;
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 22px;
        }

        .terms-text ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .terms-text ul li {
            position: relative;
            padding-left: 22px;
            color: #0f172a;
            font-size: 17px;
            line-height: 2;
            margin-bottom: 8px;
        }

        .terms-text ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            top: 0;
            color: #2563eb;
            font-size: 20px;
            line-height: 1.7;
        }

        /* =========================================================
RESPONSIVE
========================================================= */

        @media(max-width:1100px) {

            .terms-page-wrapper {
                flex-direction: column;
            }

            .terms-sidebar {
                width: 100%;
                position: relative;
                top: 0;
            }

        }

        @media(max-width:768px) {

            .inner-hero-section {
                padding: 70px 0 60px;
            }

            .inner-hero-content h1 {
                font-size: 48px;
                letter-spacing: -2px;
            }

            .inner-hero-content p {
                font-size: 18px;
            }

            .terms-page-section {
                padding: 70px 0;
            }

            .terms-content-box {
                flex-direction: column;
                padding: 26px;
            }

            .terms-count {
                width: 70px;
                height: 70px;
                min-width: 70px;
                font-size: 22px;
            }

            .terms-text h2 {
                font-size: 30px;
            }

            .terms-text p {
                font-size: 17px;
            }

            .terms-text ul li {
                font-size: 16px;
                line-height: 1.9;
            }

        }

        @media(max-width:640px) {

            .inner-hero-content h1 {
                font-size: 38px;
                line-height: 1.1;
            }

            .inner-hero-content p {
                font-size: 16px;
            }

            .terms-sidebar-box {
                padding: 24px;
            }

            .terms-content-box {
                padding: 22px;
                border-radius: 22px;
            }

            .terms-text h2 {
                font-size: 26px;
            }

        }

        /* =========================================================
MODERN HOME SERVICES
========================================================= */

        .home-services-section {
            padding: 110px 0;
            background: #ffffff;
            position: relative;
        }

        .services-top-text {
            max-width: 760px;
            margin: 18px auto 0;
            color: #64748b;
            font-size: 18px;
            line-height: 1.9;
        }

        .home-services-modern {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            margin-top: 70px;
        }

        .home-service-modern-card {
            background: #fff;
            border: 1px solid #edf2f7;
            border-radius: 28px;
            padding: 34px;
            display: flex;
            align-items: flex-start;
            gap: 24px;
            transition: .35s;
            position: relative;
            overflow: hidden;
        }

        .home-service-modern-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 25px 70px rgba(37, 99, 235, .08);
            border-color: #dbeafe;
        }

        .home-service-modern-card::before {
            content: '';
            position: absolute;
            right: -40px;
            top: -40px;
            width: 120px;
            height: 120px;
            border-radius: 100%;
            background: rgba(37, 99, 235, .04);
        }

        .home-service-modern-icon {
            width: 84px;
            height: 84px;
            min-width: 84px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .home-service-modern-icon i {
            color: #fff;
            font-size: 38px;
        }

        .home-service-modern-content {
            position: relative;
            z-index: 2;
        }

        .home-service-modern-content h3 {
            color: #0f172a;
            font-size: 34px;
            line-height: 1.05;
            letter-spacing: -1px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .home-service-modern-content p {
            color: #64748b;
            font-size: 16px;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .home-service-modern-content ul {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .home-service-modern-content ul li {
            position: relative;
            padding-left: 18px;
            color: #0f172a;
            font-size: 15px;
            line-height: 2;
        }

        .home-service-modern-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 12px;
            width: 6px;
            height: 6px;
            border-radius: 100%;
            background: #2563eb;
        }

        .home-services-btn {
            text-align: center;
            margin-top: 55px;
        }

        /* gradients */

        .blue-gradient {
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
        }

        .light-blue-gradient {
            background: linear-gradient(135deg, #60a5fa, #2563eb);
        }

        .green-gradient {
            background: linear-gradient(135deg, #34d399, #10b981);
        }

        .purple-gradient {
            background: linear-gradient(135deg, #a855f7, #7c3aed);
        }

        .orange-gradient {
            background: linear-gradient(135deg, #fb923c, #f97316);
        }

        /* =========================================================
RESPONSIVE
========================================================= */

        @media(max-width:991px) {

            .home-services-modern {
                grid-template-columns: 1fr;
            }

            .home-service-modern-content h3 {
                font-size: 30px;
            }

        }

        @media(max-width:640px) {

            .home-services-section {
                padding: 70px 0;
            }

            .home-service-modern-card {
                flex-direction: column;
                padding: 28px;
            }

            .home-service-modern-icon {
                width: 74px;
                height: 74px;
                min-width: 74px;
            }

            .home-service-modern-content h3 {
                font-size: 28px;
            }

            .services-top-text {
                font-size: 16px;
            }

        }

        .home-service-btn,
        .service-book-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 22px;
            padding: 14px 22px;
            background: linear-gradient(135deg, #2563eb, #1d4ed8);
            color: #ffffff;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            line-height: 1;
            box-shadow: 0 10px 24px rgba(37, 99, 235, 0.18);
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
        }

        .home-service-btn::before,
        .service-book-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -120%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg,
                    transparent,
                    rgba(255, 255, 255, 0.25),
                    transparent);
            transition: .6s ease;
        }

        .home-service-btn:hover::before,
        .service-book-btn:hover::before {
            left: 120%;
        }

        .home-service-btn:hover,
        .service-book-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 16px 30px rgba(37, 99, 235, 0.28);
        }

        .home-service-btn i,
        .service-book-btn i {
            font-size: 16px;
            transition: .3s ease;
        }

        .home-service-btn:hover i,
        .service-book-btn:hover i {
            transform: translateX(3px);
        }


        html {
            scroll-padding-top: 100px;
            scroll-behavior: smooth;
        }


        .book-modern-section{
    position:relative;
    padding:90px 0;
    background:#f5f8ff;
    overflow:hidden;
}

.book-modern-section::before{
    content:'';
    position:absolute;
    left:-80px;
    top:120px;
    width:220px;
    height:220px;
    background-image:radial-gradient(#c7d7ff 1.5px,transparent 1.5px);
    background-size:14px 14px;
    opacity:.7;
    pointer-events:none;
}

.book-modern-wrapper{
    display:grid;
    grid-template-columns:1fr 520px;
    gap:70px;
    align-items:center;
}

/* LEFT CONTENT */

.book-modern-content{
    position:relative;
    z-index:2;
}

.book-modern-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    background:#edf4ff;
    border:1px solid #dbe7ff;
    border-radius:999px;
    color:#2563eb;
    font-size:13px;
    font-weight:700;
    letter-spacing:.4px;
    margin-bottom:28px;
}

.book-modern-tag i{
    font-size:16px;
}

.book-modern-content h1{
    font-size:78px;
    line-height:0.98;
    font-weight:800;
    letter-spacing:-3px;
    color:#0f172a;
    margin:0;
}

.book-modern-content h1 span{
    display:block;
    color:#2563eb;
}

.book-modern-line{
    width:72px;
    height:5px;
    background:#2563eb;
    border-radius:999px;
    margin:30px 0;
}

.book-modern-content p{
    max-width:560px;
    font-size:22px;
    line-height:1.8;
    color:#64748b;
    margin:0;
}

.book-modern-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin-top:45px;
}

.book-feature-item{
    width:110px;
    text-align:center;
}

.book-feature-icon{
    width:72px;
    height:72px;
    margin:0 auto 16px;
    border-radius:50%;
    background:#edf4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:30px;
}

.book-feature-item span{
    display:block;
    font-size:15px;
    line-height:1.6;
    font-weight:600;
    color:#0f172a;
}

.book-modern-image{
    position:relative;
    margin-top:55px;
}

.book-modern-image::before{
    content:'';
    position:absolute;
    right:30px;
    top:50%;
    transform:translateY(-50%);
    width:500px;
    height:500px;
    border-radius:50%;
    background:#dfe8fb;
    z-index:-1;
}

.book-modern-image img{
    width:100%;
    max-width:720px;
    display:block;
    position:relative;
    z-index:2;
}

/* FORM */

.book-form-modern-card{
    position:relative;
    background:#ffffff;
    border-radius:38px;
    padding:60px 50px 45px;
    box-shadow:0 18px 60px rgba(15,23,42,0.08);
    z-index:3;
}

.book-form-badge{
    position:absolute;
    left:50%;
    top:-34px;
    transform:translateX(-50%);
    width:78px;
    height:78px;
    border-radius:50%;
    background:#2563eb;
    color:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    box-shadow:0 18px 40px rgba(37,99,235,.3);
}

.book-form-modern-top{
    text-align:center;
    margin-bottom:34px;
}

.book-form-modern-top h2{
    font-size:58px;
    line-height:1;
    font-weight:800;
    color:#0f172a;
    margin:0;
    letter-spacing:-2px;
}

.book-title-line{
    width:64px;
    height:5px;
    border-radius:999px;
    background:#2563eb;
    margin:22px auto;
}

.book-form-modern-top p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
    max-width:360px;
    margin:0 auto;
}

/* FORM FIELDS */

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    font-weight:700;
    color:#0f172a;
}

.form-control{
    width:100%;
    height:64px;
    border:1px solid #dbe4f0;
    border-radius:18px;
    padding:0 20px;
    background:#ffffff;
    font-size:15px;
    color:#0f172a;
    transition:.3s ease;
    outline:none;
    box-sizing:border-box;
}

textarea.form-control{
    height:150px;
    padding:18px 20px;
    resize:none;
    line-height:1.7;
}

.form-control:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

.form-control::placeholder{
    color:#94a3b8;
}

select.form-control{
    appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 18px center;
    padding-right:50px;
}

/* BUTTON */

.submit-btn-modern{
    width:100%;
    height:66px;
    border:none;
    border-radius:18px;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#ffffff;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s ease;
    margin-top:10px;
    box-shadow:0 16px 40px rgba(37,99,235,.22);
}

.submit-btn-modern:hover{
    transform:translateY(-2px);
    box-shadow:0 20px 44px rgba(37,99,235,.28);
}

.submit-btn-modern i{
    font-size:18px;
}

.form-safe-note{
    margin-top:18px;
    text-align:center;
    font-size:14px;
    color:#64748b;
}

.form-safe-note i{
    color:#2563eb;
}

.form-message{
    margin-top:18px;
}

/* TABLET */

@media(max-width:991px){

    .book-modern-wrapper{
        grid-template-columns:1fr;
        gap:50px;
    }

    .book-modern-content{
        text-align:center;
    }

    .book-modern-content p{
        margin:0 auto;
    }

    .book-modern-line{
        margin:30px auto;
    }

    .book-modern-features{
        justify-content:center;
    }

    .book-modern-image{
        max-width:600px;
        margin:50px auto 0;
    }

    .book-modern-content h1{
        font-size:58px;
    }

    .book-form-modern-card{
        padding:50px 30px 35px;
        border-radius:28px;
    }

    .book-form-modern-top h2{
        font-size:44px;
    }

}

/* MOBILE */

@media(max-width:640px){

    .book-modern-section{
        padding:70px 0;
    }

    .book-modern-wrapper{
        gap:40px;
    }

    .book-modern-content h1{
        font-size:44px;
        line-height:1.05;
        letter-spacing:-2px;
    }

    .book-modern-content p{
        font-size:17px;
        line-height:1.8;
    }

    .book-modern-features{
        gap:20px;
    }

    .book-feature-item{
        width:calc(50% - 10px);
    }

    .book-feature-icon{
        width:62px;
        height:62px;
        font-size:24px;
    }

    .book-modern-image{
        margin-top:40px;
    }

    .book-modern-image::before{
        width:320px;
        height:320px;
        right:50%;
        transform:translate(50%,-50%);
    }

    .book-form-modern-card{
        padding:42px 22px 28px;
        border-radius:24px;
    }

    .book-form-modern-top h2{
        font-size:38px;
    }

    .book-form-modern-top p{
        font-size:16px;
    }

    .form-control{
        height:58px;
        border-radius:14px;
        font-size:14px;
    }

    textarea.form-control{
        height:130px;
    }

    .submit-btn-modern{
        height:58px;
        border-radius:14px;
        font-size:16px;
    }

}