        :root {
            --primary-color: #22e4ac;
            --secondary-color: #08b3e5;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }


        @font-face {
            font-family: "Gilroy";
            src: url("./assets/Gilroy-Light.otf") format("opentype");
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: "Gilroy";
            src: url("./assets/Gilroy-ExtraBold.otf") format("opentype");
            font-weight: 800;
            font-style: normal;
        }

        body {
            color: white;
            font-family: "Gilroy", sans-serif;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        p {
            font-weight: 300;
            /* Gilroy-Light */
        }

        .bold,
        .fw-bold {
            font-weight: 800;
            /* Gilroy-ExtraBold */
        }

        .gradient-bg {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .nav-link {
            color: white !important;
        }

        .why-card {
            height: 100%;
        }

        .hero-icons img {
            width: 70px;
            background: white;
            border-radius: 10px;
            padding: 10px;
        }

        .text-primary {
            /* color: rgb(255, 255, 255) !important; */
            color: #ffffff !important;
            font-weight: 700 !important;
            font-size: 1.5rem;
        }

        .green-icons {
            color: #61c7b9 !important;

        }



        .country-card {
            background-color: white;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 0.8rem;
            box-shadow: 2px 2px 5px #00000017;
        }


        a {
            color: #f8f9fa !important;
            text-decoration: none !important;
        }

        /* .country-card p {
            color: rgb(107 107 107) !important;
            font-weight: 700;
            font-size: 1.4rem;
        } */


        .form-label {
            color: #737373;
        }

        .bg-primary {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }


        .btn-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white !important;
            border: none !important;
            transition: 0.3s all;
            padding: 0.6rem 2rem !important;

        }

        .btn-outline-primary {
            border: 1px solid var(--secondary-color);
            color: rgb(72, 72, 72) !important;
            border: none;
            transition: all 0.3s;
        }

        .btn-outline-primary:hover {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
            color: rgb(255, 255, 255) !important;
            border: none;
            transition: all 0.3s;
        }

        .btn-outline-light:hover {
            color: rgb(0, 0, 0) !important;

        }

        .badge {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            padding: 0 !important;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            /* Optional styling */
            font-size: 1.7rem !important;
            margin-bottom: 2rem;
        }


        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
        }

        .hero-img {
            height: 34rem;

        }

        .nav-link {
            font-weight: 500;
            padding: 0.5rem 1rem;
        }

        .navbar {
            background: #f8f9fa3b;
            backdrop-filter: blur(39px);

        }

        .hero-section {
            padding: 3rem 0;
            background-color: var(--light-color);
        }

        .pricing-card {
            transition: all 0.3s;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .pricing-card .card {
            height: 100%;

        }

        .pricing-card .card .card-body {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .pricing-header {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 1.5rem;
        }

        .pricing-popular {
            position: absolute;
            top: -10px;
            right: 20px;
            background-color: #ffbe0b;
            color: var(--dark-color);
            padding: 0.25rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .testimonial-card {
            border-radius: 10px;
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .footer {
            background-color: var(--dark-color);
            color: white;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: white;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .social-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-3px);
        }

        @media screen and (max-width: 765px) {

            .navbar-expand-lg {
                padding: 1rem !important;
            }
        }