/* Font Family */
@import url('https://fonts.cdnjs.com/css2?family=Montserrat:wght@100;300;400;500;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

:root {
    --primary: #CC3634;
    --primary-light: #e65a58;
    --primary-dark: #a12a28;
    --secondary: #575656;
    --secondary-light: #6e6d6d;
    --secondary-dark: #444343;
    --light: #B2B2B2;
    --light-bg: #f8f8f8;
    --white: #FFFFFF;
    --dark: #222222;
    --overlay: rgba(0, 0, 0, 0.7);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 15px 35px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 6px;
    --max-width: 1400px;
}

body {
    color: var(--secondary);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header & Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 50px;
    transition: all 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
}

/* Show white logo initially, hide dark logo */
.logo-white {
    opacity: 1;
}

.logo-dark {
    opacity: 0;
}

/* When navbar is scrolled, switch logos */
.navbar.scrolled .logo-white {
    opacity: 0;
}

.navbar.scrolled .logo-dark {
    opacity: 1;
}

/* Adjust heights when scrolled */
.navbar.scrolled .navbar-brand img {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    margin: 0 10px;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.navbar.scrolled .nav-link {
    color: var(--secondary-dark);
    text-shadow: none;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: rgb(204 54 52);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar.scrolled .navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.register-btn {
    background-color: var(--primary);
    color: var(--white);
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.register-btn::before {
    content: '\f145';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.register-btn:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(204, 54, 52, 0.3);
}

.navbar.scrolled .register-btn {
    background-color: var(--primary);
    color: var(--white);
}

.navbar.scrolled .register-btn:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

/* New Hero Section Design */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 70px;
    color: var(--white);
    overflow: hidden;
}

.hero-background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center; /* Position from left instead of right */
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.5) 100%);
}

.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-row {
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-left {
    max-width: 737px;
    padding: 40px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-badge i {
    margin-right: 10px;
    font-size: 16px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-theme-box {
    margin-bottom: 30px;
}

.hero-theme {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-detail-item {
    display: flex;
    align-items: center;
}

.detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(204, 54, 52, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    color: white;
    flex-shrink: 0;
}

.detail-text {
    font-weight: 500;
    color: var(--white);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 0.95rem;
}

.btn-primary-custom {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 10px 25px rgba(204, 54, 52, 0.3);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(204, 54, 52, 0.4);
    color: var(--white);
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-custom:hover {
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.hero-scroll:hover {
    opacity: 1;
    transform: translate(-50%, -5px);
    color: var(--white);
}

.hero-scroll i {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: rgba(0, 0, 0, 0.9);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 1050; /* Ensure it stays above other elements */
    }

    .navbar-nav .nav-link {
        color: var(--white);
        padding: 12px 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-nav .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar.scrolled .navbar-collapse {
        background-color: rgba(255, 255, 255, 0.98);
    }

    .navbar.scrolled .navbar-nav .nav-link {
        color: var(--secondary-dark);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .register-btn {
        display: inline-block;
        margin-top: 10px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-left {
        max-width: 100%;
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-theme {
        font-size: 1.1rem;
    }

    .hero-detail-item {
        flex-wrap: wrap;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 120px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 33px;
    }

    .hero-theme {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
    }

    .hero-scroll {
        display: none;
    }

    .navbar-brand img {
        height: 40px;
    }

    .navbar.scrolled .navbar-brand img {
        height: 35px;
    }

    /* Ensure the mobile menu doesn't get cut off */
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
    }
}


/* Footer Styles *//* Footer Styles */
/* Footer Styles */
.footer-section {
    background-color: #202430;
    color: #b3b3b3;
    position: relative;
    z-index: 1; /* Ensure footer is above other elements */
}
.footer-top {
    padding: 80px 0 50px;
    position: relative;
}
.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/dot-pattern.png');
    opacity: 0.05;
    z-index: 0;
    pointer-events: none; /* Ensures the overlay doesn't capture clicks */
}
.footer-about {
    position: relative;
    z-index: 1;
}
.footer-logo {
    position: relative;
}
.footer-logo a {
    display: inline-block; /* Makes the entire area clickable */
}
.footer-logo img {
    max-height: 60px;
}
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}
.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative; /* Ensures links have their own stacking context */
    z-index: 2;
}
.social-link:hover {
    background-color: var(--primary);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(204, 54, 52, 0.2);
}
.footer-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary);
    pointer-events: none; /* Ensures the pseudo-element doesn't interfere */
}
.footer-links,
.footer-contact {
    position: relative;
    z-index: 1;
}
.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.footer-menu li {
    margin-bottom: 12px;
    position: relative;
}
.footer-menu-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative; /* Creates a new stacking context */
    z-index: 2; /* Higher than parent elements */
    cursor: pointer; /* Shows it's clickable */
    pointer-events: auto; /* Explicitly enable pointer events */
    padding: 2px 0; /* Increases clickable area */
}
.footer-menu-link i {
    font-size: 12px;
    color: var(--primary);
    transition: all 0.3s ease;
    display: inline-block; /* Necessary for transform to work properly */
}
.footer-menu-link:hover {
    color: #fff;
    padding-left: 5px;
}
.footer-menu-link:hover i {
    transform: translateX(5px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    position: relative;
}
.contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(204, 54, 52, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.contact-text {
    font-size: 15px;
    line-height: 1.6;
    position: relative;
}
.contact-text a,
.contact-link {
    color: #b3b3b3;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: inline-block; /* Makes the entire area clickable */
    pointer-events: auto; /* Ensures the link captures clicks */
}
.contact-text a:hover,
.contact-link:hover {
    color: #fff;
}
.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}
.download-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #2d3142;
    border-radius: 8px;
    padding: 12px 20px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.download-btn i {
    font-size: 30px;
    color: #fff;
}
.download-btn .btn-text {
    display: flex;
    flex-direction: column;
}
.download-btn .btn-text span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #b3b3b3;
}
.download-btn .btn-text strong {
    font-size: 16px;
    font-weight: 600;
}
.download-btn:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: #fff;
}
.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}
.copyright p {
    margin: 0;
    font-size: 14px;
}
.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}
.footer-nav a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}
.footer-nav a:hover {
    color: #fff;
}
/* Responsive styles */
@media (max-width: 991.98px) {
    .footer-title {
        margin-top: 15px;
    }
}
@media (max-width: 767.98px) {
    .footer-top {
        padding: 60px 0 30px;
    }
    .footer-nav {
        justify-content: center;
        margin-top: 15px;
    }
    .copyright {
        text-align: center;
    }
}

/* Fix for iOS devices */
@media (hover: none) {
    .footer-menu-link,
    .contact-text a,
    .social-link,
    .contact-link {
        /* Add tap highlight color for mobile devices */
        -webkit-tap-highlight-color: rgba(204, 54, 52, 0.3);
    }
}
/*------------------------------------------------------------------------------*/
    /* About Section */
    .about-section {
        padding: 60px 0;
        position: relative;
        overflow: hidden;
        background-color: var(--white);
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--secondary-dark);
        margin-bottom: 20px;
        position: relative;
        display: inline-block;
        padding-bottom: 15px;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 70px;
        height: 3px;
        background-color: var(--primary);
        border-radius: 3px;
    }

    .section-subtitle {
        font-size: 1.2rem;
        color: var(--secondary-light);
        max-width: 700px;
        margin: 0 auto;
    }

    .about-card {
        background-color: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .about-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    .about-card-header {
        padding: 30px 30px 20px;
        position: relative;
    }

    .about-card-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    }

    .about-card-title {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 15px;
    }

    .about-card-body {
        padding: 0 30px 30px;
    }

    .about-list {
        list-style: none;
        padding: 0;
        margin: 20px 0 0;
    }

    .about-list-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    }

    .about-list-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .about-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: rgba(204, 54, 52, 0.1);
        color: var(--primary);
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .about-text {
        font-weight: 500;
    }

    /* Background shapes */
    .bg-shape {
        position: absolute;
        z-index: -1;
    }

    .bg-shape-1 {
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background-color: var(--primary);
        opacity: 0.03;
        border-radius: 50px;
        transform: rotate(45deg);
    }

    .bg-shape-2 {
        bottom: -150px;
        left: -150px;
        width: 500px;
        height: 500px;
        background-color: var(--secondary);
        opacity: 0.03;
        border-radius: 50%;
    }


 /* About Section */
 .about-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-card-header {
    padding: 30px 30px 20px;
    position: relative;
}

.about-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.about-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-card-body {
    padding: 0 30px 30px;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

.about-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.about-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(204, 54, 52, 0.1);
    color: var(--primary);
    border-radius: 50%;
    margin-right: 15px;
    flex-shrink: 0;
}

.about-text {
    font-weight: 500;
}

/* Background shapes */
.bg-shape {
    position: absolute;
    z-index: -1;
}

.bg-shape-1 {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    opacity: 0.03;
    border-radius: 50px;
    transform: rotate(45deg);
}

.bg-shape-2 {
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background-color: var(--secondary);
    opacity: 0.03;
    border-radius: 50%;
}



/* Responsive */
@media (max-width: 991.98px) {


    .about-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    

    .hero-theme {
        font-size: 1.1rem;
        padding: 15px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-details {
        padding: 10px;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-scroll {
        display: none;
    }
}

@media (max-width: 767.98px) {


    .section-title {
        font-size: 2rem;
    }
}


/* Goals Section */
.goals-section {
position: relative;
padding: 60px 0!Important;
background-color: var(--white);
overflow: hidden;
}

.goals-image-wrapper {
position: relative;
border-radius: 10px;
overflow: hidden;
}

.goals-image {
box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
border-radius: 10px;
transition: all 0.5s ease;
position: relative;
z-index: 2;
}

.goals-image-shape {
position: absolute;
width: 100%;
height: 100%;
bottom: -30px;
right: -30px;
border-radius: 10px;
background: var(--primary);
z-index: 1;
opacity: 0.1;
transition: all 0.5s ease;
}

.goals-image-wrapper:hover .goals-image {
transform: translateY(-10px) translateX(-10px);
}

.goals-image-wrapper:hover .goals-image-shape {
transform: translateY(5px) translateX(5px);
}

.goals-content {
padding-left: 20px;
}

.goals-list {
position: relative;
}

.goal-item {
position: relative;
padding: 15px 0 15px 80px;
margin-bottom: 7px;
transition: all 0.3s ease;
border-left: 3px solid transparent;
}

.goal-item:hover {
transform: translateX(10px);
border-left: 3px solid var(--primary);
background: linear-gradient(90deg, rgba(204, 54, 52, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
}

.goal-item::before {
content: attr(data-number);
position: absolute;
left: 20px;
top: 50%;
transform: translateY(-50%);
width: 45px;
height: 45px;
background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
color: var(--white);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
font-size: 1.2rem;
box-shadow: 0 5px 15px rgba(204, 54, 52, 0.3);
transition: all 0.3s ease;
}

.goal-item:hover::before {
transform: translateY(-50%) scale(1.1);
box-shadow: 0 8px 20px rgba(204, 54, 52, 0.4);
}

.goal-content h4 {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
    color: #101828 !important;
    transition: all 0.3s ease !important;
    line-height: 1.5 !important;
}

.goal-item:hover .goal-content h4 {
color: var(--primary);
}

@media (max-width: 991.98px) {
.goals-content {
    padding-left: 0;
    margin-top: 30px;
}

.goal-item {
    padding-left: 70px;
}

.goal-item::before {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}
}

@media (max-width: 767.98px) {
.goal-item {
    padding-left: 60px;
}

.goal-item::before {
    left: 10px;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
}

.goal-content h4 {
    font-size: 1rem;
}
}

/* Paper Presentations Section Styles */
.papers-showcase-section {
position: relative;
padding: 100px 0;
background-color: var(--light-bg);
overflow: hidden;
}

/* Decorative Elements */
.papers-decor-circle {
position: absolute;
border-radius: 50%;
z-index: 0;
}

.papers-decor-1 {
top: -150px;
right: -150px;
width: 400px;
height: 400px;
background: var(--primary);
opacity: 0.03;
}

.papers-decor-2 {
bottom: -100px;
left: -100px;
width: 300px;
height: 300px;
background: var(--secondary);
opacity: 0.03;
}
section.papers-showcase-section.py-5 {
background-color: #e1e1e1;
    padding: 60px 0!Important;
}
/* Section Header - Matching existing style */
.section-header {
text-align: center;
margin-bottom: 50px;
}

.section-title {
font-size: 2.5rem;
font-weight: 700;
color: var(--secondary-dark);
margin-bottom: 15px;
position: relative;
}

.title-underline {
width: 80px;
height: 4px;
background: var(--primary);
margin: 0 auto;
border-radius: 2px;
}

/* Paper Content Panel */
.papers-content-panel {
position: relative;
background: var(--white);
border-radius: var(--radius);
padding: 40px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
border-left: 4px solid var(--primary);
margin-bottom: 40px;
}

.papers-content-panel p {
font-size: 1.1rem;
line-height: 1.8;
color: var(--secondary);
margin: 0;
}

/* Conference Focus Styles */
.conference-heading-container {
margin-bottom: 30px;
}

.conference-heading {
font-size: 2rem;
font-weight: 600;
color: var(--primary);
position: relative;
padding-bottom: 10px;
display: inline-block;
}

.conference-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 60px;
height: 2px;
background: var(--primary);
border-radius: 2px;
}

.conference-blocks-container {
display: grid;
grid-gap: 25px;
}

.conference-block {
position: relative;
background: var(--white);
border-radius: var(--radius);
overflow: hidden;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.conference-block:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.block-content {
position: relative;
padding: 30px;
border-left: 4px solid var(--primary);
}

.conference-block p {
font-size: 1.05rem;
line-height: 1.8;
color: var(--secondary);
margin: 0;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
.section-title {
    font-size: 2.2rem;
}

.conference-heading {
    font-size: 1.8rem;
}

.papers-content-panel {
    padding: 30px;
}

.block-content {
    padding: 25px;
}

.papers-content-panel p,
.conference-block p {
    font-size: 1rem;
}
}

@media (max-width: 767.98px) {
.papers-showcase-section {
    padding: 80px 0;
}

.section-title {
    font-size: 2rem;
}

.conference-heading {
    font-size: 1.6rem;
}
.section-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--secondary-dark);
	margin-bottom: 15px;
	position: relative;
	}
}

/* Paper Presentations Section - Matching Site Design */
.papers-showcase-section {
    background: #e1e1e1;
    position: relative;
    overflow: hidden;
}

/* Main Card - Similar to your about cards */
.paper-main-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.paper-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary, #cc3634);
    border-radius: 20px 20px 0 0;
}

.paper-main-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Intro Section */
.paper-intro-section {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(204, 54, 52, 0.1);
    position: relative;
}

.paper-intro-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--primary, #cc3634);
}

.paper-intro-text {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* Areas Section */
.paper-areas-section {
    margin: 30px 0;
}

.area-column {
    padding: 0 15px;
}

.area-line-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    padding: 12px 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    position: relative;
}

.area-line-item:hover {
    background: rgba(204, 54, 52, 0.05);
    padding-left: 15px;
    margin-left: -15px;
    margin-right: -15px;
}

/* Custom Bullets - Primary Color */
.area-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary, #cc3634);
    flex-shrink: 0;
    margin-top: 8px;
    position: relative;
}

.area-bullet::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(204, 54, 52, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.area-line-item:hover .area-bullet::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.area-line-item span {
   font-size: 1.1rem!important;
    font-weight: 500!important;
    color: #101828!important;
    transition: all 0.3s ease!important;
    line-height: 1.5!important;
}

.area-line-item:hover span {
    color: var(--primary, #cc3634);
}

/* Conclusion Section */
.paper-conclusion-section {
    background: linear-gradient(135deg, rgba(204, 54, 52, 0.05), rgba(204, 54, 52, 0.02));
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(204, 54, 52, 0.1);
}

.conclusion-highlight {
    width: 50px;
    height: 50px;
    background: var(--primary, #cc3634);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(204, 54, 52, 0.3);
}

.conclusion-highlight i {
    color: white;
    font-size: 1.2rem;
}

.paper-conclusion-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .paper-main-card {
        padding: 25px 20px;
    }

    .paper-intro-section {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .paper-intro-text {
        font-size: 1rem;
    }

    .area-column {
        padding: 0;
        margin-bottom: 20px;
    }

    .area-line-item {
        margin-bottom: 12px;
        padding: 10px 0;
    }

    .area-line-item span {
        font-size: 1.1rem;
    }

    .paper-conclusion-section {
        padding: 20px 15px;
        margin-top: 25px;
    }

    .conclusion-highlight {
        width: 45px;
        height: 45px;
        margin-bottom: 15px;
    }

    .conclusion-highlight i {
        font-size: 1.1rem;
    }

    .paper-conclusion-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .paper-main-card {
        padding: 20px 15px;
    }

    .area-line-item {
        gap: 12px;
    }

    .area-bullet {
        width: 6px;
        height: 6px;
        margin-top: 6px;
    }
}

/* Animations */
.paper-main-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.paper-main-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.area-line-item {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.area-line-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.conclusion-highlight {
    transform: scale(0);
    transition: transform 0.5s ease;
}

.conclusion-highlight.animate {
    transform: scale(1);
}