/* Global Styles */
:root {
    --primary-color: #7409f6;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
     font-family: "Inter", sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

* {
     font-family: "Inter", sans-serif;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 100px 0;
    min-height: 90vh;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(0 0 0 / 60%) 100%, rgb(0 0 0 / 60%) 100%);
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
}

.hero-content h1 {
    color: #fff !important;
    line-height: 1.2;
    font-size: 64px;
    font-weight: 900 !important;
    padding: 0;
    margin: 0 0 20px 0 !important;
   
    animation: fadeInUp 1s ease-out;
     
    letter-spacing: -1px;
}

.hero-content h2 {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 30px;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content .conference-details {
    margin-top: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .detail-item {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 15px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-content .detail-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-content .detail-item i {
    font-size: 20px;
    width: 30px;
    text-align: center;
    color: #fff !important;
    margin-right: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tab Form Background */
.tab-form-bg {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 4;
    animation: fadeInUp 1s ease-out 0.9s both;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Nav Tabs */
.tab-form-bg .nav-tabs {
    border-bottom: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 8px;
    margin: 0;
    border-radius: 20px 20px 0 0;
    display: flex;
    gap: 8px;
}

.tab-form-bg .nav-tabs .nav-item {
    margin-bottom: 0;
    width: 50%;
    flex: 1;
}

.tab-form-bg .nav-tabs .nav-link {
    border: 2px solid #7409f673;
    border-radius: 12px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
 

.tab-form-bg .nav-tabs .nav-link i {
    position: relative;
    z-index: 1;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.tab-form-bg .nav-tabs .nav-link span,
.tab-form-bg .nav-tabs .nav-link {
    position: relative;
    z-index: 1;
}

.tab-form-bg .nav-tabs .nav-link:hover {
    color: #7409f6;
    background-color: rgba(235, 95, 42, 0.08);
    border-color: rgba(235, 95, 42, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 95, 42, 0.2);
}

.tab-form-bg .nav-tabs .nav-link.active {
    color: #fff;
    background: #7409f6;
    border-color: #7409f6;
    box-shadow: 0 6px 20px rgba(235, 95, 42, 0.35);
    transform: translateY(-2px);
}

.tab-form-bg .nav-tabs .nav-link.active::before {
    left: 0;
}

.tab-form-bg .nav-tabs .nav-link.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.4);
}

/* Tab Content */
.tab-content {
    padding: 15px 25px;
}

.tab-content h2 {
    color: #333;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    text-align: center;
}

/* Form Styles */
.tab-content .form-group {
    margin-bottom: 12px;
    padding: 0 10px;
}

.tab-content .form-control {
    border-radius: 8px;
    border: 1px solid #dadada;
    padding: 12px 15px;
    font-size: 14px;
    transition: all 0.3s ease;
}
.tab-content .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.tab-content .form-control::placeholder {
    color: #adb5bd;
}

.tab-content select.form-control {
    cursor: pointer;
}

.tab-content textarea.form-control {
    resize: vertical;
     
}

/* Date Input with Icon */
.tab-content label {
    position: relative;
    display: block;
    width: 100%;
}

.tab-content .field-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary-color);
    pointer-events: auto;
    z-index: 10;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab-content .field-icon:hover {
    color: var(--primary-color);
}

/* Ensure input padding doesn't overlap with icon */
#txtchkin,
#txtchkout {
    padding-right: 60px;
}

.registration-form-wrapper .field-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: auto;
    z-index: 10;
    cursor: pointer;
    transition: color 0.3s ease;
}

.registration-form-wrapper .field-icon:hover {
    color: #7409f6;
}

.registration-form-wrapper label {
    position: relative;
    display: block;
    width: 100%;
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border-color: #7409f6;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: linear-gradient(135deg, #c7491f 0%, #7409f6 100%);
    border-color: #c7491f;
}

.flatpickr-day.today {
    border-color: #7409f6;
}

.flatpickr-day.today:hover {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
}

.flatpickr-day:hover {
    background: rgba(235, 95, 42, 0.1);
}

.flatpickr-months .flatpickr-month {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.flatpickr-weekdays {
    background: rgba(235, 95, 42, 0.1);
}

.flatpickr-weekday {
    color: #7409f6;
    font-weight: 600;
}

/* Submit Button */
.reg-but {
    padding: 12px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #7409f6 0%, #7409f6 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    margin-top: 10px;
}

.reg-but:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(235, 95, 42, 0.4);
    color: #fff;
}

.reg-but:active {
    transform: translateY(0);
}

/* Form Row */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.form-row .form-group {
    padding-left: 10px;
    padding-right: 10px;
}

/* Clearfix */
.clearfix {
    clear: both;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        background-attachment: scroll;
        padding: 80px 0;
        min-height: auto;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content h2 {
        font-size: 20px;
    }
    
    .hero-content .detail-item {
        justify-content: center;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tab-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {

    .mainnavbar {
        background-color: #ffffff;
        padding: 0;
    }

    .hero-section {
        padding: 60px 0;
        background-attachment: scroll;
        min-height: auto;
    }
    
    
    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content h2 {
        font-size: 18px;
    }
    
    .hero-content .detail-item {
        font-size: 16px;
        flex-direction: row;
        text-align: left;
        padding: 10px 15px;
    }
    
    .hero-content .detail-item i {
        margin-right: 10px;
        width: auto;
        font-size: 18px;
        padding: 6px;
    }
    
    .tab-content {
        padding: 20px;
    }
    
    .tab-content h2 {
        font-size: 24px;
    }
    
    .tab-form-bg .nav-tabs {
        padding: 6px;
        gap: 6px;
    }

    .tab-form-bg .nav-tabs .nav-link {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 10px;
    }

    .tab-form-bg .nav-tabs .nav-link i {
        margin-right: 6px;
        font-size: 14px;
    }
    
    .tab-content .form-group {
        padding: 0 5px;
    }
    
    .form-row {
        margin-left: -5px;
        margin-right: -5px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .form-row .form-group {
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
    }
}

/* Top Header Bar */
.top-header-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(235, 95, 42, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.top-header-item {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-header-item:hover {
    color: #7409f6;
}

.top-header-item i {
    color: #7409f6;
    font-size: 14px;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.top-header-bar .text-md-end .top-header-item {
    justify-content: flex-end;
}

.navbar-toggler {
    border: 2px solid #7409f6;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(235, 95, 42, 0.25);
    border-color: #7409f6;
}

.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(116, 9, 246, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 767px) {


.registration-section .row {
	flex-direction: column-reverse;
}


    .about-content-card {
        padding: 30px 15px !important;
    }
    .top-header-bar {
        padding: 10px 0;
        display: none;
    }
    
    .top-header-item {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .top-header-item:last-child {
        margin-bottom: 0;
    }
    
    .top-header-bar .text-md-end {
        text-align: left !important;
    }

    .top-header-bar .col-md-6 {
        margin-bottom: 8px;
    }

    .top-header-bar .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* Navbar Styles */

.mainnavbar{
    background: #ffffff;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.mainnavbar.sticky {
    box-shadow: 0 4px 25px rgba(235, 95, 42, 0.15);
}

.navbar-brand {
    font-size: 28px;
    font-weight: 800;
    color:#7409f6;
     
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-brand:hover{
    transform: scale(1.05);
}

.navbar-brand i{
    font-size: 20px;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    padding: 12px 20px;
    transition: all 0.3s ease;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    margin: 0 5px;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 20px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7409f6 0%, #ff784a 100%);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link i{
    color: #7409f6;
    margin-right: 5px;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #7409f6;
    font-weight: 600;
}

.navbar-nav .nav-link.active::before,
.navbar-nav .nav-link:hover::before {
    width: calc(100% - 40px);
}

.navbar-nav .nav-link:hover {
    color: #7409f6 !important;
    border-radius: 8px;
}

.navbar-nav .btn-outline-primary {
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-width: 2px;
    color: #fff;
    border-color: #7409f6;
    background: #7409f6;
    border-radius: 30px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.navbar-nav .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-nav .btn-outline-primary:hover::before {
    left: 0;
}

.navbar-nav .btn-outline-primary:hover {
    color: #fff !important;
    border-color: #7409f6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(235, 95, 42, 0.4);
}

@media (max-width: 991px) {
    .mainnavbar {
        padding: 0;
    }

    .navbar-brand {
        padding: 12px 0;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 2px 0;
    }

    .navbar-nav .nav-link::before {
        left: 20px;
        bottom: 12px;
    }

    .navbar-nav .nav-link.active::before,
    .navbar-nav .nav-link:hover::before {
        width: calc(100% - 40px);
    }

    .navbar-nav .btn-outline-primary {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .btn-outline-primary::before {
        display: none;
    }

    .navbar-nav .btn-outline-primary:hover::before {
        display: block;
    }
    
    .navbar-nav .nav-item.ms-2 {
        margin-left: 0 !important;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

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

.breadcrumb-content {
    color: #fff;
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255, 255, 255, 0.6);
    padding: 0 10px;
}

.breadcrumb-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 60px 0;
        min-height: 150px;
    }
    
    .breadcrumb-title {
        font-size: 32px;
    }
}

/* Contact Section */
.contact-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(235, 95, 42, 0.03) 25px, rgba(235, 95, 42, 0.03) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(235, 95, 42, 0.03) 25px, rgba(235, 95, 42, 0.03) 27px),
        radial-gradient(circle at 15% 15%, rgba(235, 95, 42, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255, 120, 74, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 50px 50px;
    background-position: 0 0, 0 0, 0 0, 20px 20px;
    z-index: 0;
    opacity: 0.4;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(235, 95, 42, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 120, 74, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-section-header {
    margin-bottom: 60px;
}

.contact-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #7409f6;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.contact-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #7409f6 0%, #c7491f 100%);
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 25px;
    margin-bottom: 0;
    font-weight: 400;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 15px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}
.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #7409f6 0%, #ff784a 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 1;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.05) 0%, rgba(255, 120, 74, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.contact-info-card:hover::after {
    opacity: 1;
}

.contact-info-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(235, 95, 42, 0.3);
    border-color: rgba(235, 95, 42, 0.3);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7409f6 0%, #7409f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(235, 95, 42, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
}

.contact-info-card:hover .contact-info-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(235, 95, 42, 0.5);
}

.contact-info-icon i {
    font-size: 22px;
    color: #fff;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-info-icon i {
    transform: scale(1.1);
}

.contact-info-title {
    font-size: 20px;
    font-weight: 800;
    color: #041A57;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
}

.contact-info-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.contact-info-cards-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-form-wrapper-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    border-radius: 0 5px 5px 0;
}

.contact-form-wrapper-modern:hover {
    box-shadow: 0 20px 60px rgba(235, 95, 42, 0.2);
    transform: translateY(-5px);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 800;
    color: #041A57;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 20px;
    padding-left: 20px;
}

.contact-form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20px;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #7409f6 0%, #7409f6 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(235, 95, 42, 0.4);
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-label-modern {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.form-control-modern {
    width: 100%;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fff;
    color: #333;
}

.form-control-modern:focus {
    border-color: #7409f6;
    box-shadow: 0 0 0 0.2rem rgba(235, 95, 42, 0.15);
    outline: none;
    background: #fff;
}

.form-control-modern::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.form-control-modern:focus::placeholder {
    color: #ced4da;
}

.form-control-modern select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-control-modern select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%237409f6' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

.btn-contact-submit {
    background: linear-gradient(135deg, #7409f6 0%, #7409f6 100%);
    border: none;
    padding: 16px 50px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #c7491f 0%, #7409f6 100%);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

.contact-map-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 15px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    border-radius: 5px 0 0 5px;
}

.contact-map-wrapper:hover {
    box-shadow: 0 20px 60px rgba(235, 95, 42, 0.2);
    transform: translateY(-5px);
}

.contact-map-title {
    font-size: 28px;
    font-weight: 800;
    color: #041A57;
    margin-bottom: 25px;
    padding-right: 20px;
    position: relative;
}

.contact-map-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 20px;
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #7409f6 0%, #ff784a 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(235, 95, 42, 0.4);
}

.map-container-modern {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(235, 95, 42, 0.1);
    transition: all 0.4s ease;
}

.map-container-modern:hover {
    box-shadow: 0 15px 40px rgba(235, 95, 42, 0.25);
    border-color: rgba(235, 95, 42, 0.3);
}

.map-container-modern iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
    color: #fff;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #7409f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #c7491f;
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 0 auto;
}

.contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form-wrapper .form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
    border-color: #7409f6;
    box-shadow: 0 0 0 0.2rem rgba(235, 95, 42, 0.25);
    outline: none;
}

.contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.contact-form-wrapper .btn-primary,
.contact-form-wrapper .btn-custom {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border: none;
    padding: 12px 40px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    color: #fff;
    width: 100%;
}

.contact-form-wrapper .btn-primary:hover,
.contact-form-wrapper .btn-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(235, 95, 42, 0.4);
    color: #fff;
}

.contact-form-wrapper .btn-block {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-main-title {
        font-size: 40px;
    }
    
    .contact-map-wrapper {
        margin-top: 30px;
    }
    
    .map-container-modern {
        height: 450px;
    }
    
    .contact-info-cards-wrapper .contact-info-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-section-header {
        margin-bottom: 40px;
    }
    
    .contact-main-title {
        font-size: 36px;
    }
    
    .contact-subtitle {
        font-size: 16px;
    }
    
    .contact-info-card {
        padding: 35px 25px;
        margin-bottom: 25px;
    }
    
    .contact-info-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    
    .contact-info-icon i {
        font-size: 28px;
    }
    
    .contact-info-title {
        font-size: 20px;
    }
    
    .contact-info-text {
        font-size: 15px;
    }
    
    .contact-form-wrapper-modern {
        padding: 40px 30px;
    }
    
    .contact-form-title {
        font-size: 26px;
        padding-left: 15px;
    }
    
    .contact-form-title::after {
        left: 15px;
        width: 60px;
    }
    
    .contact-info-cards-wrapper {
        margin-bottom: 30px;
    }
    
    .contact-info-cards-wrapper .contact-info-card {
        margin-bottom: 20px;
    }
    
    .contact-map-wrapper {
        margin-top: 0;
        padding: 30px 25px;
    }
    
    .contact-map-title {
        font-size: 24px;
        padding-right: 15px;
    }
    
    .contact-map-title::after {
        right: 15px;
        width: 60px;
    }
    
    .map-container-modern {
        height: 350px;
    }
    
    .btn-contact-submit {
        padding: 14px 40px;
        font-size: 15px;
        width: 100%;
    }
}

/* Registration Section */
.registration-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.registration-form-wrapper {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.form-header h2 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    margin-bottom: 0;
}

.registration-form-wrapper .form-group {
    margin-bottom: 20px;
    padding: 0 10px;
}

.registration-form-wrapper .form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.registration-form-wrapper .form-control:focus {
    border-color: #7409f6;
    box-shadow: 0 0 0 0.2rem rgba(235, 95, 42, 0.25);
    outline: none;
}

.registration-form-wrapper .form-control::placeholder {
    color: #adb5bd;
}

.registration-form-wrapper select.form-control {
    cursor: pointer;
}

.registration-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.registration-form-wrapper .reg-but {
    padding: 14px 50px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
    text-align: center;
    width: 100%;
}
.registration-form-wrapper .reg-but:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(235, 95, 42, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #c7491f 0%, #7409f6 100%);
}

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-header h2 {
        font-size: 28px;
    }
    
    .registration-form-wrapper .form-group {
        padding: 0 5px;
    }
}

/* Privacy Policy Section */
.privacy-policy-section {
    background-color: #fff;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.policy-content {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policy-intro .lead {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

.policy-section {
    border-left: 4px solid #7409f6;
    padding-left: 20px;
    margin-bottom: 30px;
}

.policy-title {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.policy-section p,
.policy-contact p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #7409f6;
    font-size: 24px;
    font-weight: bold;
}

.policy-list li strong {
    color: #333;
    font-weight: 600;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.policy-contact .policy-title {
    border-left: none;
    padding-left: 0;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 20px;
    }
    
    .policy-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.thank-you-section .container {
    position: relative;
    z-index: 1;
}

.thank-you-content {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

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

.success-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleIn 0.6s ease-out 0.2s both;
    box-shadow: 0 10px 30px rgba(235, 95, 42, 0.3);
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(235, 95, 42, 0.2);
    animation: pulse 2s ease-out infinite;
}

.icon-circle i {
    font-size: 50px;
    color: #fff;
    z-index: 1;
    position: relative;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7409f6 0%, #c7491f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #7409f6;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.thank-you-actions .btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border: none;
    color: #fff;
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #c7491f 0%, #7409f6 100%);
}

.thank-you-actions .btn-outline-primary {
    border: 2px solid #7409f6;
    color: #7409f6;
    background: transparent;
}

.thank-you-actions .btn-outline-primary:hover {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.3);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 0;
    }
    
    .thank-you-content {
        padding: 40px 30px;
    }
    
    .thank-you-title {
        font-size: 32px;
    }
    
    .thank-you-subtitle {
        font-size: 24px;
    }
    
    .thank-you-message {
        font-size: 16px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-circle i {
        font-size: 40px;
    }
    
    .icon-circle::before {
        width: 120px;
        height: 120px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* TEST RULE - Remove after testing */
/* If this works, about section will have bright yellow background */
/* section.about-section { background: yellow !important; } */ /* Uncomment to test */

/* About Us Section */
section.about-section,
#about.about-section,
.about-section {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

section.about-section::before,
#about.about-section::before,
.about-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(235, 95, 42, 0.03) 25px, rgba(235, 95, 42, 0.03) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(235, 95, 42, 0.03) 25px, rgba(235, 95, 42, 0.03) 27px),
        radial-gradient(circle at 15% 15%, rgba(235, 95, 42, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255, 120, 74, 0.04) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 40px 40px, 50px 50px !important;
    background-position: 0 0, 0 0, 0 0, 20px 20px !important;
    z-index: 0 !important;
    opacity: 0.4 !important;
}

section.about-section::after,
#about.about-section::after,
.about-section::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 10% 10%, rgba(235, 95, 42, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 120, 74, 0.03) 0%, transparent 30%) !important;
    z-index: 0 !important;
}

section.about-section .container,
#about.about-section .container,
.about-section .container {
    position: relative !important;
    z-index: 1 !important;
}

section.about-section .row,
#about.about-section .row,
.about-section .row {
    position: relative !important;
    z-index: 2 !important;
}

section.about-section .col-lg-6,
#about.about-section .col-lg-6,
.about-section .col-lg-6 {
    position: relative !important;
    z-index: auto !important;
}

/* Ensure the content card column has proper stacking */
/* Removed :has() selector for better browser compatibility */
section.about-section .col-lg-6.order-1.order-lg-2,
#about.about-section .col-lg-6.order-1.order-lg-2,
.about-section .col-lg-6.order-1.order-lg-2 {
    z-index: 50 !important;
}

/* About Video Wrapper */
section.about-section .about-video-wrapper,
#about.about-section .about-video-wrapper,
.about-section .about-video-wrapper,
.about-video-wrapper {
    position: relative !important;
    width: 100% !important;
}

section.about-section .about-video-container,
#about.about-section .about-video-container,
.about-section .about-video-container,
.about-video-container {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15) !important;
    background: transparent !important;
    background-color: transparent !important;
    cursor: pointer !important;
    transition: all 0.4s ease !important;
}

.about-video-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

section.about-section .about-video-thumbnail,
#about.about-section .about-video-thumbnail,
.about-section .about-video-thumbnail,
.about-video-thumbnail {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.4s ease !important;
    border-radius: 20px !important;
}

.about-video-container:hover .about-video-thumbnail {
    transform: scale(1.05);
    opacity: 0.9;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.video-play-button i {
    color: #7409f6;
    font-size: 28px;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.about-video-container:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: #7409f6;
}

.about-video-container:hover .video-play-button i {
    color: #fff;
    transform: scale(1.1);
}

/* About Content Card - Force White Background */
/* DIAGNOSTIC: Test if this rule applies - uncomment next line to test */
/* .about-content-card { background: lime !important; border: 10px solid red !important; } */

section.about-section .about-content-card,
#about.about-section .about-content-card,
.about-section .about-content-card,
.about-content-card,
div.about-content-card,
.col-lg-6 .about-content-card,
[class*="col"] .about-content-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
    border-radius: 25px !important;
    padding: 30px 45px;
    
    position: relative !important;
    z-index: 100 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}

/* Ensure no transparent backgrounds override */
section.about-section .col-lg-6 .about-content-card,
#about.about-section .col-lg-6 .about-content-card,
.about-section .col-lg-6 .about-content-card,
.col-lg-6 .about-content-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

/* Force white background on all child elements */
section.about-section .about-content-card *,
#about.about-section .about-content-card *,
.about-section .about-content-card * {
    position: relative !important;
    z-index: 1 !important;
}

section.about-section .about-card-header,
#about.about-section .about-card-header,
.about-section .about-card-header,
.about-card-header {
    margin-bottom: 30px !important;
}

section.about-section .about-card-subtitle,
#about.about-section .about-card-subtitle,
.about-section .about-card-subtitle,
.about-card-subtitle {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #7409f6 !important;
    margin-bottom: 7px !important;
    letter-spacing: 0.5px !important;
}

section.about-section .about-card-title,
#about.about-section .about-card-title,
.about-section .about-card-title,
.about-card-title {
    font-size: 31px !important;
    font-weight: 800 !important;
    color: #7409f6 !important;
    line-height: 1.2 !important;
    margin-bottom: 5px !important;
    letter-spacing: -1px !important;
}

section.about-section .about-card-separator,
#about.about-section .about-card-separator,
.about-section .about-card-separator,
.about-card-separator {
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #272e39 0%, #272e39 100%) !important;
    border-radius: 2px !important;
    margin-bottom: 30px !important;
}

section.about-section .about-card-description,
#about.about-section .about-card-description,
.about-section .about-card-description,
.about-card-description {
    margin-bottom: 15px !important;
}

section.about-section .about-card-description p,
#about.about-section .about-card-description p,
.about-section .about-card-description p,
.about-card-description p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #666 !important;
    margin: 0 !important;
}

section.about-section .about-card-action,
#about.about-section .about-card-action,
.about-section .about-card-action,
.about-card-action {
    margin-top: 30px !important;
}

section.about-section .about-register-btn,
#about.about-section .about-register-btn,
.about-section .about-register-btn,
.about-register-btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 35px !important;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%) !important;
    background-color: transparent !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2) !important;
    border: 2px solid transparent !important;
}

.about-register-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.about-register-btn:hover {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.4);
    border-color: transparent;
    color: #fff;
}

.about-register-btn:hover i {
    transform: scale(1.15);
}

.about-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-images-grid {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(235, 95, 42, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
}

.about-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(235, 95, 42, 0.35);
    border-color: #7409f6;
    z-index: 10;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-item:hover img {
    transform: scale(1.1);
}

.image-item-1 {
    width: 300px;
    height: 280px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.image-item-2 {
    width: 280px;
    height: 260px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.image-item-3 {
    width: 290px;
    height: 270px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-content-modern {
    padding: 30px 0;
    position: relative;
}

.about-content-modern::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    border-radius: 10px;
}

.lead-text {
    color: #333;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    border-radius: 2px;
}

.about-content-modern p {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.about-section .col-lg-6 img {
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(235, 95, 42, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid #fff;
    position: relative;
    overflow: hidden;
}

.about-section .col-lg-6 img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.1) 0%, rgba(255, 120, 74, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.about-section .col-lg-6:hover img {
    transform: scale(1.03) rotate(-1deg);
    box-shadow: 0 30px 80px rgba(235, 95, 42, 0.3);
    border-color: #7409f6;
}

.about-section .col-lg-6:hover img::before {
    opacity: 1;
}

.about-features-modern {
    margin-top: 30px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.about-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.about-features-list li:hover::before {
    transform: scaleY(1);
}

.about-features-list li:hover {
    border-color: rgba(235, 95, 42, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(235, 95, 42, 0.03) 100%);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.2);
}

.about-features-list li i {
    color: #7409f6;
    font-size: 22px;
    margin-right: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.1) 0%, rgba(255, 120, 74, 0.1) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.about-features-list li:hover i {
     
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(235, 95, 42, 0.3);
}

.about-features-list li span {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    flex: 1;
}

@media (max-width: 991px) {
    section.about-section,
    #about.about-section,
    .about-section {
        padding: 80px 0 !important;
    }
    
    section.about-section .about-content-card,
    #about.about-section .about-content-card,
    .about-section .about-content-card,
    .about-content-card {
        padding: 40px 35px !important;
    }
    
    section.about-section .about-card-title,
    #about.about-section .about-card-title,
    .about-section .about-card-title,
    .about-card-title {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    section.about-section,
    #about.about-section,
    .about-section {
        padding: 60px 0 !important;
    }
    
    section.about-section .about-content-card,
    #about.about-section .about-content-card,
    .about-section .about-content-card,
    .about-content-card {
        padding: 35px 25px !important;
        margin-bottom: 30px !important;
    }
    
    section.about-section .about-card-subtitle,
    #about.about-section .about-card-subtitle,
    .about-section .about-card-subtitle,
    .about-card-subtitle {
        font-size: 18px !important;
    }
    
    section.about-section .about-card-title,
    #about.about-section .about-card-title,
    .about-section .about-card-title,
    .about-card-title {
        font-size: 24px !important;
    }
    
    section.about-section .about-card-description p,
    #about.about-section .about-card-description p,
    .about-section .about-card-description p,
    .about-card-description p {
        font-size: 15px !important;
    }
    
    section.about-section .about-register-btn,
    #about.about-section .about-register-btn,
    .about-section .about-register-btn,
    .about-register-btn {
        padding: 14px 30px !important;
        font-size: 15px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .video-play-button {
        width: 70px !important;
        height: 70px !important;
    }
    
    .video-play-button i {
        font-size: 24px !important;
    }
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.feature-item:hover {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    transform: translateX(5px);
}

.feature-item:hover i {
    color: #fff !important;
}

.feature-item i {
    font-size: 20px;
    width: 30px;
}

/* Conference Info Section */
.conference-info-section {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    overflow: hidden;
}

.conference-info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(235, 95, 42, 0.02) 30px, rgba(235, 95, 42, 0.02) 32px),
        repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(235, 95, 42, 0.02) 30px, rgba(235, 95, 42, 0.02) 32px);
    z-index: 0;
    opacity: 0.3;
}

.conference-info-section::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(235, 95, 42, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.conference-info-section .container {
    position: relative;
    z-index: 1;
}

.conference-info-header {
    margin-bottom: 60px;
}

.conference-info-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #7409f6;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.conference-info-main-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #7409f6 0%, #c7491f 100%);
    border-radius: 2px;
}

.conference-info-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 25px;
    margin-bottom: 0;
}

.info-card-modern {
    background: #ffffff;
    
    padding: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: row;
    overflow: hidden;
    border: 2px solid rgba(235, 95, 42, 0.1);
    position: relative;
}

.info-card-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    transform: scaleY(0);
    transition: transform 0.5s ease;
    transform-origin: top;
    z-index: 2;
}

.info-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.03) 0%, transparent 100%);
    transition: width 0.5s ease;
    z-index: 0;
}

.info-card-modern:hover::before {
    transform: scaleY(1);
}

.info-card-modern:hover::after {
    width: 100%;
}

.info-card-modern:hover {
    transform: translateX(8px) translateY(-5px);
    box-shadow: 0 15px 45px rgba(235, 95, 42, 0.25);
    border-color: #7409f6;
    background: #ffffff;
}

.info-card-icon-wrapper {
    background: linear-gradient(135deg, #7409f6 0%, #7409f6 100%);
    padding: 35px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    flex-shrink: 0;
}

.info-card-icon-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transition: transform 0.6s ease;
}

.info-card-modern:hover .info-card-icon-wrapper::after {
    transform: rotate(45deg);
}

.info-icon-modern {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.info-card-modern:hover .info-icon-modern {
    transform: scale(1.15) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.info-icon-modern i {
    font-size: 32px;
    color: #fff;
    transition: all 0.5s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-card-modern:hover .info-icon-modern i {
    transform: scale(1.1);
}

.info-card-body {
    padding: 35px 30px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.info-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    position: relative;
    padding-left: 0;
}

.info-title-modern::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 20px;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.info-card-modern:hover .info-title-modern::before {
    width: 4px;
}

.info-card-modern:hover .info-title-modern {
    color: #7409f6;
    padding-left: 12px;
}

.info-content-modern {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    transition: color 0.3s ease;
}

.info-card-modern:hover .info-content-modern {
    color: #555;
}

@media (max-width: 991px) {
    .conference-info-section {
        padding: 80px 0;
    }
    
    .info-card-modern {
        flex-direction: column;
    }
    
    .info-card-icon-wrapper {
        min-width: 100%;
        padding: 30px;
    }
    
    .info-card-body {
        text-align: center;
        padding: 30px 25px;
    }
    
    .info-title-modern::before {
        display: none;
    }
    
    .info-card-modern:hover .info-title-modern {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .conference-info-section {
        padding: 60px 0;
    }
    
    .info-card-icon-wrapper {
        padding: 25px;
    }
    
    .info-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .info-icon-modern i {
        font-size: 26px;
    }
    
    .info-card-body {
        padding: 25px 20px;
    }
    
    .info-title-modern {
        font-size: 20px;
    }
    
    .info-content-modern {
        font-size: 14px;
    }
}

/* Conference Highlights Section */
.conference-highlights-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.conference-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(235, 95, 42, 0.03) 25px, rgba(235, 95, 42, 0.03) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(235, 95, 42, 0.03) 25px, rgba(235, 95, 42, 0.03) 27px),
        radial-gradient(circle at 15% 15%, rgba(235, 95, 42, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(255, 120, 74, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 50px 50px;
    background-position: 0 0, 0 0, 0 0, 20px 20px;
    z-index: 0;
    opacity: 0.4;
}

.conference-highlights-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(235, 95, 42, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(255, 120, 74, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.conference-highlights-section .container {
    position: relative;
    z-index: 1;
}

.highlights-section-alt {
    background: #ffffff;
}

.section-label-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.1) 0%, rgba(235, 95, 42, 0.05) 100%);
    border-left: 4px solid #7409f6;
    border-radius: 5px;
    margin-bottom: 20px;
}

.section-label-modern .label-text {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #7409f6;
}

.highlights-title-modern {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.highlights-title-modern .title-main {
    color: #1a1a1a;
    display: inline-block;
    font-weight: 700;
}

.highlights-title-modern .title-accent {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    font-weight: 900;
}

.highlights-title-modern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #7409f6 50%, transparent 100%);
    border-radius: 10px;
}

.highlights-content-modern {
    padding: 30px 0;
    position: relative;
}

.highlights-content-modern::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    border-radius: 10px;
}

.conference-highlights-section p {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
    padding-left: 0px;
    position: relative;
}

.highlights-list-modern {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    padding-left: 20px;
}

.highlights-list-modern li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 18px 25px;
    font-size: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.highlights-list-modern li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #7409f6 0%, #ff784a 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.highlights-list-modern li:hover::before {
    transform: scaleY(1);
}

.highlights-list-modern li:hover {
    border-color: rgba(235, 95, 42, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(235, 95, 42, 0.03) 100%);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(235, 95, 42, 0.2);
}

.highlights-list-modern li i {
    color: #7409f6;
    font-size: 22px;
    margin-right: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.1) 0%, rgba(255, 120, 74, 0.1) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.highlights-list-modern li:hover i {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(235, 95, 42, 0.3);
}

.highlights-list-modern li span {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.highlights-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid #fff;
    background: #000;
}

.highlights-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 25px;
}

.highlights-image-wrapper:hover::before {
    opacity: 1;
}

.highlights-image-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 80px rgba(235, 95, 42, 0.3);
    border-color: rgba(235, 95, 42, 0.3);
}

.highlights-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

.highlights-image-wrapper:hover .highlights-image {
    transform: scale(1.08);
    opacity: 0.95;
}

@media (max-width: 991px) {
    .conference-highlights-section {
        padding: 80px 0;
    }
    
    .highlights-content-modern {
        padding: 20px 0;
    }

    .highlights-content-modern::before {
        left: -15px;
        width: 3px;
    }

    .highlights-title-modern {
        font-size: 36px;
        padding-left: 15px;
    }

    .highlights-title-modern::after {
        left: 15px;
    }

    .conference-highlights-section p {
        padding-left: 15px;
        font-size: 16px;
    }

    .highlights-list-modern {
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
    .conference-highlights-section {
        padding: 60px 0;
    }
    
    .highlights-content-modern {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .highlights-title-modern {
        font-size: 32px;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .highlights-title-modern::after {
        width: 100px;
        left: 15px;
    }
    
    .conference-highlights-section p {
        padding-left: 0px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .highlights-list-modern {
        padding-left: 15px;
        margin-top: 25px;
    }
    
    .highlights-list-modern li {
        padding: 15px 20px;
        margin-bottom: 15px;
    }
    
    .highlights-list-modern li span {
        font-size: 14px;
    }
    
    .highlights-list-modern li i {
        font-size: 18px;
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .highlights-image-wrapper {
        margin-top: 30px;
        border-width: 3px;
        border-radius: 20px;
    }
    
    .highlights-section-alt .highlights-image-wrapper {
        margin-top: 0;
        margin-bottom: 30px;
    }
}



/* CTA Section - Registration & Housing */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.85) 0%, rgba(199, 73, 31, 0.9) 100%);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.05) 25px, rgba(255, 255, 255, 0.05) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.05) 25px, rgba(255, 255, 255, 0.05) 27px);
    background-size: 100% 100%, 100% 100%;
    z-index: 2;
    opacity: 0.3;
}

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

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(235, 95, 42, 0.05) 0%, rgba(255, 120, 74, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(235, 95, 42, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-card:hover .cta-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(235, 95, 42, 0.5);
}

.cta-icon-wrapper i {
    font-size: 42px;
    color: #fff;
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-icon-wrapper i {
    transform: scale(1.15);
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #041A57;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(235, 95, 42, 0.3);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, #ff784a 0%, #7409f6 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(235, 95, 42, 0.5);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-registration {
    animation: fadeInUp 0.8s ease-out;
}

.cta-housing {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }
    
    .cta-icon-wrapper i {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .cta-icon-wrapper i {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

.highlights-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.check-icon {
    color: #7409f6;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Countdown Timer */
.countdown-timer {
    margin-top: 40px;
}

.timer-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.timer-item {
    flex: 1;
    min-width: 100px;
}

.timer-box {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.timer-item.active .timer-box {
    border-color: #7409f6;
    background-color: #f0ebff;
}

.timer-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 8px;
}

.timer-label {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Circular Images */
.circular-images-wrapper {
    position: relative;
    padding: 40px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.circular-image {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #7409f6;
    box-shadow: 0 10px 30px rgba(235, 95, 42, 0.3);
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(235, 95, 42, 0.4);
}

.circular-image.image-1 {
    top: 0;
    left: 70%;
    transform: translateX(-50%);
    z-index: 3;
}

.circular-image.image-2 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
}

.circular-image.image-3 {
    bottom: 0%;
    right: 10%;
    z-index: 1;
}

@media (max-width: 991px) {
    .circular-image-container {
        height: 400px;
    }
    
    .circular-image {
        width: 200px;
        height: 200px;
    }
    
    .highlights-title {
        font-size: 36px;
    }
    
    .timer-grid {
        justify-content: center;
    }
    
    .timer-item {
        min-width: 80px;
    }
    
    .timer-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .circular-images-wrapper {
        min-height: 350px;
        padding: 20px;
    }
    
    .circular-image-container {
        height: 350px;
    }
    
    .circular-image {
        width: 150px;
        height: 150px;
    }
    
    .highlights-title {
        font-size: 32px;
    }
    
    .timer-item {
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 24px;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: rgba(0, 0, 0, 0.85) !important;
    
    color: #fff;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

 

.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.4;
}

.footer-top {
    padding: 80px 0 50px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.footer-widget {
    height: 100%;
    position: relative;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border: #282828 solid 1px;
}

.footer-widget:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.footer-logo .footer-brand {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand i {
    color: #7409f6;
    font-size: 24px;
    background: none;
    -webkit-text-fill-color: #7409f6;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
}

.footer-contact-info {
    margin-top: 25px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    color: rgba(255, 255, 255, 1);
    transform: translateX(5px);
}

.footer-contact-item i {
    color: #7409f6;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
}

.footer-contact-item span {
    flex: 1;
}

.footer-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #fff 0%, #fff 100%);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(235, 95, 42, 0.4);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 12px;
    list-style: none;
    padding-left: 0;
    position: relative;
}

.footer-links li::before {
    content: '';
    display: none;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    font-weight: 400;
    padding-left: 0;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #7409f6;
    transition: width 0.3s ease;
}

.footer-links a:hover::before {
    width: 10px;
}

.footer-links a i {
    font-size: 10px;
    margin-right: 12px;
    color: #7409f6;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(8px);
    padding-left: 0;
}

.footer-links a:hover i {
    opacity: 1;
    color: #7409f6;
    transform: scale(1.2);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 18px;
    color: #7409f6;
    margin-top: 3px;
    width: 20px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.social-link:hover {
    background: linear-gradient(135deg, #7409f6 0%, #ff784a 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(235, 95, 42, 0.5);
    color: #fff;
}

.footer-bottom {
    background: #7409f6;
    backdrop-filter: blur(5px);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    margin: 0;
    font-weight: 400;
}

.footer-policy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.policy-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 0 5px;
    position: relative;
}

.policy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 5px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7409f6 0%, #ff784a 100%);
    transition: width 0.3s ease;
}

.policy-link:hover {
    color: #fff;
}

.policy-link:hover::after {
    width: calc(100% - 10px);
}

.policy-separator {
    color: rgba(255, 255, 255, 0.4);
    margin: 0 5px;
}

@media (max-width: 768px) {
    .footer-policy-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .policy-separator {
        display: none;
    }
    
    .policy-link {
        padding: 5px 0;
    }
}

@media (max-width: 991px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-widget {
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 50px 0 35px;
    }
    
    .footer-widget {
        padding: 15px;
        margin-bottom: 20px;
    }
    
    .footer-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .footer-brand {
        font-size: 28px;
    }
    
    .footer-brand i {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 14px;
    }
    
    .footer-contact-item {
        font-size: 13px;
    }
    
    .footer-links a {
        font-size: 14px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright-text {
        text-align: center !important;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding: 25px 0;
    }
    
    .modern-footer::after {
        opacity: 0.5;
    }
    
    .modern-footer {
        background: rgba(4, 26, 87, 0.9);
    }
}
 
/* Tab Pane Animation */
.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
