  :root {
            --primary-color: #4361ee;
            --primary-light: rgba(67, 97, 238, 0.1);
            --secondary-color: #f72585;
            --dark-color: #212529;
            --light-color: #f8f9fa;
            --gray-color: #6c757d;
            --gradient-blue: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            --gradient-green: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #ffffff;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 600;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #3a56e8;
            border-color: #3a56e8;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(67, 97, 238, 0.3);
        }

        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            color: white;
        }

        .btn-danger {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        .btn-danger:hover {
            background-color: #e5177e;
            border-color: #e5177e;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(247, 37, 133, 0.3);
        }

        .btn-outline-light:hover {
            color: var(--dark-color);
        }

        .btn-cta {
            font-weight: 600;
            padding: 12px 28px;
            position: relative;
            overflow: hidden;
        }

        .btn-cta:after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg);
            transition: all 0.3s ease;
        }

        .btn-cta:hover:after {
            left: 100%;
        }

        .section-title {
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: var(--gradient-green);
            margin: 15px auto 0;
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--gray-color);
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        /* Breadcrumb Area */
        .breadcumb-area {
            background: url('../ContactHero.jpg') no-repeat center center/cover;
            padding: 180px 0;
            position: relative;
            overflow: hidden;
        }

        .breadcumb-area:before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 1;
        }

        .breadcumb-area::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .breadcumb-inner {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
        }

        .breadcumb-inner ul {
            display: flex;
            justify-content: center;
            list-style: none;
            padding: 0;
            margin: 0 0 15px 0;
            flex-wrap: wrap;
        }

        .breadcumb-inner ul li {
            margin: 0 10px;
            color: #fff;
        }

        .breadcumb-inner ul li a {
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcumb-inner ul li a:hover {
            color: var(--primary-light);
        }

        .breadcumb-inner ul li i {
            margin-right: 10px;
        }

        .brpt h2 {
            position: relative;
            z-index: 2;
            font-size: 3.5rem;
            font-weight: 700;
            color: white;
            margin: 0;
            text-align: center;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Trust Badge */
        .trust-badge-container {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            position: relative;
            z-index: 3;
            flex-direction: column;
            align-items: center;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
            position: relative;
        }

        .trust-title-text {
            font-size: 14px;
            font-weight: 600;
            color: silver;
            text-align: center;
            line-height: 1.2;
            min-width: 80px;
        }

        .trust-leaf-container {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf {
            width: 44px;
            height: 44px;
            background-image: url('../badge.webp');
            background-size: contain;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .trust-leaf-left {
            transform: scaleX(-1);
        }

        .trust-subtitle {
            font-size: 14px;
            color: var(--gray-color);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .trust-subtitle::before,
        .trust-subtitle::after {
            content: "";
            height: 1px;
            width: 50px;
            display: inline-block;
            background: var(--primary-light);
        }

        .trust-subtitle::before {
            background: linear-gradient(to right, var(--primary-light), var(--primary-color));
        }

        .trust-subtitle::after {
            background: linear-gradient(to left, var(--primary-light), var(--primary-color));
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 60px 0;
            position: relative;
        }

        .contact-form-section:before {
            content: '';
            position: absolute;
            top: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, rgba(248, 249, 250, 0) 70%);
            z-index: 0;
        }

        .contact-form-card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background-color: #ffffff;
            padding: 50px;
            position: relative;
            overflow: hidden;
        }

        .contact-form-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-green);
        }

        .contact-form-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }

        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(67, 97, 238, 0.25);
        }

        textarea.form-control {
            min-height: 150px;
        }

        /* Contact Info Section */
        .contact-info-section {
            padding: 60px 0;
            background: #f8f9fa;
            position: relative;
        }

        .contact-info-card {
            border: none;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            background-color: #ffffff;
            padding: 30px;
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .contact-info-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-green);
        }

        .contact-info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
        }

        .contact-info-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #3a0ca3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            margin: 0 auto 20px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 20px rgba(67, 97, 238, 0.2);
        }

        .contact-info-card:hover .contact-info-icon {
            transform: rotateY(180deg) scale(1.1);
        }

        /* FAQ Section */
        .contact-faq-section {
            padding: 60px 0;
            background: #ffffff;
            position: relative;
        }

        .contact-accordion-item {
            border: none;
            border-radius: 16px;
            margin-bottom: 15px;
            box-shadow: var(--card-shadow);
            overflow: hidden;
            background: white;
            transition: all 0.3s ease;
        }

        .contact-accordion-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(67, 97, 238, 0.15);
        }

        .contact-accordion-button {
            font-size: 18px;
            font-weight: 600;
            padding: 20px;
            border: none;
            background: white;
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            transition: all 0.3s ease;
        }

        .contact-accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background: white;
        }

        .contact-accordion-button:focus {
            box-shadow: none;
        }

        .contact-accordion-button::after {
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            content: '\f078';
            transition: transform 0.3s;
        }

        .contact-accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .contact-accordion-body {
            padding: 0 20px 20px;
        }

        /* Map Section */
        .contact-map-section {
            padding: 60px 0;
            background: #f8f9fa;
            position: relative;
        }

        .contact-map-container {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            height: 500px;
        }

        .contact-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--gradient-green);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            z-index: 999;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background: linear-gradient(90deg, #4cc9f0 0%, #4361ee 100%);
            color: white;
            transform: translateY(-5px) scale(1.1);
        }

        /* Animation Classes */
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Responsive Adjustments */
        @media (max-width: 1199.98px) {
            .brpt h2 {
                font-size: 3rem;
            }

            .icon-3d-item {
                width: 120px;
                height: 120px;
                min-width: 120px;
            }
        }

        @media (max-width: 991.98px) {
            .brpt h2 {
                font-size: 2.5rem;
            }

            .contact-form-card {
                padding: 30px;
            }

            .icon-3d-container {
                gap: 30px;
            }

            .icon-3d-item {
                width: 110px;
                height: 110px;
                min-width: 110px;
            }

            .icon-3d-item i {
                font-size: 4rem;
            }
        }

        @media (max-width: 767.98px) {
            .breadcumb-area {
                padding: 120px 0 60px;
            }

            .brpt h2 {
                font-size: 2rem;
            }

            .contact-form-card {
                padding: 25px;
            }

            .icon-3d-container {
                gap: 25px;
            }

            .icon-3d-item {
                width: 100px;
                height: 100px;
                min-width: 100px;
            }

            .icon-3d-item i {
                font-size: 3.5rem;
            }
        }

        @media (max-width: 575.98px) {
            .breadcumb-area {
                padding: 100px 0 40px;
            }

            .brpt h2 {
                font-size: 1.8rem;
            }

            .contact-form-card {
                padding: 20px 15px;
            }

            .icon-3d-container {
                gap: 20px;
            }

            .icon-3d-item {
                width: 40px;
                height: 80px;
                min-width: 90px;
            }

            .icon-3d-item i {
                font-size: 2.5rem;
            }

        }