/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@font-face {
    font-family: 'Font';
    src: url("../font/Quicksand-Regular.otf") format("opentype");
    font-weight: normal;
    font-style: normal;
}



/* Global Styles */
:root {
    --primary-color: #4361ee;
    --secondary-color: #3f37c9;
    --accent-color: #4895ef;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --success-color: #4cc9f0;
    --danger-color: #f72585;
    --warning-color: #f8961e;
    --info-color: #4895ef;
}

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

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    text-transform: capitalize;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Navigation */
.navbar {
 background-color: var(--dark-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(33, 37, 41, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.navbar-brand span {
    color: var(--primary-color);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: white;
}

.navbar-dark .navbar-nav .nav-link:hover::before,
.navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), /* yaha 0.5 se 0.7 kar diya */
                url('../images/hero.jpg') no-repeat center center/cover;
    min-height: 100vh;
    color: #F2F2F2;
    padding-top: 100px;
    position: relative;
}


.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: white;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .icon-box {
    background-color: var(--primary-color);
    color: white;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(rgba(67, 97, 238, 0.9), rgba(67, 97, 238, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: white;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* CTA Section */
.cta {
    background-color: var(--primary-color);
    color: white;
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://via.placeholder.com/1920x500') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-img img {
    transition: all 0.5s ease;
}

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

.about-content {
    padding-left: 30px;
}

.signature img {
    max-width: 150px;
    margin-bottom: 10px;
}

/* Mission Section */
.mission-section {
    padding: 100px 0;
}

.mission-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.mission-card:hover .icon-box {
    background-color: var(--primary-color);
    color: white;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-member {
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.team-img img {
    transition: all 0.5s ease;
    width: 100%;
}

.team-img .social-links {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-img .social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.team-img .social-links a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

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

.team-member:hover .team-img .social-links {
    bottom: 20px;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Services Section */
.services-section {
    padding: 100px 0;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

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

.service-card .service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    padding: 100px 0;
}

.process-steps {
    position: relative;
    padding: 50px 0;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 3px;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.2;
}

.process-step {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 30px;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.process-step h3 {
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
}

.contact-info h2 {
    margin-bottom: 30px;
}

.contact-method {
    display: flex;
    margin-bottom: 30px;
}

.contact-method .icon-box {
    width: 60px;
    height: 60px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    margin-bottom: 30px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
    border: 1px solid #eee;
    padding: 10px 15px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
}

/* Map Section */
.map-section {
    padding-bottom: 100px;
}

.map-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px !important;
    border: 1px solid #eee;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(67, 97, 238, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #eee;
}

.accordion-body {
    padding: 20px;
}

/* Clients Section */
.clients-section {
    padding: 100px 0;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.client-logo {
    flex: 0 0 calc(20% - 30px);
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.client-logo:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    /* filter: grayscale(100%); */
    /* opacity: 0.6; */
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: rgba(67, 97, 238, 0.1);
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.rating {
    color: var(--warning-color);
}

/* Case Studies Section */
.case-studies-section {
    padding: 100px 0;
}

.case-study-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.case-study-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.case-study-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(67, 97, 238, 0.3), rgba(67, 97, 238, 0.7));
    opacity: 0;
    transition: all 0.3s ease;
}

.case-study-card:hover .overlay {
    opacity: 1;
}

.case-study-card:hover .case-study-img img {
    transform: scale(1.1);
}

.case-study-content {
    padding: 20px;
}

.case-study-content h3 {
    margin-bottom: 10px;
}

/* Workshop Section */
.workshops-section {
    padding: 100px 0;
}

.workshop-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.workshop-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.workshop-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.workshop-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.date-badge span {
    display: block;
    line-height: 1;
}

.date-badge span:first-child {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.workshop-content {
    padding: 20px;
}

.meta-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.meta-info span {
    display: flex;
    align-items: center;
}

.meta-info i {
    margin-right: 5px;
}

.workshop-content h3 {
    margin-bottom: 10px;
}

.workshop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
}

.benefit-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card .icon-box {
    width: 70px;
    height: 70px;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.benefit-card:hover .icon-box {
    background-color: var(--primary-color);
    color: white;
}

/* Workshop Testimonials */
.workshop-testimonials {
    padding: 100px 0;
    background: linear-gradient(rgba(67, 97, 238, 0.9), rgba(67, 97, 238, 0.9)), url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
    color: white;
}

.workshop-testimonials .testimonial-content {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
}

.workshop-testimonials .quote-icon {
    color: rgba(255, 255, 255, 0.1);
}

.workshop-testimonials .author-info p {
    color: rgba(255, 255, 255, 0.8);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 100px 0 0;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer h3 span {
    color: var(--primary-color);
}

.footer p {
    opacity: 0.8;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: white;
    padding-left: 5px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 50px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--secondary-color);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
}

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

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .navbar {
        background-color: var(--dark-color);
    }

    .hero {
        padding-top: 80px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        padding-left: 0;
        margin-top: 30px;
    }

    .process-steps::before {
        left: 25px;
    }

    .process-step {
        padding-left: 80px;
    }

    .step-number {
        left: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .client-logo {
        flex: 0 0 calc(33.333% - 20px);
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        padding-left: 0;
        text-align: center;
    }

    .step-number {
        position: relative;
        left: auto;
        margin: 0 auto 15px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-method .icon-box {
        margin: 0 auto 15px;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .client-logo {
        flex: 0 0 calc(50% - 15px);
        height: 100px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer .col-lg-4 {
        margin-bottom: 40px;
    }
}

.service{
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c, #3e3e3e, #5a5a5a);

    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.about{
     
background: linear-gradient(135deg, #1a1a1a, #2c2c2c, #3e3e3e, #5a5a5a);

    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: white;
}

.contact {
background: linear-gradient(135deg, #1a1a1a, #2c2c2c, #3e3e3e, #5a5a5a);

    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;   
    color: white;
}

.customers {
   background: linear-gradient(135deg, #1a1a1a, #2c2c2c, #3e3e3e, #5a5a5a);

background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
    color: white;
    
}


  .showcase-img {
    max-width: 80%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }
  .showcase-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  }

