/* Slider Image */
.section-b-space {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container-fluid-lg {
    width: 100%;
    margin: 0;
    padding: 0;
}

.custom-slider {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fixed Slide Content Positioning */
.slide-content {
    position: absolute;
    bottom: 100px;
    right: 100px;
    text-align: right;
    z-index: 10;
}

.animated-heading {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 20px 0;
    color:#2aed96;
    opacity: 1; /* Changed from 0 to 1 to ensure visibility */
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    display: inline-block;
}

.buy-now-btn {
    display: inline-block;
    padding: 5px 30px;
    background: black;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.buy-now-btn:hover {
    background: linear-gradient(45deg, #ff5252, #ff7676);
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 107, 107, 0.4);
}

/* Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    transform: scale(1.1);
    background: rgba(255,255,255,0.3);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 20px !important;
    font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .animated-heading {
        font-size: 1rem;
    }
    .slide-content {
        bottom: 60px;
        right: 60px; 
    }
    .buy-now-btn {
        padding: 10px 25px;
        font-size: 0.5rem;
    }
}

@media (max-width: 768px) {
    .custom-slider {
        height: 450px; 
    }
    .animated-heading {
        font-size: 0.5rem;
    }
    .slide-content {
        bottom: 40px;
        right: 40px;
    }
}

@media (max-width: 576px) {
    .custom-slider {
        height: 400px; 
    }
    .animated-heading {
        font-size: 1.5rem;
        padding: 0.3rem 1rem;
    }
    .slide-content {
        bottom: 30px;
        right: 30px;
    }
    .buy-now-btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}  
    /* ===================================================Slider Image Code End =========================================================*/

@media (max-width: 1199px) {
    .custom-slider {
        height: 350px;
    }
}

@media (max-width: 991px) {
    .custom-slider {
        height: 300px;
    }
    
    .slide-content {
        bottom: 20px;
        right: 50px;
        max-width: 250px;
    }
    
    .category-img-box {
        height: 180px;
    }
}



@media (max-width: 400px) {
    .custom-slider {
        height: 180px;
    }
    
    .slide-content {
        max-width: 150px;
    }
    
    .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }
}
/*===================================================Our Cake Category =========================================================*/
.cake-categories {
    padding: 80px 0;
    /*background-color: #fff9fa;*/
    background-color:#d7ebe1;
    margin-top: -46px;
}

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

.section-title {
    font-size: 2.5rem;
    color: #e83e8c;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}
.section-title1 {
    font-size: 2.5rem;
    color: #d7ebe1;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}
.section-title1:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #d7ebe1;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #e83e8c;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
}
.section-subtitle1 {
    color: #008080
;
    font-size: 1.1rem;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.category-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.category-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-img-box img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.3));
}

.category-info {
    padding: 20px;
    text-align: center;
}

.category-info h5 {
    font-weight: 600;
    color: #343a40;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.category-card:hover .category-info h5 {
    /*color: #e83e8c;*/
    color:#9ad1b6;
}



.view-more {
    font-size: 0.9rem;
    color: #e83e8c;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-card:hover .view-more {
    color: #d23369;
}

.btn-explore-all {
    display: inline-block;
    padding: 12px 30px;
    /*background: #e83e8c;*/
    background:#9ad1b6;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    /*border: 2px solid #e83e8c;*/
   border: 2px solid #9ad1b6;

}

.btn-explore-all:hover {
    background: transparent;
    /*color: #e83e8c;*/
    color:#9ad1b6;
    transform: translateY(-3px);
}

.btn-explore-all i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-explore-all:hover i {
    transform: translateX(5px);
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.5rem;
    }
    .cake-categories {
    padding: 100px 0;
}
    .category-img-box {
        height: 160px;
    }
}
.explore-now {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: #e83e8c;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
    text-align: center;
    width: max-content;
}

.category-card:hover .explore-now {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.category-card:hover .category-img-box img {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-img-box {
        height: 180px;
    }
    
    .explore-now {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
    
    .category-info {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .category-img-box {
        height: 180px;
    }
    
    .catName {
        font-size: 0.9rem; 
    }
    
    .category-info {
        padding: 10px; 
    }
}
/*============================================Our Cake Category End ================================================*/

/* ================================Video Start==================================== */
.fullwidth-video-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 150vh; 
    margin: 0;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}
/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fullwidth-video-section {
        height: 60vh;
    }
}

@media (max-width: 768px) {
    .fullwidth-video-section {
        height: 50vh;
    }
    
    /* If using content overlay */
    .video-content {
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .fullwidth-video-section {
        height: 40vh;
    }
}
/* Mobile Landscape Orientation */
@media (max-height: 500px) and (orientation: landscape) {
    .fullwidth-video-section {
        height: 100vh;
    }
}
/*========================================================== Video End ===============================================================*/

/*=======================================================Same Day=======================================*/
.delivery-partners-section {
    padding: 50px 0;
background: linear-gradient(to right, #fff5f0 0%, #ffebdf 100%);}

.section-title {
    font-size: 1.8rem;
    color: #e83e8c;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1rem;
}

.delivery-partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    max-height:305px;
    max-width:360px;
    margin-left:162px;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-bottom: 1px solid #f5f5f5;
    margin-top:10px;
}

.partner-logo img {
    max-height: 110px;
    max-width: 80%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo img {
    transform: scale(1.1);
}

.partner-info {
    padding: 25px;
    text-align: center;
}

.partner-info h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    margin-top:10px;
}

.delivery-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #e83e8c;
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.delivery-meta i {
    font-size: 1rem;
}

.order-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #e83e8c;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e83e8c;
    font-size: 0.9rem;
}

.order-btn:hover {
    background: transparent;
    color: #e83e8c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
}

.partner-badge {
    position: absolute;
    top: 15px;
    right: -25px;
    background: #ffc107;
    color: #333;
    padding: 5px 25px;
    font-size: 0.8rem;
    font-weight: 600;
    transform: rotate(45deg);
    width: 100px;
    text-align: center;
}

.zomato-card .partner-badge {
    background: #e83e8c;
    color: white;
}

.swiggy-card .partner-badge {
    background: #fc8019;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .delivery-partners-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .partner-logo {
        height: 100px;
    }
    
    .partner-info {
        padding: 20px;
    }
    .partner-card{
        margin-left:0px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .partner-badge {
        right: -30px;
        font-size: 0.7rem;
        width: 90px;
    }
    .partner-card{
        margin-left:0px;
    }
}
/*==========================================Same Day End=================================*/

/* ===========================================ICON START===================================*/
.features-section {
    padding: 60px 0;
    background: #fff9fa;
    position: relative;
    overflow: hidden;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 15px 10px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    max-width: 180px;
    min-height: 180px;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.2);
}

.feature-icon-box {
    position: relative;
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    position: relative;
    z-index: 3;
    transition: all 0.5s ease;
}

.feature-card:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
}

.icon-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 142, 0.2) 100%);
    border-radius: 50%;
    z-index: 2;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.feature-card:nth-child(2) .icon-circle,
.feature-card:nth-child(2) .icon-wave {
    background: linear-gradient(135deg, #ff9a3c 0%, #ffc93c 100%);
}

.feature-card:nth-child(3) .icon-circle,
.feature-card:nth-child(3) .icon-wave {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

.feature-card:nth-child(4) .icon-circle,
.feature-card:nth-child(4) .icon-wave {
    background: linear-gradient(135deg, #2af598 0%, #08aeea 100%);
}

.feature-card h3 {
    font-size: 1rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.feature-card h3:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #ff6b6b;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card:nth-child(2) h3:after {
    background: #ff9a3c;
}

.feature-card:nth-child(3) h3:after {
    background: #6a11cb;
}

.feature-card:nth-child(4) h3:after {
    background: #2af598;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-dots {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ff6b6b 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: -1;
}

/* Responsive Design */
@media (max-width: 992px) {
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .feature-cards {
        grid-template-columns: 1fr;
        justify-items: center; /* Add this to center grid items */
    }
    
    .feature-card {
        padding: 30px 20px;
        max-width: 300px; /* Optional: set a max-width for better appearance */
        width: 100%; /* Ensure it takes full width up to max-width */
    }
    
    .feature-icon-box {
        width: 80px;
        height: 80px;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}
/*===========================================================ICON END ===========================*/

/*==========================================================Budget Start============================*/
.budget-section {
    background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
    padding: 4rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.budget-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.subheading {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Cards Layout */
.cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    width: 280px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.card img {
    height: 120px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.card h3 {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.card p {
    color: #888;
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

/* Individual Card Colors */
.card-1 {
    border-top: 4px solid #ff6b6b;
}

.card-1 h3 {
    color: #ff6b6b;
}

.card-1 img {
    filter: drop-shadow(0 5px 15px rgba(255,107,107,0.3));
}

.card-2 {
    border-top: 4px solid #48dbfb;
}

.card-2 h3 {
    color: #48dbfb;
}

.card-2 img {
    filter: drop-shadow(0 5px 15px rgba(72,219,251,0.3));
}

.card-3 {
    border-top: 4px solid #1dd1a1;
}

.card-3 h3 {
    color: #1dd1a1;
}

.card-3 img {
    filter: drop-shadow(0 5px 15px rgba(29,209,161,0.3));
}

/* Hover Effects */
.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cards {
        gap: 1.5rem;
    }
    
    .card {
        width: 240px;
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .budget-section {
        padding: 3rem 0;
    }
    
    .budget-section h2 {
        font-size: 2rem;
    }
    
    .subheading {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cards {
        gap: 1.2rem;
    }
    
    .card {
        width: 220px;
        padding: 1.2rem;
    }
    
    .card img {
        height: 100px;
    }
}

@media (max-width: 576px) {
    .budget-section {
        padding: 2rem 0;
    }
    
    .cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .card {
        width: 100%;
        max-width: 300px;
    }
    
    .card img {
        height: 90px;
    }
}

@media (max-width: 400px) {
    .budget-section h2 {
        font-size: 1.8rem;
    }
    
    .subheading {
        font-size: 0.9rem;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
}
/*==========================================================Budget End============================*/

/* =====================================Multiple Image Slider=============================*/
.cake-categories-slider {
        padding: 60px 0;
        background: #fff9f9;
        position: relative;
    }
    
    .coverflow-slider {
        width: 100%;
        padding: 50px 30px;
        overflow: hidden;
    }
    /*======================================================FEEDBACK================================================*/
      .testimonials-section {
            background-color: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 10px 30px rgba(210, 60, 103, 0.1);
            position: relative;
            overflow: hidden;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }
        
        .section-title {
            font-size: 2.8rem;
            background: linear-gradient(to right, #d23c67, #ff6b8b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .section-subtitle {
            color: #666;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #ffb6c8, #d23c67, #ffb6c8);
            margin: 25px auto;
            border-radius: 2px;
        }
        
        /* Horizontal Scrolling Testimonials */
        .scrolling-wrapper {
            width: 100%;
            overflow: hidden;
            position: relative;
            margin-top: 30px;
        }
        
        .scrolling-container {
            display: flex;
            animation: scroll 40s linear infinite;
            width: max-content;
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .scrolling-container:hover {
            animation-play-state: paused;
        }
        
        /* Testimonial Cards */
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin-right: 30px;
            min-width: 350px;
            box-shadow: 0 5px 15px rgba(210, 60, 103, 0.08);
            border-top: 4px solid #d23c67;
            transition: all 20s ease;
            flex-shrink: 0;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(210, 60, 103, 0.15);
        }
        
        .testimonial-text {
            font-size: 1.05rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 20px;
            position: relative;
            font-style: italic;
        }
        
        .testimonial-text:before {
            content: '"';
            font-size: 60px;
            color: #d23c67;
            opacity: 0.15;
            position: absolute;
            left: -15px;
            top: -30px;
            font-family: Georgia, serif;
        }
        
        .rating {
            color: #ffc107;
            margin-bottom: 15px;
            font-size: 20px;
            letter-spacing: 2px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .author-img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, #ffb6c8, #d23c67);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.3rem;
        }
        
        .author-info h5 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 5px;
        }
        
        .author-info span {
            font-size: 0.9rem;
            color: #888;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 30px 15px;
            }
            
            .testimonials-section {
                padding: 30px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .section-subtitle {
                font-size: 1rem;
            }
            
            .testimonial-card {
                min-width: 280px;
                padding: 25px 20px;
                margin-right: 20px;
            }
            
            .testimonial-text {
                font-size: 1rem;
            }
            
            .testimonial-text:before {
                font-size: 50px;
                left: -10px;
                top: -25px;
            }
        }
