
        :root {
            --navy: #0a1a2f;
            --navy-light: #122b44;
            --gator-green: #2ecc71;
            --gator-green-dark: #1e9e55;
            --soft-blue: #e8f4fd;
            --light-grey: #f5f7fa;
            --white: #ffffff;
            --shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--white);
            color: #1e293b;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        section{
            overflow: hidden;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: #475569;
            max-width: 700px;
            margin: 0 auto 3rem;
        }

        .text-green {
            color: var(--gator-green);
        }

        .bg-navy {
            background-color: var(--navy);
        }

        .bg-green {
            background-color: var(--gator-green);
        }

        .btn-green {
            background: var(--gator-green);
            border: none;
            color: #fff;
            font-weight: 600;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
        }

        .btn-green:hover {
            background: var(--gator-green-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(46, 204, 113, 0.4);
        }

        .btn-outline-light-custom {
            border: 2px solid #fff;
            color: #fff;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            background: transparent;
        }

        .btn-outline-light-custom:hover {
            background: #fff;
            color: var(--navy);
            transform: translateY(-3px);
        }

        .btn-navy {
            background: var(--navy);
            color: #fff;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }

        .btn-navy:hover {
            background: var(--navy-light);
            color: #fff;
            transform: translateY(-3px);
        }

        /* Top Header */
        .top-header {
            background: var(--navy);
            color: #e2e8f0;
            font-size: 0.85rem;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .top-header a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.2s;
        }

        .top-header a:hover {
            color: var(--gator-green);
        }

        .top-info span {
            margin-right: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .top-social a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            margin-left: 0.5rem;
            transition: all 0.2s;
        }

        .top-social a:hover {
            background: var(--gator-green);
            color: #fff;
        }

        @media (max-width: 991px) {
            .top-info span {
                margin-right: 0.75rem;
                font-size: 0.75rem;
            }

            .top-social a {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
        }

        /* Navbar */
        .navbar {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            padding: 0.8rem 0;
            transition: all 0.3s;
        }

        .navbar-brand img {
            height: 55px;
            width: auto;
        }

        .navbar .nav-link {
            font-weight: 500;
            color: var(--navy);
            padding: 0.5rem 1rem !important;
            transition: color 0.2s;
            position: relative;
        }

        .navbar .nav-link:hover,
        .navbar .nav-link.active {
            color: var(--gator-green);
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--gator-green);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            width: 60%;
        }

        .navbar .btn-call {
            background: var(--gator-green);
            color: #fff !important;
            border-radius: 50px;
            padding: 0.6rem 1.8rem !important;
            font-weight: 600;
            box-shadow: 0 6px 16px rgba(46, 204, 113, 0.3);
        }

        .navbar .btn-call:hover {
            background: var(--gator-green-dark);
            color: #fff !important;
            transform: translateY(-2px);
        }

        /* Hero Slider */
        .hero-slider {
            position: relative;
            min-height: 700px;
            background: var(--navy);
        }

        .hero-swiper {
            width: 100%;
            height: 700px;
        }

        .hero-slide {
            position: relative;
            display: flex;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .hero-slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(10, 26, 47, 0.92) 0%, rgba(10, 26, 47, 0.6) 100%);
            z-index: 1;
        }

        .hero-slide .container {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 1.25rem;
            line-height: 1.15;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: #cbd5e1;
            max-width: 600px;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .hero-content .btn {
            margin-right: 1rem;
            margin-bottom: 0.75rem;
        }

        .hero-enquiry-card {
            background: #fff;
            border-radius: 24px;
            padding: 2rem;
            box-shadow: var(--shadow-lg);
            max-width: 420px;
            margin-left: auto;
            border-top: 5px solid var(--gator-green);
        }

        .hero-enquiry-card h3 {
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .hero-enquiry-card .form-control,
        .hero-enquiry-card .form-select {
            border-radius: 12px;
            padding: 0.75rem 1rem;
            border: 1.5px solid #e2e8f0;
            font-size: 0.95rem;
        }

        .hero-enquiry-card .form-control:focus,
        .hero-enquiry-card .form-select:focus {
            border-color: var(--gator-green);
            box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.15);
        }

        .hero-enquiry-card .btn {
            width: 100%;
            border-radius: 12px;
            padding: 0.8rem;
            font-weight: 600;
        }

        @media (max-width: 1199px) {
            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 991px) {

            .hero-slider,
            .hero-swiper {
                height: auto;
                min-height: auto;
            }

            .hero-slide {
                padding: 60px 0;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-enquiry-card {
                margin: 2rem auto 0;
                max-width: 100%;
            }
        }

        /* About */
        .about-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
        }

        .about-img img {
            width: 100%;
            height: auto;
            display: block;
        }

        .about-feature-list {
            list-style: none;
            padding: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
        }

        .about-feature-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
            color: #334155;
        }

        .about-feature-list li i {
            color: var(--gator-green);
            font-size: 1.2rem;
        }

        @media (max-width: 576px) {
            .about-feature-list {
                grid-template-columns: 1fr;
            }
        }

        /* Services */
        .service-card {
            background: #fff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            border: 1px solid #f1f5f9;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gator-green);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card .card-body {
            padding: 1.75rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card h4 {
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .service-card p {
            color: #475569;
            font-size: 0.95rem;
            flex: 1;
        }

        .service-card .btn-group {
            display: flex;
            gap: 0.5rem;
            margin-top: 1.25rem;
            flex-wrap: wrap;
        }

        .service-card .btn-group .btn {
            flex: 1;
            min-width: 120px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
        }

        /* QR Feature */
        .qr-feature-section {
            background: linear-gradient(135deg, var(--navy) 0%, #0d2b3e 100%);
            position: relative;
            overflow: hidden;
        }

        .qr-feature-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .qr-feature-section .section-title {
            color: #fff;
        }

        .qr-feature-section .section-subtitle {
            color: #94a3b8;
        }

        .process-step-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem 1.5rem;
            text-align: center;
            color: #fff;
            transition: all 0.3s ease;
            height: 100%;
        }

        .process-step-card:hover {
            background: rgba(46, 204, 113, 0.15);
            border-color: var(--gator-green);
            transform: translateY(-8px);
        }

        .process-step-card .step-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gator-green);
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .process-step-card h5 {
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }

        .process-step-card p {
            color: #94a3b8;
            font-size: 0.95rem;
            margin: 0;
        }

        .process-arrow {
            text-align: center;
            color: var(--gator-green);
            font-size: 2rem;
            margin: 1rem 0;
        }

        @media (min-width: 992px) {
            .process-arrow {
                display: none;
            }
        }

        /* Why Choose */
        .why-card {
            background: #fff;
            border-radius: 18px;
            padding: 2rem 1.5rem;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f1f5f9;
        }

        .why-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--gator-green);
        }

        .why-card i {
            font-size: 2.5rem;
            color: var(--gator-green);
            margin-bottom: 1rem;
        }

        .why-card h5 {
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .why-card p {
            color: #64748b;
            font-size: 0.95rem;
            margin: 0;
        }

        /* Process */
        .process-main-step {
            background: #fff;
            border-radius: 18px;
            padding: 1.75rem;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            gap: 1.25rem;
            align-items: flex-start;
            border-left: 5px solid var(--gator-green);
        }

        .process-main-step:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .process-main-step .num-circle {
            width: 50px;
            height: 50px;
            background: var(--gator-green);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

        .process-main-step h5 {
            color: var(--navy);
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .process-main-step p {
            color: #64748b;
            font-size: 0.9rem;
            margin: 0;
        }

        /* Gallery */
        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            box-shadow: var(--shadow);
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: rgba(10, 26, 47, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            color: #fff;
            font-size: 2rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        /* Testimonials */
        .testimonial-card {
            background: #fff;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow);
            height: 100%;
            transition: all 0.3s;
            border: 1px solid #f1f5f9;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card .quote-icon {
            font-size: 2rem;
            color: var(--gator-green);
            opacity: 0.3;
            margin-bottom: 0.5rem;
        }

        .testimonial-card .stars {
            color: #fbbf24;
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            color: #475569;
            font-style: italic;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .testimonial-card .client-info {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-card .client-info img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-card .client-info h6 {
            margin: 0;
            color: var(--navy);
        }

        .testimonial-card .client-info small {
            color: #64748b;
        }

        /* Contact */
        .contact-info-card {
            background: var(--navy);
            border-radius: 24px;
            padding: 2.5rem;
            color: #fff;
            height: 100%;
        }

        .contact-info-card h3 {
            color: #fff;
            margin-bottom: 1.5rem;
        }

        .contact-info-card .info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-info-card .info-item i {
            font-size: 1.5rem;
            color: var(--gator-green);
            margin-top: 0.2rem;
        }

        .contact-info-card .info-item p {
            margin: 0;
            color: #cbd5e1;
        }

        .contact-form-card {
            background: #fff;
            border-radius: 24px;
            padding: 2.5rem;
            box-shadow: var(--shadow);
            height: 100%;
        }

        .contact-form-card .form-control,
        .contact-form-card .form-select {
            border-radius: 12px;
            padding: 0.8rem 1rem;
            border: 1.5px solid #e2e8f0;
        }

        .contact-form-card .form-control:focus,
        .contact-form-card .form-select:focus {
            border-color: var(--gator-green);
            box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.15);
        }

        /* FAQ */
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 16px !important;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        }

        .accordion-button {
            font-weight: 600;
            color: var(--navy);
            padding: 1.25rem 1.5rem;
            background: #fff;
            border-radius: 16px !important;
        }

        .accordion-button:not(.collapsed) {
            background: var(--soft-blue);
            color: var(--navy);
            box-shadow: none;
        }

        .accordion-button:focus {
            border-color: transparent;
            box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.15);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232ecc71'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(135deg, var(--navy) 0%, #0d2b3e 100%);
            position: relative;
            overflow: hidden;
            padding: 80px 0;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232ecc71' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .cta-section h2 {
            color: #fff;
            font-size: 2.5rem;
            font-weight: 800;
        }

        .cta-section p {
            color: #cbd5e1;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        /* Footer */
        .footer {
            background: #070f1a;
            color: #94a3b8;
            padding: 60px 0 0;
        }

        .footer h6 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 1.25rem;
            font-size: 1rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .footer a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.2s;
            display: inline-block;
            margin-bottom: 0.6rem;
        }

        .footer a:hover {
            color: var(--gator-green);
        }

        .footer .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.06);
            margin-right: 0.5rem;
            transition: all 0.3s;
        }

        .footer .social-icons a:hover {
            background: var(--gator-green);
            color: #fff;
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 1.5rem 0;
            margin-top: 3rem;
            font-size: 0.85rem;
        }

        /* Floating Buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1050;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .float-btn {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 22px;
            border-radius: 50px;
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .float-btn.call {
            background: var(--navy);
        }

        .float-btn.whatsapp {
            background: #25d366;
        }

        .float-btn:hover {
            color: #fff;
            transform: scale(1.05);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
            }

            70% {
                box-shadow: 0 0 0 12px rgba(46, 204, 113, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
            }
        }

        @media (max-width: 576px) {
            .floating-buttons {
                bottom: 15px;
                right: 15px;
                gap: 8px;
            }

            .float-btn {
                padding: 10px 16px;
                font-size: 0.8rem;
            }

            .float-btn span {
                display: none;
            }
        }

        /* Popup Modal */
        .modal-content {
            border-radius: 24px;
            border: none;
            overflow: hidden;
        }

        .modal-header {
            background: var(--navy);
            color: #fff;
            border: none;
            padding: 1.5rem 2rem;
        }

        .modal-header .btn-close {
            filter: brightness(0) invert(1);
        }

        .modal-body {
            padding: 2rem;
        }

        .modal-body .form-control,
        .modal-body .form-select {
            border-radius: 12px;
            padding: 0.8rem 1rem;
            border: 1.5px solid #e2e8f0;
        }

        .modal-body .form-control:focus,
        .modal-body .form-select:focus {
            border-color: var(--gator-green);
            box-shadow: 0 0 0 0.2rem rgba(46, 204, 113, 0.15);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-padding {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 0.95rem;
            }

            .cta-section h2 {
                font-size: 1.8rem;
            }

            .navbar-brand img {
                height: 42px;
            }
        }

        /* Utility */
        .text-gradient {
            background: linear-gradient(135deg, var(--gator-green), #27ae60);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }