/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: white;
    color: black;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Main Navigation */
.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-list a:hover::after {
    width: 80%;
}

.has-submenu {
    position: relative;
}

.submenu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: repeat(2, 150px);
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1002;
}

.submenu a {
    color: #333;
    text-decoration: none;
    padding: 8px;
    border-radius: 6px;
    transition: 0.3s;
}

.submenu a:hover {
    background: #f2f2f2;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-arrow {
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.has-submenu:hover .submenu-arrow {
    transform: rotate(180deg);
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: black;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 1001;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.mobile-nav-drawer.active {
    left: 0;
}

.mobile-nav-content {
    padding: 2rem;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-list li {
    margin-bottom: 1rem;
}

.nav-list a i,
.mobile-nav-list a i {
    margin-right: 4px;
    font-size: 0.9rem;
}

.mobile-nav-list a {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-submenu {
    list-style: none;
    padding-left: 1rem;
    display: none;
}

.mobile-submenu li a {
    font-size: 1rem;
    padding: 8px 0;
    display: block;
}

.mobile-submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1rem;
}

.mobile-submenu-arrow {
    transition: transform 0.3s ease;
}

.mobile-has-submenu.active .mobile-submenu {
    display: block;
}

.mobile-has-submenu.active .mobile-submenu-arrow {
    transform: rotate(180deg);
}


.mobile-nav-list a {
    color: black;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.mobile-nav-list a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

/* Make Services (submenu toggle) same as normal mobile links */
.mobile-submenu-toggle {
    font-size: 1.2rem;
    /* Same as .mobile-nav-list a */
    font-weight: 500;
    color: black;
}

.mobile-submenu-toggle span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-submenu-toggle i {
    font-size: 0.9rem;
    /* Same icon size as other menu icons */
}

.has-submenu>a {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}


/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 35px;
    width: auto;
    display: block;
}

.logo-text {
    display: none;
    font-size: 1.8rem;
    font-weight: 700;
}


.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}


body.nav-open .wrapper,
body.nav-open .footer {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.mobile-menu-toggle.hidden {
    display: none !important;
}




/* Main Wrapper */
.wrapper {
    display: flex;
    gap: 2rem;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    padding: 2rem 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Main Content */
.main-content {
    flex: 1;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.hero-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: white;
    color: #f5576c;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    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 8px 25px rgba(0, 0, 0, 0.3);
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.content-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.content-section p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #666;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    color: black;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 162, 0.089);
    color: #ea00fb;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: white;
    color: black;
    padding: 3rem 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Sidebar */
.sidebar {
    width: 300px;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.sidebar-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.sidebar-section h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    position: relative;
}

.sidebar-section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1px;
}

/* News Items */
.news-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.news-item h4 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.news-item p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.date {
    font-size: 0.8rem;
    color: #999;
    font-style: italic;
}

/* Quick Links */
.quick-links {
    list-style: none;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem;
    border-radius: 5px;
}

.quick-links a:hover {
    background-color: #f8f9fa;
    color: #764ba2;
    transform: translateX(5px);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border: 2px solid #667eea;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.social-link:hover {
    background-color: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ecf0f1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .wrapper {
        flex-direction: column;
        margin-top: 70px;
        padding: 1rem;
        gap: 1rem;
    }

    .sidebar {
        width: 100%;
        order: 2;
        position: static;
    }

    .main-content {
        order: 1;
        padding: 1.5rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-section h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-section h2 {
        font-size: 1.8rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.5rem;
    }

    .main-content {
        padding: 1rem;
    }

    .sidebar {
        padding: 1rem;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Focus styles for accessibility */
button:focus,
a:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
}

::-webkit-scrollbar-thumb {
    background: gray;
    border-radius: 40px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgb(82, 82, 82);
}












/* Promotional Section */
.axomify-promo {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 1rem auto;
    max-width: 1200px;
}


/* Promo Content */
.promo-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.promo-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.promo-features {
    list-style: none;
    margin-bottom: 2rem;
}

.promo-features li {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-features i {
    color: #00ffb3;
}


/* Flip Card Container (Desktop Only) */
.promo-flip-card {
    perspective: 1000px;
    margin-top: 2rem;
    max-width: 450px;
}

/* Inner Flip */
.promo-flip-inner {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.promo-flip-card:hover .promo-flip-inner {
    transform: rotateY(180deg);
}

/* Front & Back Shared Style */
.promo-front-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
}

.promo-qr-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.promo-text {
    flex: 1;
    overflow: hidden;
}

.promo-text h4 {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.promo-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.promo-flip-front {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    backface-visibility: hidden;
}


.promo-flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    background: white;
    color: #333;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Front Side */
.promo-flip-front h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.promo-flip-front p {
    font-size: 0.9rem;
    color: #666;
}

/* Back Side */
.promo-flip-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.promo-flip-back h4 {
    margin-bottom: 1rem;
}

.promo-flip-back p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Dashboard Button */
.dashboard-btn {
    background: white;
    color: #764ba2;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.dashboard-btn:hover {
    background: #f2f2f2;
}

/* Promo Buttons (Mobile Only) */
.promo-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    margin-top: 1rem;
}

.promo-download {
    background: white;
    color: #764ba2;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.promo-login {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
}

/* Responsive Adjustments for Promo Section */
@media (max-width: 768px) {

    .axomify-promo {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .promo-qr-row {
        display: none;
        /* Hide QR row in mobile */
    }

    .promo-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 1rem;
    }

    .promo-flip-card {
        display: none;
        /* Hide flip card on mobile */
    }
}













/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.faq-container {
    max-width: 900px;
    margin: auto;
}

.faq-title {
    text-align: center;
    font-size: 1rem;
    border-radius: 20px;
    background: rgb(122, 81, 255);
    color: white;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
}

.faq-subtitle {
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #666;
}

/* FAQ Items */
.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s ease;
}

/* FAQ Question */
.faq-question {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-question:hover {
    background: #f1f1f1;
}

/* FAQ Answer (Hidden by Default)*/
.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    color: #555;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

/* Active FAQ Item */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1rem 1.5rem;
}

.faq-arrow {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}



/* Contact Section */
.contact-section {
    padding: 4rem 1.5rem;
    background: #f8f9fa;
}

.contact-container {
    max-width: 700px;
    margin: auto;
    text-align: center;
}

.contact-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-subtitle {
    color: #666;
    margin-bottom: 2.5rem;
}

/* Input Groups with Icons */
.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s ease;
}

.textarea-group i {
    top: 20px;
    transform: none;
}

.input-group textarea {
    resize: none;
}



/* Focus Effect */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Submit Button */
.contact-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}






/* Review Section */
.review-section {
    padding: 4rem 1.5rem;
    background: #ffffff;
    text-align: center;
}

.review-container {
    max-width: 1100px;
    margin: auto;
}

.review-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.review-subtitle {
    color: #666;
    margin-bottom: 3rem;
}

/* Review Slider Layout*/
.review-slider {
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 2rem;
    animation: slideReviews 18s infinite linear;
}

/* Review Card */
.review-card {
    min-width: 250px;
    background: #f8f9fa;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

/* Avatar Wrapper */
.review-avatar {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    position: relative;
}

/* Image */
.review-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* Initials Circle */
.review-initials {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    border-radius: 50%;
    display: none;
}

.review-username {
    font-size: 0.85rem;
    color: #777;
}

.review-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.review-card p {
    font-size: 0.9rem;
    color: #555;
}


/* Review Slider Animation */
@keyframes slideReviews {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* View All Button */
.view-all-btn {
    margin-top: 2rem;
    padding: 10px 20px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    transform: translateY(-3px);
}

/* Responsive Adjustments for Review Section */
@media (max-width: 768px) {

    .review-track {
        animation: none;
        flex-direction: column;
    }

    .review-card {
        width: 100%;
    }
}