 
            :root {
                --primary: #1e1b4b;
                --accent: #715cc9;
                --bg: #ffffff;
                --light: #f7f7fb;
                --text: #2a2a38;
                --text-soft: #67677d;
                --border: rgba(255, 255, 255, 0.12);
                --shadow: 0 18px 60px rgba(13, 10, 40, 0.18);
                --shadow-soft: 0 12px 40px rgba(20, 18, 55, 0.12);
            }

            * {
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: "Montserrat", sans-serif;
                background: var(--bg);
                color: var(--text);
                overflow-x: hidden;
            }

            h1,
            h2,
            h3,
            h4,
            h5,
            h6 {
                font-family: "Bricolage Grotesque", sans-serif;
                letter-spacing: -0.02em;
            }

            a {
                text-decoration: none;
            }

            .page-wrapper {
                overflow: hidden;
            }

            .site-header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 999;
                transition: all 0.35s ease;
                padding: 18px 0;
                background: transparent;
            }

            .site-header.scrolled {
                background: rgba(18, 16, 50, 0.92);
                backdrop-filter: blur(12px);
                -webkit-backdrop-filter: blur(12px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
                padding: 10px 0;
            }

            .navbar-shell {
                border: 1px solid rgba(255, 255, 255, 0.08);
                background: rgba(255, 255, 255, 0.04);
                backdrop-filter: blur(10px);
                -webkit-backdrop-filter: blur(10px);
                padding: 10px 18px;
                transition: all 0.35s ease;
                display: contents !important;
            }

            .site-header.scrolled .navbar-shell {
                background: transparent;
                border-color: rgba(255, 255, 255, 0.06);
            }

            .navbar-brand img {
                height: 46px;
                width: auto;
                display: block;
            }

            .navbar-nav {
                gap: 6px;
            }

            .navbar-nav .nav-link {
                color: #fff;
                font-size: 13px;
                font-weight: 500;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                padding: 12px 14px !important;
                position: relative;
                transition: all 0.25s ease;
                opacity: 0.9;
            }

            .navbar-nav .nav-link:hover,
            .navbar-nav .nav-link:focus {
                color: #fff;
                opacity: 1;
            }

            .navbar-nav .nav-link::after {
                content: "";
                position: absolute;
                left: 14px;
                bottom: 8px;
                width: 0;
                height: 1px;
                background: var(--accent);
                transition: width 0.25s ease;
            }

            .navbar-nav .nav-link:hover::after {
                width: calc(100% - 28px);
            }

            .header-cta {
                display: flex;
                align-items: center;
                gap: 12px;
            }

            .call-link {
                color: #fff;
                font-size: 14px;
                font-weight: 600;
                white-space: nowrap;
                transition: all 0.25s ease;
            }

            .call-link:hover {
                color: #fff;
                opacity: 0.8;
            }

            .btn-sharp {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                min-height: 52px;
                padding: 0 24px;
                border: none;
                border-radius: 0;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                transition: all 0.3s ease;
            }

            .btn-accent {
                background: var(--accent);
                color: #fff;
                box-shadow: 0 10px 25px rgba(113, 92, 201, 0.28);
            }

            .btn-accent:hover {
                background: #634dbf;
                color: #fff;
                transform: translateY(-2px);
            }

            .navbar-toggler {
                width: 50px;
                height: 50px;
                border: 1px solid rgba(255, 255, 255, 0.16);
                border-radius: 0;
                padding: 0;
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: none !important;
                background: rgba(255, 255, 255, 0.03);
            }

            .navbar-toggler-icon-custom {
                width: 22px;
                height: 16px;
                position: relative;
                display: inline-block;
            }

            .navbar-toggler-icon-custom span {
                position: absolute;
                left: 0;
                width: 100%;
                height: 2px;
                background: #fff;
                transition: all 0.3s ease;
            }

            .navbar-toggler-icon-custom span:nth-child(1) {
                top: 0;
            }
            .navbar-toggler-icon-custom span:nth-child(2) {
                top: 7px;
            }
            .navbar-toggler-icon-custom span:nth-child(3) {
                top: 14px;
            }

            .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(1) {
                transform: rotate(45deg);
                top: 7px;
            }

            .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(2) {
                opacity: 0;
            }

            .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon-custom span:nth-child(3) {
                transform: rotate(-45deg);
                top: 7px;
            }

            /* Full-width mobile nav panel */
            @media (max-width: 991.98px) {
                .site-header .navbar-collapse {
                    margin-top: 14px;
                    padding: 18px 16px 10px;
                    width: 100%;
                    background: rgba(17, 15, 46, 0.96);
                    border: 1px solid rgba(255, 255, 255, 0.08);
                }

                .navbar-nav {
                    gap: 0;
                }

                .navbar-nav .nav-link {
                    padding: 14px 0 !important;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                }

                .navbar-nav .nav-link::after {
                    left: 0;
                }

                .navbar-nav .nav-link:hover::after {
                    width: 80px;
                }

                .header-cta {
                    flex-direction: column;
                    align-items: stretch;
                    margin-top: 14px;
                }

                .call-link {
                    padding: 6px 0 12px;
                }
            }

            /* =========================
       HERO
    ========================= */
            .hero-section {
                position: relative;
                min-height: 100vh;
                display: flex;
                align-items: center;
                padding: 140px 0 80px;
                background:
                    linear-gradient(
                        90deg,
                        rgba(16, 14, 43, 0.88) 0%,
                        rgba(16, 14, 43, 0.76) 38%,
                        rgba(16, 14, 43, 0.55) 100%
                    ),
                    url("/assets/img/hero-bg.webp") center center/cover no-repeat;
                color: #fff;
            }

            .hero-section::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(circle at 20% 30%, rgba(113, 92, 201, 0.22), transparent 28%),
                    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.06), transparent 25%);
                pointer-events: none;
            }

            .hero-wrap {
                position: relative;
                z-index: 2;
            }

            .hero-kicker {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                padding: 10px 14px;
                background: rgba(255, 255, 255, 0.07);
                border: 1px solid rgba(255, 255, 255, 0.12);
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 0.16em;
                font-weight: 700;
                color: #fff;
                margin-bottom: 24px;
                backdrop-filter: blur(8px);
            }

            .hero-kicker::before {
                content: "";
                width: 8px;
                height: 8px;
                background: var(--accent);
                display: inline-block;
            }

            .hero-content {
                max-width: 690px;
            }

            .hero-title {
                font-size: clamp(2.4rem, 6vw, 5.2rem);
                line-height: 0.95;
                font-weight: 800;
                margin-bottom: 20px;
                color: #fff;
            }

            .hero-title .accent {
                color: #c7beff;
            }

            .hero-tagline {
                font-size: 1.02rem;
                line-height: 1.8;
                color: rgba(255, 255, 255, 0.82);
                max-width: 620px;
                margin-bottom: 16px;
                font-weight: 500;
            }

            .hero-support {
                font-size: 0.97rem;
                line-height: 1.9;
                color: rgba(255, 255, 255, 0.72);
                max-width: 610px;
                margin-bottom: 34px;
            }

            .hero-meta {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                margin-bottom: 32px;
            }

            .hero-chip {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 12px 16px;
                border: 1px solid rgba(255, 255, 255, 0.12);
                background: rgba(255, 255, 255, 0.05);
                color: #fff;
                font-size: 13px;
                font-weight: 600;
                letter-spacing: 0.02em;
                backdrop-filter: blur(8px);
            }

            .hero-chip i {
                color: #c7beff;
                font-size: 14px;
            }

            .hero-actions {
                display: flex;
                flex-wrap: wrap;
                gap: 14px;
                align-items: center;
            }

            .btn-outline-light-sharp {
                min-height: auto;
                padding: 16px;
                border: 1px solid rgba(255, 255, 255, 0.22);
                border-radius: 0;
                background: transparent;
                color: #fff;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                transition: all 0.3s ease;
            }

            .btn-outline-light-sharp:hover {
                background: #fff;
                color: var(--primary);
            }

            .hero-form-card {
                position: relative;
                margin-left: auto;
                max-width: 440px;
                background: rgba(255, 255, 255, 0.96);
                color: var(--text);
                padding: 34px;
                box-shadow: var(--shadow);
                border: 1px solid rgba(255, 255, 255, 0.8);
            }

            .hero-form-card::before {
                content: "";
                position: absolute;
                left: 0;
                top: 0;
                width: 100%;
                height: 4px;
                background: linear-gradient(90deg, var(--accent), #9b8cff);
            }

            .form-overline {
                font-size: 11px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.18em;
                color: var(--accent);
                margin-bottom: 12px;
                display: block;
            }

            .form-title {
                font-size: 2rem;
                line-height: 1;
                color: var(--primary);
                margin-bottom: 12px;
                font-weight: 800;
            }

            .form-subtext {
                color: #6d6c7f;
                font-size: 0.95rem;
                line-height: 1.75;
                margin-bottom: 22px;
            }

            .form-control,
            .form-select {
                min-height: 54px;
                border-radius: 0;
                border: 1px solid #ddddee;
                padding: 12px 16px;
                font-size: 14px;
                color: var(--text);
                box-shadow: none !important;
            }

            .form-control:focus,
            .form-select:focus {
                border-color: var(--accent);
            }

            .form-label {
                font-size: 12px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.08em;
                color: var(--primary);
                margin-bottom: 8px;
            }

            .btn-submit {
                width: 100%;
                min-height: 56px;
                background: var(--primary);
                color: #fff;
                border: none;
                border-radius: 0;
                font-size: 13px;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.12em;
                transition: all 0.3s ease;
            }

            .btn-submit:hover {
                background: var(--accent);
                color: #fff;
            }

            .form-note {
                font-size: 12px;
                line-height: 1.7;
                color: #88879b;
                margin-top: 14px;
                margin-bottom: 0;
            }

            @media (max-width: 991.98px) {
                .hero-section {
                    padding: 130px 0 70px;
                }

                .hero-content {
                    margin-bottom: 34px;
                }

                .hero-form-card {
                    max-width: 100%;
                }
            }

            @media (max-width: 575.98px) {
                .hero-section {
                    min-height: auto;
                    padding: 120px 0 60px;
                }

                .hero-kicker {
                    font-size: 10px;
                    letter-spacing: 0.12em;
                }

                .hero-form-card {
                    padding: 24px 20px;
                }

                .form-title {
                    font-size: 1.7rem;
                }
            }

            /* =========================
       FOOTER
    ========================= */
            .site-footer {
                background: var(--primary);
                color: #fff;
                position: relative;
                padding: 70px 0 26px;
            }

            .site-footer::before {
                content: "";
                position: absolute;
                inset: 0;
                background: radial-gradient(circle at 15% 20%, rgba(113, 92, 201, 0.18), transparent 24%),
                    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05), transparent 18%);
                pointer-events: none;
            }

            .footer-inner {
                position: relative;
                z-index: 2;
            }

            .footer-brand img {
                height: 52px;
                width: auto;
                margin-bottom: 18px;
            }

            .footer-text {
                max-width: 520px;
                color: rgba(255, 255, 255, 0.74);
                line-height: 1.9;
                font-size: 0.95rem;
                margin-bottom: 0;
            }

            .footer-mini-title {
                font-size: 12px;
                text-transform: uppercase;
                letter-spacing: 0.16em;
                font-weight: 700;
                color: #c7beff;
                margin-bottom: 16px;
            }

            .footer-links {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-links li + li {
                margin-top: 12px;
            }

            .footer-links a,
            .footer-contact a {
                color: rgba(255, 255, 255, 0.82);
                transition: all 0.25s ease;
            }

            .footer-links a:hover,
            .footer-contact a:hover {
                color: #fff;
            }

            .footer-contact {
                list-style: none;
                padding: 0;
                margin: 0;
            }

            .footer-contact li {
                display: flex;
                gap: 12px;
                align-items: flex-start;
                color: rgba(255, 255, 255, 0.82);
                line-height: 1.8;
            }

            .footer-contact li + li {
                margin-top: 14px;
            }

            .footer-contact i {
                color: #c7beff;
                font-size: 16px;
                margin-top: 4px;
            }

            .footer-bottom {
                margin-top: 40px;
                padding-top: 20px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                justify-content: space-between;
                align-items: center;
            }

            .footer-bottom p {
                margin: 0;
                color: rgba(255, 255, 255, 0.62);
                font-size: 13px;
            }

            .footer-bottom a {
                color: rgba(255, 255, 255, 0.72);
            }

            .footer-bottom a:hover {
                color: #fff;
            }
            
            .hero-title .accent {
    color: #c7beff;
    text-shadow: 5px 5px 5px #00000066;
}

 .accent {
    color: #c7beff;
  }
        
        
         
                /* =====================
OVERVIEW SECTION
=====================*/

                .overview-section {
                    padding: 60px 0;
                    background: #fff;
                }

                .section-label {
                    font-size: 12px;
                    font-weight: 700;
                    letter-spacing: 0.18em;
                    text-transform: uppercase;
                    color: #715cc9;
                    display: block;
                    margin-bottom: 18px;
                }

                .overview-title {
                    font-size: 40px;
                    font-weight: 700;
                    color: #1e1b4b;
                    line-height: 1.2;
                    margin-bottom: 22px;
                }

                .overview-text {
                    font-size: 16px;
                    line-height: 1.9;
                    color: #666680;
                    margin-bottom: 18px;
                }

                .overview-highlights {
                    margin-top: 20px;
                    margin-bottom: 30px;
                }

                .highlight-item {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 15px;
                    margin-bottom: 10px;
                    color: #33334d;
                }

                .highlight-item i {
                    color: #715cc9;
                    font-size: 16px;
                }

                .overview-image img {
                    width: 100%;
                    height: auto;
                    display: block;
                }

                .btn-overview-cta {
                    background: #715cc9;
                    color: #fff;
                    border-radius: 0;
                    padding: 16px 34px;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    transition: all 0.3s ease;
                }

                .btn-overview-cta:hover {
                    background: #1e1b4b;
                    color: #fff;
                }
            
            
              
                /* =====================
KEY HIGHLIGHTS
=====================*/

                .highlights-section {
                    padding: 60px 0;
                    background: #f7f7fb;
                }

                .section-title {
                    font-size: 40px;
                    font-weight: 700;
                    color: #1e1b4b;
                    margin-bottom: 14px;
                }

                .section-subtext {
                    font-size: 16px;
                    color: #666680;
                    line-height: 1.8;
                }

                .highlight-card {
                    background: #fff;
                    padding: 40px 34px;
                    height: 100%;
                    border: 1px solid #eeeeff;
                    transition: all 0.35s ease;
                }

                .highlight-card:hover {
                    transform: translateY(-6px);
                    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
                }

                .highlight-icon {
                    font-size: 48px;
                    color: #715cc9;
                    margin-bottom: 20px;
                    display: block;
                }

                .highlight-card h4 {
                    font-size: 20px;
                    color: #1e1b4b;
                    margin-bottom: 10px;
                    font-weight: 600;
                }

                .highlight-card p {
                    font-size: 15px;
                    color: #6c6c82;
                    line-height: 1.8;
                    margin: 0;
                }
            
            
            
                /* LOCATION SECTION */

                .location-section {
                    padding: 120px 0;
                    background: #fff;
                }

                .location-title {
                    font-size: 40px;
                    font-weight: 700;
                    color: #1e1b4b;
                    margin-bottom: 16px;
                }

                .location-text {
                    font-size: 16px;
                    line-height: 1.9;
                    color: #666680;
                    margin-bottom: 24px;
                }

                .location-map img {
                    width: 100%;
                    border-radius: 0;
                    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
                }

                .location-list {
                    margin-bottom: 30px;
                }

                .location-item {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 12px;
                    font-size: 15px;
                    color: #33334d;
                }

                .location-item i {
                    font-size: 20px;
                    color: #715cc9;
                }

                .btn-location-cta {
                    background: #715cc9;
                    color: #fff;
                    border-radius: 0;
                    padding: 16px 32px;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                }

                .btn-location-cta:hover {
                    background: #1e1b4b;
                    color: #fff;
                }
            
            
            
                /* =====================
PLOT SIZES SECTION
=====================*/

                .plots-section {
                    padding: 120px 0;
                    background: #f7f7fb;
                }

                .plots-title {
                    font-size: 40px;
                    color: #1e1b4b;
                    font-weight: 700;
                    margin-bottom: 18px;
                }

                .plots-text {
                    font-size: 16px;
                    line-height: 1.9;
                    color: #666680;
                    margin-bottom: 16px;
                }

                .plots-grid {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 24px;
                }

                .plot-card {
                    background: #fff;
                    padding: 140px 40px;
                    text-align: center;
                    transition: all 0.3s ease;
                }

                .plot-card:hover {
                    transform: translateY(-6px);
                    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
                }

                .plot-size {
                    font-size: 56px;
                    font-weight: 700;
                    color: #1e1b4b;
                    line-height: 1;
                }

                .plot-unit {
                    font-size: 14px;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                    color: #715cc9;
                    margin-bottom: 12px;
                }

                .plot-card p {
                    font-size: 14px;
                    color: #6c6c82;
                    margin: 0;
                }

                .development-feature {
                    display: flex;
                    align-items: flex-start;
                    gap: 14px;
                    margin: 24px 0;
                }

                .development-feature i {
                    font-size: 30px;
                    color: #715cc9;
                }

                .development-feature h5 {
                    font-size: 18px;
                    color: #1e1b4b;
                    margin-bottom: 4px;
                }

                .development-feature p {
                    font-size: 14px;
                    color: #6c6c82;
                    margin: 0;
                }

                .btn-plots-cta {
                    background: #715cc9;
                    color: #fff;
                    border-radius: 0;
                    padding: 16px 32px;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    transition: all 0.3s ease;
                }

                .btn-plots-cta:hover {
                    background: #1e1b4b;
                    color: #fff;
                }
            



            
                /* =====================
GOLF LIFESTYLE SECTION
=====================*/

                .golf-section {
                    padding: 140px 0;
                    background:
                        linear-gradient(rgba(30, 27, 75, 0.85), rgba(30, 27, 75, 0.85)),
                        url("/assets/img/golfl.jpg") center/cover no-repeat;
                    color: #fff;
                }

                .section-label.light {
                    color: #c9c4ff;
                }

                .golf-title {
                    font-size: 44px;
                    font-weight: 700;
                    margin-bottom: 20px;
                }

                .golf-text {
                    font-size: 16px;
                    line-height: 1.9;
                    color: rgba(255, 255, 255, 0.85);
                    margin-bottom: 16px;
                }

                .golf-features {
                    display: flex;
                    justify-content: center;
                    gap: 30px;
                    flex-wrap: wrap;
                    margin: 30px 0 40px;
                }

                .golf-feature {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: 15px;
                    font-weight: 500;
                }

                .golf-feature i {
                    font-size: 22px;
                    color: #c9c4ff;
                }

                .btn-golf-cta {
                    background: #715cc9;
                    color: #fff;
                    border-radius: 0;
                    padding: 16px 34px;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    transition: all 0.3s ease;
                }

                .btn-golf-cta:hover {
                    background: #fff;
                    color: #1e1b4b;
                }
            
            
              
                /* PRICING SECTION */

                .pricing-plan-section {
                    padding: 120px 0;
                    background: #ffffff;
                }

                .price-highlight {
                    background: #1e1b4b;
                    color: #fff;
                    padding: 40px;
                    margin-bottom: 30px;
                }

                .price-icon {
                    font-size: 30px;
                    margin-bottom: 10px;
                    color: #c9c4ff;
                }

                .price-main {
                    font-size: 42px;
                    font-weight: 700;
                    margin-top: 10px;
                }

                .price-main span {
                    display: block;
                    font-size: 13px;
                    letter-spacing: 0.12em;
                    text-transform: uppercase;
                    color: #c9c4ff;
                }

                .price-table-card {
                    background: #f7f7fb;
                    padding: 30px;
                    margin-bottom: 25px;
                }

                .price-table-card h5 {
                    font-size: 18px;
                    margin-bottom: 20px;
                    color: #1e1b4b;
                }

                .pricing-table th {
                    font-size: 14px;
                }

                .pricing-table td {
                    font-size: 15px;
                }

                .launch-price {
                    font-size: 34px;
                    font-weight: 700;
                    color: #1e1b4b;
                }

                .launch-price span {
                    display: block;
                    font-size: 12px;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    color: #715cc9;
                }

                .price-note {
                    font-size: 14px;
                    color: #666680;
                    margin-top: 10px;
                }

                .payment-table td {
                    padding: 10px;
                    font-size: 15px;
                }

                .eoi-card {
                    background: #1e1b4b;
                    color: #fff;
                    padding: 32px;
                }

                .eoi-amount {
                    margin: 10px 0 15px;
                    font-size: 16px;
                }

                .eoi-benefits {
                    list-style: none;
                    padding: 0;
                    margin-bottom: 20px;
                }

                .eoi-benefits li {
                    margin-bottom: 8px;
                    font-size: 14px;
                }

                .eoi-benefits i {
                    color: #c9c4ff;
                    margin-right: 6px;
                }

                .btn-pricing-cta {
                    background: #715cc9;
                    color: #fff;
                    border-radius: 0;
                    padding: 14px 28px;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                }

                .btn-pricing-cta:hover {
                    background: #fff;
                    color: #1e1b4b;
                }
            



                /* FINAL CTA */

                .final-cta-section {
                    padding: 120px 0;
                    background: #1e1b4b;
                    color: #fff;
                }

                .cta-title {
                    font-size: 44px;
                    font-weight: 700;
                    margin-bottom: 18px;
                }

                .cta-text {
                    font-size: 16px;
                    line-height: 1.9;
                    color: #e5e5ff;
                    margin-bottom: 40px;
                }

                .cta-buttons {
                    display: flex;
                    justify-content: center;
                    gap: 16px;
                    flex-wrap: wrap;
                }

                .cta-buttons .btn {
                    padding: 16px 30px;
                    border-radius: 0;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                    display: flex;
                    align-items: center;
                    gap: 8px;
                }

                .btn-cta-call {
                    background: #715cc9;
                    color: #fff;
                }

                .btn-cta-call:hover {
                    background: #ffffff;
                    color: #1e1b4b;
                }

                .btn-cta-whatsapp {
                    background: #25d366;
                    color: #fff;
                }

                .btn-cta-whatsapp:hover {
                    background: #ffffff;
                    color: #1e1b4b;
                }

                .btn-cta-enquire {
                    background: #ffffff;
                    color: #1e1b4b;
                }

                .btn-cta-enquire:hover {
                    background: #715cc9;
                    color: #fff;
                }
            
            
             
                /* DEVELOPER SECTION */

                .developer-section {
                    padding: 40px 0;
                    background: #ffffff;
                }

                .developer-title {
                    font-size: 40px;
                    font-weight: 700;
                    color: #1e1b4b;
                    margin-bottom: 18px;
                }

                .developer-text {
                    font-size: 16px;
                    line-height: 1.9;
                    color: #666680;
                    margin-bottom: 18px;
                }

                .developer-image img {
                    width: 100%;
                    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
                }

                .developer-highlights {
                    margin-top: 20px;
                    margin-bottom: 30px;
                }

                .developer-point {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 12px;
                    font-size: 15px;
                    color: #33334d;
                }

                .developer-point i {
                    font-size: 20px;
                    color: #715cc9;
                }

                .btn-developer-cta {
                    background: #715cc9;
                    color: #fff;
                    border-radius: 0;
                    padding: 16px 32px;
                    font-size: 13px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                    text-transform: uppercase;
                }

                .btn-developer-cta:hover {
                    background: #1e1b4b;
                    color: #fff;
                }
            
            
            
            
             
                /* PROJECTS SECTION */
            
            .projects-section{
            padding:40px 0;
            background:#F7F7FB;
            }
            
            .project-card{
            background:#fff;
            height:100%;
            overflow:hidden;
            transition:all .35s ease;
            border:1px solid #eeeeff;
            }
            
            .project-card img{
            width:100%;
            height:200px;
            object-fit:cover;
            }
            
            .project-content{
            padding:22px;
            }
            
            .project-content h4{
            font-size:18px;
            color:#1E1B4B;
            margin-bottom:10px;
            font-weight:600;
            }
            
            .project-content p{
            font-size:14px;
            line-height:1.7;
            color:#666680;
            margin:0;
            }
            
            .project-card:hover{
            transform:translateY(-6px);
            box-shadow:0 20px 50px rgba(0,0,0,0.08);
            }
            
            
            
    /* FAQ SECTION */

.faq-section{
padding:120px 0;
background:#ffffff;
}

.faq-title{
font-size:40px;
font-weight:700;
color:#1E1B4B;
margin-bottom:10px;
}

.faq-divider{
width:60px;
height:3px;
background:#715CC9;
margin:10px auto 0;
}

/* Accordion */

.faq-accordion .accordion-item{
border:1px solid #e9e9f5;
margin-bottom:14px;
border-radius:0;
overflow:hidden;
}

.faq-accordion .accordion-button{
font-size:18px;
font-weight:600;
color:#1E1B4B;
background:#fff;
box-shadow:none;
padding:20px;
}

.faq-accordion .accordion-button:not(.collapsed){
background:#fff;
color:#1E1B4B;
}

.faq-accordion .accordion-button::after{
background-image:none;
content:"+";
font-size:20px;
font-weight:700;
color:#715CC9;
transform:none;
}

.faq-accordion .accordion-button:not(.collapsed)::after{
content:"−";
}

.faq-accordion .accordion-body{
font-size:15px;
line-height:1.8;
color:#666680;
padding:20px;
background:#fafafe;
}


  
            /* Floating Buttons */

            .floating-contact {
                position: fixed;
                right: 22px;
                bottom: 22px;
                display: flex;
                flex-direction: column;
                gap: 12px;
                z-index: 9999;
            }

            .float-btn {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                font-size: 22px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
                transition: all 0.3s ease;
            }

            .float-btn:hover {
                transform: translateY(-4px);
            }

            /* Call */
            .call-btn {
                background: #715cc9;
            }

            /* WhatsApp */
            .whatsapp-btn {
                background: #25d366;
            }

            /* Enquire */
            .enquire-btn {
                background: #1e1b4b;
            }
        