/*header 1st timne*/

body {
    margin: 0;
    padding: 0;
    font-family: "Golos Text", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;

}



/* Glassmorphism Style */
.glass-header {
    margin-top: 40px;
    max-width: 1100px;
    width: 100%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50rem;
    border-color: black;
    border-width: thin;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

    .glass-header:hover {
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
        transform: translateY(-2px);
    }

.logo {
    height: 40px;
}

.brand-name {
    font-size: 1.25rem;
    color: #222;
}

.logo-main {
    font-weight: 800;
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    white-space: nowrap;
    color: #041522;
    min-height: 2rem;
}

.logo-sub {
    font-weight: 600;
    font-size: 0.8rem;
    line-height: 1;
    margin-top: -10px;
    margin-left: 35px;
    color: #041522;
}


.animate-sub {
    animation: fadeInSlide 1s ease-in-out 1s forwards;
}

@keyframes fadeInSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Navbar links */
.nav-link {
    color: #222;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 0;
    transition: color 0.3s ease;
}

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0%;
        height: 2px;
        bottom: 0;
        left: 0;
        background-color: rgb(10 30 54 / 70%);
        transition: width 0.3s ease;
        border-radius: 1px;
    }

    .nav-link:hover {
        color: #0844b3;
    }

        .nav-link:hover::after {
            width: 100%;
        }

/* Chat Button */
.chat-btn {
    background-color: rgba(40, 40, 40, 0.8);
    color: #fff;
    border: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .chat-btn:hover {
        background-color: #0a292d;
        color: #fff;
        transform: scale(1.05);
    }

/* Animate on load */
.glass-header {
    opacity: 0;
    animation: fadeIn 0.8s forwards ease;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Default: desktop rounded pill */
.glass-header {
    border-radius: 50rem;
}

/* Mobile: reduce to rounded rectangle */
@media (max-width: 767.98px) {
    .glass-header {
        border-radius: 1rem;
    }
}

/*Hero Section 2nd Timne*/

.hero-section {
    position: relative;
    min-height: 90vh;
    padding: 10px;
    
    color: #041522;
    overflow: hidden;
}

    /* Optional: subtle grid background */
    .hero-section::before {
        content: '';
        position: absolute;
        inset: 0;
   
        /*background-size: 40px 40px;*/
        pointer-events: none;
        opacity: 0.05;
    }



/* Content Styling */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
}

    .hero-title .highlight {
        color: #053940;
    }

.hero-subtitle {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #333;
}

.hero-bullets {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #041522;
}

    .hero-bullets li {
        background: rgba(255, 255, 255, 0.4);
        padding: 6px 12px;
        border-radius: 1rem;
        backdrop-filter: blur(6px);
    }

.hero-section a.btn {
    background-color: #041522;
    color: #fff;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

    .hero-section a.btn:hover {
        background-color: #0a292d;
        transform: scale(1.05);
    }

/* Responsive text */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}


/* New One Services Sections*/

.section-glass-bg {
    position: relative;
    padding: 80px 0;
    backdrop-filter: blur(6px);
}
.section-badge {
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.2;
    word-break: break-word;
    text-align: center;
}

@media (max-width: 576px) {
    .section-badge {
        font-size: 0.65rem;
        padding: 0.25rem 0.75rem;
        line-height: 1.3;
        max-width: 100%;
        display: inline-block;
    }
}
.section-title {
    font-weight: 700;
    color: #041522;
}

.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

    .glass-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    }

.service-card {
    text-align: center;
    padding: 30px 20px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #0a292d;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 20px;
    color: #041522;
    transition: all 0.3s ease;
}

    .btn-glass:hover {
        background: rgba(255, 255, 255, 0.4);
        border-color: rgba(255, 255, 255, 0.6);
    }

.button-call {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 14px;
    padding: 12px 28px;
    color: #041522;
    font-weight: 600;
    box-shadow: inset 0 0 0 0.5px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

    .button-call:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6), 0 10px 24px rgba(0,0,0,0.15);
        color: black;
    }


.accordion-button {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    color: #041522;
    border-radius: 10px;
}

    .accordion-button:not(.collapsed) {
        background: rgba(255, 255, 255, 0.25);
        color: #041522;
    }

.accordion-item {
    border: none;
    margin-bottom: 10px;
}

.glass-inner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 15px;
}

/* Faqs section*/
.section-title {
    font-weight: 700;
    font-size: 2rem;
    color: #041522;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: #555;
}

.glass-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(4,21,34,0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 50px;
    right: 20px;
    z-index: 999;
}


.btn-highlight {
    background-color: #ffeb95;
    color: #041522;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 14px;
    border: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}



.cta-section {
    background: radial-gradient(ellipse at 20% 30%, rgba(10,41,45,0.05), transparent 60%), radial-gradient(ellipse at 80% 70%, rgba(4,21,34,0.05), transparent 65%), #ffffff;
    position: relative;
    overflow: hidden;
}


/*Service section*/
.gradient-services-bg {
    background: radial-gradient(100% 100% at 50% 0%, rgba(167,134,255,0.15) 0%, rgba(255,255,255,0.00) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 0 0 45%;
    text-align: left;
}

.icon-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.service-item h5 {
    margin: 0 0 0.25rem;
    font-weight: 600;
}

.service-item p {
    margin: 0;
    font-size: 1rem;
    color: dimgray;
}

@media (max-width: 768px) {
    .service-item {
        flex: 0 0 100%;
    }
}

.text-animate-hover {
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease;
}

    .text-animate-hover:hover {
        transform: scale(1.05) rotate(-1deg);
        text-shadow: 0 2px 10px rgba(167, 134, 255, 0.5);
    }
.footer-glass {
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 1rem;
    color: black;
    font-size: 0.9rem;
}

    .footer-glass h5 {
        color: black;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .footer-glass a {
        color: black;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer-glass a:hover {
            color: black;
        }

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.15);
    margin: 2rem 0;
}

.footer-credit {
    font-size: 0.75rem;
    color: black;
}

.social-icons a {
    font-size: 1.25rem;
    margin-right: 15px;
    color: black;
}

    .social-icons a:hover {
        color: black;
    }



/* Testimonials Section Styles */
#testimonials .glass-card {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

    #testimonials .glass-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    }

    #testimonials .glass-card::before {
        content: "“";
        font-size: 6rem;
        color: #76f5d4;
        font-family: serif;
        position: absolute;
        top: -20px;
        left: 20px;
        opacity: 0.06;
        z-index: 0;
    }

#testimonials blockquote {
    font-style: italic;
    color: #ffffffcc;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    min-height: 100px;
}

#testimonials h5 {
    color: #ffffff;
    font-weight: 600;
    margin-top: 1rem;
}

#testimonials small {
    color: #cccccc;
    font-size: 0.85rem;
}

#testimonials img.rounded-circle {
    border: 4px solid #a786ff;
    box-shadow: 0 0 12px rgba(118, 245, 212, 0.2);
    transition: transform 0.3s ease;
}

    #testimonials img.rounded-circle:hover {
        transform: scale(1.05);
    }


/* UNIQUE VALUE SECTION */

#unique-value {
    background: linear-gradient(145deg, #f0f4ff, #fefeff);
    padding: 4rem 0;
}

    #unique-value .glass-card {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 24px;
        padding: 3rem 2rem;
        backdrop-filter: blur(14px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #ffffff;
        transition: all 0.3s ease;
    }

    #unique-value h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #a786ff;
        margin-bottom: 0.5rem;
    }

    #unique-value p {
        color: #343434;
        font-weight: 500;
    }

    #unique-value ul {
        padding-left: 1rem;
        font-size: 1rem;
    }

        #unique-value ul li {
            margin-bottom: 0.8rem;
            color: #ffffff;
        }

    #unique-value .bi-check2-circle {
        color: #33ff00 !important;
        font-size: 1.1rem;
    }

    #unique-value .bi-dash-circle-fill {
        color: #dc3545 !important;
        font-size: 1.1rem;
    }

    #unique-value .badge {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
        font-weight: 600;
        border-radius: 999px;
    }

    #unique-value .btn {
        font-size: 0.9rem;
        font-weight: 500;
        padding: 0.6rem 1.4rem;
        margin-top: 2rem;
        border-radius: 999px;
        color: #000000;
        background-color: transparent;
        border: 1px solid #000000;
        transition: all 0.3s ease;
    }

        #unique-value .btn:hover {
            background-color: #08261e;
            color: white;
            border-color: black;
        }
