:root {
    --cordros-red: #e31937;
    --cordros-dark: #1a1a1a;
    --cordros-light: #ffffff;
    --cordros-gray: #f5f5f5;
    --cordros-dark-red: #b3142c;
    --cordros-gold: #d4af37;
    --cordros-gradient: linear-gradient(135deg, #ef4130 0%, #dc9814 100%);
}

/* Gotham Book (Normal 400) */
@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham-book.woff2") format("woff2"),
        url("../fonts/gotham-book.woff") format("woff"),
        url("../fonts/gotham-book.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

/* Gotham Light (Light 300) */
@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham-light.woff2") format("woff2"),
        url("../fonts/gotham-light.woff") format("woff"),
        url("../fonts/gotham-light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

/* Gotham Medium (Medium 500) */
@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham-medium.woff2") format("woff2"),
        url("../fonts/gotham-medium.woff") format("woff"),
        url("../fonts/gotham-medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

/* Gotham Bold (Bold 700) */
@font-face {
    font-family: "Gotham";
    src: url("../fonts/gotham-bold.woff2") format("woff2"),
        url("../fonts/gotham-bold.woff") format("woff"),
        url("../fonts/gotham-bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

/* Chronicle Text G2 Semibold (600) */
@font-face {
    font-family: "Chronicle Text";
    src: url("../fonts/chronicle text g2 semibold pro.woff2") format("woff2"),
        url("../fonts/chronicle text g2 semibold pro.woff") format("woff"),
        url("../fonts/chronicle text g2 semibold pro.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
}

/* Chronicle Text G2 Italic */
@font-face {
    font-family: "Chronicle Text";
    src: url("../fonts/chronicle text g2 italic pro.woff2") format("woff2"),
        url("../fonts/chronicle text g2 italic pro.woff") format("woff"),
        url("../fonts/chronicle text g2 italic pro.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
}

body {
    /* font-family: "Open Sans", sans-serif; */
    /* font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; */
    /* font-family: "Inter", sans-serif; */
    /* font-family: "Montserrat", Arial, sans-serif; */
    font-family: "Gotham", Arial, sans-serif;
    color: var(--cordros-dark);
    background: var(--cordros-light);
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    /* font-family: "Chronicle Text", Georgia, serif; */
    /* font-family: "Montserrat", sans-serif; */
    /* font-family: "Playfair Display", serif; */
    font-family: "Gotham", Arial, sans-serif;
    font-weight: 600;
}

.text-cordros-red {
    color: var(--cordros-red);
}

/* Preloader CSS */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f5f5f5;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-content {
    position: relative;
    width: 150px;
    height: 150px;
}

.logo {
    margin-left: 30px;
    margin-top: 30px;
    width: 80px;
    height: 80px;
    animation: breathing 3s ease-in-out infinite;
}

.circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-radius: 50%;
    box-sizing: border-box;
    border-top: 4px solid red;
    border-right: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid transparent;
    animation: rotate 1.5s linear infinite, changeColor 3s step-end infinite;
}

@keyframes breathing {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes changeColor {
    0% {
        border-top-color: red;
    }
    50% {
        border-top-color: black;
    }
}

.loaded .preloader {
    opacity: 0;
    pointer-events: none;
}

/* Top Header with Background Image */
/* .top-header {
    background: url('{{ asset("front/header/header2.png") }}') no-repeat center
        center;
    background-size: cover;
    color: #fff;
    padding: 25px 30px;
    display: flex;
    align-items: center;
} */

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section img {
    height: 60px;
}

.separator {
    width: 2px;
    background-color: rgba(236, 14, 14, 0.7);
    height: 50px;
    margin: 0 1px;
}

.logo-text h5 {
    font-size: 30px;
    margin: 0;
    font-weight: bold;
    color: #000000;
}

.logo-text p {
    margin: 0;
    /* font-weight: bold; */
    color: #000000;
}

.logo-text small {
    color: #000000;
    font-size: 17px;
}

/* Navigation */
.main-nav {
    /* background-color: #cd1534; /* Darker red */
    background-color: var(--cordros-gray); /* Darker red */
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    padding: 10px;
}

.main-nav .nav-link {
    color: var(---cordros-red) !important;
    font-weight: 600;
    margin: 0 5px;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav .nav-link:hover {
    /* text-decoration: underline; */
    color: #e31937 !important;
}

.main-nav .nav-link.active {
    color: var(--cordros-red) !important;
    border-bottom: 2px solid var(--cordros-red);
    font-weight: 700;
}

.register-btn {
    background-color: var(--cordros-red) !important;
    color: var(--cordros-light);
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    white-space: nowrap;
}

.register-btn:hover {
    background-color: var(--cordros-dark) !important;
    color: var(--cordros-light) !important;
}

@media (max-width: 768px) {

	body {
		overflow-x: hidden;
	}
    
    .logo-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .separator {
        display: none;
    }
}

/* Removed underline from dropdown toggle */
.btn-primary {
    background: var(--cordros-red);
    border: none;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(227, 25, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 25, 55, 0.4);
}

.special:link {
    text-decoration: none;
}

/* Hero Video Banner */
.hero-video-container {
    height: 70vh; /* Reduced height */
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.4)
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.summit-details {
    background: rgba(227, 25, 55, 0.9);
    padding: 15px 25px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 20px;
}

.summit-details span {
    margin-right: 20px;
}

.summit-details i {
    margin-right: 5px;
}

.btn-primary {
    background-color: var(--cordros-red);
    border-color: var(--cordros-red);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c0102e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(227, 25, 55, 0.4);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 10;
}

.video-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-btn:hover {
    background: var(--cordros-red);
    transform: scale(1.1);
}

/* Finance-themed elements */
.finance-icon {
    font-size: 2.5rem;
    color: var(--cordros-red);
    margin-bottom: 20px;
}

.chart-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23E31937" opacity="0.1"><path d="M3 3v18h18V3H3zm16 16H5V5h14v14zM7 12h2v5H7zm4-7h2v12h-2zm4 4h2v8h-2z"/></svg>');
    background-repeat: no-repeat;
    z-index: -1;
}

/* Event Highlights */
.event-highlights {
    /* background: linear-gradient(135deg, var(--cordros-red), #b01030); */
    background: var(--cordros-gray);
    color: var(--cordros-dark);
    padding: 30px 0;
    position: relative;
    z-index: 5;
}

.highlight-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.highlight-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.highlight-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    background: var(--cordros-gray);
    color: var(--cordros-dark) !important;
    border-top: 3px solid var(--cordros-red);
}

.cta-btn {
    background: var(--cordros-red);
    color: var(--cordros-light) !important;
}

.cta-btn:hover {
    background: var(--cordros-dark);
    color: var(--cordros-light) !important;
}
/* About The Event Section */
section.who-we-are {
    padding: clamp(2rem, 4vw + 1rem, 4rem) 1rem;
}

.media-frame {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.media-frame img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* White half-circles */
.media-frame::before {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    border: 4px solid rgb(245, 36, 36);
    box-sizing: border-box;
    pointer-events: none;
    box-shadow: 0 0 0 40px rgba(255, 255, 255, 0.8),
        0 0 0 80px rgba(227, 10, 10, 0.6);
    clip-path: inset(50% 50% 0 0);
}

/* Buttons (red theme) */
.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--cordros-red);
    --bs-btn-border-color: var(---cordros-red);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--cordros-dark);
    --bs-btn-hover-border-color: var(--cordros-dark);
    --bs-btn-focus-shadow-rgb: 196, 18, 48;
    --bs-btn-active-bg: var(--brand-red-dark);
    --bs-btn-active-border-color: var(--cordros-dark);
    border-radius: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.95rem 1.25rem;
    width: 100%;
    justify-content: flex-start;
}

.btn-brand i {
    font-size: 1.2rem;
}

.eyebrow {
    font-weight: 700;
    color: var(--brand-red);
    letter-spacing: 0.02em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.95rem;
}

.title {
    font-weight: 800;
    font-size: 25px;
    margin-bottom: 0.75rem;
}

.leadish {
    font-size: clamp(1rem, 0.9rem + 0.4vw, 1.15rem);
    color: #2a2f36;
}

.btn-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 576px) {
    .btn-grid {
        grid-template-columns: 1fr;
    }
}

/* Speaker Carousel (Portrait) */
.speaker-section {
    padding: 100px 0;
    background: var(--cordros-gray);
    position: relative;
    overflow: hidden;
}

.speaker-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 10px;
    margin-bottom: 70px;
    margin-right: 15px;
    margin-left: 15px;
    height: 100%;
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.speaker-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.speaker-card:hover .speaker-img {
    transform: scale(1.1);
}

.speaker-info {
    padding: 25px;
    text-align: center;
}

.speaker-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--cordros-dark);
}

.speaker-title {
    color: var(--cordros-red);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 2px;
}

.speaker-desc {
    color: var(--cordros-dark);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Who Should Attend */
.attend-section {
    padding: 100px 0;
    background: white;
}

.attend-card {
    background: var(--cordros-gray);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cordros-red);
}

.attend-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.attend-icon {
    font-size: 3rem;
    color: var(--cordros-red);
    margin-bottom: 20px;
}

/* Updated Who should Attend */
.who-should-attend-card {
    position: relative;
    overflow: hidden;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.who-should-attend-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.who-should-attend-heading {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 15px 20px 15px 25px;
    color: var(--cordros-red);
    font-weight: 600;
    font-size: 25px;
    margin: 0;
    transition: all 0.3s ease;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%); /* Angled right side */
}

.who-should-attend-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    padding: 25px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    height: 75%;
    color: var(--color-dark);
    /* Removed clip-path for rectangular hover state */
    border-radius: 0px 0px 0 0; /* Optional: Slightly rounded top corners */
}

.who-should-attend-card:hover .who-should-attend-content {
    transform: translateY(0);
}

.who-should-attend-card:hover .who-should-attend-heading {
    opacity: 0;
}

.who-should-attend-card:hover img {
    transform: scale(1.05);
}

.who-should-attend-title {
    color: var(--cordros-red);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Why Attend */
.why-attend {
    padding: 100px 0;
    background: var(--cordros-gray);
}

.benefit-item {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--cordros-red);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Venue Map */
.venue-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Background image with transparency */

.section-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* .map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

/* Sponsors */

.sponsors-section {
    background-color: #f2f2f2;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.sponsors-title {
    color: #00796b; /* Teal-like color */
    font-weight: bold;
    margin-bottom: 30px;
}

.sponsors-wrapper {
    display: flex;
    justify-content: center; /* horizontal */
    align-items: center; 
    animation: scrollSponsors 30s linear infinite; /* Slow continuous scroll */
}

.sponsor-card {
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    margin: 0 15px;
    flex: 0 0 auto;
    width: 180px; /* Fixed width for smooth scroll */
}

.sponsor-card img {
    max-height: 100px;
    object-fit: contain;
    width: 100%;
    padding: 10px;
}

.sponsor-name {
    background: #fff;
    padding: 12px;
    font-size: 14px;
    color: #555;
    font-weight: 500;
    border-top: 1px solid #eee;
}

@keyframes scrollSponsors {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves half the container width */
    }
}

/* Duplicate the sponsors for seamless loop */
.sponsors-wrapper .sponsor-card:nth-child(n + 7) {
    margin-left: 15px;
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cordros-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(227, 25, 55, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.floating-btn:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(227, 25, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(227, 25, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(227, 25, 55, 0);
    }
}

/* Footer */
footer {
    background: var(--cordros-dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-logo {
    height: 100px;
	margin-bottom: 10px;
}

.social-icons a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--cordros-red);
    transform: translateY(-3px);
}

/* New Footer CSS */

.social-links {
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--cordros-gray);
    color: var(--cordros-dark);
    border-radius: 50%;
    margin-right: 0.75rem;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--cordros-red);
    color: white;
    transform: translateY(-3px);
}

.footer {
    background-color: var(--cordros-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-title {
    color: white;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 40px;
    height: 3px;
    background-color: var(--cordros-red);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cordros-red);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    margin-top: 2rem;
}

/* ================================
   Modal Styling
================================ */
.modal-content {
    border-radius: 1rem !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: none !important;
    padding-bottom: 0.5rem;
}

.modal-title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #1a1a1a;
}

.modal-body {
    color: #6c757d;
    line-height: 1.6;
    max-height: 70vh;
    overflow-y: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Optional scrollbar style */
.modal-body::-webkit-scrollbar {
    width: 8px;
}
.modal-body::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}
.modal-body::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.modal-footer {
    border-top: none !important;
    padding-top: 0;
}

.modal-footer .btn {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
}

/* Secondary button styling */
.btn-secondary {
    background-color: var(--cordros-red);
    border: none;
    transition: background-color 0.3s ease;
}
.btn-secondary:hover {
    background-color: var(--cordros-dark);
}

/* ================================
   Cordros Form Styling
================================ */
form {
    background: var(--cordros-light);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Labels */
form label {
    font-weight: 600;
    color: var(--cordros-dark);
    margin-bottom: 0.4rem;
    display: inline-block;
}

/* Required field asterisk */
.required_txt {
    color: var(--cordros-red);
    margin-right: 2px;
}

/* Inputs & selects */
form .form-control {
    border-radius: 0.5rem;
    border: 1px solid #ddd;
    padding: 0.65rem 0.9rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: var(--cordros-gray);
}

form .form-control:focus {
    border-color: var(--cordros-red);
    box-shadow: 0 0 0 0.2rem rgba(227, 25, 55, 0.25);
    background: var(--cordros-light);
}

/* Section labels (Qty, Captcha, etc.) */
form b {
    color: var(--cordros-dark);
}

/* Checkbox section */
.tacbox {
    background: var(--cordros-gray);
    border-radius: 0.5rem;
    padding: 0.8rem 1rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.tacbox input[type="checkbox"] {
    margin-right: 8px;
}

.tacbox a {
    color: var(--cordros-red);
    font-weight: 600;
    text-decoration: none;
}
.tacbox a:hover {
    color: var(--cordros-dark-red);
    text-decoration: underline;
}

/* Buttons */
.cityWall-btnn {
    background: var(--cordros-gradient);
    color: var(--cordros-light);
    border: none;
    border-radius: 50px;
    padding: 0.7rem 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cityWall-btnn:hover {
    background: var(--cordros-dark-red);
    color: var(--cordros-light);
    transform: translateY(-2px);
}

/* Back button specifically */
.cityWall-btnn.me-2 {
    background: var(--cordros-dark);
}
.cityWall-btnn.me-2:hover {
    background: #333;
}

/* Recaptcha block */
form .help-block {
    color: var(--cordros-red);
    font-size: 0.85rem;
    margin-top: 0.4rem;
}

/* ================================
   Mobile Responsiveness
   ================================ */

/* General mobile adjustments */
@media (max-width: 992px) {
  body {
    overflow-x: hidden;
  }
  
  /* Navigation improvements */
  .main-nav {
    padding: 8px 15px;
  }
  
  .main-nav .navbar-nav {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .register-btn {
    margin-top: 15px;
    display: inline-block;
  }
  
  /* Top header adjustments */
  .top-header {
    padding: 15px;
  }
  
  .logo-section img {
    height: 45px;
  }
  
  .logo-text h5 {
    font-size: 1.5rem;
  }
  
  .logo-text small {
    font-size: 0.85rem;
  }
  
  .logo-text p {
    font-size: 0.9rem;
  }
}

/* Hero section adjustments */
@media (max-width: 768px) {
  .hero-video-container {
    height: 50vh;
    min-height: 400px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
    text-align: center;
  }
  
  .summit-details {
    padding: 10px 15px;
    text-align: center;
    width: 100%;
  }
  
  .summit-details span {
    display: block;
    margin-bottom: 8px;
    margin-right: 0;
  }
  
  .video-controls {
    bottom: 10px;
    left: 10px;
  }
  
  .video-btn {
    width: 35px;
    height: 35px;
  }
}

/* About section improvements */
@media (max-width: 768px) {
  .who-we-are {
    padding: 2rem 1rem;
  }
  
  .title {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .eyebrow {
    text-align: center;
  }
  
  .media-frame::before {
    display: none; /* Remove decorative circles on mobile */
  }
  
  .btn-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-brand {
    justify-content: center;
  }
}

/* Speaker section improvements */
@media (max-width: 768px) {
  .speaker-section {
    padding: 60px 0;
  }
  
  .speaker-card {
    margin-bottom: 30px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .speaker-img {
    height: 280px;
  }
}

/* Who Should Attend section improvements */
@media (max-width: 768px) {
  .who-should-attend-card {
    height: 350px;
    margin-bottom: 20px;
  }
  
  .who-should-attend-heading {
    font-size: 1.2rem;
    padding: 10px 15px;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0% 100%);
  }
  
  .who-should-attend-content {
    padding: 15px;
    height: 80%;
  }
  
  .who-should-attend-title {
    font-size: 1.3rem;
  }
}

/* Why Attend section improvements */
@media (max-width: 768px) {
  .why-attend {
    padding: 60px 0;
  }
  
  .benefit-item {
    padding: 20px;
    margin-bottom: 20px;
  }
}

/* Venue section improvements */
@media (max-width: 768px) {
  .venue-section {
    padding: 60px 0;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .venue-section h3 {
    font-size: 1.5rem;
    margin-top: 20px;
  }
}

/* Sponsors section improvements */
@media (max-width: 768px) {
  .sponsors-section {
    padding: 30px 0;
  }
  
  .sponsor-card {
    width: 150px;
    margin: 0 10px;
  }
  
  .sponsor-card img {
    max-height: 80px;
  }
  
  .sponsor-name {
    font-size: 12px;
    padding: 8px;
  }
}

/* Footer improvements */
@media (max-width: 768px) {
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-logo {
    height: 70px;
    margin-bottom: 15px;
  }
  
  .col-lg-4, .col-lg-2, .col-lg-3 {
    margin-bottom: 30px;
    text-align: center;
  }
  
  .social-icons {
    justify-content: center;
  }
  
  .footer-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Small mobile adjustments */
@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2.section-title {
    font-size: 1.8rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .highlight-number {
    font-size: 2.2rem;
  }
  
  .highlight-label {
    font-size: 0.9rem;
  }
  
  /* Event highlights grid fix */
  .event-highlights .col-md-4 {
    margin-bottom: 20px;
  }
  
  /* CTA section */
  .cta .btn {
    padding: 10px 20px;
    font-size: 1rem;
  }
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Improve touch targets for mobile */
.btn, .nav-link, .register-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Fix for mobile menu toggle button */
.navbar-toggler {
  padding: 6px 10px;
  font-size: 1.2rem;
  border: 1px solid var(--cordros-red);
}

/* Form improvements for mobile */
@media (max-width: 768px) {
  form {
    padding: 1.5rem;
  }
  
  .tacbox {
    font-size: 0.85rem;
  }
}

/* Floating CTA adjustments */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 20px;
    right: 20px;
  }
  
  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Swiper carousel mobile adjustments */
@media (max-width: 768px) {
  .swiper-slide {
    width: 85%;
    margin-right: 15px;
  }
}