:root {
    --primary-purple: #7b5cff;
    --secondary-purple: #6a4df4;
    --light-purple: #9f85ff;
    --accent-teal: #4de0bd;
    --dark-purple: #4a3aa7;
    --dark-blue: #1a1a2e;
    --light-gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    color: #333;
}

/* Gradient Backgrounds */
.bg-gradient-purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    position: relative;
}

.bg-gradient-purple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.pixabay.com/photo/2018/03/22/02/37/background-3249063_1280.png');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

/* Navigation */
.navbar {
    padding: 1.2rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(106, 77, 244, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: white;
    letter-spacing: -0.5px;
}

.navbar-brand span {
    color: var(--accent-teal);
    position: relative;
}

.navbar-brand span::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    top: 0;
    right: -8px;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    margin: 0 0.8rem;
    position: relative;
    padding: 0.5rem 0;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--accent-teal);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}

/* Buttons */
.btn-demo {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 30px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn-demo:hover::before {
    left: 100%;
}

.btn-demo:hover {
    background-color: #252542;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 26, 46, 0.4);
}

.btn-login {
    color: white;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    position: relative;
}

.btn-login::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: white;
    color: white !important;
    bottom: 0.5rem;
    left: 1.5rem;
    transition: width 0.3s ease;
}

.btn-login:hover::after {
    width: calc(100% - 3rem);
}

/* Hero Section */
.hero-section {
    padding: 3rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.accent-text {
    color: var(--accent-teal);
    position: relative;
    display: inline-block;
}

/* .accent-text::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    background-color: rgba(77, 224, 189, 0.3);
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
} */

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background-color: var(--dark-blue);
    color: white;
    border-radius: 30px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    box-shadow: 0 10px 25px rgba(26, 26, 46, 0.3);
}

.hero-btn:hover {
    background-color: #252542;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 26, 46, 0.4);
}

.hero-btn i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: translateX(5px);
}

/* Ratings Box */
.ratings-box {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    margin-top: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ratings-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ratings-logo {
    height: 35px;
    margin-right: 1.2rem;
}

.ratings-stars {
    color: #ffcc00;
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.ratings-text {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: 1;
}

.shape-1 {
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    top: 15%;
    left: 8%;
    transform: rotate(45deg);
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 50px;
    height: 150px;
    background-color: var(--accent-teal);
    border-radius: 30px;
    top: 25%;
    left: 3%;
    opacity: 0.5;
    animation: float 8s ease-in-out infinite 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background-color: #ff6b6b;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    opacity: 0.3;
    animation: float 7s ease-in-out infinite 0.5s;
}

.shape-4 {
    width: 120px;
    height: 40px;
    background-color: rgba(77, 224, 189, 0.4);
    border-radius: 20px;
    bottom: 20%;
    right: 5%;
    transform: rotate(-30deg);
    animation: float 9s ease-in-out infinite 1.5s;
}

.shape-5 {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    bottom: 15%;
    left: 15%;
    transform: rotate(20deg);
    animation: float 8s ease-in-out infinite 2s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }

    100% {
        transform: translateY(0) rotate(0deg);
    }
}

/* Dashboard Image */
.dashboard-container {
    /* position: absolute; */
    margin-top: 4rem;
    padding: 0 1rem;
}

.img-banner-contrainer {
    margin-top: -130px;
}

.dashboard-img {
    max-width: 100%;
    border-radius: 20px;
    /* box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); */
    transition: all 0.5s ease;
    transform: translateY(0);
    position: relative;
    z-index: 2;
}

.dashboard-container:hover .dashboard-img {
    transform: translateY(-10px);
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.3);
}

.dashboard-glow {
    position: absolute;
    width: 80%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(123, 92, 255, 0.5) 0%, rgba(123, 92, 255, 0) 70%);
    border-radius: 60%;
    bottom: -20px;
    left: 10%;
    z-index: 1;
    filter: blur(10px);
}

/* Features Section */
.features-section {
    background-color: var(--light-gray);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.pixabay.com/photo/2018/03/22/02/37/background-3249063_1280.png');
    background-size: cover;
    opacity: 0.03;
    pointer-events: none;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center !important;
    color: #333;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.feature-card {
    background-color: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(123, 92, 255, 0.1) 0%, rgba(77, 224, 189, 0.1) 100%);
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(106, 77, 244, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 25px rgba(106, 77, 244, 0.4);
}

.feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #333;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-title::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.feature-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.feature-link {
    color: var(--primary-purple);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-link:hover {
    color: var(--secondary-purple);
}

.feature-link:hover i {
    transform: translateX(5px);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background-color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f8f9fa;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card {
    background-color: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    margin: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(123, 92, 255, 0.1);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid rgba(123, 92, 255, 0.2);
}

.testimonial-info h5 {
    font-weight: 700;
    margin-bottom: 0.2rem;
    color: #333;
}

.testimonial-info p {
    color: #777;
    font-size: 0.9rem;
}

.testimonial-rating {
    color: #ffcc00;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.pixabay.com/photo/2018/03/22/02/37/background-3249063_1280.png');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background-color: white;
    color: var(--primary-purple);
    border-radius: 30px;
    padding: 1rem 2.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    background-color: var(--accent-teal);
    color: white;
}

.cta-btn i {
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: white;
    /* padding: 6rem 0 2rem; */
    position: relative;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://cdn.pixabay.com/photo/2018/03/22/02/37/background-3249063_1280.png');
    background-size: cover;
    opacity: 0.05;
    pointer-events: none;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.footer-logo span {
    color: var(--accent-teal);
    position: relative;
}

.footer-logo span::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--accent-teal);
    border-radius: 50%;
    top: 0;
    right: -8px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--accent-teal));
    bottom: 0;
    left: 0;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
    color: var(--accent-teal);
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-icon:hover {
    background-color: var(--accent-teal);
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 10px 20px rgba(77, 224, 189, 0.3);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    /* margin-top: 4rem; */
    /* padding: 2rem 0rem; */
    /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
    position: relative;
    z-index: 1;
}

.copyright a {
    color: var(--accent-teal);
    text-decoration: none;
    transition: all 0.3s ease;
}

.copyright a:hover {
    color: white;
}

/* Newsletter Form */
.newsletter-form {
    position: relative;
    margin-top: 1.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 30px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(77, 224, 189, 0.3);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border-radius: 25px;
    border: none;
    background-color: var(--accent-teal);
    color: white;
    padding: 0 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #3bc9a7;
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 2.5rem;
    }

    .navbar-collapse {
        background-color: rgba(74, 58, 167, 0.98);
        padding: 1.5rem;
        border-radius: 15px;
        margin-top: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar-nav .nav-link {
        padding: 0.8rem 0;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
        padding: 3rem 0 4rem;
    }

    .shape {
        display: none;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .feature-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-heading {
        margin-top: 2rem;
    }
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.active {
    opacity: 1;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-teal);
    animation: spin 1s infinite linear;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll to top button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 5px 15px rgba(106, 77, 244, 0.3);
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: var(--secondary-purple);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(106, 77, 244, 0.4);
}

.custom-input,
.custom-textarea {
    /* background-color: rgba(123, 92, 255, 0.08); */
    border-radius: 16px;
    border: 1px solid rgba(123, 92, 255, 0.2);
    padding: 1rem 1.5rem;
    /* color: white; */
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(26, 26, 46, 0.1);
}

.custom-input::placeholder,
.custom-textarea::placeholder {
    /* color: rgba(255, 255, 255, 0.6); */
    font-weight: 300;
}

.custom-input:focus,
.custom-textarea:focus {
    outline: none;
    /* background-color: rgba(123, 92, 255, 0.12); */
    border-color: var(--accent-teal);
    box-shadow: 0 0 0 3px rgba(77, 224, 189, 0.25);
}

.custom-textarea {
    resize: none;
    min-height: 120px;
    border-radius: 18px;
}

/* Add a subtle gradient effect on hover */
.custom-input:hover,
.custom-textarea:hover {
    /* background-color: rgba(123, 92, 255, 0.1); */
    border-color: rgba(77, 224, 189, 0.4);
}

/* Style for the form container if needed */
.contact-form {
    background-color: var(--dark-blue);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.btn-primary{
    background-color: var(--accent-teal) ;
    color: white;
    border-radius: 30px;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(26, 26, 46, 0.3);
}

.btn-primary:hover{
    background-color: #3bc9a7;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 26, 46, 0.4);
}

.btn-primary i{
    margin-left: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i{
    transform: translateX(5px);
}

