    <style>body {
        font-family: 'Poppins', sans-serif;
        background: #f8fbff;
        overflow-x: hidden;
    }

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

    .navbar {
        background: #ffffff;
        padding: 18px 0;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    /* Responsive Logo */
    .navbar-brand {
        font-size: 30px;
        font-weight: 800;
        letter-spacing: 1px;
        background: linear-gradient(45deg, #0d6efd, #00c853);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Nav Links */
    .nav-link {
        font-weight: 500;
        margin-right: 15px;
    }

    /* Attractive Rectangular Button */
    /* ===== Glowing Animated Button ===== */

    .btn-book {
        position: relative;
        background: linear-gradient(45deg, #0d6efd, #00c853);
        color: #fff;
        font-weight: 600;
        padding: 14px 32px;
        border-radius: 8px;
        border: none;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 0 15px rgba(13, 110, 253, 0.6);
    }

    /* Glow Pulse Animation */
    .btn-book::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
        animation: pulseGlow 2.5s infinite;
        opacity: 0.6;
    }

    @keyframes pulseGlow {
        0% {
            transform: scale(0.8);
            opacity: 0.6;
        }

        50% {
            transform: scale(1);
            opacity: 0.3;
        }

        100% {
            transform: scale(0.8);
            opacity: 0.6;
        }
    }

    /* Hover Shine Effect */
    .btn-book:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 25px rgba(0, 200, 83, 0.9);
        color: #fff;
    }

    /* Shine Animation */
    .btn-book::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: 0.75s;
    }

    .btn-book:hover::after {
        left: 125%;
    }


    /* ================= MOBILE HEADER FIX ================= */

    @media (max-width: 991px) {

        /* Add padding to mobile dropdown */
        .navbar-collapse {
            background: #ffffff;
            padding: 20px;
            margin-top: 12px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        }

        /* Add spacing between menu items */
        .navbar-nav .nav-item {
            margin-bottom: 12px;
        }

        /* Full width Book Now button */
        .btn-book {
            width: 100%;
            text-align: center;
            margin-top: 10px;
            padding: 14px;
        }

        /* Center align mobile menu */
        .navbar-nav {
            text-align: center;
        }

    }

    /* ================= HERO ================= */
    .hero {
        background: linear-gradient(135deg, #0d6efd, #00c853);
        color: white;
        min-height: 90vh;
        display: flex;
        align-items: center;
        text-align: center;
    }

    .hero h1 {
        font-weight: 800;
        font-size: 58px;
        line-height: 1.2;
    }

    .hero .lead {
        font-size: 22px;
        opacity: 0.95;
    }

    .hero .btn {
        font-weight: 600;
        border-radius: 30px;
        padding: 12px 30px;
    }

    /* ================= SERVICES ================= */
    .service-card {
        border-radius: 18px;
        transition: 0.4s;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    /* ================= BRANDS ================= */
    /* ================= ORIGINAL BRAND SECTION ================= */

    .brands-section {
        background: #f8fbff;
    }

    .brands-heading {
        font-size: 36px;
    }

    /* Card */
    .brand-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 15px;
        transition: 0.4s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 120px;
    }

    /* Image */
    .brand-img {
        max-height: 40px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: 0.4s ease;
    }

    /* Hover Effects */
    .brand-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }

    .brand-card:hover .brand-img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .brands-heading {
            font-size: 26px;
        }

        .brand-card {
            height: 100px;
        }

        .brand-img {
            max-height: 35px;
        }
    }

    /* ================= BRANDS PREMIUM ================= */

    /* ================= PREMIUM BRAND SECTION ================= */

    .brands-section {
        background: #f8fbff;
    }

    .brand-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 30px 15px;
        transition: 0.4s ease;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        height: 120px;
    }

    .brand-img {
        max-height: 45px;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: 0.4s ease;
    }

    /* Hover */
    .brand-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    }

    .brand-card:hover .brand-img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.05);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .brand-card {
            height: 100px;
            padding: 20px;
        }

        .brand-img {
            max-height: 35px;
        }
    }

    .brand-card:hover {
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12),
            0 0 15px rgba(0, 200, 83, 0.3);
    }

    /* ================= STATS ================= */
    /* ================= PREMIUM STATS SECTION ================= */

    .stats-section {
        background: linear-gradient(135deg, #0d6efd, #00c853);
        color: white;
    }

    .stat-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        padding: 35px 25px;
        border-radius: 20px;
        transition: 0.4s ease;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    /* Icon */
    .stat-icon {
        font-size: 32px;
        margin-bottom: 10px;
        animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {

        0%,
        100% {
            transform: translateY(0);
        }

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

    /* Counter */
    .stat-card h2 {
        font-size: 42px;
        font-weight: 800;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .stat-card {
            padding: 25px 20px;
        }

        .stat-card h2 {
            font-size: 32px;
        }
    }


    /* ================= FOOTER ================= */
    .footer {
        background: #111;
        color: #ccc;
        padding: 40px 0;
    }

    .footer a {
        color: #ccc;
        text-decoration: none;
    }

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

    .hero {
        background: linear-gradient(135deg, #0d6efd, #00c853);
        min-height: 95vh;
        display: flex;
        align-items: center;
        color: white;
        position: relative;
        overflow: hidden;
    }

    /* Animated Heading */
    .hero-title {
        font-size: 60px;
        font-weight: 800;
        animation: fadeUp 1s ease forwards;
    }

    .hero-subtitle {
        font-size: 22px;
        opacity: 0.95;
        animation: fadeUp 1.5s ease forwards;
    }

    /* Glass Search Box */
    .search-box {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        padding: 30px;
        border-radius: 20px;
        animation: fadeUp 2s ease forwards;
    }

    /* Search Button */
    .btn-search {
        background: linear-gradient(45deg, #ffffff, #d4f8e8);
        color: #0d6efd;
        font-weight: 600;
        border-radius: 10px;
        transition: 0.4s;
    }

    .btn-search:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* Fade Animation */
    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

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

    /* Responsive Adjustments */
    @media (max-width: 992px) {

        .hero-title {
            font-size: 42px;
        }

        .hero-subtitle {
            font-size: 18px;
        }

        .search-box {
            padding: 20px;
        }
    }

    @media (max-width: 576px) {

        .hero {
            text-align: center;
            padding: 40px 0;
        }

        .hero-title {
            font-size: 32px;
        }

        .hero-subtitle {
            font-size: 16px;
        }
    }

    /* ================= ATTRACTIVE SEARCH BUTTON ================= */

    /* ================= GRADIENT ANIMATED SEARCH BUTTON ================= */

    .btn-search {
        position: relative;
        background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
        background-size: 400% 400%;
        color: #fff;
        font-weight: 700;
        border-radius: 12px;
        padding: 14px 20px;
        border: none;
        overflow: hidden;
        transition: 0.4s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        animation: gradientMove 5s ease infinite;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* Moving Gradient Animation */
    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Hover Glow */
    .btn-search:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 200, 83, 0.6);
    }

    /* Shine Effect */
    .btn-search::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: 0.8s;
    }

    .btn-search:hover::before {
        left: 125%;
    }

    /* Icon Slide Animation */
    .search-icon {
        transition: 0.3s ease;
    }

    .btn-search:hover .search-icon {
        transform: translateX(6px);
    }

    /* Click Effect */
    .btn-search:active {
        transform: scale(0.95);
    }

    /* Mobile Responsive */
    @media (max-width: 992px) {
        .btn-search {
            padding: 14px;
        }
    }

    /* ================= RESULTS SECTION ================= */

    .results-section {
        background: linear-gradient(135deg, #f8fbff, #e6f7ff);
        position: relative;
        overflow: hidden;
    }

    /* Animated Title */
    .results-title {
        font-size: 40px;
        position: relative;
        display: inline-block;
    }

    .title-underline {
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #0d6efd, #00c853);
        margin-top: 10px;
        border-radius: 4px;
        animation: underlineMove 2s infinite alternate;
    }

    @keyframes underlineMove {
        from {
            width: 60px;
        }

        to {
            width: 120px;
        }
    }

    /* Service Card */
    .service-result-card {
        border-radius: 20px;
        padding: 25px;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: 0.4s ease;
        animation: fadeUpCard 0.8s ease forwards;
        opacity: 0;
    }

    @keyframes fadeUpCard {
        from {
            opacity: 0;
            transform: translateY(40px);
        }

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

    .service-result-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    /* Price Styling */
    .service-price {
        font-size: 22px;
        font-weight: 700;
        color: #0d6efd;
    }

    /* Attractive Book Button */
    /* ================= BOOK SERVICE BUTTON ================= */

    .btn-book-service {
        background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
        background-size: 300% 300%;
        animation: gradientMove 6s ease infinite;
        border: none;
        border-radius: 12px;
        font-weight: 700;
        font-size: 16px;

        /* Increased Height */
        padding: 16px 20px;
        min-height: 55px;

        color: #fff;
        transition: 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Hover Effect */
    .btn-book-service:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 200, 83, 0.6);
    }

    /* Click Press Effect */
    .btn-book-service:active {
        transform: scale(0.96);
    }

    /* Responsive Adjustments */
    @media (max-width: 768px) {

        .btn-book-service {
            font-size: 15px;
            padding: 18px;
            min-height: 60px;
        }

    }

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

    /* ================= SERVICES PREMIUM ================= */

    .services-urban {
        background: #f8fbff;
    }

    .services-heading {
        font-size: 38px;
    }

    /* Card */
    .urban-card {
        background: #ffffff;
        border-radius: 18px;
        padding: 30px 25px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    .urban-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }

    /* Icon */
    .urban-icon {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #0d6efd, #00c853);
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        color: white;
        margin: 0 auto;
        transition: 0.3s;
    }

    .urban-card:hover .urban-icon {
        transform: rotate(8deg) scale(1.1);
    }

    /* Explore Button (Same as Search Gradient) */
    /* ================= ULTRA PREMIUM EXPLORE BUTTON ================= */

    .btn-explore {
        position: relative;
        background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
        background-size: 300% 300%;
        animation: gradientMove 6s ease infinite;
        border: none;
        color: #fff;
        font-weight: 700;
        padding: 14px 26px;
        border-radius: 12px;
        overflow: hidden;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: 0.4s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    /* Glow Pulse */
    .btn-explore::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 60%);
        animation: pulseExplore 3s infinite;
        opacity: 0.5;
    }

    @keyframes pulseExplore {

        0%,
        100% {
            transform: scale(0.8);
            opacity: 0.5;
        }

        50% {
            transform: scale(1);
            opacity: 0.2;
        }
    }

    /* Shine Sweep */
    .btn-explore::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        transform: skewX(-25deg);
        transition: 0.8s;
    }

    .btn-explore:hover::after {
        left: 125%;
    }

    /* Hover Lift */
    .btn-explore:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(0, 200, 83, 0.6);
    }

    /* Click Press */
    .btn-explore:active {
        transform: scale(0.95);
    }

    /* Lightning Animation */
    .explore-icon {
        transition: 0.3s ease;
    }

    .btn-explore:hover .explore-icon {
        animation: lightningBounce 0.6s ease;
    }

    @keyframes lightningBounce {
        0% {
            transform: translateY(0);
        }

        30% {
            transform: translateY(-4px);
        }

        60% {
            transform: translateY(2px);
        }

        100% {
            transform: translateY(0);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .btn-explore {
            width: 100%;
            justify-content: center;
            padding: 14px;
        }
    }


    /* ================= HOW TO BOOK SECTION ================= */

    .how-book-section {
        background: #f8fbff;
        position: relative;
    }

    .process-title {
        font-size: 36px;
    }

    /* Wrapper */
    .process-wrapper {
        position: relative;
    }

    /* Animated Progress Line */
    .process-line {
        position: absolute;
        top: 65px;
        left: 10%;
        width: 80%;
        height: 6px;
        background: rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        overflow: hidden;
        z-index: 0;
    }

    .process-line-fill {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #0d6efd, #00c853);
        transition: width 1.5s ease-out;
    }

    /* Cards */
    .process-card {
        background: #ffffff;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: 0.4s ease;
        position: relative;
        z-index: 2;
    }

    .process-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    }

    /* Step Number */
    .step-number {
        position: absolute;
        top: -15px;
        right: -15px;
        background: linear-gradient(135deg, #0d6efd, #00c853);
        color: white;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Floating Icon */
    .process-icon {
        font-size: 36px;
        margin-bottom: 15px;
        animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {

        0%,
        100% {
            transform: translateY(0);
        }

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

    /* Responsive */
    @media (max-width: 992px) {
        .process-line {
            display: none;
        }

        .process-title {
            font-size: 26px;
        }
    }

    /* Faqs */

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

    .faq-section {
        background: linear-gradient(135deg, #f8fbff, #e6f7ff);
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-wrapper {
        max-width: 800px;
        margin: auto;
    }

    /* FAQ Item */
    .faq-item {
        background: #ffffff;
        border-radius: 16px;
        margin-bottom: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        transition: 0.4s ease;
        position: relative;
    }

    .faq-item:hover {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    /* Question */
    .faq-question {
        width: 100%;
        background: none;
        border: none;
        padding: 18px 20px;
        font-weight: 600;
        font-size: 16px;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    /* Icon */
    .faq-icon {
        font-size: 22px;
        transition: 0.3s ease;
    }

    /* Answer */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease, padding 0.4s ease;
        padding: 0 20px;
    }

    .faq-answer p {
        margin: 15px 0;
        color: #555;
    }

    /* ACTIVE STATE GLOW */
    .faq-item.active {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12),
            0 0 20px rgba(13, 110, 253, 0.4);
    }

    /* Animated Gradient Border */
    .faq-item.active::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 2px;
        background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
        background-size: 300% 300%;
        animation: gradientGlow 4s ease infinite;
        -webkit-mask:
            linear-gradient(#fff 0 0) content-box,
            linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
    }

    /* Glow Animation */
    @keyframes gradientGlow {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    /* Active Question Highlight */
    .faq-item.active .faq-question {
        color: #0d6efd;
    }

    /* Icon Rotate + Glow */
    .faq-item.active .faq-icon {
        transform: rotate(45deg);
        color: #00c853;
        text-shadow: 0 0 10px rgba(0, 200, 83, 0.8);
    }

    /* Expand Answer */
    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 0 20px 15px;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .faq-title {
            font-size: 26px;
        }
    }

    /* ================= WHY SECTION ANIMATED ================= */

    .why-section {
        background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
        background-size: 400% 400%;
        animation: gradientMove 12s ease infinite;
        color: white;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .why-title {
        font-size: 36px;
    }

    /* Card */
    .why-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        border-radius: 18px;
        padding: 35px 25px;
        transition: 0.4s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .why-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    /* Icon */
    .why-icon {
        width: 70px;
        height: 70px;
        background: #ffffff;
        color: #0d6efd;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 30px;
        margin: 0 auto;
        transition: 0.3s ease;
    }

    .why-card:hover .why-icon {
        transform: rotate(8deg) scale(1.1);
    }

    /* Scroll Reveal Animation */
    .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: 1s ease;
    }

    .reveal.active {
        opacity: 1;
        transform: translateY(0);
    }

    /* Responsive */
    @media (max-width: 768px) {
        .why-title {
            font-size: 26px;
        }
    }


    /* get in touch */

    /* CONTACT SECTION */

    .contact-section {
        background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
        background-size: 400% 400%;
        animation: gradientMove 12s ease infinite;
        color: white;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .contact-title {
        font-size: 36px;
    }

    /* Cards */
    .contact-info-card,
    .contact-form-card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        padding: 35px 25px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    /* Contact Items */
    .contact-item {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        transition: 0.3s ease;
    }

    .contact-item:hover {
        transform: translateX(8px);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        background: #ffffff;
        color: #0d6efd;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-right: 15px;
    }

    /* Button */
    .btn-contact {
        background: linear-gradient(270deg, #ffffff, #d4f8e8, #ffffff);
        background-size: 300% 300%;
        animation: gradientMove 6s ease infinite;
        color: #0d6efd;
        font-weight: 700;
        border-radius: 12px;
        padding: 14px;
        border: none;
        transition: 0.3s ease;
    }

    .btn-contact:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    /* Validation */
    .form-control.error {
        border: 2px solid #ff4d4d;
        animation: shake 0.4s ease;
    }

    @keyframes shake {
        0% {
            transform: translateX(0);
        }

        25% {
            transform: translateX(-4px);
        }

        50% {
            transform: translateX(4px);
        }

        75% {
            transform: translateX(-4px);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* Success Icon */
    .success-icon {
        width: 70px;
        height: 70px;
        background: #00c853;
        color: white;
        font-size: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        animation: popScale 0.6s ease;
    }

    @keyframes popScale {
        0% {
            transform: scale(0);
        }

        80% {
            transform: scale(1.2);
        }

        100% {
            transform: scale(1);
        }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .contact-title {
            font-size: 26px;
        }
    }

    
    /* ================= SIMPLE FOOTER ================= */

.footer-simple {
    background: #111;
    color: #ccc;
}

.footer-logo {
    font-weight: 600;
    color: #fff;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00c853;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .footer-links {
        margin: 10px 0;
    }
}
/* get in touch */
/* CONTACT SECTION */

.contact-section {
    background: linear-gradient(270deg, #0d6efd, #00c853, #0d6efd);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    color: white;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.contact-title {
    font-size: 36px;
}

/* Cards */
.contact-info-card,
.contact-form-card {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    padding: 35px 25px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Contact Items */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

.contact-item:hover {
    transform: translateX(8px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    color: #0d6efd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-right: 15px;
}

/* Button */
.btn-contact {
    background: linear-gradient(270deg, #ffffff, #d4f8e8, #ffffff);
    background-size: 300% 300%;
    animation: gradientMove 6s ease infinite;
    color: #0d6efd;
    font-weight: 700;
    border-radius: 12px;
    padding: 14px;
    border: none;
    transition: 0.3s ease;
}

.btn-contact:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Validation */
.form-control.error {
    border: 2px solid #ff4d4d;
    animation: shake 0.4s ease;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-4px); }
    100% { transform: translateX(0); }
}

/* Success Icon */
.success-icon {
    width: 70px;
    height: 70px;
    background: #00c853;
    color: white;
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    animation: popScale 0.6s ease;
}

@keyframes popScale {
    0% { transform: scale(0); }
    80% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .contact-title {
        font-size: 26px;
    }
}

/* ================= SIMPLE FOOTER ================= */

.footer-simple {
    background: #111;
    color: #ccc;
}

.footer-logo {
    font-weight: 600;
    color: #fff;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover {
    color: #00c853;
}

/* Responsive spacing */
@media (max-width: 768px) {
    .footer-links {
        margin: 10px 0;
    }
}

    </style>