/* 
 * CorruPack Global Summit 2027
 * Theme Core Stylesheet
 * Custom High-Performance Modern CSS Design System
 */

/* ==========================================================================
   1. RESET & VARIABLE TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --cs-primary: #ee2d46;
    --cs-primary-hover: #c82333;
    --cs-dark: #232323;
    --cs-dark-light: #333333;
    --cs-white: #ffffff;
    --cs-gray-light: #f5f5f5;
    --cs-gray-border: #e0e0e0;
    --cs-text: #5b5b5b;
    --cs-text-light: #888888;
    
    /* Fonts */
    --cs-font-primary: 'Raleway', sans-serif;
    --cs-font-body: 'DM Sans', sans-serif;
    
    /* System Properties */
    --cs-container: 1200px;
    --cs-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --cs-shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --cs-shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --cs-shadow-lg: 0 15px 40px rgba(0,0,0,0.15);
    --cs-radius: 4px;
    --cs-header-h: 100px;
    --cs-border: #e0e0e0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--cs-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--cs-text);
    background-color: var(--cs-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--cs-font-primary);
    font-weight: 800;
    color: var(--cs-dark);
    line-height: 1.25;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--cs-transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Common Layout Utilities */
.cs-section {
    padding: 50px 0;
}

.cs-bg-light {
    background-color: var(--cs-gray-light);
}

.cs-container {
    width: 100%;
    max-width: var(--cs-container);
    margin: 0 auto;
    padding: 0 20px;
}

.cs-text-center {
    text-align: center;
}

/* ==========================================================================
   2. BUTTONS & UI COMPONENTS
   ========================================================================== */
.cs-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--cs-primary);
    color: var(--cs-white) !important;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border: 2px solid var(--cs-primary);
    border-radius: var(--cs-radius);
    cursor: pointer;
    box-shadow: var(--cs-shadow-sm);
    transition: var(--cs-transition);
}

.cs-btn-primary:hover {
    background-color: var(--cs-white);
    color: var(--cs-primary) !important;
    box-shadow: var(--cs-shadow-md);
    transform: translateY(-2px);
}

.cs-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    color: var(--cs-dark) !important;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    padding: 14px 28px;
    border: 2px solid var(--cs-dark);
    border-radius: var(--cs-radius);
    cursor: pointer;
    transition: var(--cs-transition);
}

.cs-btn-secondary:hover {
    background-color: var(--cs-dark);
    color: var(--cs-white) !important;
    transform: translateY(-2px);
}

.cs-btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Double Heading Component */
.cs-heading-group {
    margin-bottom: 50px;
    position: relative;
}

.cs-subtitle {
    font-family: var(--cs-font-primary);
    color: var(--cs-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
}

.cs-title {
    font-size: 42px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* ==========================================================================
   3. HEADER & MENU SYSTEM
   ========================================================================== */
.cs-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--cs-transition);
    background-color: var(--cs-white);
    border-bottom: 1px solid var(--cs-gray-border);
    box-shadow: var(--cs-shadow-sm);
}

.cs-header-container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Sticky Class */
.cs-header.cs-sticky {
    background-color: var(--cs-white);
    box-shadow: var(--cs-shadow-md);
}

.cs-header.cs-sticky .cs-header-container {
    height: 80px;
}

.cs-header.cs-sticky .cs-menu-item {
    color: var(--cs-dark);
}

/* Logo */
.cs-logo img {
    height: 60px;
    width: auto;
}

/* Navigation Links */
.cs-desktop-nav {
    display: flex;
    align-items: center;
}

.cs-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cs-menu-item {
    color: var(--cs-dark);
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cs-menu-item:hover {
    color: var(--cs-primary);
}

/* Dropdowns */
.cs-dropdown {
    position: relative;
}

.cs-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background-color: var(--cs-white);
    box-shadow: var(--cs-shadow-lg);
    border-radius: var(--cs-radius);
    padding: 15px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: var(--cs-transition);
}

.cs-dropdown:hover .cs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.cs-dropdown-menu li a {
    display: block;
    padding: 10px 24px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 13px;
    color: var(--cs-dark);
    letter-spacing: 0.05em;
}

.cs-dropdown-menu li a:hover {
    background-color: var(--cs-primary);
    color: var(--cs-white);
}

/* Mobile Toggle Hamburger */
.cs-mobile-toggler {
    display: none;
    flex-direction: column;
    gap: 6px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.cs-toggler-bar {
    width: 28px;
    height: 3px;
    background-color: var(--cs-dark);
    transition: var(--cs-transition);
}

.cs-header.cs-sticky .cs-toggler-bar {
    background-color: var(--cs-dark);
}

/* Mobile Drawer & Overlay */
.cs-mobile-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--cs-dark);
    z-index: 1010;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--cs-transition);
    box-shadow: var(--cs-shadow-lg);
}

.cs-mobile-drawer.active {
    left: 0;
}

.cs-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.cs-drawer-logo {
    height: 40px;
}

.cs-drawer-close {
    font-size: 32px;
    color: var(--cs-white);
    background: transparent;
    border: none;
    cursor: pointer;
}

.cs-mobile-nav {
    flex-grow: 1;
}

.cs-mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-mobile-menu li a {
    color: var(--cs-white);
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 0;
}

.cs-mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    flex-direction: column;
    gap: 12px;
}

.cs-mobile-dropdown.active .cs-mobile-dropdown-menu {
    display: flex;
}

.cs-mobile-dropdown-menu li a {
    font-size: 14px;
    font-weight: 500;
    color: var(--cs-text-light);
}

.cs-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6);
    z-index: 1005;
    opacity: 0;
    visibility: hidden;
    transition: var(--cs-transition);
}

.cs-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
    4. HERO BANNER & SLIDER
   ========================================================================== */
.cs-hero {
    margin-top: var(--cs-header-h);
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.autoHeroSwiper {
    width: 100%;
    aspect-ratio: 2560 / 925;
    max-height: 650px;
    position: relative;
}

.autoHeroSwiper .swiper-wrapper {
    height: 100%;
}

.autoHeroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.autoHeroSwiper .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

.autoHeroSwiper .swiper-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.cs-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Premium Swiper Navigation Buttons */
.autoHeroSwiper .swiper-button-prev,
.autoHeroSwiper .swiper-button-next {
    color: var(--cs-white) !important;
    background-color: rgba(0, 0, 0, 0.35);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    transition: var(--cs-transition);
}

.autoHeroSwiper .swiper-button-prev::after,
.autoHeroSwiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 800;
}

.autoHeroSwiper .swiper-button-prev:hover,
.autoHeroSwiper .swiper-button-next:hover {
    background-color: var(--cs-primary);
    color: var(--cs-white) !important;
}

/* Premium Swiper Pagination Bullets */
.autoHeroSwiper .swiper-pagination-bullet {
    background: var(--cs-white) !important;
    opacity: 0.6;
    width: 10px;
    height: 10px;
    transition: var(--cs-transition);
}

.autoHeroSwiper .swiper-pagination-bullet-active {
    background: var(--cs-primary) !important;
    opacity: 1;
    width: 24px;
    border-radius: 5px;
}

.cs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--cs-white);
    max-width: 900px;
    padding: 0 20px;
}

.cs-hero-badge {
    display: inline-block;
    background-color: var(--cs-primary);
    color: var(--cs-white);
    font-family: var(--cs-font-primary);
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 8px 16px;
    margin-bottom: 24px;
    border-radius: var(--cs-radius);
}

.cs-hero-title {
    font-size: 60px;
    color: var(--cs-white);
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
    font-weight: 900;
}

.cs-hero-title span {
    color: var(--cs-primary);
}

.cs-hero-desc {
    font-size: 20px;
    margin-bottom: 35px;
    font-family: var(--cs-font-body);
    font-weight: 300;
}

/* Hero Stats Boxes Overlayed */
.cs-hero-stats-bar {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    width: 100%;
    max-width: var(--cs-container);
    padding: 0 20px;
}

.cs-hero-stats-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: var(--cs-shadow-lg);
    border-radius: var(--cs-radius);
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cs-stat-item {
    text-align: center;
    color: var(--cs-white);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cs-stat-item:last-child {
    border-right: none;
}

.cs-stat-num {
    font-size: 36px;
    font-weight: 900;
    display: block;
    line-height: 1.1;
    margin-bottom: 5px;
}

.cs-stat-label {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.85);
}

/* ==========================================================================
   4.5. WELCOME & ABOUT SECTION
   ========================================================================== */
.cs-about {
    padding: 60px 0 30px 0; /* Standard padding without banner cut */
    background-color: var(--cs-white);
    position: relative;
    z-index: 10;
}

.cs-about-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 0; /* Normal document flow */
    margin-bottom: 40px;
    position: relative;
    z-index: 12;
}

/* Red Contact Box - reduced size to match the legacy style */
.cs-about-contact-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--cs-primary);
    color: var(--cs-white) !important;
    padding: 24px 20px;
    width: 240px;
    height: 190px;
    border-radius: 2px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(238, 45, 70, 0.25);
    text-decoration: none;
}

.cs-about-contact-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(238, 45, 70, 0.45);
}

.cs-about-contact-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cs-about-contact-meta span {
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cs-about-contact-meta i {
    font-size: 14px;
    transition: transform 0.3s ease;
    margin-top: 2px;
}

.cs-about-contact-box:hover .cs-about-contact-meta i {
    transform: translate(3px, -3px);
}

.cs-about-contact-title {
    font-family: var(--cs-font-body);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.2;
    text-transform: none;
}

/* Welcome Description style */
.cs-about-welcome-text p {
    font-family: var(--cs-font-body);
    /* font-size: clamp(16px, 1.8vw, 22px); */
    font-size: clamp(20px, 1.9vw, 29px);
    line-height: 1.6;
    color: var(--cs-dark);
    font-weight: 500;
}

/* Scroll Animations: Both coming from left side to fit */
.cs-about-grid.cs-reveal .cs-about-contact-box {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cs-about-grid.cs-reveal .cs-about-welcome-text {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.15s, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.15s;
}

.cs-about-grid.cs-reveal.animate .cs-about-contact-box {
    opacity: 1;
    transform: translateX(0);
}

.cs-about-grid.cs-reveal.animate .cs-about-welcome-text {
    opacity: 1;
    transform: translateX(0);
}

/* Divider Line */
.cs-about-divider {
    border: none;
    height: 1px;
    background-color: var(--cs-gray-border);
    margin-top: 30px;
    width: 100%;
}

/* ==========================================================================
   4.7. EVENT DESCRIPTION & MARKET SNAPSHOT SECTIONS
   ========================================================================== */

/* Premium Diagonal Arrow Button */
.cs-btn-premium {
    display: inline-flex;
    align-items: center;
    background-color: var(--cs-white);
    color: var(--cs-dark);
    border: 1px solid var(--cs-dark);
    padding: 12px 28px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 15px;
    border-radius: 0;
}

.cs-btn-premium:hover {
    background-color: var(--cs-dark);
    color: var(--cs-white);
    border-color: var(--cs-dark);
}

.cs-btn-premium-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: var(--cs-primary);
    color: var(--cs-white);
    font-size: 14px;
    transform: rotate(45deg);
    margin-right: 4px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.cs-btn-premium-icon span {
    transform: rotate(-45deg);
    display: inline-block;
    font-weight: bold;
    line-height: 1;
}

.cs-btn-premium:hover .cs-btn-premium-icon {
    background-color: var(--cs-white);
    color: var(--cs-primary);
}

/* Event Description / Curtain Raiser Info */
.cs-event-desc {
    background-image: url('../../uploads/2023/06/home3-3.png');
    background-size: cover;
    background-position: inherit;
    background-repeat: no-repeat;
    padding: 85px 0;
    text-align: center;
    position: relative;
}

.cs-event-desc-heading {
    font-family: var(--cs-font-primary);
    font-size: 35px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--cs-dark);
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.cs-highlight-red {
    color: var(--cs-primary);
}

.cs-event-desc-paragraph {
    font-family: var(--cs-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--cs-dark);
    max-width: 930px;
    margin: 0 auto 24px auto;
    font-weight: 400;
}

.cs-event-desc-paragraph strong {
    font-weight: 700;
}

.cs-event-desc-btn-wrapper {
    margin-top: 35px;
}

/* Market Snapshot Section */
.cs-market {
    background-color: #f7f7f7;
    padding: 85px 0;
}

.cs-market-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
}

.cs-market-title-area {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-market-heading {
    font-family: var(--cs-font-primary);
    font-size: 38px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0;
    letter-spacing: -0.01em;
}

.cs-market-subtitle-row {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.cs-market-subtitle {
    font-family: var(--cs-font-primary);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--cs-primary);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.cs-market-line {
    flex-grow: 1;
    height: 1px;
    background-color: #d1d1d1;
    margin-right: 40px;
}

.cs-market-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.cs-market-nav-label {
    font-family: var(--cs-font-primary);
    font-size: 11px;
    font-weight: 700;
    color: var(--cs-primary);
    letter-spacing: 0.15em;
    display: flex;
    gap: 15px;
}

.cs-market-nav-buttons {
    display: flex;
    gap: 12px;
}

.cs-market-prev,
.cs-market-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--cs-primary);
    background-color: transparent;
    color: var(--cs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cs-market-prev:hover,
.cs-market-next:hover {
    background-color: var(--cs-primary);
    color: var(--cs-white);
}

/* Swiper Container */
.cs-market-swiper {
    width: 100%;
    padding-bottom: 20px;
}

.cs-market-card {
    background: transparent;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cs-market-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cs-market-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cs-market-card-title {
    font-family: var(--cs-font-primary);
    font-size: 15px;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

.cs-market-card-desc {
    font-family: var(--cs-font-body);
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    margin: 0;
    text-align: left;
}

.cs-market-cta {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}
/* Why Exhibit or Sponsor Section */
.cs-why {
    background-color: var(--cs-white);
    padding: 100px 0;
    position: relative;
}

.cs-why-grid {
    display: grid;
    grid-template-columns: 1.1fr 2.6fr;
    gap: 90px;
    align-items: start;
}

.cs-why-left {
    position: sticky;
    top: 120px;
    align-self: start;
    padding-right: 20px;
    z-index: 10;
}

.cs-why-left .cs-section-heading {
    font-family: var(--cs-font-primary);
    font-size: 45px;
    font-weight: 900;
    color: var(--cs-dark);
    line-height: 1.1;
    text-transform: uppercase;
    margin: 0 0 18px 0;
    letter-spacing: -0.02em;
}

.cs-why-left .cs-subtitle {
    display: block;
    font-family: var(--cs-font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--cs-primary);
    line-height: 1.45;
    letter-spacing: 0.01em;
    margin-bottom: 0;
}

.cs-why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 40px;
}

.cs-why-item {
    position: relative;
    padding: 20px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cs-why-item:hover {
    transform: translateY(-5px);
}

.cs-why-item::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 45%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 320px;
    height: 320px;
    background-image: url('../../uploads/2023/10/h5-ib1.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.5s ease;
    pointer-events: none;
}

.cs-why-item:hover::before {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.05);
}

.cs-why-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--cs-primary);
    border-radius: 50%;
    color: var(--cs-primary);
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.cs-why-item:hover .cs-why-num {
    transform: scale(1.05);
}

.cs-why-content {
    position: relative;
    z-index: 2;
}

.cs-why-content h3 {
    font-family: var(--cs-font-primary);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cs-dark);
    margin: 0 0 14px 0;
    transition: color 0.3s ease;
    letter-spacing: 0.01em;
}

.cs-why-item:hover .cs-why-content h3 {
    color: var(--cs-primary);
}

.cs-why-content p {
    font-family: var(--cs-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.cs-why-item:hover .cs-why-content p {
    color: #333;
}
/* ==========================================================================
   5. COUNTDOWN SECTION
   ========================================================================== */
.cs-countdown {
    background-color: var(--cs-white);
    padding: 40px 0;
    color: var(--cs-dark);
}

.cs-countdown-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.cs-countdown-unit {
    text-align: center;
    min-width: 120px;
}

.cs-cd-number {
    font-size: 100px;
    font-family: var(--cs-font-body);
    font-weight: 800;
    line-height: 1;
    color: var(--cs-dark);
    display: block;
}

.cs-cd-label {
    font-family: var(--cs-font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    color: var(--cs-primary);
    letter-spacing: 0.1em;
    margin-top: 10px;
    display: block;
}

.cs-cd-sep {
    font-size: 64px;
    font-weight: 700;
    color: var(--cs-primary);
    line-height: 1;
    align-self: flex-start;
    margin-top: 5px;
}

/* ==========================================================================
   6. INFOBOX & GRID CARDS
   ========================================================================== */
.cs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.cs-card-premium {
    background-color: var(--cs-white);
    border: 1px solid var(--cs-gray-border);
    border-radius: var(--cs-radius);
    padding: 40px 30px;
    box-shadow: var(--cs-shadow-sm);
    transition: var(--cs-transition);
    position: relative;
    overflow: hidden;
}

.cs-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--cs-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--cs-transition);
}

.cs-card-premium:hover {
    box-shadow: var(--cs-shadow-lg);
    transform: translateY(-5px);
}

.cs-card-premium:hover::before {
    transform: scaleX(1);
}

.cs-card-icon {
    font-size: 40px;
    color: var(--cs-primary);
    margin-bottom: 24px;
}

.cs-card-title {
    font-size: 22px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.cs-card-desc {
    color: var(--cs-text);
    font-size: 15px;
    line-height: 1.6;
}

/* ==========================================================================
   7. AGENDA & EVENTS
   ========================================================================== */
.cs-tabs-navigation {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.cs-tabs-header {
    background-color: transparent;
    border: 1px solid var(--cs-dark);
    color: var(--cs-dark);
    padding: 12px 30px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-radius: var(--cs-radius);
    transition: var(--cs-transition);
}

.cs-tabs-header:hover, .cs-tabs-header.active {
    background-color: var(--cs-primary);
    border-color: var(--cs-primary);
    color: var(--cs-white);
}

.cs-tabs-panel {
    display: none;
}

.cs-tabs-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

/* Agenda Timeline Items */
.cs-agenda-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}

.cs-agenda-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background-color: var(--cs-gray-border);
}

.cs-agenda-item {
    position: relative;
    margin-bottom: 40px;
}

.cs-agenda-item::before {
    content: '';
    position: absolute;
    top: 8px;
    left: -35px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--cs-primary);
    border: 3px solid var(--cs-white);
    box-shadow: 0 0 0 2px var(--cs-primary);
}

.cs-agenda-card {
    background-color: var(--cs-white);
    border: 1px solid var(--cs-gray-border);
    border-radius: var(--cs-radius);
    padding: 24px 30px;
    box-shadow: var(--cs-shadow-sm);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cs-agenda-time {
    font-family: var(--cs-font-primary);
    font-weight: 800;
    color: var(--cs-primary);
    font-size: 18px;
    min-width: 180px;
}

.cs-agenda-content {
    flex-grow: 1;
}

.cs-agenda-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.cs-agenda-speaker {
    font-size: 14px;
    color: var(--cs-text-light);
}

.cs-agenda-location {
    background-color: var(--cs-gray-light);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cs-dark);
}

/* ==========================================================================
   8. PARTNERS & SPONSORS
   ========================================================================== */
.cs-partners-slider {
    margin-top: 40px;
}

.cs-partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.cs-partner-card {
    background-color: var(--cs-white);
    border: 1px solid var(--cs-gray-border);
    border-radius: var(--cs-radius);
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--cs-shadow-sm);
    transition: var(--cs-transition);
}

.cs-partner-card:hover {
    box-shadow: var(--cs-shadow-md);
    transform: translateY(-3px);
    border-color: var(--cs-primary);
}

.cs-partner-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* ==========================================================================
   9. FOOTER SECTION
   ========================================================================== */
.cs-footer {
    background-color: var(--cs-dark);
    color: rgba(255,255,255);
    padding-top: 80px;
    border-top: 4px solid var(--cs-primary);
}

.cs-footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px 60px 40px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.cs-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-footer-title {
    color: var(--cs-white);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 10px;
}

.cs-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--cs-primary);
}

.cs-footer-links li {
    margin-bottom: 12px;
}

.cs-footer-links li a {
    color: rgba(255,255,255);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}

.cs-footer-links li a:hover {
    color: var(--cs-primary);
}

.cs-footer-text {
    font-size: 14px;
    line-height: 1.6;
}

.cs-text-sm {
    font-size: 12px;
}

.cs-footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.cs-footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.05);
    color: var(--cs-white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--cs-transition);
}

.cs-footer-socials a:hover {
    background-color: var(--cs-primary);
    transform: translateY(-2px);
}

.cs-organizer-logo {
   
    padding: 10px;
    border-radius: var(--cs-radius);
    display: inline-block;
    max-width: 180px;
}
.cs-organizer-logo-bg-white{
 background-color: var(--cs-white);
}

.cs-organizer-link {
    color: var(--cs-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-organizer-link:hover {
    text-decoration: underline;
}

.cs-footer-bottom {
    background-color: #1a1a1a;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 13px;
}

.cs-footer-bottom-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Back to top button */
.cs-back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    border-radius: var(--cs-radius);
    background-color: var(--cs-primary);
    color: var(--cs-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--cs-shadow-md);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: var(--cs-transition);
}

.cs-back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.cs-back-to-top:hover {
    background-color: var(--cs-dark);
}

/* ===================================================
   Mobile Sticky Register Button (vertical right tab)
   =================================================== */
.cs-mobile-sticky-register {
    display: none; /* Hidden on desktop */
}

@media (max-width: 991px) {
    .cs-mobile-sticky-register {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 0;
        top: 50%;
        /* rotate so text reads bottom-to-top, centered vertically */
        transform: translateY(-50%) rotate(180deg);
        background-color: var(--cs-primary);
        color: #fff;
        font-family: var(--cs-font-primary);
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        text-decoration: none;
        z-index: 999;
        box-shadow: -4px 0 16px rgba(0,0,0,0.3);
        /* Tab shape: left side is rounded, right flush against screen edge */
        border-radius: 0 10px 10px 0;
        white-space: nowrap;
        writing-mode: vertical-lr;
        text-orientation: mixed;
        padding: 20px 13px;
        line-height: 1;
        min-height: 110px;
    }
}

/* Unicode diagonal arrow in red about box */
.cs-about-arrow {
    display: inline-block !important;
    font-size: 18px;
    color: var(--cs-white);
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -2px;
}

/* ==========================================================================
   10. RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
    .cs-header-container {
        padding: 0 20px;
    }
    .cs-desktop-nav, .cs-header-cta {
        display: none;
    }
    .cs-mobile-toggler {
        display: flex;
    }
    .cs-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cs-footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .cs-hero-stats-bar {
        display: none; /* Hide overlay stats bar on tablet/mobile to prevent crowding */
    }
}

@media (max-width: 991px) {
    :root {
        --cs-header-h: 80px;
    }
    .cs-header-container {
        height: 80px;
        /* Hamburger LEFT, Logo RIGHT on mobile */
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    /* On mobile, the hamburger is first in DOM so it appears on left.
       The logo is second and pushed to the right via auto margin trick */
    .cs-logo {
        margin-left: auto;
    }
    .cs-mobile-toggler {
        order: -1; /* Ensure hamburger is always leftmost */
    }
    .cs-logo img {
        height: 36px;
    }
    /* Arrow icon must always be visible in the red box */
    .cs-about-contact-meta i {
        display: inline-block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 16px;
        color: #fff;
    }
    
    /* Event Description / Curtain Raiser Info responsive */
    .cs-event-desc {
        padding: 60px 0;
        background-position: center;
    }
    .cs-event-desc-heading {
        font-size: 35px;
        line-height: 1.3;
        margin-bottom: 20px;
    }
    .cs-event-desc-paragraph {
        font-size: 16px;
        line-height: 1.7;
    }
    .cs-market {
        padding: 60px 0;
    }
    .cs-market-heading {
        font-size: 32px;
    }
    .cs-market-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .cs-market-nav {
        align-items: flex-start;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    /* Why Exhibit or Sponsor Section mobile overrides */
    .cs-why {
        padding: 60px 0;
        background-image: none;
    }
    .cs-why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .cs-why-left {
        position: static;
        padding-right: 0;
    }
    .cs-why-left .cs-section-heading {
        font-size: 32px;
    }
    .cs-why-right {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cs-why-item {
        padding: 20px 0;
    }
}

@media (max-width: 768px) {
    /* Event Description / Curtain Raiser Info mobile */
    .cs-event-desc {
        padding: 50px 0;
        background-position: center;
    }
    .cs-event-desc-heading {
        font-size: 28px;
        line-height: 1.35;
    }
    .cs-event-desc-paragraph {
        font-size: 15px;
        line-height: 1.65;
        padding: 0 10px;
    }
    .cs-market {
        padding: 50px 0;
    }
    .cs-market-heading {
        font-size: 28px;
    }

    .autoHeroSwiper {
        aspect-ratio: 751 / 980;
        max-height: none;
    }
    .cs-about {
        padding: 40px 0 20px 0;
    }
    .cs-about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 0;
        margin-bottom: 20px;
    }
    .cs-about-contact-box {
        width: 100%;
        height: auto;
        min-height: 160px;
        padding: 20px;
        box-sizing: border-box;
    }
    .cs-about-contact-title {
        font-size: 28px;
        margin-top: 16px;
    }
    .cs-about-contact-meta i {
        font-size: 16px;
        display: inline-block;
    }
    .cs-about-welcome-text {
        text-align: left;
    }
    .cs-section {
        padding: 30px 0;
    }
    .cs-title {
        font-size: 32px;
    }
    .cs-hero-title {
        font-size: 36px;
    }
    .cs-hero-desc {
        font-size: 16px;
    }
    .cs-grid-3 {
        grid-template-columns: 1fr;
    }
    .cs-footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cs-footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .cs-countdown-inner {
        flex-wrap: nowrap;
        gap: 10px;
    }
    .cs-countdown-unit {
        min-width: 60px;
    }
    .cs-cd-number {
        font-size: 36px;
    }
    .cs-cd-sep {
        font-size: 28px;
        margin-top: 2px;
        display: inline-block;
        /* align-self: center; */
    }
    .cs-cd-label {
        font-size: 12px;
        margin-top: 5px;
    }
    .cs-agenda-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .cs-agenda-timeline {
        padding-left: 25px;
    }
    
    /* Why Exhibit or Sponsor Section mobile overrides */
    .cs-why {
        padding: 50px 0;
    }
    .cs-why-left .cs-section-heading {
        font-size: 28px;
    }
}

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

/* ============================================================
   PAGE HEADER & BREADCRUMBS
   ============================================================ */
.cs-page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../../uploads/2025/10/pt-contact-img-1.webp') no-repeat center center;
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
    margin-top: var(--cs-header-h);
    border-bottom: 4px solid var(--cs-primary);
}
.cs-page-title {
    font-family: var(--cs-font-head);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 0.05em;
}
.cs-breadcrumbs {
    font-family: var(--cs-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}
.cs-breadcrumbs a {
    color: #fff;
    transition: color 0.2s;
}
.cs-breadcrumbs a:hover {
    color: var(--cs-primary);
}
.cs-breadcrumbs span {
    margin: 0 8px;
    color: var(--cs-primary);
}

/* ============================================================
   CONTACT US SECTION & GRID
   ============================================================ */
.cs-contact-section {
    /* background: #f9f9f9; */
    padding: var(--cs-section-pad);
}
.cs-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 50px;
    align-items: start;
}

/* Contact Info Details */
.cs-contact-info-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--cs-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cs-info-heading {
    font-family: var(--cs-font-head);
    font-size: 24px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 30px;
    border-bottom: 2px solid var(--cs-primary);
    padding-bottom: 10px;
    display: inline-block;
}
.cs-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.cs-info-item:last-child {
    margin-bottom: 0;
}
.cs-info-icon-wrapper {
    background: rgba(238, 45, 70, 0.08);
    color: var(--cs-primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: background 0.3s, color 0.3s;
}
.cs-info-item:hover .cs-info-icon-wrapper {
    background: var(--cs-primary);
    color: #fff;
}
.cs-info-body h4 {
    font-family: var(--cs-font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.cs-info-body p {
    font-family: var(--cs-font-body);
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}
.cs-info-body a {
    color: inherit;
    transition: color 0.2s;
}
.cs-info-body a:hover {
    color: var(--cs-primary);
}

/* Contact Form */
.cs-contact-form-card {
    background: #fff;
    padding: 40px;
    border: 1px solid var(--cs-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.cs-form-group {
    margin-bottom: 22px;
}
.cs-form-group.half-width-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cs-form-label {
    display: block;
    font-family: var(--cs-font-head);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--cs-dark);
    margin-bottom: 8px;
}
.cs-form-input,
.cs-form-textarea {
    width: 100%;
    padding: 12px 18px;
    font-family: var(--cs-font-body);
    font-size: 14px;
    color: var(--cs-dark);
    border: 1px solid var(--cs-border);
    background: #fafafa;
    transition: all 0.3s ease;
}
.cs-form-input:focus,
.cs-form-textarea:focus {
    border-color: var(--cs-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(238, 45, 70, 0.08);
    outline: none;
}
.cs-form-textarea {
    resize: vertical;
    min-height: 140px;
}
.cs-form-submit-btn {
    width: 100%;
    justify-content: center;
    border-radius: 0;
}
.cs-form-feedback {
    margin-top: 20px;
    padding: 12px 18px;
    font-family: var(--cs-font-body);
    font-size: 14px;
    font-weight: 600;
    border-left: 4px solid transparent;
    display: none;
}
.cs-form-feedback.success {
    display: block;
    background: #eafaf1;
    color: #1e7e34;
    border-color: #28a745;
}
.cs-form-feedback.error {
    display: block;
    background: #fdf2f2;
    color: #c81e1e;
    border-color: #dc3545;
}
.cs-form-feedback.loading {
    display: block;
    background: #f1f4f8;
    color: #0c5460;
    border-color: #17a2b8;
}

/* Map/Location Section */
.cs-map-section {
    position: relative;
    width: 100%;
    height: 450px;
    background: #eee;
    padding: 15px;
}
.cs-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .cs-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .cs-form-group.half-width-wrapper {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .cs-contact-info-card,
    .cs-contact-form-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   11. DYNAMIC TICKER & PARTNER CTA SECTIONS
   ========================================================================== */

.cs-ticker {
    background-color: var(--cs-primary);
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
    position: relative;
    display: flex;
    z-index: 10;
}

.cs-ticker-track {
    display: inline-flex;
    align-items: center;
    animation: marquee 40s linear infinite;
    white-space: nowrap;
}

.cs-ticker-track span {
    font-family: var(--cs-font-primary);
    font-size: 32px;
    font-weight: 900;
    color: var(--cs-white);
    letter-spacing: 0.02em;
    line-height: 1;
}

.cs-ticker-track img {
    height: 48px;
    width: auto;
    margin: 0 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Partner CTA Section */
.cs-partner-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.72)), url('../../uploads/2023/10/h6-4.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 110px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.cs-partner-cta-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.cs-partner-cta-heading {
    font-family: var(--cs-font-primary);
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--cs-white);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cs-partner-cta-subtitle {
    display: block;
    font-family: var(--cs-font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--cs-primary);
    margin-bottom: 0;
}

.cs-partner-cta-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    margin: 30px 0;
}

/* Premium White Button style */
.cs-btn-premium-white {
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    color: var(--cs-white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 12px 28px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 15px;
    border-radius: 0;
}

.cs-btn-premium-white:hover {
    background-color: var(--cs-white);
    color: var(--cs-dark);
    border-color: var(--cs-white);
}

.cs-btn-premium-white:hover .cs-btn-premium-icon {
    background-color: var(--cs-dark);
    color: var(--cs-white);
}

/* Stats Section below Partner CTA */
.cs-partner-stats-section {
    background-color: var(--cs-primary);
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

.cs-partner-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: var(--cs-container);
    margin: 0 auto;
    padding: 0 20px;
}

.cs-partner-stats-grid .cs-stat-item {
    text-align: center;
    color: var(--cs-white);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
}

.cs-partner-stats-grid .cs-stat-item:last-child {
    border-right: none;
}

.cs-partner-stats-grid .cs-stat-num {
    font-size: 48px;
    font-weight: 900;
    display: block;
    line-height: 1.1;
    margin-bottom: 8px;
    color: var(--cs-white);
}

.cs-partner-stats-grid .cs-stat-label {
    font-size: 14px;
    text-transform: uppercase;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Overrides for Partner CTA & Stats */
@media (max-width: 991px) {
    .cs-partner-cta-heading {
        font-size: 30px;
    }
    .cs-partner-stats-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .cs-partner-stats-grid .cs-stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 25px;
    }
    .cs-partner-stats-grid .cs-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .cs-partner-stats-grid .cs-stat-num {
        font-size: 40px;
    }
}

/* Partners Swiper Section Styling */
.cs-partners-swiper {
    padding: 20px 0 50px 0;
}

.cs-partner-slide {
    background-color: var(--cs-white);
    border: 1px solid var(--cs-gray-border);
    border-radius: var(--cs-radius);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: var(--cs-shadow-sm);
    transition: var(--cs-transition);
    box-sizing: border-box;
}

.cs-partner-slide:hover {
    box-shadow: var(--cs-shadow-md);
    transform: translateY(-3px);
    border-color: var(--cs-primary);
}

.cs-partner-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.cs-partner-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Swiper Pagination customization and linear scroll */
.cs-partners-swiper .swiper-pagination {
    display: none !important;
}

.cs-partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* Footer bottom styling updates */
.cs-footer-bottom-right {
    text-align: right;
}

.cs-developed-by a:hover {
    color: var(--cs-white) !important;
}

@media (max-width: 768px) {
    .cs-footer-bottom-right {
        text-align: center;
    }
}

/* Breadcrumbs Separator / Divider */
.breadcrumbs .divider::after {
    content: "/";
    margin: 0 8px;
    opacity: 0.6;
}

/* about-hyderabad */
    .cs-video-banner {
        position: relative;
        height: 680px;
        /* Increased height */
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #000;
    }

    .cs-video-banner-thumb {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        z-index: 2;
        transition: opacity 1s ease-in-out;
    }

    .cs-video-banner-bg {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw;
        height: 56.25vw;
        /* 16:9 Aspect Ratio */
        min-height: 100vh;
        min-width: 177.77vh;
        /* 16:9 Aspect Ratio */
        transform: translate(-50%, -50%);
        z-index: 1;
        pointer-events: none;
    }

    .cs-banner-video-iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: none;
    }

    .cs-video-banner-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.45);
        z-index: 3;
    }

    .cs-video-banner-container {
        position: relative;
        z-index: 4;
        text-align: center;
        padding: 0 20px;
    }

    .cs-video-banner-title {
        font-family: var(--cs-font-head);
        font-size: 50px;
        /* Increased font size */
        font-weight: 900;
        color: #ffffff;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin: 0;
        line-height: 1.2;
        text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    }

    .cs-video-banner-title .cs-highlight {
        color: var(--cs-primary, #d90368);
    }

    @media (max-width: 991px) {
        .cs-video-banner {
            height: 500px;
        }

        .cs-video-banner-title {
            font-size: 44px;
        }
    }

    @media (max-width: 767px) {
        .cs-video-banner {
            height: 680px;
        }

        .cs-video-banner-title {
            font-size: 42px;
        }
    }

/* Hyderabad Intro section background */
.cs-hyderabad-intro {
    background-image: url('../../uploads/2023/06/home3-3.png');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    padding-bottom: 50px;
    padding-top: 100px;
}

.cs-intro-container {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.cs-intro-heading {
    font-family: var(--cs-font-head);
    font-size: 34px;
    font-weight: 800;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 25px;
    line-height: 1.3;
}

.cs-intro-heading .cs-highlight {
    color: var(--cs-primary, #d90368);
}

.cs-intro-text p {
    font-size: 16px;
    line-height: 1.85;
    color: #555555;
    margin: 0;
    text-align: center;
}

@media (max-width: 767px) {
    .cs-intro-heading {
        font-size: 26px;
    }
    .cs-intro-text p {
        font-size: 15px;
    }
    .cs-hyderabad-intro {

    background-position: center;
}
}

/* Quote Showcase Section */
.cs-quote-showcase .cs-container {
    max-width: 1400px;
    width: 100%;
}

.cs-quote-box {
    position: relative;
    background-image: url('../../uploads/2025/10/banner-image-02-main.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--cs-shadow-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px; /* Increased from 380px */
}

.cs-quote-left-spacer {
    /* Empty spacer to reveal the Charminar background image */
}

.cs-quote-content {
    padding: 60px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15); /* Subtle overlay to ensure readability */
}

.cs-quote-text {
    font-family: var(--cs-font-primary);
    font-size: 24px;
    line-height: 1.6;
    color: #ffffff;
    font-weight: 500;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cs-quote-text em strong {
    font-style: italic;
    font-weight: 700;
}

@media (max-width: 991px) {
    .cs-quote-box {
        grid-template-columns: 1fr;
        background-position: left center;
    }
    .cs-quote-left-spacer {
        height: 250px;
    }
    .cs-quote-content {
        padding: 40px 30px;
        background: rgba(0, 0, 0, 0.7); /* Darker overlay on smaller viewports */
    }
    .cs-quote-text {
        font-size: 20px;
    }
}

/* Split Scroll Section */
.cs-explore-split-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.cs-explore-left-col {
    position: sticky;
    top: 120px; /* Lock it in place as the user scrolls */
    align-self: start;
}

.cs-sticky-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
}

.cs-explore-title-sticky {
    font-family: var(--cs-font-head);
    font-size: 38px;
    font-weight: 900;
    color: var(--cs-dark);
    line-height: 1.25;
    margin: 0;
    text-transform: uppercase;
}

.cs-explore-desc-sticky {
    font-family: var(--cs-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--cs-text);
    margin: 0;
}

.cs-explore-right-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Explore Card Row Layout */
.cs-explore-item-card {
    display: flex;
    background: #FFEBD2; 
    border: 1px solid rgba(217, 3, 104, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-explore-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 3, 104, 0.06);
    border-color: rgba(217, 3, 104, 0.25);
}

.cs-explore-card-icon {
    width: 140px;
    min-width: 140px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    overflow: hidden;
}

.cs-explore-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-explore-card-info {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

.cs-explore-card-info h4 {
    font-family: var(--cs-font-head);
    font-size: 20px;
    font-weight: 900;
    color: var(--cs-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-explore-card-info p {
    font-family: var(--cs-font-body);
    font-size: 15px;
    line-height: 1.5;
    color: var(--cs-text);
    margin: 0;
}

@media (max-width: 991px) {
    .cs-explore-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .cs-explore-left-col {
        position: relative;
        top: 0;
    }
    .cs-explore-title-sticky {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .cs-explore-item-card {
        flex-direction: row;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }
    .cs-explore-card-icon {
        width: 80px;
        min-width: 80px;
        height: 80px;
        border-radius: 6px;
    }
    .cs-explore-card-info {
        padding: 0;
    }
    .cs-explore-card-info h4 {
        font-size: 16px;
    }
    .cs-explore-card-info p {
        font-size: 13px;
        line-height: 1.4;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: #25D366;
    color: #fff !important;
    font-size: 30px;
    border-radius: 50%;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    transition: transform 0.3s, background-color 0.3s;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background-color: #20ba5a;
}

/* Venue Section styling (Images Left, Content Right) */
.cs-venue-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 80px;
    align-items: center;
}

.cs-venue-images-col {
    position: relative;
    width: 100%;
}

.cs-venue-gallery-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--cs-shadow-md);
    border: 1px solid var(--cs-border);
}

.cs-venue-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.cs-venue-img.active {
    opacity: 1;
    z-index: 2;
}

.cs-venue-content-col {
    display: flex;
    flex-direction: column;
}

.cs-venue-buttons {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .cs-venue-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Custom Screenshot Venue Content Styles */
.cs-venue-heading {
    font-family: var(--cs-font-head);
    font-size: 42px;
    font-weight: 900;
    color: var(--cs-dark);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cs-venue-heading .cs-highlight {
    color: var(--cs-primary);
}

.cs-venue-subheading {
    font-family: var(--cs-font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--cs-primary);
    margin: 0 0 25px 0;
    line-height: 1.4;
}

.cs-venue-paragraph {
    font-family: var(--cs-font-body);
    font-size: 15px;
    line-height: 1.7;
    color: var(--cs-text);
    margin: 0 0 30px 0;
}

.cs-venue-buttons-screenshot {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cs-btn-screenshot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: #ffffff;
    color: #000000 !important;
    border: 1px solid #000000;
    padding: 12px 36px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
    min-width: 150px;
}

.cs-btn-screenshot:hover {
    background-color: #e11a3c;
    color: #ffffff !important;
    border-color: #e11a3c;
}

.cs-btn-icon-pink {
    color: var(--cs-primary);
    font-size: 10px;
    display: inline-flex;
    align-items: center;
}

@media (max-width: 575px) {
    .cs-venue-buttons-screenshot {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        width: 100%;
    }
    .cs-btn-screenshot {
        padding: 12px 10px;
        min-width: 0;
        font-size: 14px;
        justify-content: center;
    }
}

/* Floor Plan / Exhibit Layout Section Custom Card Styles */
.cs-floor-layout-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    border: 1px solid var(--cs-primary);
    overflow: hidden;
    border-radius: 4px;
    background-color: #ffffff;
}

.cs-floor-card-left {
    background-color: var(--cs-primary);
    color: #ffffff;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-floor-card-title {
    font-family: var(--cs-font-head);
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cs-floor-card-desc {
    font-family: var(--cs-font-body);
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0 0 30px 0;
}

.cs-btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #ffffff;
    background-color: transparent;
    color: #ffffff !important;
    padding: 12px 30px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.25s, color 0.25s;
    cursor: pointer;
    align-self: flex-start;
}

.cs-btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--cs-primary) !important;
}

.cs-floor-card-right {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cs-floor-img-link {
    display: block;
    width: 100%;
    text-align: center;
}

.cs-floor-img-elem {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.cs-floor-disclaimer {
    margin: 25px 0 0 0;
    font-family: var(--cs-font-body);
    font-size: 13px;
    color: #000000;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .cs-floor-layout-card {
        grid-template-columns: 1fr;
    }
    .cs-floor-card-left {
        padding: 40px 25px;
    }
    .cs-floor-card-right {
        padding: 30px 20px;
    }
    .cs-floor-card-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    .cs-floor-card-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }
    .cs-btn-outline-white {
        padding: 10px 24px;
        font-size: 14px;
    }
    .cs-floor-disclaimer {
        font-size: 12px;
        margin-top: 20px;
    }
}

/* Hospitality Section Custom Card Styles */
.cs-hospitality-card {
    background-color: #ffffff;
    border: 1px solid var(--cs-border);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 1400px;
}

.cs-hosp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.cs-hosp-title {
    font-family: var(--cs-font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0;
}

.cs-hosp-logo-col {
    max-width: 220px;
}

.cs-hosp-logo {
    width: 100%;
    height: auto;
    display: block;
}

.cs-hosp-desc {
    font-family: var(--cs-font-body);
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 40px 0;
    font-weight: 500;
}

.cs-hosp-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cs-hosp-gallery-item {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.cs-hosp-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.cs-hosp-gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .cs-hospitality-card {
        padding: 30px 20px;
    }
    .cs-hosp-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }
    .cs-hosp-title {
        font-size: 28px;
    }
    .cs-hosp-logo-col {
        max-width: 180px;
    }
    .cs-hosp-desc {
        font-size: 15px;
        margin-bottom: 30px;
    }
    .cs-hosp-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Travel Partners Section Custom Card Styles */
.cs-travel-card {
    background-color: #ffffff;
    border: 1px solid var(--cs-border);
    border-radius: 12px;
    padding: 60px 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 1400px;
}

.cs-travel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.cs-travel-title {
    font-family: var(--cs-font-head);
    font-size: 36px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0;
}

.cs-travel-logo-col {
    max-width: 220px;
}

.cs-travel-logo {
    width: 100%;
    height: auto;
    display: block;
}

.cs-travel-desc {
    font-family: var(--cs-font-body);
    font-size: 20px;
    line-height: 1.8;
    color: #000000;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .cs-travel-card {
        padding: 20px;
    }
    .cs-travel-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 25px;
    }
    .cs-travel-title {
        font-size: 28px;
    }
    .cs-travel-logo-col {
        max-width: 180px;
    }
    .cs-travel-desc {
        font-size: 18px;
    }
}

/* ============================================================
   CONTACT US PAGE CUSTOM STYLES
   ============================================================ */
.cs-contact-section {
    padding: 100px 0 80px 0 !important;
}

.cs-contact-intro-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 25px;
    align-items: flex-end;
}

.cs-contact-intro-heading {
    font-family: var(--cs-font-head);
    font-size: 40px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.cs-contact-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 55px;
}

.cs-contact-subtitle {
    font-family: var(--cs-font-body);
    font-size: 14px;
    font-weight: 700;
    color: var(--cs-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.cs-contact-subtitle-line {
    height: 1.5px;
    background-color: #232323;
    flex: 1;
}

.cs-contact-intro-p {
    font-family: var(--cs-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--cs-text);
    margin: 0;
}

.cs-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.cs-contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.cs-contact-info-row {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 30px;
}

.cs-contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-contact-info-title {
    font-family: var(--cs-font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cs-contact-info-text {
    font-family: var(--cs-font-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--cs-text);
    margin: 0;
}

.cs-contact-info-text a {
    color: var(--cs-text);
    text-decoration: none;
    transition: color 0.25s;
}

.cs-contact-info-text a:hover {
    color: var(--cs-primary);
}

.cs-contact-socials {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.cs-contact-socials a {
    color: var(--cs-dark);
    font-size: 18px;
    transition: color 0.25s, transform 0.25s;
}

.cs-contact-socials a:hover {
    color: var(--cs-primary);
    transform: translateY(-2px);
}

.cs-contact-form-panel {
    display: flex;
    flex-direction: column;
}

.cs-contact-form-notice {
    font-family: var(--cs-font-body);
    font-size: 13px;
    color: #666666;
    margin: 0 0 35px 0;
}

.cs-form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.cs-form-row.full-width {
    margin-bottom: 30px;
}

.cs-form-col {
    flex: 1;
}

.cs-contact-input,
.cs-contact-textarea {
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1.5px solid #232323;
    padding: 10px 0;
    font-family: var(--cs-font-body);
    font-size: 15px;
    color: var(--cs-dark);
    outline: none;
    transition: border-color 0.25s;
}

.cs-contact-input::placeholder,
.cs-contact-textarea::placeholder {
    color: #777777;
    opacity: 1;
}

.cs-contact-input:focus,
.cs-contact-textarea:focus {
    border-bottom-color: var(--cs-primary);
}

.cs-contact-textarea {
    height: 110px;
    resize: vertical;
}

.cs-contact-submit-btn {
    align-self: flex-start;
    background-color: var(--cs-primary);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.25s, transform 0.25s;
    margin-top: 10px;
}

.cs-contact-submit-btn:hover {
    background-color: #c8102e;
}

.cs-contact-submit-btn .cs-btn-icon {
    font-size: 16px;
    font-weight: bold;
}

/* Queries Banner Section */
.cs-queries-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../../uploads/2025/10/pt-contact-img-1.webp') no-repeat center center / cover;
    padding: 80px 0;
    color: #ffffff;
}

.cs-queries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.cs-query-box {
    background-color: var(--cs-primary);
    padding: 40px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cs-query-box-title {
    font-family: var(--cs-font-head);
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.2px;
}

.cs-query-person {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cs-person-name {
    font-family: var(--cs-font-body);
    font-size: 14px;
    font-style: italic;
    color: #ffffff;
    margin: 0;
}

.cs-person-email {
    font-family: var(--cs-font-body);
    font-size: 14px;
    margin: 0;
}

.cs-person-email a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s;
}

.cs-person-email a:hover {
    color: #ffd2d7;
}

.cs-query-person.general-id {
    margin-top: 5px;
}

.cs-query-person.general-id .cs-person-name {
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 991px) {
    .cs-contact-intro-split {
        grid-template-columns: 1fr;
        gap: 25px;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .cs-contact-intro-heading {
        font-size: 32px;
    }
    .cs-contact-subtitle-wrapper {
        margin-bottom: 40px;
    }
    .cs-contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        margin-bottom: 60px;
    }
    .cs-contact-info-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cs-form-row {
        flex-direction: column;
        gap: 30px;
    }
    .cs-queries-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cs-query-box {
        padding: 30px 25px;
    }
}

/* media */
 
.cs-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.cs-media-card {
    background: var(--cs-white);
    border: 1px solid var(--cs-border);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cs-media-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--cs-shadow-lg);
}

.cs-media-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #fdfdfd;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--cs-border);
}

.cs-media-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
}

.cs-media-card:hover .cs-media-img {
    transform: scale(1.02);
}

.cs-media-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--cs-primary);
    color: var(--cs-white);
    font-family: var(--cs-font-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 2px;
    box-shadow: 0 2px 6px rgba(238, 45, 70, 0.3);
    z-index: 2;
}

.cs-media-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cs-media-title {
    font-family: var(--cs-font-head);
    font-size: 20px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0 0 15px;
    line-height: 1.3;
}

.cs-media-text {
    font-family: var(--cs-font-body);
    font-size: 14px;
    line-height: 1.7;
    color: var(--cs-text);
    margin-bottom: 20px;
    flex-grow: 1;
}

.cs-media-link {
    align-self: flex-start;
    font-family: var(--cs-font-primary);
    font-weight: 700;
    font-size: 13px;
    color: var(--cs-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cs-media-card:hover .cs-media-link {
    color: var(--cs-dark);
}

/* Clipping Gallery Styles */
.cs-clips-section {
    border-top: 1px solid var(--cs-border);
    padding-top: 80px;
}

.cs-clips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.cs-clip-card {
    background: var(--cs-white);
    border: 1px solid var(--cs-border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--cs-shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cs-clip-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--cs-shadow-md);
}

.cs-clip-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #fdfdfd;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-clip-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
}

.cs-clip-card:hover .cs-clip-img {
    transform: scale(1.02);
}

.cs-clip-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35, 35, 35, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.cs-clip-card:hover .cs-clip-overlay {
    opacity: 1;
}

.cs-clip-btn {
    background: var(--cs-white);
    color: var(--cs-dark);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    transition: transform 0.3s, background 0.2s, color 0.2s;
}

.cs-clip-card:hover .cs-clip-btn {
    transform: scale(1);
}

.cs-clip-btn:hover {
    background: var(--cs-primary);
    color: var(--cs-white);
}

.cs-clip-footer {
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid var(--cs-border);
}

.cs-clip-title {
    font-family: var(--cs-font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--cs-dark);
    margin: 0;
}

/* Premium Lightbox Modal overlay styling */
.cs-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 15, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cs-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.cs-modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 950px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-height: 85vh;
    display: flex;
    flex-direction: column;
}

.cs-modal-overlay.active .cs-modal-container {
    transform: translateY(0);
}

.cs-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ffffff;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #232323;
    cursor: pointer;
    z-index: 100;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s, color 0.2s;
}

.cs-modal-close:hover {
    background: var(--cs-primary);
    color: #ffffff;
}

.cs-modal-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    max-height: 85vh;
}

.cs-modal-content.image-only {
    grid-template-columns: 1fr;
}

.cs-modal-img-container {
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    max-height: 85vh;
    border-right: 1px solid var(--cs-border);
}

.cs-modal-content.image-only .cs-modal-img-container {
    border-right: none;
    max-height: 75vh;
    padding: 50px 30px 30px;
}

.cs-modal-img-container img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.cs-modal-info {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    overflow-y: auto;
}

.cs-modal-info .cs-media-badge {
    position: static;
    align-self: flex-start;
    box-shadow: none;
    margin-bottom: 10px;
}

.cs-modal-info h3 {
    font-family: var(--cs-font-head);
    font-size: 26px;
    font-weight: 800;
    color: var(--cs-dark);
    margin: 0;
    line-height: 1.25;
}

.cs-modal-info p {
    font-family: var(--cs-font-body);
    font-size: 15px;
    line-height: 1.8;
    color: var(--cs-text);
    margin: 0;
}

/* Responsive Modal styling */
@media (max-width: 767px) {
    .cs-modal-content {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .cs-modal-img-container {
        max-height: 40vh;
        border-right: none;
        border-bottom: 1px solid var(--cs-border);
        padding: 30px;
    }

    .cs-modal-info {
        padding: 30px;
    }
}

/* curtair raiser page */
    .cr-content-section {
        padding: 80px 0;
        background: #ffffff;
    }
    .cr-title {
        font-family: var(--cs-font-head);
        font-size: 32px;
        font-weight: 700;
        color: var(--cs-primary);
        margin: 0 0 30px;
        line-height: 1.35;
    }
    .cr-subtitle {
        font-family: var(--cs-font-head);
        font-size: 20px;
        font-weight: 700;
        color: var(--cs-primary);
        margin: 35px 0 20px;
        text-transform: none;
        letter-spacing: normal;
        display: block;
    }
    .cr-text {
        font-family: var(--cs-font-body);
        font-size: 16px;
        line-height: 1.8;
        color: #444444;
        margin-bottom: 25px;
    }
    .cr-text strong {
        color: #232323;
        font-weight: 700;
    }
    .cr-image-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin: 40px 0;
    }
    .cr-image-item {
        overflow: hidden;
        border-radius: 4px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        aspect-ratio: 3/2;
        background: #fcfcfc;
    }
    .cr-image-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }
    .cr-image-item:hover img {
        transform: scale(1.03);
    }
    
    /* Responsive styling */
    @media (max-width: 991px) {
        .cr-image-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
        .cr-title {
            font-size: 28px;
        }
    }
    @media (max-width: 575px) {
        .cr-image-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        .cr-title {
            font-size: 24px;
            margin-bottom: 20px;
        }
        .cr-subtitle {
            font-size: 18px;
            margin-top: 25px;
        }
    }

/* Gallery Modal Styles */
.cs-gallery-modal-container {
    max-width: 850px !important;
    background: #111111 !important;
    border-radius: 8px;
}
.cs-gallery-modal-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #111111;
    align-items: center;
}
.cs-gallery-main-view {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}
.cs-gallery-main-view img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: opacity 0.2s ease;
}
.cs-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    font-size: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
    z-index: 10;
}
.cs-gallery-nav:hover {
    background: var(--cs-primary);
    transform: translateY(-50%) scale(1.1);
}
.cs-gallery-nav.prev {
    left: 20px;
}
.cs-gallery-nav.next {
    right: 20px;
}
.cs-gallery-modal-caption {
    color: #ffffff;
    font-family: var(--cs-font-primary);
    font-size: 15px;
    margin: 15px 0 25px;
    text-align: center;
    font-weight: 600;
}
.cs-gallery-thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    width: 100%;
    max-width: 600px;
}
.cs-gallery-thumb-item {
    aspect-ratio: 3/2;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.2s, opacity 0.2s;
    opacity: 0.6;
}
.cs-gallery-thumb-item:hover,
.cs-gallery-thumb-item.active {
    opacity: 1;
    border-color: var(--cs-primary);
}
.cs-gallery-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-gallery-modal-container .cs-modal-close {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    box-shadow: none;
}
.cs-gallery-modal-container .cs-modal-close:hover {
    background: var(--cs-primary);
}

@media (max-width: 767px) {
    .cs-gallery-main-view {
        height: 300px;
    }
    .cs-gallery-thumbnails-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

        /* know the summit  */

    /* Fade-in slide-up keyframes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .kts-section {
        padding: 80px 0;
        background: #ffffff;
    }

    .kts-animate {
        animation: fadeInUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    /* Section 1: Historic Convergence Grid */
    .kts-convergence-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: center;
    }

    .kts-img-box {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        aspect-ratio: 4/3;
        transition: transform 0.4s ease;
    }

    .kts-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s ease;
    }

    .kts-img-box:hover img {
        transform: scale(1.04);
    }

    .kts-card {
        background: #ffffff;
        border: 2px solid var(--cs-primary);
        border-radius: 12px;
        padding: 45px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .kts-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }

    .kts-card-title {
        font-family: var(--cs-font-head);
        font-size: 26px;
        font-weight: 800;
        line-height: 1.35;
        color: #232323;
        margin: 0 0 20px;
        text-transform: uppercase;
    }

    .kts-card-title span {
        color: var(--cs-primary);
    }

    .kts-card-text {
        font-family: var(--cs-font-body);
        font-size: 15px;
        line-height: 1.8;
        color: #444444;
        margin: 0;
    }

    /* Section 2: Cardboard Table Banner with Parallax Fixed Scroll */
    .kts-middle-banner {
        position: relative;
        background-image: url('<?php echo $path_prefix; ?>uploads/2025/12/conference-meeting-hall-image-02.webp');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-attachment: fixed;
        padding: 120px 0;
        color: #ffffff;
        text-align: center;
    }

    .kts-middle-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.78);
        z-index: 1;
    }

    .kts-banner-content {
        position: relative;
        z-index: 2;
        max-width: 960px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .kts-banner-text {
        font-family: var(--cs-font-body);
        font-size: 16px;
        line-height: 1.85;
        color: #f0f0f0;
        margin-bottom: 25px;
    }

    .kts-banner-highlight {
        font-family: var(--cs-font-body);
        font-size: 18px;
        font-style: italic;
        font-weight: 700;
        color: #ffffff;
    }

    /* Section 3 & 4: Leadership Messages */
    .kts-message-section {
        padding: 90px 0;
        background-color: transparent;
        background-image: linear-gradient(24deg, #FAFAEE 0%, #FFF 100%);
    }

    .kts-message-row {
        display: grid;
        grid-template-columns: 1.15fr 1.2fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 90px;
    }

    .kts-message-row.reverse {
        grid-template-columns: 1.2fr 1.15fr;
    }

    .kts-message-row:last-child {
        margin-bottom: 0;
    }

    .kts-message-left h3,
    .kts-message-right h3 {
        font-family: var(--cs-font-head);
        font-size: 32px;
        font-weight: 800;
        color: #232323;
        margin: 0 0 5px;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .kts-message-subtitle {
        font-family: var(--cs-font-head);
        font-size: 18px;
        font-weight: 700;
        color: var(--cs-primary);
        margin: 0 0 25px;
    }

    .kts-message-text {
        font-family: var(--cs-font-body);
        font-size: 15px;
        line-height: 1.8;
        color: #444444;
    }

    .kts-message-text p {
        margin-bottom: 18px;
    }

    .kts-message-text p:last-child {
        margin-bottom: 0;
    }

    .kts-divider {
        border: none;
        border-top: 1px solid #e2e2e2;
        margin: 30px 0 15px 0;
    }

    .kts-signature-name {
        font-family: var(--cs-font-head);
        font-size: 18px;
        font-weight: 700;
        color: var(--cs-primary);
        margin: 0 0 4px;
    }

    .kts-signature-title {
        font-family: var(--cs-font-body);
        font-size: 14px;
        color: #666666;
        margin: 0;
    }

    .kts-message-img {
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        aspect-ratio: 1/1;
        background: #fdfdfd;
        transition: transform 0.4s ease;
    }

    .kts-message-img:hover {
        transform: translateY(-5px);
    }

    .kts-message-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Section 5: Bottom Queries Contact 3-Column Banner */
    .kts-queries-section {
        padding: 80px 0;
        background: #ffffff;
    }

    .kts-queries-container {
        display: grid;
        grid-template-columns: 0.60fr 1fr 0.60fr;
        background: #ffffff;
        border-radius: 0;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        min-height: 460px;
    }

    .kts-query-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 45px;
    }

    .kts-query-col.left-col {
        background: var(--cs-primary);
        color: #ffffff;
    }

    .kts-query-col.mid-col {
        background: #f0f0f0;
        padding: 0;
        position: relative;
    }

    .kts-query-col.mid-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .kts-query-col.right-col {
        background: var(--cs-primary);
        color: #ffffff;
        justify-content: center;
    }

    .kts-query-col h4 {
        font-family: var(--cs-font-head);
        font-size: 19px;
        font-weight: 800;
        color: #ffffff;
        margin: 0 0 18px;
        line-height: 1.4;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .kts-query-col h4:not(:first-child) {
        margin-top: 30px;
    }

    .kts-query-item {
        font-family: var(--cs-font-body);
        font-size: 15px;
        line-height: 1.6;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .kts-query-item em {
        font-style: italic;
    }

    .kts-query-item a {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        transition: opacity 0.2s;
    }

    .kts-query-item a:hover {
        text-decoration: underline;
        opacity: 0.85;
    }

    /* Right Column Styling */
    .kts-right-content {
        margin-bottom: 25px;
    }

    .kts-right-name {
        font-family: var(--cs-font-head);
        font-size: 19px;
        font-weight: 800;
        margin: 0 0 5px;
        text-transform: uppercase;
        letter-spacing: 0.03em;
    }

    .kts-right-phone {
        font-family: var(--cs-font-body);
        font-size: 15px;
        margin: 0 0 25px;
    }

    .kts-right-note {
        font-family: var(--cs-font-body);
        font-size: 15px;
        line-height: 1.6;
        font-style: italic;
        font-weight: 700;
        margin: 0 0 10px;
    }

    .kts-right-sig {
        font-family: var(--cs-font-body);
        font-size: 14px;
        text-align: right;
        margin: 0;
        font-style: italic;
    }

    /* Get In Touch Button styling */
    .kts-touch-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 1px solid #ffffff;
        background: transparent;
        color: #ffffff;
        font-family: var(--cs-font-head);
        font-size: 15px;
        font-weight: 700;
        padding: 12px 25px;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
        align-self: flex-start;
        width: 100%;
        max-width: 200px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
        margin-top: 35px;
    }

    .kts-touch-btn:hover {
        background: #ffffff;
        color: var(--cs-primary);
    }

    .kts-touch-btn span {
        font-size: 12px;
        line-height: 1;
    }

    /* Responsive Styling */
    @media (max-width: 991px) {
        .kts-convergence-grid {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .kts-message-row,
        .kts-message-row.reverse {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .kts-message-row .kts-message-img {
            order: -1;
            max-width: 450px;
            margin: 0 auto;
        }

        .kts-queries-container {
            grid-template-columns: 1fr;
            max-width: 650px;
            margin: 0 auto;
        }

        .kts-query-col.mid-col {
            height: 480px;
        }

        .kts-middle-banner {
            background-attachment: scroll;
            /* Disable fixed scroll on mobile browsers for performance */
        }
    }

    @media (max-width: 575px) {
        .kts-card {
            padding: 30px 20px;
        }

        .kts-card-title {
            font-size: 22px;
        }

        .kts-message-left h3,
        .kts-message-right h3 {
            font-size: 26px;
        }

        .kts-query-col {
            padding: 30px 20px;
        }
    }

/* ==========================================================================
   Join the Event Page Styles
   ========================================================================== */

/* Divider: Title above, then horizontal line with center dot */
.cs-join-divider-wrap {
    text-align: center;
    margin: 30px 0 50px;
}

.cs-join-divider-label {
    display: block;
    font-family: var(--cs-font-head);
    font-size: 15px;
    font-weight: 700;
    color: #232323;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.cs-join-divider-line {
    position: relative;
    width: 100%;
    height: 1px;
    background: #c8c8c8;
}

.cs-join-divider-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #232323;
    border-radius: 50%;
}

/* Form Container */
.cs-join-form-container {
    max-width: 1200px;
    margin: 0 auto 50px;
}

/* Gray form card matching reference image */
.cs-join-form-card {
    background: #e5e5e5;
    border: none;
    border-radius: 12px;
    padding: 35px 45px;
    box-shadow: none;
}

/* Blue marker-highlighted title */
.cs-join-form-title {
    font-family: var(--cs-font-head);
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.3;
}

.cs-join-form-title span {
    /* background: #2196F3; */
    padding: 4px 10px;
    display: inline;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    color: red;
}

/* Form grid row */
.cs-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.cs-form-col-6 {
    width: 100%;
}

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

/* Underline-style inputs on gray background */
.cs-form-input-underline,
.cs-form-textarea-underline {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #b0b0b0;
    padding: 12px 0;
    font-family: var(--cs-font-body);
    font-size: 15px;
    color: #232323;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.cs-form-input-underline:focus,
.cs-form-textarea-underline:focus {
    border-bottom-color: var(--cs-primary);
}

.cs-form-input-underline::placeholder,
.cs-form-textarea-underline::placeholder {
    color: #555555;
    font-size: 14px;
}

.cs-form-textarea-underline {
    height: 60px;
    resize: vertical;
}

/* Get in Touch button — arrow on left */
.cs-form-submit-btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    background: var(--cs-primary);
    color: #ffffff;
    font-family: var(--cs-font-head);
    font-size: 15px;
    font-weight: 700;
    padding: 14px 30px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-transform: none;
    letter-spacing: 0.02em;
    border-radius: 4px;
}

.cs-form-submit-btn-premium:hover {
    background: #d6223a;
    transform: translateY(-1px);
}

.cs-form-submit-btn-premium .cs-btn-arrow {
    font-size: 14px;
    font-weight: 700;
}

/* Delegate Registration — pill-shaped red button */
.cs-delegate-reg-wrap {
    text-align: center;
    margin: 50px 0 70px;
}

.cs-delegate-reg-btn {
    display: inline-block;
    background: var(--cs-primary);
    color: #ffffff;
    font-family: var(--cs-font-head);
    font-size: 13px;
    font-weight: 700;
    padding: 14px 35px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 30px;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 6px 18px rgba(238, 46, 71, 0.2);
}

.cs-delegate-reg-btn:hover {
    background: #d6223a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(238, 46, 71, 0.3);
}

/* Presented By Section */
.cs-presented-section {
    padding: 50px 0 40px;
    background: #ffffff;
}

.cs-presented-title {
    font-family: var(--cs-font-head);
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    color: #232323;
    margin: 0 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.cs-presenters-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.cs-presenter-card {
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 12px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-presenter-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cs-presenter-card img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

/* Separator with Chevron */
.cs-partners-divider-wrap {
    display: flex;
    justify-content: center;
    margin: 35px 0;
}

.cs-partners-divider {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 1px;
    background: repeating-linear-gradient(to right, #ccc, #ccc 4px, transparent 4px, transparent 8px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-partners-arrow {
    position: absolute;
    background: #ffffff;
    padding: 0 10px;
    color: #444444;
    font-size: 12px;
}

/* Partners Grid Section — 6 cards in one row on desktop */
.cs-partners-grid-section {
    padding: 20px 0 60px;
    background: #ffffff;
}

.cs-partners-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    align-items: stretch;
}

.cs-partner-card {
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    padding: 18px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-partner-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.cs-partner-label {
    font-family: var(--cs-font-head);
    font-size: 13px;
    font-weight: 900;
    color: #232323;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
}

.cs-partner-logo-box {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-height: 200px;
}

.cs-partner-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* View Our Brochures Section */
.cs-brochures-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.cs-brochures-title {
    font-family: var(--cs-font-head);
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    color: #232323;
    margin: 0 0 50px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.cs-brochures-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.cs-brochure-card-premium {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cs-brochure-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.cs-brochure-thumb {
    width: 100%;
    aspect-ratio: 4/3;
    background: #fafafa;
    overflow: hidden;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-brochure-thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

.cs-brochure-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.cs-brochure-card-premium:hover .cs-brochure-thumb img {
    transform: scale(1.04);
}

.cs-brochure-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--cs-primary);
    background: transparent;
    color: var(--cs-primary);
    font-family: var(--cs-font-head);
    font-size: 14px;
    font-weight: 700;
    padding: 12px 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 20px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.cs-brochure-download-btn:hover {
    background: var(--cs-primary);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .cs-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cs-presenters-grid {
        gap: 15px;
    }
    
    .cs-partners-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .cs-brochures-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 767px) {
    .cs-join-form-card {
        padding: 30px 20px;
    }
    
    .cs-join-form-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .cs-presented-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .cs-presenters-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .cs-presenter-card {
        min-height: 120px;
        padding: 20px;
        width: 100%;
    }
    
    .cs-presenter-card img {
        max-height: 70px;
    }
    
    .cs-partners-grid-section .cs-partners-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        width: 100%;
    }
    
    .cs-partners-grid-section .cs-partner-card {
        width: 100%;
        min-height: 250px;
        padding: 30px 25px;
        border-radius: 12px;
        box-sizing: border-box;
    }
    
    .cs-partners-grid-section .cs-partner-label {
        font-size: 16px;
        font-weight: 900;
        margin-bottom: 20px;
        color: #232323;
    }
    
    .cs-partners-grid-section .cs-partner-logo-box {
        max-height: 200px;
        width: 100%;
        flex-grow: 1;
    }
    
    .cs-partners-grid-section .cs-partner-logo-box img {
        max-height: 170px;
        max-width: 80%;
    }
    
    .cs-brochures-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
/* Team page */

    /* ============================================================
   TEAM GRID SECTION
   ============================================================ */
    .cs-team-section {
        padding: 80px 0 100px;
        background-color: #fff;
    }

    .cs-team-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 35px;
    }

    /* --- Team Card --- */
    .cs-team-card {
        position: relative;
    }

    /* Image Container */
    .cs-team-card-image {
        position: relative;
        overflow: hidden;
        border-radius: 6px;
        aspect-ratio: 720 / 840;
    }

    .cs-team-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .cs-team-card:hover .cs-team-card-image img {
        transform: scale(1.05);
    }

    /* Social Overlay */
    .cs-team-card-socials {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 18px 15px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .cs-team-card:hover .cs-team-card-socials {
        transform: translateY(0);
    }

    .cs-team-card-socials a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.15);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        text-decoration: none;
        transition: background-color 0.3s ease, transform 0.3s ease;
        backdrop-filter: blur(4px);
    }

    .cs-team-card-socials a:hover {
        background-color: var(--cs-primary, #ee2d46);
        transform: translateY(-3px);
    }

    /* Info Section (below image) */
    .cs-team-card-info {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 18px 0 10px;
        border-bottom: 1px solid #eaeaea;
    }

    .cs-team-card-meta {
        flex: 1;
        min-width: 0;
    }

    .cs-team-card-role {
        display: block;
        font-family: var(--cs-font-primary, 'Inter', sans-serif);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.12em;
        color: var(--cs-primary, #ee2d46);
        margin-bottom: 6px;
    }

    .cs-team-card-name {
        font-family: var(--cs-font-head, 'Inter', sans-serif);
        font-size: 22px;
        font-weight: 800;
        color: #1a1a2e;
        margin: 0;
        line-height: 1.25;
    }

    .cs-team-card-name a {
        color: inherit;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .cs-team-card-name a:hover {
        color: var(--cs-primary, #ee2d46);
    }

    /* Arrow Link */
    .cs-team-card-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        color: var(--cs-primary, #ee2d46);
        font-size: 22px;
        text-decoration: none;
        transition: transform 0.3s ease, color 0.3s ease;
        margin-left: 15px;
    }

    .cs-team-card-arrow:hover {
        transform: translate(3px, -3px);
    }

    /* ============================================================
   RESPONSIVE
   ============================================================ */
    @media (max-width: 991px) {
        .cs-team-section {
            padding: 60px 0 70px;
        }

        .cs-team-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px 25px;
        }

        .cs-team-card-name {
            font-size: 20px;
        }
    }

    @media (max-width: 600px) {
        .cs-team-section {
            padding: 40px 0 50px;
        }

        .cs-team-grid {
            grid-template-columns: 1fr;
            gap: 35px;
            max-width: 400px;
            margin: 0 auto;
        }

        .cs-team-card-name {
            font-size: 20px;
        }

        .cs-team-card-role {
            font-size: 10px;
        }
    }

/* ============================================================
   TEAM MEMBER DETAIL PAGE
   ============================================================ */

/* --- Hero Section --- */
.cs-member-hero {
    background-color: #fff;
    padding: 70px 0 60px;
    margin-top: var(--cs-header-h);
}

.cs-member-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    min-height: 420px;
}

.cs-member-hero-image {
    overflow: hidden;
    position: relative;
}

.cs-member-hero-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.cs-member-hero-info {
    background-color: var(--cs-primary, #ee2d46);
    color: #fff;
    padding: 45px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cs-member-hero-role {
    display: inline-block;
    font-family: var(--cs-font-primary, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

.cs-member-hero-name {
    font-family: var(--cs-font-head, 'Inter', sans-serif);
    font-size: 34px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    line-height: 1.15;
}

.cs-member-hero-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0 0 28px;
}

.cs-member-hero-details {
    margin-bottom: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 18px;
}

.cs-member-detail-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cs-detail-label {
    font-family: var(--cs-font-primary, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.6);
}

.cs-detail-value {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.cs-member-hero-socials {
    display: flex;
    gap: 16px;
    margin-top: 5px;
}

.cs-member-hero-socials a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
}

.cs-member-hero-socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

/* --- Bio / Personal Info --- */
.cs-member-bio {
    padding: 60px 0 40px;
}

.cs-member-section-title {
    font-family: var(--cs-font-head, 'Inter', sans-serif);
    font-size: 22px;
    font-weight: 800;
    color: #1a1a2e;
    text-transform: uppercase;
    margin: 0 0 20px;
    letter-spacing: 0.02em;
}

.cs-member-bio-text {
    font-family: var(--cs-font-body, 'Inter', sans-serif);
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin: 0 0 16px;
}

/* --- Skills Section --- */
.cs-member-skills {
    padding: 20px 0 50px;
}

.cs-member-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Skill Bars */
.cs-skill-bar {
    margin-bottom: 22px;
}

.cs-skill-bar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cs-skill-bar-label {
    font-family: var(--cs-font-primary, 'Inter', sans-serif);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1a1a2e;
}

.cs-skill-bar-value {
    font-family: var(--cs-font-primary, 'Inter', sans-serif);
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
}

.cs-skill-bar-track {
    width: 100%;
    height: 4px;
    background-color: #e8e8e8;
    border-radius: 2px;
    overflow: hidden;
}

.cs-skill-bar-fill {
    height: 100%;
    background-color: var(--cs-primary, #ee2d46);
    border-radius: 2px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Soft Skills List */
.cs-soft-skills-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-soft-skills-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.cs-soft-skills-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--cs-primary, #ee2d46);
}

/* --- Speeches Section --- */
.cs-member-speeches {
    padding: 30px 0 50px;
}

.cs-speeches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.cs-speech-card {
    display: block;
    background-color: var(--cs-primary, #ee2d46);
    color: #fff;
    text-decoration: none;
    padding: 30px 28px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.cs-speech-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(238, 45, 70, 0.3);
}

.cs-speech-date {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 14px;
}

.cs-speech-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cs-speech-title {
    font-family: var(--cs-font-head, 'Inter', sans-serif);
    font-size: 22px;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    color: #fff;
}

.cs-speech-arrow {
    font-size: 22px;
    color: #fff;
    opacity: 0.7;
    flex-shrink: 0;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.cs-speech-card:hover .cs-speech-arrow {
    transform: translate(3px, -3px);
    opacity: 1;
}

/* --- Contact Form Section --- */
.cs-member-contact {
    padding: 20px 0 80px;
}

.cs-member-contact-card {
    background-color: #f7f7f7;
    padding: 45px 40px;
    border-radius: 8px;
}

.cs-member-contact-note {
    font-size: 13px;
    color: #888;
    margin: -10px 0 25px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
    .cs-member-hero-card {
        grid-template-columns: 1fr 1fr;
        min-height: 360px;
    }
    .cs-member-hero-info {
        padding: 35px 30px;
    }
    .cs-member-hero-name {
        font-size: 26px;
    }
    .cs-member-hero-desc {
        font-size: 13px;
    }
    .cs-member-skills-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 768px) {
    .cs-member-hero {
        padding: 40px 0;
    }
    .cs-member-hero-card {
        grid-template-columns: 1fr;
    }
    .cs-member-hero-image img {
        aspect-ratio: 4 / 3;
    }
    .cs-member-hero-info {
        padding: 30px 25px;
    }
    .cs-member-hero-name {
        font-size: 24px;
    }
    .cs-speeches-grid {
        grid-template-columns: 1fr;
    }
    .cs-member-contact-card {
        padding: 30px 20px;
    }
}