* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #0f0f0f;
    color: #e0e0e0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(3, 28, 82, 0.3) 0%, transparent 70%),
        url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"%3E%3Ccircle cx="100" cy="100" r="80" fill="none" stroke="%23FFFFFF10" stroke-width="20"/%3E%3C/svg%3E') repeat;
    z-index: -2;
    animation: subtleMove 20s linear infinite;
}

@keyframes subtleMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

/* Navbar */
/* Ensure the base styles remain intact */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: linear-gradient(145deg, rgba(3, 28, 82, 0.8), rgba(15, 15, 15, 0.8));
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(15px);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0.95;
}

.navbar.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.logo {
    font-size: 34px;
    font-weight: 900;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 4px;
    position: relative;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, text-shadow 0.4s ease;
}

.logo span {
    color: #a0a0ff;
    font-weight: 400;
    margin-right: 6px;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #a0a0ff);
    transition: width 0.4s ease;
}

.logo:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.logo:hover::after {
    width: 100%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    position: relative;
    padding: 10px 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    animation-delay: calc(0.12s * var(--i));
}

.nav-links a:nth-child(1) { --i: 1; }
.nav-links a:nth-child(2) { --i: 2; }
.nav-links a:nth-child(3) { --i: 3; }
.nav-links a:nth-child(4) { --i: 4; }
.nav-links a:nth-child(5) { --i: 5; }
.nav-links a:nth-child(6) { --i: 6; }

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 12px;
    transition: border-color 0.3s ease;
    z-index: -1;
}

.nav-links a:hover {
    color: #ffffff;
    transform: scale(1.08);
}

.nav-links a:hover::before {
    border-color: rgba(255, 255, 255, 0.4);
}

.quote-btn {
    background: linear-gradient(to right, #031C52, #a0a0ff);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.quote-btn:hover {
    background: linear-gradient(to right, #a0a0ff, #031C52);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.quote-btn:hover::before {
    left: 100%;
}

/* Hamburger base styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }

    .logo {
        font-size: 28px;
        letter-spacing: 3px;
    }

    .nav-links {
        gap: 25px;
    }

    .nav-links a {
        font-size: 16px;
        padding: 8px 12px;
    }

    .quote-btn {
        padding: 10px 20px;
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
        clip-path: none; /* Remove clip-path for mobile */
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(145deg, rgba(3, 28, 82, 0.95), rgba(15, 15, 15, 0.95));
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        margin: 15px 0;
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }

    .quote-btn {
        margin: 15px 0;
        width: fit-content;
        align-self: center;
    }

    /* Hamburger to X animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo {
        font-size: 24px;
        letter-spacing: 2px;
    }

    .hamburger {
        width: 25px;
        height: 18px;
    }

    .hamburger span {
        height: 2.5px;
    }

    .nav-links a {
        font-size: 16px;
        margin: 12px 0;
    }

    .quote-btn {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}




/* footer design  */

/* Footer */
.footer {
    padding: 80px 80px 40px;
    background: linear-gradient(145deg, #031C52, rgba(15, 15, 15, 0.9));
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.8;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-section {
    max-width: 25%;
    animation: fadeInUp 1.2s ease-out;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #a0a0ff;
    transition: width 0.3s ease;
}

.footer-section h3:hover::after {
    width: 50px;
}

.footer-section p, .footer-section a {
    font-size: 15px;
    color: #d0d0d0;
    line-height: 2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-section a[href^="mailto:"], .footer-section a[href^="tel:"] {
    color: #a0a0ff;
}

.footer-section a[href^="mailto"]:hover, .footer-section a[href^="tel:"]:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #d0d0d0;
    font-size: 18px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: #a0a0ff;
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #a0a0a0;
}

.footer-bottom-links {
    margin-top: 10px;
}

.footer-bottom-links a {
    color: #a0a0a0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




/* Animations */
@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.7));
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* footer design  */
@media (max-width: 1024px) {
    .footer-content {
        gap: 40px;
    }

    .footer-section {
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    .footer-section {
        max-width: 100%;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 15px 20px;
    }

    .footer-section h3 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-section p, .footer-section a {
        font-size: 14px;
        line-height: 1.8;
    }

    .social-links a {
        font-size: 16px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 20px;
    }

    .footer-bottom-links a {
        margin: 0 8px;
        font-size: 12px;
    }
}


/* proect card  */
.projects-grid {
    padding: 120px 80px;
    position: relative;
    background: transparent;
}




/* body design css  */
.about-us {
    padding: 120px 80px;
    position: relative;
    background: transparent;
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    max-width: 50%;
    animation: fadeInLeft 1.2s ease-out;
}

.heading-subtitle {
    font-size: 16px;
    color: #a0a0ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.heading-title {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

.heading-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #a0a0ff);
    transition: width 0.3s ease;
}

.about-text:hover .heading-title::after {
    width: 100px;
}

.about-block {
    margin-top: 20px;
}

.paragraph {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.btn.btn-secondary {
    background: #031C52;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-secondary i {
    margin-left: 8px;
}

.btn.btn-secondary:hover {
    background: #a0a0ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.signature-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.signature-body h6 {
    font-size: 18px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 5px;
}

.signature-body p {
    font-size: 14px;
    color: #a0a0ff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image {
    max-width: 40%;
    animation: fadeInRight 1.2s ease-out;
}

.about-img-holder {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.about-img-holder img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-holder:hover img {
    transform: scale(1.05);
}

.about-img-holder::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: left 0.5s ease;
}

.about-img-holder:hover::before {
    left: 100%;
}

.services-section {
    padding: 80px 80px;
    position: relative;
    background: transparent;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.service-card:hover::before {
    border-color: #a0a0ff;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::after {
    left: 100%;
}

.service-icon {
    font-size: 40px;
    color: #031C52;
    margin-bottom: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    color: #a0a0ff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #031C52;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.learn-more-btn {
    background: #031C52;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: background 0.3s ease, transform 0.3s ease;
}

.learn-more-btn i {
    margin-left: 8px;
}

.learn-more-btn:hover {
    background: #a0a0ff;
    transform: translateY(-2px);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 80px 20px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-text, .about-image {
        max-width: 100%;
    }

    .about-image {
        margin-top: 30px;
    }

    .signature-block {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn.btn-secondary {
        padding: 10px 20px;
        font-size: 14px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .services-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        width: 90%;
    }
}


/* marketting teams  */

.marketing-team {
    padding: 120px 80px;
    position: relative;
    background: transparent;
}

.marketing-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.marketing-team h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 80px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

.marketing-team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #a0a0ff);
    transition: width 0.3s ease;
}

.marketing-team h2:hover::after {
    width: 100px;
}

.team-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f5);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1.2s ease-out;
    animation-delay: calc(0.2s * var(--i));
}

.team-card:nth-child(1) { --i: 1; }
.team-card:nth-child(2) { --i: 2; }
.team-card:nth-child(3) { --i: 3; }

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

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.team-card:hover::before {
    border-color: #a0a0ff;
}

.team-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.team-card:hover::after {
    left: 100%;
}

.team-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.team-card:hover img {
    transform: scale(1.05);
}

.team-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #031C52;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 15px;
    color: #a0a0ff;
    margin-bottom: 15px;
    font-style: italic;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-links a {
    color: #031C52;
    font-size: 16px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    background: #a0a0ff;
    color: #ffffff;
    transform: scale(1.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .marketing-team {
        padding: 80px 20px;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-card {
        width: 90%;
        margin: 0 auto;
    }

    .team-card img {
        height: 150px;
    }
}




/* Faq sextyion  */
.faq-section {
    padding: 80px 80px;
    position: relative;
    background: transparent;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.faq-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    position: relative;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #ffffff, #a0a0ff);
    transition: width 0.3s ease;
}

.faq-section h2:hover::after {
    width: 100px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: linear-gradient(145deg, #031C52, rgba(15, 15, 15, 0.9));
    color: #ffffff;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    position: relative;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:hover {
    background: #a0a0ff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(160, 160, 255, 0.4);
}

.faq-question.active {
    background: #a0a0ff;
    border-color: #ffffff;
}

.faq-question.active::after {
    transform: rotate(180deg);
    color: #031C52;
}

.faq-answer {
    display: none;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 0 0 10px 10px;
    margin-top: -2px;
    font-size: 16px;
    line-height: 1.8;
    animation: slideDown 0.3s ease-out;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 200px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: 16px;
        padding: 12px 15px;
    }

    .faq-answer {
        padding: 15px;
        font-size: 14px;
    }
}