:root {
    /* VIBRANT PALETTE */
    --primary-blue: #143D60;
    --accent-orange: #f97316;
    --success-green: #059669;
    --purple: #7c3aed;
    --navy-deep: #0b1f3b;
    --accent-green: #29e435;
    --white: #ffffff;
    --bg-body: #ffffff;
    --bg-light: #f8fafc;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --text-light: rgba(255, 255, 255, 0.95);
    --glass: rgba(255, 255, 255, 0.95);
    --border-light: rgba(30, 64, 175, 0.1);
    --transition-smooth: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    max-width: 100%;
}

html {
    overflow-x: hidden;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

/* ----------------------------------
   NAVBAR - Professional & Sleek
   ---------------------------------- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem clamp(1rem, 5vw, 6rem);
    background: var(--glass);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: var(--transition-smooth);
    box-sizing: border-box;
}

.logo img {
    height: 40px;
    width: auto;
    display: block;
}

.logo span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy-deep);
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--text-muted);
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    position: relative;
    width: 30px;
    height: 22px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--navy-deep);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}



.hamburger span {
    position: relative;
    z-index: 2;
}


@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--glass);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 2rem 5%;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 999;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        opacity: 0.9;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--accent-orange);
        transform: translateX(5px);
    }
}

/* ----------------------------------
   HERO SECTION - Image Slideshow
   ---------------------------------- */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--navy-deep);
    overflow: hidden;
    margin-top: 70px;
}

.slideshow-container {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
    z-index: 1;
}


.slide:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&q=80&w=2000');
}

.slide:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&q=80&w=2000');
}

.slide:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1550751827-4bd374c3f58b?auto=format&fit=crop&q=80&w=2000');
}

.slide:nth-child(4) {
    background-image: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&q=80&w=2000');
}

.slide.active {
    opacity: 0.5;
    transform: scale(1);
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 25, 47, 0.95) 0%,
            rgba(10, 25, 47, 0.8) 50%,
            rgba(10, 25, 47, 0.95) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    color: var(--white);
    padding: 20px;
    animation: fadeInScale 1s var(--ease-out);
}

.hero-content .label {
    display: inline-block;
    color: var(--text-muted);
    padding: 6px 0;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 45px;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.btn-group {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.btn {
    padding: 15px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #eb7424;
    box-shadow: 0 10px 25px rgba(209, 90, 32, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-deep);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    [style*="display: flex"]>div[style*="min-width: 280px"] {
        min-width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .cert-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }

    .split-footer-section {
        grid-template-columns: 1fr;
    }

    .feedback-side,
    .contact-side {
        padding: 3rem 2rem;
    }

    .split-wrapper {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .split-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        justify-items: center;
    }

    /* Gallery mobile */
    .gallery-container {
        width: 100%;
    }

    .gallery-item {
        width: calc(100% / 3);
    }

    /* Form responsive */
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 1rem 0;
    }

    .submit-btn {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    nav {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .footer-grid {
        gap: 1rem;
    }

    .split-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    padding-top: 40px;
}

.value-card {
    background: #e2e4e6;
    padding: 50px 30px 40px;
    border-radius: 20px;
    border: 1px solid var(--bg-light);
    text-align: left;
    position: relative;
    transition: 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(20, 61, 96, 0.08);
}

.circle-icon {
    position: absolute;
    top: -30px;
    right: 20px;
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #f4940e, #f7af2a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.value-card h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    font-size: 0.95rem;
    color: #526484;
}

.cert-section {
    background-color: var(--primary-blue);
    width: 100%;
    margin: 0;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cert-section {
    background: #0a1c31;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: 30rem;
}

.cert-main-title {
    color: var(--bg-body);
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -1px;
    margin-top: -40px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.cert-advantage h3 {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.cert-advantage h3::before {
    content: "";
    width: 10px;
    height: 30px;
    background: var(--accent-green);
    margin-right: 15px;
    display: inline-block;
}

.cert-advantage p {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.5;
    opacity: 0.9;
}

.cert-advantage {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.cert-advantage:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cert-advantage h3::before {
    width: 6px;
    height: 20px;
    border-radius: 3px;
}

/* Split About Section */
.split-about-container {
    background-color: #ffffff;
    padding: 100px 0;
    border-top: 1px solid #ccced1;
}

.split-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    align-items: center;
    gap: 80px;
    /* Space between text and numbers */
}

/* Left Side: Content */
.split-content {
    flex: 1.2;
}

.split-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #143D60;
    margin-bottom: 24px;
    line-height: 1.2;
}

.split-content p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Right Side: Stats Grid */
.split-stats {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.split-stat-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.split-stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.split-stat-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Tweak */
@media (max-width: 992px) {
    .split-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .split-stats {
        width: 100%;
        max-width: 500px;
    }
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
    padding: 80px 5%;
    background: #fff;
}

/* ===== GALLERY ITEM ===== */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    height: 250px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
    padding: 40px;
    text-align: center;
    background: #f5f5f5;
}

.gallery-title {
    font-size: 30px;
    margin-bottom: 25px;
}

.gallery-container {
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.gallery-track {
    display: flex;
    width: 200%;
    animation: slide 12s infinite;
}

.gallery-item {
    width: calc(100% / 6);
    padding: 10px;
}

.caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 8px;
    border-radius: 5px;
    font-size: 14px;
}

/* SLIDE 3 IMAGES AT A TIME */
@keyframes slide {
    0% {
        transform: translateX(0);
    }

    45% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-50%);
    }

    95% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===== SPLIT SECTION ===== */
.split-footer-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.feedback-side {
    padding: 100px 8%;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-side {
    padding: 100px 8%;
    background: #ffffff;
}

/* ===== FEEDBACK ===== */
.feedback-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}

.feedback-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
}


.feedback-card {
    flex: 0 0 100%;
    padding: 30px 20px;
    min-height: 200px;
    opacity: 0.4;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.feedback-card {
    opacity: 1;
    transform: scale(1);
}


.slider-controls {
    text-align: center;
    margin: 20px 0;
}

.slider-btn {
    background: rgba(235, 91, 0, 0.1);
    border: 2px solid #EB5B00;
    color: #EB5B00;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #EB5B00;
    color: white;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(235, 91, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: #EB5B00;
    transform: scale(1.2);
}

@keyframes fadeSide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ===== CONTACT FORM ===== */
.contact-side h2 {
    color: #143D60;
    margin-bottom: 30px;
    font-size: 35px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #EB5B00;
}

.submit-btn {
    background: #143553;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #577280;
}

/* ===== ANIMATION ===== */
@keyframes fadeSide {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    margin-top: auto;
    background: #082945;
    color: #94a3b8;
    padding: 4rem clamp(1rem, 5vw, 6rem) 2rem;
    z-index: 10;
    box-sizing: border-box;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.footer-col h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--green);
}

.footer-col p {
    font-size: 1rem;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
    transition: 0.2s;
}

.footer-col a:hover {
    color: var(--orange);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.social-links a:hover {
    background: var(--green);
    color: var(--navy);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .split-footer-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 5% 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* ================================
   MOBILE RESPONSIVE (<= 768px)
   ================================ */
@media (max-width: 768px) {

    /* ===== NAVBAR ===== */
    @media (max-width: 768px) {
        nav {
            display: flex;
            flex-direction: row;
            /* FIX */
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            flex: 1;
        }

        .hamburger {
            display: flex;
            position: relative;
            z-index: 1001;
        }
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--glass);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 1.5rem 0;
        gap: 15px;

        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
    }

    .nav-links.mobile-open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 10px 0;
    }

    /* ===== HERO ===== */
    .hero {
        height: auto;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.3rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 260px;
    }

    /* ===== VALUE GRID ===== */
    .value-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px 20px;
    }

    /* ===== CERT SECTION ===== */
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .cert-section {
        height: auto;
        padding: 60px 20px;
    }

    /* ===== SPLIT ABOUT ===== */
    .split-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .split-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ===== GALLERY ===== */
    .gallery-container {
        width: 100%;
    }

    .gallery-track {
        animation: none;
        /* stop sliding on mobile */
        flex-wrap: wrap;
        width: 100%;
    }

    .gallery-item {
        width: 100%;
        padding: 8px;
    }

    /* ===== FOOTER ===== */
    footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-col h5::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        flex: 1;
        text-align: left;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }


    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
    }
}
@media (max-width: 768px) {

    /* ===== STACK LAYOUT ===== */
    .split-footer-section {
        display: flex;
        flex-direction: column;
    }

    /* ===== FEEDBACK SIDE ===== */
    .feedback-side {
        padding: 40px 20px;
        width: 100%;
    }

    /* ===== CONTACT SIDE ===== */
    .contact-side {
        padding: 40px 20px;
        width: 100%;
    }

    /* ===== SLIDER FIX ===== */
    .feedback-slider {
        overflow: hidden;
        width: 100%;
    }

    .feedback-track {
        display: flex;
        transition: transform 0.4s ease;
    }

    .feedback-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px;

        /* FORCE FIX */
        opacity: 1 !important;
        transform: scale(1) !important;
        min-height: auto;
    }

    .feedback-card.active {
        opacity: 1;
        transform: scale(1);
    }

    /* ===== TEXT ===== */
    .feedback-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .feedback-user {
        font-size: 0.95rem;
    }

    /* ===== HIDE BUTTONS (optional) ===== */
    .slider-btn {
        display: none;
    }

    /* ===== FORM FIX ===== */
    .contact-side h2 {
        font-size: 26px;
        text-align: center;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
        padding: 10px 0;
    }

    .submit-btn {
        width: 100%;
        padding: 14px;
    }
}