/* ===================================
   CSS ROOT VARIABLES
   =================================== */
:root {
    /* Brand Colors */
    --primary-color-1: #1A3D7C;  /* Deep Blue */
    --primary-color-2: #F39C12;  /* Vibrant Orange */
    
    /* Secondary Colors */
    --secondary-color-1: #163463;  /* Darker Blue (Hover) */
    --secondary-color-2: #D4840F;  /* Darker Orange (Hover) */
    --accent-color: #2980B9;  /* Accent Blue (Info) */
    
    /* Neutral Colors */
    --text-dark: #2C2C2C;  /* Dark Gray */
    --text-light: #6E6E6E;  /* Medium Gray */
    --text-white: #FFFFFF;  /* Pure White */
    
    /* Background Colors */
    --bg-light: #F7F9FC;  /* Off-White */
    --bg-white: #FFFFFF;  /* Pure White */
    --bg-dark: #1A3D7C;  /* Deep Blue */
    --bg-gray: #E8E8E8;  /* Light Gray */
    
    /* Accent Colors */
    --accent-success: #27AE60;  /* Accent Green */
    --accent-error: #E74C3C;  /* Accent Red */
    --accent-info: #2980B9;  /* Accent Blue */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Font Sizes */
    --font-size-base: 16px;
    --font-size-small: 14px;
    --font-size-large: 18px;
    --font-size-heading: 2.5rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

/* ===================================
   GLOBAL STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
    transition: all 0.3s ease;
}
/*
img {
    max-width: 100%;
    height: auto;
} */

/* ===================================
   NAVIGATION BAR
   =================================== */
.navbar {
    background: var(--primary-color-1);
    padding: 1rem 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white) !important;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    color: var(--text-white) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    padding: 0.5rem 0.5rem !important;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color-2) !important;  /* Vibrant Orange */
}

.btn-contact {
    background: var(--primary-color-2);  /* Vibrant Orange */
    color: var(--text-white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background: var(--secondary-color-2);  /* Darker Orange */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white) !important;
}

.navbar-toggler {
    border: none;
    color: var(--text-white);
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ===================================
   SECTION HEADING (Consistent Style)
   =================================== */
.section-heading {
    font-family: var(--font-heading);
    font-size: var(--font-size-heading);
    font-weight: 700;
    color: var(--primary-color-1);
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color-2);  /* Vibrant Orange */
    border-radius: 2px;
}

.text-white .section-heading {
    color: var(--text-white);
}

.text-white .section-heading::after {
    background: var(--primary-color-2);  /* Vibrant Orange */
}

/* ===================================
   SECTION PARAGRAPH
   =================================== */
.section-paragraph {
    font-family: var(--font-body);
    font-size: var(--font-size-large);
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color-1) 0%, var(--secondary-color-1) 100%);  /* Deep Blue gradient */
    background-image: url('../images/banner-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 61, 124, 0.85), rgba(22, 52, 99, 0.75));
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-meta {
    color: var(--text-white);
    font-size: var(--font-size-large);
}

.hero-date,
.hero-location {
    margin: 0.5rem 0;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: start;
}

.btn-primary-custom {
    background: var(--primary-color-2);  /* Vibrant Orange */
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-large);
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-primary-custom:hover {
    background: var(--secondary-color-2);  /* Darker Orange */
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--text-white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border: 2px solid var(--text-white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-large);
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--text-white);
    color: var(--primary-color-1);  /* Deep Blue */
    transform: translateY(-3px);
}

.springer-logo {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
}

.logo-circle {
    width: 150px;
    /* background: var(--text-white); */
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 auto;
    /* box-shadow: var(--shadow-xl); */
    flex-direction: column;
}

.logo-circle i {
    font-size: 3rem;
    color: var(--primary-color-1);
}

.springer-logo p {
    color: var(--text-white);
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
}
.springer-logo h6{
    color: var(--text-white);
}
.logo-slider {
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.banner-padding{
    padding-top: 70px;
    padding-bottom: 150px;
}
.hero-meta i{
    color: var(--secondary-color-2);
}
/* ===================================
   WAVY SEPARATOR
   =================================== */
.wave-separator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    z-index: 1;
}

.wave-separator svg {
    width: 100%;
    height: 100%;
    fill: var(--bg-white);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.about-section img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* ===================================
   CALL FOR PAPERS SECTION
   =================================== */
.cfp-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.topic-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color-2);  /* Vibrant Orange */
}

.topic-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.topic-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color-2);  /* Vibrant Orange */
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.topic-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.topic-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color-1);
    margin-bottom: 1rem;
}

.topic-list {
    list-style: none;
    padding: 0;
}

.topic-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: var(--font-size-base);
    display: flex;
    align-items: center;
}

.topic-list li i {
    color: var(--primary-color-2);  /* Vibrant Orange */
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* ===================================
   IMPORTANT DATES SECTION
   =================================== */
.dates-section {
    background: linear-gradient(135deg, var(--primary-color-1), var(--secondary-color-1));  /* Deep Blue gradient */
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.dates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/important-dates.jpg') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.dates-section .container {
    position: relative;
    z-index: 1;
}

.date-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    height: 100%;
}

.date-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.date-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color-2);  /* Vibrant Orange */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.date-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.date-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color-1);
    margin-bottom: 1rem;
}

.date-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color-2);  /* Vibrant Orange */
    margin: 0;
}

/* ===================================
   SUBMISSION SECTION
   =================================== */
.submission-section {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.guidelines-list {
    list-style: none;
    padding: 0;
}

.guidelines-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: var(--font-size-base);
    display: flex;
    align-items: flex-start;
}

.guidelines-list li i {
    color: var(--primary-color-2);  /* Vibrant Orange */
    margin-right: 1rem;
    margin-top: 0.25rem;
    font-size: 1.1rem;
}

.btn-template {
    background: var(--bg-light);
    color: var(--primary-color-1);  /* Deep Blue */
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color-1);  /* Deep Blue */
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-template:hover {
    background: var(--primary-color-1);  /* Deep Blue */
    color: var(--text-white);
    transform: translateY(-2px);
}

.submission-form {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.submission-form .form-label {
    font-weight: 600;
    color: var(--primary-color-1);
    margin-bottom: 0.5rem;
}

.submission-form .form-control {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.submission-form .form-control:focus {
    border-color: var(--primary-color-2);  /* Vibrant Orange */
    box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25);
}

.btn-submit {
    background: var(--primary-color-2);  /* Vibrant Orange */
    color: var(--text-white);
    padding: 1rem;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-large);
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color-2);  /* Darker Orange */
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--text-white);
}

/* ===================================
   SPEAKERS SECTION
   =================================== */
.speakers-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.speaker-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.speaker-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-color-2);  /* Vibrant Orange */
    box-shadow: var(--shadow-lg);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color-1);
    margin-bottom: 0.5rem;
}

.speaker-affiliation {
    color: var(--text-light);
    font-size: var(--font-size-base);
}

/* ===================================
   COMMITTEE SECTION
   =================================== */
.committee-section {
    background: var(--bg-white);
    padding: var(--spacing-xl) 0;
}

.accordion-item {
    border: 2px solid #e5e7eb;
    border-radius: var(--radius-md) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-light);
    color: var(--primary-color-1);
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 1.25rem 1.5rem;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color-2);  /* Vibrant Orange */
    color: var(--text-white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color-2);  /* Vibrant Orange */
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-dark);
}

.contact-box {
    background: var(--primary-color-2);  /* Vibrant Orange */
    color: var(--text-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-box i {
    font-size: 2rem;
}

/* ===================================
   REGISTRATION SECTION
   =================================== */
.registration-section {
    background: var(--bg-light);
    padding: var(--spacing-xl) 0;
}

.fee-table {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.fee-table thead {
    background: var(--primary-color-1);  /* Deep Blue */
    color: var(--text-white);
}

.fee-table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.fee-table tbody td {
    padding: 1rem;
    border-color: #e5e7eb;
    font-weight: 500;
}

.fee-table tbody tr:hover {
    background: var(--bg-light);
}

.fee-list {
    list-style: none;
    padding: 0;
}

.fee-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    color: var(--text-dark);
}

.fee-list li i {
    color: var(--primary-color-2);  /* Vibrant Orange */
    margin-right: 0.75rem;
}

.payment-info {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.bank-details {
    margin: 1.5rem 0;
}

.detail-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--primary-color-1);
    font-family: var(--font-heading);
    display: block;
    margin-bottom: 0.5rem;
}

.detail-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: var(--font-size-large);
}

.after-payment {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color-2);  /* Vibrant Orange */
}

/* ===================================
   FOOTER
   =================================== */
.footer-section {
    background: var(--primary-color-1);
    color: var(--text-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color-2);  /* Vibrant Orange */
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
}

.footer-list li i {
    color: var(--primary-color-2);  /* Vibrant Orange */
    margin-right: 0.75rem;
    width: 20px;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    .navbar-nav .nav-link {
    font-size: 14px;
}
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
    .wave-separator {
    display: none;
}
.banner-padding {
    padding: 50px 0px;
    /* padding-bottom: 150px; */
}
.springer-logo {
    margin-bottom: 0px;
}
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .navbar-nav {
        text-align: center;
        padding: 1rem 0;
    }
    
    .btn-contact {
        margin-top: 1rem;
        display: inline-block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        text-align: center;
    }
    
    .springer-logo {
        margin-top: 3rem;
    }
    
    .topic-card {
        margin-bottom: 1.5rem;
    }

}

/* Mobile (576px to 767px) */
@media (max-width: 767px) {
    :root {
        --font-size-heading: 1.8rem;
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .section-paragraph {
        font-size: var(--font-size-base);
    }
    
    .hero-section {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 3rem;
    }
    
    .hero-meta {
        font-size: var(--font-size-base);
    }
    
    .btn-primary-custom,
    .btn-outline-custom {
        padding: 0.75rem 1.5rem;
        font-size: var(--font-size-base);
    }
    
    .topic-card,
    .date-card,
    .speaker-card {
        margin-bottom: 1.5rem;
    }
    
    .submission-form {
        padding: 1.5rem;
    }
    
    .fee-table {
        font-size: 0.9rem;
    }
    
    .speaker-image {
        width: 150px;
        height: 150px;
    }
    
    .map-container iframe {
        height: 150px;
    }
}

/* Small Mobile (below 576px) */
@media (max-width: 575px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .topic-icon,
    .date-icon {
        width: 60px;
        height: 60px;
    }
    
    .topic-icon i,
    .date-icon i {
        font-size: 1.5rem;
    }
    
    .logo-circle {
        width: 130px;
    }
    
    .logo-circle i {
        font-size: 2.5rem;
    }
    
    .topic-card,
    .date-card,
    .payment-info {
        padding: 1.5rem;
    }
    
    .btn-template {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
/* Small Mobile (below 400px) */
@media (max-width: 575px) {
    .hero-meta {
       flex-direction: column;
    }
    .hero-meta .hero-location{
        margin-left: 0 !important;
    }
}
/* ===================================
   UTILITY CLASSES
   =================================== */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color-2), var(--secondary-color-2));  /* Orange gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
    /* FIX for overflow-x scrolling */
    overflow-x: hidden;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   CUSTOM ALERT STYLES
   =================================== */
.alert-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.alert-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    font-size: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.alert-close:hover {
    opacity: 1;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Active Navigation Link */
.navbar-nav .nav-link.active {
    color: var(--primary-color-2) !important;  /* Vibrant Orange */
    background: rgba(243, 156, 18, 0.1);
}
