        .faq-container {
            width: 100%;
            max-width: 1200px;
            margin: 75px auto;
        }
        
        .faq-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .faq-title {
            font-size: 3.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, #12c2e9, #c471ed, #f64f59);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 20px;
        }
        
        .faq-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .faq-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 30px;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .faq-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #57478d, #000000, #08403e);
        }
        
        .faq-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .faq-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 4rem;
            font-weight: 800;
            color: rgba(255, 255, 255, 0.05);
        }
        
        .faq-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(45deg, #75679b, #08001c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            color: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .faq-question {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #0d136b;
            line-height: 1.4;
        }
        
        .faq-answer {
            color: rgb(0 0 0 / 80%);
            line-height: 1.6;
            font-size: 1.05rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .faq-card.active .faq-answer {
            max-height: 500px;
        }
        
        .faq-toggle {
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            cursor: pointer;
            color: #000000;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .faq-toggle:hover {
            color: #12c2e9;
        }
        
        .faq-toggle i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .faq-card.active .faq-toggle i {
            transform: rotate(180deg);
        }
        
        .search-section {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 50px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .search-input {
            width: 100%;
            padding: 18px 25px;
            background: rgba(255, 255, 255, 0.07);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            color: white;
            padding-right: 60px;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .search-input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .search-btn {
            position: absolute;
            right: 5px;
            top: 5px;
            background: linear-gradient(45deg, #12c2e9, #c471ed);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .search-btn:hover {
            transform: rotate(15deg) scale(1.05);
        }
        
        .category-filters {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 40px;
        }
        
        .category-btn {
            padding: 12px 25px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50px;
            font-weight: 500;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .category-btn.active, .category-btn:hover {
            background: linear-gradient(45deg, #12c2e9, #c471ed);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        
        .contact-cta {
            text-align: center;
            margin-top: 70px;
            padding: 40px;
            background: linear-gradient(45deg, rgba(18, 194, 233, 0.1), rgba(196, 113, 237, 0.1));
            border-radius: 20px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .cta-title {
            font-size: 2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }
        
        .cta-text {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            padding: 15px 35px;
            background: linear-gradient(45deg, #12c2e9, #c471ed);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }
        
        /* Animation for elements */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .faq-card {
            animation: fadeIn 0.5s ease forwards;
        }
        
        .faq-card:nth-child(1) { animation-delay: 0.1s; }
        .faq-card:nth-child(2) { animation-delay: 0.2s; }
        .faq-card:nth-child(3) { animation-delay: 0.3s; }
        .faq-card:nth-child(4) { animation-delay: 0.4s; }
        .faq-card:nth-child(5) { animation-delay: 0.5s; }
        .faq-card:nth-child(6) { animation-delay: 0.6s; }
        
        /* Responsive design */
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2.5rem;
            }
            
            .faq-subtitle {
                font-size: 1rem;
            }
            
            .faq-grid {
                grid-template-columns: 1fr;
            }
            
            .faq-card {
                padding: 20px;
            }
            
            .faq-question {
                font-size: 1.2rem;
            }
            
            .category-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .search-input {
                padding: 15px 20px;
            }
        }
        .highlight-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.highlight-hover::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 123, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.highlight-hover:hover::before {
    top: -20%;
    left: -20%;
    width: 240%;
    height: 240%;
    background: rgba(0, 123, 255, 0.2);
}

.highlight-hover:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.3);
    border: 2px solid #007bff;
}

.highlight-hover .icon i {
    transition: transform 0.4s ease, color 0.4s ease;
    position: relative;
    z-index: 1;
}

.highlight-hover:hover .icon i {
    transform: scale(1.4) rotate(15deg);
    color: #0056b3;
}
.service-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 123, 255, 0.25);
    border: 2px solid #007bff;
}

.highlight-hover::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 123, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card.highlight-hover:hover::before {
    top: -20%;
    left: -20%;
    width: 240%;
    height: 240%;
    background: rgba(0, 123, 255, 0.2);
}

.service-card img {
    transition: transform 0.4s ease, filter 0.4s ease;
}

/* .service-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
} */

.service-card h3 {
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: #ffc107;
}
.feature-card {
    background: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.25);
    border: 2px solid #007bff;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 123, 255, 0.08);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.feature-card:hover::before {
    top: -20%;
    left: -20%;
    width: 240%;
    height: 240%;
    background: rgba(0, 123, 255, 0.15);
}

.feature-card i {
    transition: transform 0.4s ease, color 0.4s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #ffc107;
}

.feature-card h4 {
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #007bff;
}
.faq-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    cursor: pointer;
    background: #fff;
    position: relative;
}

.faq-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.25);
    border: 2px solid #007bff;
}

.faq-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(0, 123, 255, 0.05);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    z-index: 0;
}

.faq-card:hover::before {
    top: -20%;
    left: -20%;
    width: 240%;
    height: 240%;
    background: rgba(0, 123, 255, 0.1);
}

.accordion-button {
    font-weight: 600;
    background: #f0f4ff;
    transition: background 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #007bff;
    background: #e0f0ff;
}

.accordion-button:hover {
    background: #dbe7fc;
}
    .faq-item:hover {
      transform: scale(1.03);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      background: #fdfdfd;
    }
        .btn-signin {
            background: transparent;
            color: #977642;
            border: 2px solid rgb(151 118 66);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-signin:hover {
            background: linear-gradient(90deg, #937359, rgb(147 109 62), rgb(141 96 43));
            border-color: rgb(141 96 43);
            transform: translateY(-2px);
            color: #ffffff;
        }
        
        .btn-signup {
            background: linear-gradient(90deg, #a3723c, rgb(183 146 105), rgb(163 114 60));
            color: white;
            border: none;
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 500;
            box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-signup: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.5s ease;
        }
        
        .btn-signup:hover:before {
            left: 100%;
        }
        
        .btn-signup:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
        } @media (max-width: 768px) {
           .res{
               display: flex;
               flex-direction: column;
               padding-left: 0px !important;
           }
           .btn-signin{
               margin-bottom: 5px;
           }
        }
        
        .parallax > use {
        animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
        }

        .parallax > use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
        }

        .parallax > use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
        }

        .parallax > use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
        }

        .parallax > use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
        }

        @keyframes move-forever {
        0% {
            transform: translate3d(-90px, 0, 0);
        }

        100% {
            transform: translate3d(85px, 0, 0);
        }
        }

        /* /* Shrinking for mobile */
        @media (max-width: 768px) {
        .waves {
            height: 40px;
            min-height: 40px;
        }
        }
        .waves {
        position: relative;
        width: 100%;
        height: 15vh;
        margin-bottom: -7px;
        /*Fix for safari gap*/
        min-height: 100px;
        max-height: 150px;
        }
