/* =============================================
   MADRASA WEBSITE - MAIN STYLE
   ============================================= */

:root {
    --primary: #1b5e20;
    --primary-dark: #0f3d13;
    --primary-light: #4caf50;
    --secondary: #c9a84c;
    --gold-light: #f5e6c8;
    --accent: #d4af37;
    --text: #1e2b1e;
    --light-bg: #f8faf8;
    --white: #ffffff;
    --shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 45px rgba(0, 0, 0, 0.15);
    --radius: 16px;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--text);
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width:768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

@media (max-width:576px) {
    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }
}

.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 12px 0;
}

.navbar-custom .navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    padding: 0;
}

.navbar-custom .navbar-brand img {
    height: 50px;
    width: auto;
    display: block;
    margin-top: -5px;
}

.navbar-custom .navbar-brand i {
    color: var(--secondary);
    margin-right: 8px;
}

.navbar-custom .navbar-nav {
    align-items: center;
}

.navbar-custom .nav-item {
    position: relative;
}

.navbar-custom .nav-link {
    font-weight: 500;
    color: var(--text) !important;
    padding: 8px 18px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--primary) !important;
    background: rgba(27, 94, 32, 0.08);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--secondary);
    border-radius: 10px;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.navbar-custom .nav-link.active::after {
    width: 24px;
    opacity: 1;
}

.navbar-custom .nav-link:hover::after {
    width: 18px;
    opacity: 0.6;
}

@media (max-width:991px) {
    .navbar-custom .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        margin-top: 12px;
    }

    .navbar-custom .nav-link::after {
        display: none !important;
    }

    .navbar-custom .nav-link.active {
        background: rgba(27, 94, 32, 0.1) !important;
        border-radius: 50px;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

.hero .shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.hero .shape-1 {
    width: 400px;
    height: 400px;
    top: -120px;
    right: -80px;
    animation: floatShape 8s ease-in-out infinite;
}

.hero .shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -60px;
    animation: floatShape 10s ease-in-out infinite reverse;
}

.hero .shape-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 15%;
    background: rgba(255, 215, 0, 0.06);
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -30px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.hero-content .badge-hero {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--secondary);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content .arabic-tagline {
    font-size: 1.8rem;
    font-family: 'Amiri', serif;
    opacity: 0.85;
    margin-bottom: 0.5rem;
}

.hero-content .tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    line-height: 1.2;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-hero-primary {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    display: inline-block;
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-hero-outline {
    background: transparent;
    color: var(--white);
    padding: 14px 38px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    display: inline-block;
    text-decoration: none;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-4px);
    color: var(--white);
    text-decoration: none;
}

@media (max-width:992px) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content .tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }
}

@media (max-width:576px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .arabic-tagline {
        font-size: 1.3rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stats .stat-number {
        font-size: 1.8rem;
    }
}

/* ===== HERO IMAGE FALLBACK ===== */
.hero-image-wrap {
    position: relative;
    z-index: 2;
}

.hero-img-box {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    position: relative;
}

.hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-img-box .fallback-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== ABOUT IMAGE FALLBACK ===== */
.about-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    background: var(--light-bg);
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-img-box .fallback-icon {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.25);
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FEATURE CARDS ===== */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card .icon {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: inline-block;
    background: rgba(27, 94, 32, 0.08);
    padding: 14px;
    border-radius: 16px;
    line-height: 1;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature-card p {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    background: var(--light-bg);
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-content h3 span {
    color: var(--secondary);
}

.about-content p {
    color: #555;
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card .stars {
    color: var(--secondary);
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.7;
    margin: 12px 0 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-author .name {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0;
}

.testimonial-author .role {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 2.6rem;
    font-weight: 800;
}

.cta-section h2 span {
    color: var(--secondary);
}

.cta-section p {
    opacity: 0.85;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0.5rem auto 1.8rem;
}

.btn-cta {
    background: var(--secondary);
    color: var(--primary-dark);
    padding: 14px 44px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.25);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.35);
    color: var(--primary-dark);
}

@media (max-width:576px) {
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 120px 0 60px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-header .page-title {
    font-size: 3rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.page-header .page-title span {
    color: var(--secondary);
}

@media (max-width:576px) {
    .page-header .page-title {
        font-size: 2.2rem;
    }
}

/* ===== COURSE, EVENT, FAQ, COMMITTEE CARDS ===== */
.course-card,
.event-card,
.faq-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--secondary);
}

.course-card:hover,
.event-card:hover,
.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.course-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.course-card h5,
.event-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.course-card p,
.event-card p {
    color: #555;
    margin-bottom: 0;
}

.committee-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    border-top: 4px solid var(--secondary);
}

.committee-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.committee-card .avatar-lg {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 700;
}

.committee-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.committee-card .role {
    color: #888;
    font-size: 0.9rem;
}

.committee-card p {
    font-size: 0.92rem;
    color: #555;
    margin-top: 0.5rem;
}

.faq-card {
    border-left-color: var(--primary);
}

.faq-card h5 {
    color: var(--primary);
    font-weight: 700;
}

.faq-card p {
    color: #555;
    margin-bottom: 0;
}

/* ===== GALLERY ===== */
.gallery-img-box {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 1/1;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 3rem;
    position: relative;
}

.gallery-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* ===== CONTACT ===== */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 4px solid var(--secondary);
}

.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.contact-info-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-info-card h6 {
    font-weight: 700;
    color: var(--primary);
}

.contact-info-card p {
    color: #555;
    margin-bottom: 0;
    word-break: break-word;
}

/* ===== DONATION ===== */
.qr-code-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.qr-code-box img {
    max-width: 200px;
    margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
    background: #0f1a0f;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 30px;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.footer .brand-footer {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
}

.footer .brand-footer i {
    color: var(--secondary);
}

.footer .footer-address {
    font-style: normal;
    line-height: 1.8;
    margin-top: 0.8rem;
}

.footer .footer-address i {
    color: var(--secondary);
    width: 24px;
}

.footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    margin-right: 8px;
    font-size: 1.1rem;
}

.footer .social-links a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer .footer-links a {
    color: rgba(255, 255, 255, 0.6);
    display: block;
    padding: 4px 0;
    transition: var(--transition);
}

.footer .footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 0.9rem;
    text-align: center;
}

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    background: #25D366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 2.4rem;
    line-height: 60px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float .pulse-ring {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

.call-float {
    position: fixed;
    bottom: 95px;
    right: 25px;
    z-index: 999;
    background: #34B7F1;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    font-size: 2rem;
    line-height: 55px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.call-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ===== SCROLL TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 160px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-size: 1.4rem;
    box-shadow: 0 4px 20px rgba(27, 94, 32, 0.3);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    cursor: pointer;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
}

@media (max-width:576px) {
    .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 135px;
        right: 15px;
    }

    .call-float {
        width: 45px;
        height: 45px;
        font-size: 1.6rem;
        line-height: 45px;
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 2rem;
        line-height: 50px;
        bottom: 20px;
        right: 15px;
    }
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.bg-light-custom {
    background: var(--light-bg);
}

.text-secondary-gold {
    color: var(--secondary);
}

.shadow-soft {
    box-shadow: var(--shadow);
}

/* ===== SLIDER DOTS - Active Highlight ===== */
.carousel-indicators button.active {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transform: scale(1.2);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.carousel-indicators button:not(.active) {
    background: transparent !important;
    border-color: var(--primary) !important;
}

.carousel-indicators button:hover {
    transform: scale(1.1);
}

/* ===== NEXT/PREV BUTTONS - Hover Effect ===== */
.carousel-control-prev span:hover,
.carousel-control-next span:hover {
    background: var(--primary-dark) !important;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

/* ===== RESPONSIVE - Mobile ===== */
@media (max-width: 576px) {
    .carousel-control-prev {
        left: -10px !important;
    }

    .carousel-control-next {
        right: -10px !important;
    }

    .carousel-control-prev span,
    .carousel-control-next span {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.4rem !important;
    }

    .carousel-inner {
        padding: 30px 15px !important;
    }

    .carousel-inner p {
        font-size: 1.3rem !important;
    }
}