﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f9f9fa;
}

/* Top bar styles */
.top-bar {
    background-color: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

    .top-bar p {
        font-size: 14px;
        color: #6c757d;
    }

    .top-bar a {
        color: #8e44ad;
        text-decoration: none;
    }

        .top-bar a:hover {
            text-decoration: underline;
        }

.social-media a {
    width: 32px;
    height: 32px;
    margin-right: 5px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    color: #8e44ad;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .social-media a:hover {
        background: #8e44ad;
        color: white;
    }

/* Header Styles */
.navbar {
    background-color: #cabccf !important;
    box-shadow: 0 2px 10px rgba(142, 68, 173, 0.2);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 0.5px solid #8e44ad;
}

.navbar-brand {
    font-size: 0.8rem;
    font-weight: bold;
    color: #2c3e50;
    text-decoration: none;
}

    .navbar-brand img {
        height: 40px;
        width: 60px;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .navbar-brand:hover img {
        transform: scale(1.1);
    }

    .navbar-brand span {
        color: #8e44ad;
    }

.nav-link {
    color: #2c3e50 !important;
    font-weight: 500;
    transition: color 0.3s;
}

    .nav-link:hover, .nav-link.active {
        color: #8e44ad !important;
    }

    .nav-link.active {
        font-weight: 700;
        border-bottom: 2px solid #8e44ad;
    }

.form-control:focus {
    border-color: #8e44ad;
    box-shadow: 0 0 0 0.25rem rgba(142, 68, 173, 0.25);
}

.btn-outline-primary {
    color: #8e44ad;
    border-color: #8e44ad;
}

    .btn-outline-primary:hover {
        background-color: #8e44ad;
        border-color: #8e44ad;
        color: white;
    }
/* Banner Styles */
.banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

    .banner video {
        position: absolute;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -1;
        object-fit: cover;
    }

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

    .banner-overlay h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .banner-overlay p {
        font-size: 1.2rem;
        max-width: 700px;
        margin-bottom: 2rem;
    }

.btn-primary {
    background: #8e44ad;
    border-color: #8e44ad;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background: #6c3483;
        border-color: #6c3483;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(108, 52, 131, 0.3);
    }

/* Common Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: #2c3e50;
        font-weight: 700;
        position: relative;
        display: inline-block;
    }

        .section-header h2 span {
            color: #8e44ad;
        }

.underline {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #8e44ad, #9b59b6);
    margin: 0.5rem auto 1rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* About Us Section Styles */
.about-us {
    background-color: #f8f9fa;
    overflow: hidden;
}

.about-image {
    display: flex;
    justify-content: center; /* center image horizontally */
    align-items: flex-start; /* align image to top vertically */
    height: 350px;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 1rem;
    text-align: center; /* optional, in case image behaves like inline-block */
}

    .about-image img {
        height: 650px;
        width: auto;
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
        transition: all 0.5s ease;
        border-radius: 10px;
        display: block;
        margin: 0 auto; /* ensures image is centered in case flex isn't enough */
    }



        .about-image img:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

.experience-badge {
    position: absolute;
    bottom: 60px;
    right: 30px;
    background: #8e44ad;
    color: white;
    padding: 1.5rem; /* increased padding */
    border-radius: 50%;
    width: 160px; /* increased size */
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(142, 68, 173, 0.3);
    animation: pulse 3s infinite ease-in-out;
    transition: all 0.3s ease;
}

    .experience-badge .years {
        font-size: 2.5rem; /* was 2rem */
        font-weight: 700;
        line-height: 1;
    }

    .experience-badge .text {
        font-size: 1rem; /* was 0.9rem */
    }


.about-text p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stat-box {
    text-align: center;
    padding: 0.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-box i {
        font-size: 2rem;
        color: #8e44ad;
        margin-bottom: 0.5rem;
    }

.counter {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
}

.stat-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.qr-code-wrapper {
    display: flex;
    justify-content: center;
}

/* Services Section Styles */
.services {
    background-color: white;
    position: relative;
    overflow: hidden;
}

    .services:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("api/placeholder/1600/900.html") center/cover no-repeat;
        opacity: 0.03;
        z-index: 0;
    }

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(142, 68, 173, 0.15);
    }

    .service-card:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: #8e44ad;
        transition: height 0.5s ease;
    }

    .service-card:hover:before {
        height: 100%;
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(142, 68, 173, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon {
    background: #8e44ad;
    transform: rotate(360deg);
}

.service-icon i {
    font-size: 1.8rem;
    color: #8e44ad;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #8e44ad;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

    .service-link i {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .service-link:hover {
        color: #6c3483;
    }

        .service-link:hover i {
            transform: translateX(5px);
        }





.bank-details-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bank-details-title {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    position: relative;
    display: inline-block;
}

    .bank-details-title:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 50px;
        height: 3px;
        background: linear-gradient(to right, #8e44ad, #9b59b6);
    }

.bank-account-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .bank-account-table:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(142, 68, 173, 0.2);
    }

    .bank-account-table th,
    .bank-account-table td {
        padding: 0.7rem 1rem;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.9rem;
    }

    .bank-account-table th {
        background-color: rgba(142, 68, 173, 0.8);
        color: white;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .bank-account-table tr:last-child td {
        border-bottom: none;
    }

    .bank-account-table tr {
        transition: all 0.3s ease;
    }

        .bank-account-table tr:hover td {
            background-color: rgba(142, 68, 173, 0.05);
        }

    .bank-account-table td:first-child {
        font-weight: 600;
        color: #8e44ad;
    }

    .bank-account-table tr td {
        opacity: 0;
        animation: fadeIn 0.5s ease forwards;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Apply staggered animation to table rows */
.bank-account-table tr:nth-child(1) td {
    animation-delay: 0.2s;
}

.bank-account-table tr:nth-child(2) td {
    animation-delay: 0.4s;
}

.bank-account-table tr:nth-child(3) td {
    animation-delay: 0.6s;
}

.bank-account-table tr:nth-child(4) td {
    animation-delay: 0.8s;
}

.bank-account-table tr:nth-child(5) td {
    animation-delay: 1s;
}

/* Responsive styles */


/* Bank icon with animation */
.bank-icon {
    display: inline-block;
    margin-right: 10px;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Equal height columns in About Us section */
.about-us .row.align-items-stretch {
    display: flex;
    flex-wrap: wrap;
}

    .about-us .row.align-items-stretch > [class*="col-"] {
        display: flex;
        flex-direction: column;
    }



.about-content {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.right-column-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Scan to Pay styles */
.scan-to-pay-container {
    margin-top: 1rem;
}

.scan-box {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.2rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.3s forwards;
}

    .scan-box i {
        font-size: 2rem;
        color: #8e44ad;
        margin-bottom: 0.5rem;
    }

    .scan-box h3 {
        margin: 0.5rem 0;
        font-size: 1.3rem;
        color: #2c3e50;
    }

    .scan-box p {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 1rem;
    }

.qr-code-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.qr-code-img {
    max-width: 80%;
    border-radius: 8px;
}



/* Footer Styles */
footer {
    background: #6c3483;
    color: white;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

    footer::before {
        content: '';
        position: absolute;
        top: -50px;
        left: 0;
        width: 100%;
        height: 50px;
        background-size: cover;
        animation: waveAnimation 15s linear infinite;
    }

@keyframes waveAnimation {
    0% {
        background-position-x: 0;
    }

    100% {
        background-position-x: 1200px;
    }
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

    .footer-info h3::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(to right, #9b59b6, #8e44ad);
    }

.footer-info p {
    margin-bottom: 0.5rem;
}

.footer-info i {
    margin-right: 10px;
    color: #9b59b6;
}

.map-container {
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.social-links {
    display: flex;
    margin-top: 40px;
}

    .social-links a {
        width: 50px;
        height: 50px;
        margin: 0 1rem 0 0;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 20px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .social-links a:hover {
            transform: scale(1.1);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }

        .social-links a.facebook {
            background-color: #3b5998;
        }

        .social-links a.twitter {
            background-color: #1da1f2;
        }

        .social-links a.instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

.footer-bottom {
    text-align: center;
    padding: 1.5rem;
    background: #4a235a;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    padding: 6px 10px; /* smaller padding */
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px; /* smaller font */
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    gap: 8px; /* reduce gap between icon and text */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: background 0.3s ease;
}

    .whatsapp-float:hover {
        background-color: #1ebe5d;
    }

    .whatsapp-float img {
        width: 20px; /* smaller icon */
        height: 20px;
        filter: invert(1);
    }
