:root {
    --primary: #e83e8c;
    --primary-dark: #c42a6d;
    --secondary: #2d3748;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --light-gray: #edf2f7;
    --white: #ffffff;
    --gold: #d4af37;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background-color: var(--light);
    overflow-x: hidden;
}
.hme-pge-nw-banner img{
    
    /*height: 1500px !important;*/
      object-fit: cover;
}
@media screen and (min-width:280px) and (max-width:720px){
    .hme-pge-nw-banner img{
    height: 600px !important;
    object-fit: cover;
   
}
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

 .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
} 

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 18px 42px;
    font-size: 18px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 42px;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--gold));
    border-radius: 3px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 20px 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: var(--white);
    position: relative;
    font-size: 14px;
}

header.scrolled .nav-links a {
    color: var(--secondary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-btns {
    display: flex;
    align-items: center;
    margin-left: 30px;
}

.nav-btns .btn {
    margin-left: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    margin-left: 20px;
}
.mobile-menu-btn,
.close-menu-btn {
    display: none ;
}

/* @media (min-width: 278px) and (max-width:800px){
    .mobile-view{
        display: block !important;
        align-items: center;
    }
} */


@media (max-width: 768px) {
   
    .mobile-menu-btn {
        display: block;
    }

    .close-menu-btn {
        display: block;
    }
}

.search-box  {
top: -150px;
}

header.scrolled .mobile-menu-btn {
    color: var(--secondary);
}

@media (max-width: 768px) {
    .nav-links {
        /*display: none !important;*/
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-btns {
        flex-direction: column;
        margin-left: 0;
        margin-top: 10px;
    }

    .nav-btns .btn {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .mobile-menu-btn,
    .close-menu-btn {
        display: block ;
    }

    .close-menu-btn {
        display: block;
        font-size: 24px;
        color: var(--primary);
        cursor: pointer;
        align-self: flex-end;
        margin-bottom: 10px;
    }
}


/* Hero Section */

.hero {
    /* height: 800px; */
    /* min-height: 700px; */
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover; */
    /*background-image: url('/public//uploads/image6.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

@media screen and  (min-width:700px) {
.hero {
    /* height: 100vh; */
    /*min-height: 750px;*/
    /* background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover; */
    /*background-image: url('/public//uploads/image6.jpg');*/
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--white);
}
}
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, var(--light), transparent);
    z-index: 1;
}
.cont-form{
    padding: 10px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero p {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.stat-text {
    font-size: 16px;
    opacity: 0.8;
}

/* Search Section */
.search-section {
    background-color: var(--white);
    padding: 80px 0;
    margin-top: -100px;
    position: relative;
    z-index: 5;
    /*border-radius: 15px;*/
    box-shadow: var(--box-shadow);
}

.search-container {
    max-width: 1000px;
    margin: 0 auto;
}

.search-box {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.search-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--gold));
}

.search-box h2 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 32px;
    position: relative;
    padding-left: 20px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--secondary);
}

.form-group select {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--light);
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    transition: var(--transition);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.2);
}

.search-btn {
    grid-column: 1 / -1;
    margin-top: 10px;
}

/* Features Section */
.features {
    background-color: var(--white);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    width: 600px !important;
    background-color: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 16px 26px #00000014, 0 6px 30px #0000000f, 0 8px 10px #0000000f !important;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.banner-img {
    object-fit: cover;
    width: 100%;
    height: auto; /* default for desktop */
}

@media (max-width: 576px) {
    .banner-img {
        height: 600px;
        object-fit: cover; /* ensures it fills the box without stretching */
    }
}



.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--gold));
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    box-shadow: 0 10px 20px rgba(232, 62, 140, 0.3);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--secondary);
}

.feature-card p {
    color: var(--gray);
}

/* Success Stories */
.success-stories {
    background: linear-gradient(135deg, #f9f9ff 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.success-stories::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(232, 62, 140, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.success-stories::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    z-index: 1;
}

.stories-container {
    position: relative;
    z-index: 2;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.story-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.story-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.story-card:hover .story-img img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.story-content p {
    color: var(--gray);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 8px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Browse Section */
.browse {
    background-color: var(--white);
    position: relative;
}

.browse::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: var(--white);
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
}

.browse-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.category {
    background-color: var(--light);
    border-radius: 15px;
    padding: 30px;
    /* box-shadow: var(--box-shadow); */
    transition: var(--transition);
    box-shadow: 0 16px 26px #00000014, 0 6px 30px #0000000f, 0 8px 10px #0000000f !important;
}

.category:hover {
    transform: translateY(-10px);
}

.category h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: var(--primary);
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.tag {
    background-color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid var(--light-gray);
}

.tag:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
    border-color: var(--primary);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.section-title.light h2,
.section-title.light p {
    color: var(--white);
}

.section-title.light h2::after {
    background: linear-gradient(to right, var(--white), var(--gold));
}

.testimonials-container {
    position: relative;
    z-index: 2;
}

.testimonial-slider {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 0 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--white);
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    opacity: 0.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 120px 0;
    position: relative;
}

.cta-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: var(--secondary);
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-about {
    position: relative;
    color: #ffffff !important;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about p {
    color: #ffffff !important;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}
.app-download {
    text-align: right;
}

.app-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}
.nav-links {
    display: none;
}

@media screen and (min-width:280px) and (max-width:720px){
    .nav-links.active {
    display: flex;
    flex-direction: column;
}
}


.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-links-bottom {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links-bottom a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 54px;
    }
}

@media (max-width: 992px) {
    /* .section {
        padding: 80px 0;
    } */

    .hero h1 {
        font-size: 48px;
    }

    .section-title h2 {
        font-size: 36px;
    }

    .search-box {
        padding: 40px 30px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
     
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-links.active {
        display: flex;
        right: 0;
    }

    .nav-links li {
        margin: 0 0 20px;
        width: 100%;
    }

    .nav-links a {
        color: var(--secondary);
        font-size: 18px;
        display: block;
        padding: 10px 0;
    }

    .nav-btns {
        margin: 30px 0 0;
        width: 100%;
        flex-direction: column;
    }

    .nav-btns .btn {
        margin: 0 0 15px;
        width: 100%;
    }

    .close-menu-btn {
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 24px;
        color: var(--secondary);
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    /*.hero {*/
    /*    min-height: 700px;*/
    /*}*/

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .search-box {
        padding: 30px 20px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
}


/* dashboard css */


.nav {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 15px 25px;
    color: white;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 5px;
}

.nav a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.profile-section {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.profile-pic {
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
}

.profile-name {
    margin: 10px 0;
    font-size: 28px;
    color: var(--dark-color);
}

.profile-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.profile-link {
    padding: 8px 15px;
    border-radius: 5px;
    background: #f0f0f0;
    transition: var(--transition);
    color: var(--dark-color);
    text-decoration: none;
    font-size: 14px;
}

.profile-link:hover {
    background: #e0e0e0;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 15px;
    min-width: 150px;
    border-radius: var(--border-radius);
    background: #f9f9f9;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.matches-section {
    margin-top: 30px;
}

.section-title {
    font-size: 24px;
    color: var(--dark-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.matches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.match-card {
    background: #fff;
    padding: 20px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    border: 1px solid #eee;
}

.match-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.match-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.match-pic {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.match-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.match-info p {
    margin: 3px 0;
    font-size: 14px;
    color: #666;
}

.match-details {
    margin: 15px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: var(--border-radius);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.detail-label {
    font-weight: 500;
    color: #555;
}

.match-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.action-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 14px;
}

.action-btn.primary {
    background: var(--primary-color);
    color: white;
    flex-grow: 1;
    margin-right: 10px;
}

.action-btn.primary:hover {
    background: #c2185b;
}

.action-btn.secondary {
    background: #f0f0f0;
    color: var(--dark-color);
}

.action-btn.secondary:hover {
    background: #e0e0e0;
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
}

.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: #666;
}

.empty-state img {
    width: 150px;
    margin-bottom: 20px;
    opacity: 0.6;
}

.filter-info {
    background: #e3f2fd;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    font-size: 14px;
    color: #0d47a1;
    display: flex;
    align-items: center;
}

.filter-info i {
    margin-right: 10px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .matches-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-box {
        width: 100%;
    }
}