@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
    --primaryColor: #1881e4;
    --whiteColor: #fff;
    --blackColor: #000;
    --bg-deep: #0a052e;
    --card-bg: rgba(255, 255, 255, 0.03);
    --blue-glow: #00d2ff;
    --teal-glow: #00ffd5;
    --pink-glow: #ff2d85;
    --purple-glow: #a020f0;
    --dark-blue-glow: #3a47d5;
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --starter-glow: rgba(0, 150, 255, 0.6);
    --pro-glow: rgba(180, 70, 255, 0.6);
    --business-glow: rgba(255, 160, 60, 0.6);
    --text-white: #ffffff;
}

input::placeholder {
  color: #fff;
}

input {
  font-size: 24px;
  color: #fff;
}

input#main-button {
    width: fit-content;
	margin-top: 20px;
}

div#Step_1 {
    background-color: #090e43;
    padding: 10px;
    width: fit-content;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Open Sans", sans-serif;
    ;
    font-size: 16px;
    font-weight: 400;
    color: var(--whiteColor);
    background: #0a0f46;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-weight: 700;
}

p,
figure,
label {
    margin: 0;
}

img {
    max-width: 100%;
    vertical-align: middle;
}

small {
    font-size: inherit;
}

a {
    /* display: inline-block; */
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

a:hover {
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

input,
button {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
}

input[type=number] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

select {
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(images/select-input-arrow.png);
    background-repeat: no-repeat;
    background-size: 15px;
    background-position: calc(100% - 15px) 50%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

::selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-webkit-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

::-moz-selection {
    color: var(--whiteColor);
    background: var(--primaryColor);
}

.text-primary {
    color: var(--primaryColor) !important;
}

.font-medium {
    font-weight: 500 !important;
}

.font-semibold {
    font-weight: 600 !important;
}

.bg-included {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.absolute-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.flex-col-between {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gap-x-26 {
    row-gap: 26px;
}

.scrolltotop {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: var(--primaryColor);
    text-align: center;
    font-size: 22px;
    color: #ffffff;
    position: fixed;
    right: 30px;
    bottom: 25px;
    display: none;
    animation: lab_top_up 5s linear infinite;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
}

.scrolltotop i {
    color: var(--whiteColor);
}

@keyframes lab_top_up {
    0% {
        transform: translateY(-15px);
    }
    50% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
    }
}

.pluse,
.pluse2 {
    position: relative;
    top: 10px;
    left: -8px;
    z-index: -1;
}

.pluse::before,
.pluse2::before {
    width: 40px;
    height: 40px;
}

.pluse::after,
.pluse::before,
.pluse2::after,
.pluse2::before {
    background: var(--primaryColor);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    left: 0;
}

.pluse::after,
.pluse2::after {
    width: 30px;
    height: 30px;
    background: transparent;
    margin-left: -15px;
    margin-top: -15px;
}

.pluse::before {
    -webkit-animation: pluse_animate 2.5s infinite linear;
    animation: pluse_animate 2.5s infinite linear;
}

.pluse2::before {
    -webkit-animation: pluse_animate 3s infinite linear;
    animation: pluse_animate 3s infinite linear;
}

@keyframes pluse_animate {
    0% {
        opacity: 1;
        -webkit-transform: translate(-50%, -50%) scale(0.3);
        transform: translate(-50%, -50%) scale(0.3);
    }
    100% {
        opacity: 0;
        -webkit-transform: translate(-50%, -50%) scale(2);
        transform: translate(-50%, -50%) scale(2);
    }
}

/*======= header-area design =======*/

.header-area {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    padding-block: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 100;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo a img {
    max-width: 80px;
}

.logo a span {
    font-size: 25px;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
}

.header-right ul {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-right ul a {
    font-size: 18px;
    font-weight: 600;
}

.header-right ul .line {
    width: 1px;
    height: 30px;
    background: var(--whiteColor);
    opacity: 0.6;
}

.action-btn, .form-control-submit {
    position: relative;
    /* display: inline-flex; */
    align-items: center;
    padding: 10px 36px;
    font-size: 25px !important;
    font-weight: 600;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    background: linear-gradient(to right, #6366f1, #a855f7, #ec4899);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    overflow: hidden;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
      margin-right: 20px;
}

.action-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}

.action-btn:hover {
    box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
    filter: brightness(1.1);
}

.hamburger .line {
    width: 50px;
    height: 5px;
    background-color: #ecf0f1;
    display: block;
    margin: 8px auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    border-radius: 5px;
}

.hamburger:hover {
    cursor: pointer;
}

#hamburger-1.is-active .line:nth-child(2) {
    opacity: 0;
}

#hamburger-1.is-active .line:nth-child(1) {
    -webkit-transform: translateY(13px) rotate(45deg);
    -ms-transform: translateY(13px) rotate(45deg);
    -o-transform: translateY(13px) rotate(45deg);
    transform: translateY(13px) rotate(45deg);
}

#hamburger-1.is-active .line:nth-child(3) {
    -webkit-transform: translateY(-13px) rotate(-45deg);
    -ms-transform: translateY(-13px) rotate(-45deg);
    -o-transform: translateY(-13px) rotate(-45deg);
    transform: translateY(-13px) rotate(-45deg);
}

.header-right ul.active {
    left: 0;
}

.header-area.nav-fixed {
    backdrop-filter: blur(10px);
}

/*=========== hero area style start hare ========== */

.hero-area {
    background: url(images/hero-bg.png-lrg.webp) no-repeat;
    background-size: cover;
    background-position: 50% 10%;
    /* background-attachment: fixed; */
}

.hero-wrapper {
    min-height: 100dvh;
    padding-block: 191px;
}

.hero-content {
    width: 100%;
    max-width: 720px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hero-content h2 {
    font-size: 60px;
    font-weight: 900;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.hero-content h2 span {
    color: #71D9FD;
}

.hero-border-line {
    height: 3px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(75, 107, 182, 0.18) 100%);
}

.hero-content p {
    font-size: 25px;
    max-width: 500px;
    font-weight: 600;
}

.hero-action a {
    font-size: 25px !important;
}

.LogIn {
	
	display:flex; gap:10px; justify-content: center; width: fit-content;
	
	a {
		font-size: 20px;
		margin-top: 20px;
		white-space: nowrap;
	}
  
}

/*=============== hero area end hare ========== */

/*========== features area start hare ========= */

.feature-area {
    padding-block: 100px;
    /* background: url(images/bg1.png-lrg.webp) no-repeat; */
    background-size: cover;
    background-position: center;
}

.section-top {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(75, 107, 182, 0.18) 100%);
}

.section-title span.left-line {
    background: linear-gradient(90deg, rgba(75, 107, 182, 0.18) 0%, rgba(255, 255, 255, 1) 65%);
}

.section-title h2 {
    font-size: 60px;
    font-weight: 900;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.section-top p {
    font-size: 25px;
    text-align: center;
    font-weight: 600;
}

.features-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding-top: 100px;
}

.single-feature-item {
    background: url(images/f-bg-1.png-lrg.webp) no-repeat;
    background-size: 100% 100%;
    border-radius: 20px;
    padding: 20px;
}

.single-feature-item h2 {
    text-align: center;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
    gap: 25px;
}

/* Complex Shadow Engine for Inset and Outset Glow */

.card-blue {
    --active-color: var(--blue-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--active-color), inset 0 0 20px var(--active-color);
}

.card-teal {
    --active-color: var(--teal-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--active-color), inset 0 0 20px var(--active-color);
}

.card-pink {
    --active-color: var(--pink-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--active-color), inset 0 0 20px var(--active-color);
}

.card-purple {
    --active-color: var(--purple-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--active-color), inset 0 0 20px var(--active-color);
}

.card-dark-blue {
    --active-color: var(--dark-blue-glow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--active-color), inset 0 0 20px var(--active-color);
}

/* Neon Border Mask */

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(180deg, var(--active-color), rgba(255, 255, 255, 0.1) 40%, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.9;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--active-color), inset 0 0 20px var(--active-color);
}

.icon-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.icon-wrapper img {
    filter: drop-shadow(0 0 15px var(--active-color));
    width: fit-content;
    max-width: 150px;
    max-height: 125px;
    object-fit: contain;
}

.feature-title {
    color: var(--whiteColor);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.feature-bottom-icons {
    display: flex;
    align-items: start;
    gap: 60px;
    margin-top: 5%;
    padding-bottom: 2%;
}

.feature-bottom-icons img {
    max-width: 200px;
}

.feature-bottom-icons img:first-child {
    max-width: 150px;
}

.feature-bottom-icons img:nth-child(2) {
    max-width: 150px;
    margin-top: 4%;
}

.feature-bottom-icons img:nth-child(3) {
    max-width: 150px;
    margin-top: 4%;
}

.feature-btm-content p {
    font-size: 30px;
    text-align: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(180deg, var(--active-color), rgba(255, 255, 255, 0.1) 40%, transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.9;
}

/* domain area start hare  */

.domain-search {
    position: relative;
}

.domain-search img {
    width: 100%;
}

.domain-seaarch-wrapper {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.domain-inner-wp {
    padding-block: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars-container {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(1px 1px at 20px 30px, #fff, rgba(0, 0, 0, 0)), radial-gradient(1px 1px at 40px 70px, #fff, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0));
    background-size: 200px 200px;
    opacity: 0.3;
    z-index: -1;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 6px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.4) 0%, rgba(147, 51, 234, 0.4) 50%, rgba(236, 72, 153, 0.4) 100%);
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 57vw;
    backdrop-filter: blur(8px);
    margin-inline: auto;
    margin-top: -13%;
}

.input-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px 0 0 8px;
    height: 65px;
}

.search-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #d1d5db;
    font-size: 26px;
    width: 100%;
    font-weight: 500;
}

.search-wrapper input::placeholder {
    color: rgba(209, 213, 231, 0.6);
}

.domain-suffix {
    color: #fff;
    font-weight: 700;
    font-size: 25px;
    margin-left: 10px;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    flex: 1;
}

.search-wrapper .action-btn {
    font-size: 22px;
}

/*========= domain search area end hare ========= */

/*============= pricing area start harea ========= */

.pricing-area {
    padding-block: 100px;
    background: url(images/bg4.png-lrg.webp) no-repeat;
    background-size: cover;
    background-position: center;
    background-color:#7228ae;
    background-blend-mode: luminosity;
}

.pricing-wrapper {
    padding-top: 50px;
}

.pricing-container {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    margin-inline: auto;
}

/* Pricing Card Base */

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    width: 320px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

/* Specific Glow Colors */

.pricing-card.starter {
    border-color: #0096ff;
    box-shadow: 0 0 20px var(--starter-glow);
}

.pricing-card.professional {
    border-color: #b446ff;
    box-shadow: 0 0 20px var(--pro-glow);
}

.pricing-card.business {
    border-color: #ffaa3c;
    box-shadow: 0 0 20px var(--business-glow);
}

/* Star Icons at the top */

.card-stars {
    display: flex;
    gap: 5px;
    align-items: end;
    position: absolute;
    left: 50%;
    top: -19px;
    transform: translateX(-50%);
}

.card-stars svg {
    width: 24px;
    height: 24px;
}

.starter .card-stars svg {
    fill: #00d2ff;
    filter: drop-shadow(0 0 5px #00d2ff);
}

.professional .card-stars svg {
    fill: #d480ff;
    filter: drop-shadow(0 0 5px #d480ff);
}

.business .card-stars svg {
    fill: #ffcc33;
    filter: drop-shadow(0 0 5px #ffcc33);
}

/* Typography */

.plan-name {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.price span {
    font-size: 1.2rem;
    font-weight: 400;
    opacity: 0.8;
}

.billing-cycle {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
}

/* Features List */

.features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    font-size: 18px;
    opacity: 0.9;
    font-weight: 700;
}

.features li::before {
    content: '✓';
    margin-right: 12px;
    font-weight: bold;
}

.starter .features li::before {
    color: #00d2ff;
}

.professional .features li::before {
    color: #d480ff;
}

.business .features li::before {
    color: #ffcc33;
}

/* Button Styling */

.btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn:active {
    transform: scale(0.98);
}

.btn:hover {
    opacity: 0.9;
}

.starter .btn {
    background: linear-gradient(to right, #0072ff, #00c6ff);
}

.professional .btn {
    background: linear-gradient(to right, #8e2de2, #4a00e0);
}

.business .btn {
    background: linear-gradient(to right, #f2994a, #f2c94c);
}

.card-stars svg {
    width: 40px;
    height: 40px;
}

.feature-btm-content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-btm-content span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 35%, rgba(75, 107, 182, 0.18) 100%);
}

.feature-btm-content span.left-line {
    background: linear-gradient(90deg, rgba(75, 107, 182, 0.18) 0%, rgba(255, 255, 255, 1) 65%);
}

.pricing-area .feature-btm-content {
    margin-top: 7%;
}

/* faq area  */

.faq-area {
    /* background: url(images/bg4.png-lrg.webp) no-repeat; */
    background-size: cover;
    background-position: center;
    padding-block: 100px;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.faq-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 50px;
}

/* Common Card Styles */

.glass-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

/* Neon Border Glows */

.blue-glow {
    box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.1), 0 0 10px rgba(0, 229, 255, 0.1);
    border-color: rgba(0, 229, 255, 0.3);
}

.purple-glow {
    box-shadow: inset 0 0 15px rgba(189, 0, 255, 0.1), 0 0 10px rgba(189, 0, 255, 0.1);
    border-color: rgba(189, 0, 255, 0.3);
}

.glass-card:hover {
    transform: scale(1.01);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Icon Container */

.icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.3), rgba(0, 229, 255, 0.1));
    border: 1.5px solid #00e5ff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 15px #00e5ff;
}

.purple-glow .icon-box {
    background: linear-gradient(135deg, rgba(189, 0, 255, 0.3), rgba(189, 0, 255, 0.1));
    border-color: #bd00ff;
    box-shadow: 0 0 15px #bd00ff;
}

.icon-box svg {
    width: 24px;
    height: 24px;
    fill: white;
}

/* Content Styles */

.content h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.6);
}

.content p {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Grid Layout for middle row */

.faq-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 24px;
}

/* Footer Flex Layout */

.faq-footer {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

.faq-footer .glass-card {
    flex: 1;
}

/* Contact Us Button */

.contact-btn {
    width: 210px;
    background: linear-gradient(90deg, #7c3aed, #db2777);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    text-decoration: none;
    margin-block: auto;
    padding-block: 10px;
}

.contact-btn:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.6);
}

.contact-btn svg {
    width: 28px;
    height: 28px;
}

.glass-card .content {
    flex: 1;
}

.glass-card .action-btn {
    white-space: nowrap;
    width: 150px;
}

.faq-area .ractangle {
    position: absolute;
    top: 5%;
    left: 75%;
    z-index: -1;
    width: 100%;
    max-width: 380px;
}

.faq-area .feature-btm-content {
    margin-top: 5%;
}




















.form-control::placeholder {
  color: #fff;
}

.form-control {
    color: #fff;
    background-color: #090e43;

}

.form-control:focus {
    color: #fff;
    background-color: #090e43;
}
