html {
    position: relative;
    scroll-behavior: smooth;
    /* background-color: #18181b; */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    transition:  color 0.3s linear;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    background: #18181b;
}


/* Styling for navigation links */
.nav-link {
    position: relative;
    padding-bottom: 4px;
}

/* Styling for the underline effect on navigation links */
.nav-link::after {
    content: '';
    background-color: #1d4ed8;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    transition: width 0.5s ease;
}

/* Hover effect for navigation links */
.nav-link:hover::after {
    width: 70%;
}

.nav-link-mob::after {
    content: '';
    background-color: #FBBF24;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    transition: width 0.5s ease;
}

.nav-link-mob:hover::after {
    width: 100%;
}

.mobile-menu {
    width: 100%;
    background: rgba(0, 0, 0, 0.17);
    color: #ccc;
    margin-bottom: 2rem;
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 50px;
    padding: 2rem;
    position: relative;
    bottom: 1.5rem;
    box-shadow: -2px 14px 20px -1px rgba(157, 156, 156, 0.1), 0 2px 20px 0px rgba(144, 143, 143, 0.06);
}

.mobile-menu.active {
    display: flex;
}

@media (min-width : 1024px) {
    .mobile-menu.active {
        display: none;
    }
}

.ham-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

.ham-icon div {
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background-color: #fff;
    /* Changed to black for visibility */
    transition: transform 0.4s ease, opacity 0.3s ease;
    transition-delay: 0.3ms;
    outline: none;
    /* Ensure transitions are specified */
}

.ham-icon.active div:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);

}

.ham-icon.active div:nth-child(2) {
    opacity: 0;
}

.ham-icon.active div:nth-child(3) {
    transform: translateY(-6px) rotate(45deg);
}

.blur4 {
    position: absolute;
    top: 15rem;
    z-index: -100;
    box-shadow: 0 0 1000px 50px #1d4ed8;
}

/* Styling for the header image */
.head-img {
    width: 20rem;
}

/* Blur effect */
.blur {
    position: absolute;
    margin: 5rem 0 0 10rem;
    z-index: -100;
    box-shadow: 0 0 1000px 50px #1d4ed8;
}

.blur2 {
    position: absolute;
    z-index: -100;
    box-shadow: -3px 20px 90px 60px #1d4ed8;
}

/* Text styling */
strong {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px #fff;
}

/* Card styling */
.card {
    border: 2px solid transparent;
    cursor: pointer;
    color: #ccc;
}

/* Hover effect for card elements */
.card:hover {
    background-color: #323232;
    border-color: #fff;
    transition: all 0.4s linear;
    transform: translateY(-5px) scale(1.02);
    /* Lift and slightly scale up on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    /* Add shadow for depth */
}

/* Hover effect for pricing card elements */
.pricing-card:hover {
    background-color: #323232;
    border-color: #fff;
    transform: translateY(-5px) scale(1.02);
    /* Lift and slightly scale up on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    /* Add shadow for depth */
}

/* Styling for dashed border elements */
.border-dash {
    border-bottom: 2px dashed #ccc;
    margin: 0;
    /* Remove margin */
    padding: 0;
    /* Ensure padding is zero */
    width: 100%;
    /* Ensure it takes the full width of the container */
    box-sizing: border-box;
    /* Include padding and border in the element's total width and height */
}


/* Join button styling */
.join-btn {
    border: 2px solid #fff;
}

/* Hover effect for join button elements */
.join-btn:hover {
    background-color: #1d4ed8;
    border-color: #1d4ed8;
    transition: all 0.3s linear;
}

/* Logo transition styling */
.logo-transition {
    border: 1px solid #ccc;
    background-color: transparent;

}

/* Hover effect for logo transition elements */
.logo-transition:hover {
    background-color: #1d4ed8;
    border: transparent;
    transition: all 0.3s linear;
}

/* Main logo styling */
.main-logo {
    width: 95px;
    border-radius: 50%;
}

/* Hover effect for the main logo */
.main-logo:hover {
    transition: all 0.3s linear;
    width: 85px;
}

/* Additional blur effect */
.blur3 {
    position: absolute;
    margin-right: 10rem;
    z-index: -100;
    box-shadow: 0 0 1000px 50px #1d4ed8;
}

/* Form styling */
.form {
    border: 2px solid #fffff0;
    background: #18181b;
    box-shadow: 0px 1px 10px 1px rgb(255, 255, 255);
}

/* Send message button styling */
.send-msg-btn {
    border: 2px solid transparent;
    background-color: #1d4ed8;
}

/* Hover effect for send message button elements */
.send-msg-btn:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    transition: all 0.3s linear;
}

.trans {
    transition: all 0.3s ease;
}

.trans:hover {
    color: #1d4ed8;
}


/* Input field styling */
.input {
    width: 40rem;
}



.text-cards {
    border: 2px solid transparent;
    box-shadow: 0px 0px 20px 2px grey;
}

.text-cards:hover {
    transition: all 0.5s linear;
    border: 1px solid #ccc;
    max-width: 49rem;
    padding: 2rem;
}


.profile-card {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.profile-card:hover {
    border-color: #fff;
    background-color: #323232;
    transform: translateY(-5px) scale(1.02);
    /* Lift and slightly scale up on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    /* Add shadow for depth */
}

.profile-card:hover img {
    transform: scale(1.1);
    /* Scale up the image on hover */
}

.profile-text {
    opacity: 0;
}

.profile-text.show {
    opacity: 1;
}


.what-we-do-card {
    border: 2px solid transparent;
    height: 15rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #27272a;
    font-size: 14px;


}

.what-we-do-card:hover {
    border-color: #fff;
    background-color: #323232;
    transform: translateY(-5px) scale(1.02);
    /* Lift and slightly scale up on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    /* Add shadow for depth */
    transition: all 0.4s ease;
}

.main-container {
    box-shadow: 0px 0px 5px 0px #fff;
}

.terms-paras {
    border: 2px solid transparent;
    width: 70vw;
    border-radius: 10px;
}

.terms-paras:hover {
    border-color: #ccc;
    transform: scale(1.02);
    transition: all 0.4s ease-in;
}


.icon-container {
    background-color: #1e40af;
    height: 64px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    border-radius: 5px;
}

.icon-container i {
    font-size: 2.2rem;
    color: #ccc;
}

.faq {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.faq:hover {
    border-color: #fff;
    background-color: #323232;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.faq-answer-1,
.faq-answer-2,
.faq-answer-3,
.faq-answer-4,
.faq-answer-5,
.faq-answer-6,
.faq-answer-7,
.faq-answer-8,
.faq-answer-9,
.faq-answer-10 {
    opacity: 0;
}

.faq-answer-1.smooth,
.faq-answer-2.smooth,
.faq-answer-3.smooth,
.faq-answer-4.smooth,
.faq-answer-5.smooth,
.faq-answer-6.smooth,
.faq-answer-7.smooth,
.faq-answer-8.smooth,
.faq-answer-9.smooth,
.faq-answer-10.smooth {
    opacity: 1;

}



.icon {
    transition: transform .3s linear, fill .3s linear;
}

/* body, */
.theme-toggler-desktop,
.theme-toggler-sm,
.icon,
.webkit,
.logo-transition {
    transition: all 0.3s linear;
}