/* Morphing Background */
@keyframes morphBackground {
    0% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40%/50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70%/60% 30% 70% 40%; }
}

.morph-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(12,122,248,0.35) 0%,
        rgba(18,187,253,0.25) 30%,
        rgba(255,255,255,0.1) 100%);
    z-index: -1;
    pointer-events: none;
}

.morph-shape {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(12,122,248,0.8) 0%, rgba(18,187,253,0.6) 100%);
    opacity: 0.15;
    filter: blur(80px);
    animation: morphBackground 15s ease-in-out infinite;
}

.morph-shape:nth-child(1) {
    top: -200px;
    right: -100px;
}

.morph-shape:nth-child(2) {
    bottom: -200px;
    left: -100px;
    animation-delay: -7s;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, 
        rgba(12,122,248,0.2) 0%,
        rgba(18,187,253,0.15) 50%,
        rgba(255,255,255,0.05) 100%);
    overflow: hidden;
    padding: 5px 0 10px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 120%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(12,122,248,0.15) 0%, rgba(18,187,253,0.1) 50%, transparent 70%);
    transform: rotate(-12deg);
    pointer-events: none;
}

.hero-title {
    margin-top: -1%;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #003366 0%, #003366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-buttons .btn {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 8px 25px rgba(12,122,248,0.25);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(12,122,248,0.3);
}

.hero-buttons .btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    margin-left: 1rem;
}

.hero-buttons .btn-outline-primary:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual Styles */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
    animation: fadeInRight 1s ease-out 0.4s backwards;
}

.floating-shape {
    border-radius: 50%;
    position: absolute;
    filter: blur(2px);
}

.floating-shape:nth-child(1) {
    background: linear-gradient(135deg, rgba(12,122,248,0.1) 0%, rgba(18,187,253,0.1) 100%);
    animation: float 6s ease-in-out infinite;
}

.floating-shape:nth-child(2) {
    background: linear-gradient(135deg, rgba(18,187,253,0.15) 0%, rgba(12,122,248,0.15) 100%);
    animation: float 8s ease-in-out infinite reverse;
}

.hero-icon {
    position: relative;
    z-index: 1;
    animation: float 5s ease-in-out infinite;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(12,122,248,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(12,122,248,0.05);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transform: rotate(-10deg);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(0deg) scale(1.1);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}


.why-choose-heading {
    margin-top: -6%; /* Move it up slightly */
}

.no-margin-top {
    margin-top: -10%;
}


/* Service Cards */
.service-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 25px;
    padding:40px;
    margin:20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(12,122,248,0.08), 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 2px solid rgba(12,122,248,0.08);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 25px 25px 0 0;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(12,122,248,0.15), 0 10px 25px rgba(0,0,0,0.05);
    border-color: rgba(12,122,248,0.2);
}

.service-card-header {
    background: linear-gradient(135deg, rgba(12,122,248,0.05) 0%, rgba(18,187,253,0.08) 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(12,122,248,0.03) 0%, transparent 70%);
    transition: all 0.6s ease;
    transform: scale(0);
}

.service-card:hover .service-card-header::after {
    transform: scale(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif;
    font-weight: 900;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 25px rgba(12,122,248,0.3);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2rem;
    color: white;
    display: block;
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(12,122,248,0.4);
}

.service-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.service-card:hover h4 {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.service-card-body {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.service-card-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-card-body p {
    color: var(--text-dark);
}

.service-card .btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    border: none;
    border-radius: 15px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.service-card:hover .btn::before {
    left: 100%;
}

.service-card:hover .btn {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(12,122,248,0.3);
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(12,122,248,0.06);
    text-align: center;
    margin: 1rem 0;
    border: 1px solid rgba(12,122,248,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12,122,248,0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12,122,248,0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(12,122,248,0.05);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(12,122,248,0.1);
}

.blog-card h5 a {
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.blog-card h5 a:hover {
    color: var(--primary-blue);
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Companies Section */
.company-logo-wrapper {
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(12,122,248,0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(12,122,248,0.05);
}

.company-logo-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(12,122,248,0.08);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(12,122,248,0.95) 0%, rgba(18,187,253,0.95) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
    
}

.cta-section .btn-light {
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-section .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.cta-section .btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Featured Sample Resumes Styles */
.samples-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 1rem 0;
    scrollbar-width: thin;
    scrollbar-color: rgba(12,122,248,0.3) transparent;
}

.samples-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.samples-scroll-container::-webkit-scrollbar-track {
    background: rgba(12,122,248,0.1);
    border-radius: 10px;
}

.samples-scroll-container::-webkit-scrollbar-thumb {
    background: rgba(12,122,248,0.3);
    border-radius: 10px;
}

.samples-scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(12,122,248,0.5);
}

.samples-scroll-wrapper {
    display: flex;
    gap: 1.5rem;
    padding: 0 1rem;
}

.sample-card-home {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(12,122,248,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(12,122,248,0.05);
    flex-shrink: 0;
    width: 300px;
}

.sample-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(12,122,248,0.15);
}

.sample-thumbnail-home {
    position: relative;
    width: 300px;
    height: 420px;
    overflow: hidden;
    cursor: zoom-in;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-thumbnail-home img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: contrast(1.15) brightness(1.1) saturate(1.1);
}

.sample-card-home:hover .sample-thumbnail-home img {
    transform: scale(1.05);
}

.sample-overlay-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(12,122,248,0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sample-thumbnail-home:hover .sample-overlay-home {
    opacity: 1;
}

.sample-overlay-home i {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
}

.sample-overlay-home .click-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.sample-info-home {
    padding: 1rem;
}

.sample-category-home {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sample-category-home i {
    font-size: 0.8rem;
}

.sample-title-home {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modal-image {
    width: 100%;
    border-radius: 10px;
}

/* Homepage Success Stories Override */
.success-story-card .story-photo,
.success-story-card .demo-avatar {
    width: 60px !important;
    height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-visual {
        margin-top: 3rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 1rem 0;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .sample-card-home {
        margin-bottom: 2rem;
    }
}

/* Extra Mobile Responsive Fixes */
@media (max-width: 767px) {
    /* Hero Section */
    .hero-title {
        font-size: 1.8rem; /* smaller for mobile */
        line-height: 1.3;
        margin-top: 0;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 30px;
    }

    /* Morph Shapes */
    .morph-shape {
        width: 300px;
        height: 300px;
        filter: blur(40px);
    }

    /* Feature & Service Cards */
    .feature-card,
    .service-card,
    .testimonial-card,
    .blog-card {
        padding: 1.2rem;
        margin: 1rem 0;
        border-radius: 15px;
    }

    .feature-title,
    .service-card h4 {
        font-size: 1.1rem;
    }

    .service-card-body p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .service-card .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
        font-size: 0.9rem;
    }

    .testimonial-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    /* Blog Cards */
    .blog-card {
        margin-bottom: 1.5rem;
    }

    /* Sample Resumes */
    .sample-card-home {
        width: 250px;
    }

    .sample-thumbnail-home {
        width: 250px;
        height: 350px;
    }

    .sample-title-home {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    /* Even Smaller Phones */
    .hero-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.7rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-buttons .btn,
    .btn-lg {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.7rem !important;
        border-radius: 20px !important;
    }

    .hero-image-container,
    .hero-standing-image,
    .standing-img {
        max-width: 120px !important;
        margin: 0 auto !important;
    }

    .why-choose-heading {
        font-size: 1.1rem !important;
        margin-top: 0 !important;
    }

    .features-row {
        gap: 0.5rem !important;
    }

    .feature-strip {
        padding: 0.4rem 0.5rem !important;
        font-size: 0.85rem !important;
        gap: 0.5rem !important;
    }

    .feature-icon {
        font-size: 1rem !important;
        width: 22px !important;
        height: 22px !important;
        margin-right: 0.4rem !important;
    }

    .feature-strip .feature-text h5 {
        font-size: 0.8rem !important;
    }

    .feature-strip .feature-text p {
        font-size: 0.7rem !important;
    }

    .service-item {
        padding: 0.5rem 0.2rem !important;
        margin-bottom: 0.7rem !important;
        min-width: 0 !important;
        width: 100% !important;
        height: auto !important;
    }

    .service-title {
        font-size: 0.9rem !important;
    }

    .service-description {
        font-size: 0.8rem !important;
    }

    .service-actions .btn-service {
        font-size: 0.85rem !important;
        padding: 0.3rem 0.5rem !important;
        border-radius: 8px !important;
    }

    .samples-scroll-container {
        padding: 0.2rem 0 !important;
    }

    .sample-card-home {
        min-width: 200px !important;
        max-width: 220px !important;
    }

    .sample-thumbnail-home {
        width: 200px !important;
        height: 280px !important;
    }

    .sample-title-home {
        font-size: 0.7rem !important;
    }

    .company-logo-wrapper {
        padding: 0.5rem !important;
    }

    .company-logo-wrapper strong {
        font-size: 0.8rem !important;
    }

    .success-story-card {
        padding: 0.4rem !important;
        font-size: 0.75rem !important;
        gap: 0.2rem !important;
    }

    .story-photo,
    .demo-avatar {
        width: 28px !important;
        height: 28px !important;
        font-size: 0.9rem !important;
    }

    .modal-lg {
        max-width: 99vw !important;
    }

    h2, h3, h4, h5 {
        font-size: 1rem !important;
    }

    .mb-5, .mb-4 {
        margin-bottom: 0.7rem !important;
    }

    .mt-4 {
        margin-top: 0.7rem !important;
    }

    .container {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .section,
    .section-alt,
    .cta-section,
    .blog-preview {
        padding: 1rem 0 !important;
    }

    .blog-card {
        padding: 0.7rem !important;
        font-size: 0.85rem !important;
    }
}

/* --- Mobile Hero Section: Make title and image larger, hide image overflow --- */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem !important;    /* Larger title */
    margin-bottom: 1rem !important;
  }
  .hero-image-container,
  .hero-standing-image,
  .standing-img {
    max-width: 180px !important;     /* Larger image */
    max-height: 180px !important;
    width: 100% !important;
    margin-top: 10%;
    height: auto !important;
    overflow: hidden !important;     /* Hide overflow */
    border-radius: 18px !important;  /* Optional: rounded corners */
    display: block !important;
    margin: 0 auto !important;
    /* background: #fff;                Optional: background for contrast */
  }
  .hero-image-container img,
  .hero-standing-image img,
  .standing-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block;
  }
}

/* --- Perfect mobile alignment for hero section --- */
@media (max-width: 480px) {
  .hero-section {
    padding: 1.2rem 0.5rem 1.5rem 0.5rem !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero-title,
  .hero-subtitle,
  .hero-buttons {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100% !important;
    max-width: 95vw !important;
  }
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.7rem !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.5rem !important;
  }
  .hero-buttons .btn {
    width: 70vw !important;
    max-width: 200px !important;
    min-width: 120px !important;
    margin: 0 auto !important;
    font-size: 0.8rem !important;
    padding: 0.5rem 0.8rem !important;
  }
  .hero-image-container,
  .hero-standing-image,
  .standing-img {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 1.2rem auto 0.5rem auto !important;
    max-width: 480px !important;
    max-height: 480px !important;
    overflow: hidden !important;
    border-radius: 18px !important;
    /* background: #fff; */
  }
  .hero-image-container img,
  .hero-standing-image img,
  .standing-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    display: block;
  }
}

/* --- Perfect mobile alignment for success stories --- */
@media (max-width: 480px) {
  .success-story-card {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.3rem !important;
    padding: 0.6rem 0.4rem !important;
    margin: 0.3rem 0 !important;
    width: 95vw !important;
    max-width: 95vw !important;
    box-sizing: border-box !important;
    font-size: 0.8rem !important;
  }
  .story-photo-container {
    margin-bottom: 0.3rem !important;
    align-self: center !important;
  }
  .story-photo,
  .demo-avatar {
    margin: 0 auto !important;
    display: block !important;
  }
  .story-content {
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }
  .story-header,
  .story-name,
  .story-position,
  .story-company,
  .story-experience,
  .story-review {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
