@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Global Styles — palette from hero image: deep teal, seafoam, muted gold */
:root {
    --primary-color: #006064;
    --primary-dark: #004d40;
    --primary-mid: #00796B;
    --accent-color: #c5a059;
    --seafoam-color: #80cbc4;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

.btn-primary {
    --bs-btn-bg: #00796B;
    --bs-btn-border-color: #00796B;
    --bs-btn-hover-bg: #006064;
    --bs-btn-hover-border-color: #006064;
    --bs-btn-active-bg: #004d40;
    --bs-btn-active-border-color: #004d40;
    background-color: #00796B;
    border-color: #00796B;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #006064;
    border-color: #006064;
}

body {
     font-family: "Manrope", sans-serif;
    color: #333;
    background-color: #f5f5f5;
}

* {
     font-family: "Manrope", sans-serif;
}

/* Hero Section — reference style */
.hero-section {
    perspective: 1200px;
    height: 100vh;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    opacity: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 1.2s, transform 8s cubic-bezier(.22, 1, .36, 1);
    position: absolute;
    inset: 0;
    transform: scale(1.3);
}

.hero-bg.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 2;
    pointer-events: none;
    background-color: rgba(23, 23, 23, 0.65);
    position: absolute;
    inset: 0;
}

.hero-overlay-img {
    object-fit: contain;
    z-index: 3;
    pointer-events: none;
    width: auto;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100px;
}

.hero-arrow {
    color: #fff;
    cursor: pointer;
    z-index: 6;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    padding: 12px 18px;
    font-size: 28px;
    line-height: 1;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero-arrow:hover {
    background: #001547;
}

.hero-arrow.left {
    left: 20px;
}

.hero-arrow.right {
    right: 20px;
}

.hero-content {
    z-index: 4;
    max-width: 900px;
    position: absolute;
    top: 55%;
    left: 18%;
    transform: translateY(-50%);
}

.hero-content h1 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 66px;
    font-weight: 800;
    line-height: 72px;
    margin: 0;
}

.hero-content p {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin: 8px 0 0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    max-width: 800px;
    margin-top: 40px;
}

.btn-orange {
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 1;
    cursor: pointer;
    color: #fff;
    background: #001547;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    transition: color 0.4s;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-orange::before {
    content: "";
    transform-origin: 0 100%;
    z-index: -1;
    background: #fff;
    width: 110%;
    height: 200%;
    transition: transform 0.5s;
    position: absolute;
    top: 0;
    left: -5%;
    transform: skewY(-10deg) scaleY(0);
}

.btn-orange:hover::before {
    transform-origin: 0 0;
    transform: skewY(-10deg) scale(1);
}

.btn-orange:hover {
    color: #001547;
}

.hero-progress {
    z-index: 5;
    background: rgba(255, 255, 255, 0.2);
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
}

.progress-fill {
    background: rgba(0, 0, 0, 0.15);
    height: 100%;
    width: 0;
    animation: progressAnim 6s linear infinite;
}

.text-mask {
    display: block;
    overflow: hidden;
}

.text-anim.enter,
.btn-anim.enter {
    animation: 1.6s cubic-bezier(.22, 1, .36, 1) 0.4s both revealUp;
}

.text-anim.delay.enter {
    animation-delay: 0.6s;
}

.btn-anim.enter:first-child {
    animation-delay: 0.8s;
}

.btn-anim.enter:nth-child(2) {
    animation-delay: 0.95s;
}

.btn-anim.enter:nth-child(3) {
    animation-delay: 1.1s;
}

@keyframes revealUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes progressAnim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

/* Text Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Tab Form Background */
.tab-form-bg {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    z-index: 4;
    animation: fadeInUp 1s ease-out 0.9s both;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Nav Tabs */
.tab-form-bg .nav-tabs {
    border-bottom: none;
    background: #f5f5f5;
    padding: 0;
    margin: 10px 10px 0 10px;
    border-radius: 0px 0px 0 0;
    display: flex;
    gap: 0;
}

.tab-form-bg .nav-tabs .nav-item {
    margin-bottom: 0;
    width: 50%;
    flex: 1;
}

.tab-form-bg .nav-tabs .nav-link {
    border: 2px solid #f5f5f5;
    border-radius: 10px 10px 0 0;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    background-color: #f5f5f5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
 

.tab-form-bg .nav-tabs .nav-link i {
    position: relative;
    z-index: 1;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.tab-form-bg .nav-tabs .nav-link span,
.tab-form-bg .nav-tabs .nav-link {
    position: relative;
    z-index: 1;
}

.tab-form-bg .nav-tabs .nav-link:hover {
    color: #006064;
     
    
     
}

.tab-form-bg .nav-tabs .nav-link.active {
    color: #fff;
    background: #00796B;
    border-color: #00796B;
    transform: translateY(0px);
    border-radius: 10px 10px 0 0;
}

.tab-form-bg .nav-tabs .nav-link.active::before {
    left: 0;
}

.tab-form-bg .nav-tabs .nav-link.active:hover {
    
}

/* Tab Content */
.tab-content {
    padding: 15px 25px;
}

.tab-content h2 {
    color: #004d40;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 0px;
    padding-bottom: 13px;
    text-align: left;
}
/* Form Styles */
.tab-content .form-group {
    margin-bottom: 12px;
    padding: 0 10px;
}

.tab-content .form-control {
    border-radius: 8px;
    border: 1px solid #cdcdcd;
    padding: 10px 15px;
    font-size: 13px;
    transition: all 0.3s ease;
}
.tab-content .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
    outline: none;
}

.tab-content .form-control::placeholder {
    color: #adb5bd;
}

.tab-content select.form-control {
    cursor: pointer;
}

.tab-content textarea.form-control {
    resize: vertical;
     
}

/* Date Input with Icon */
.tab-content label {
    position: relative;
    display: block;
    width: 100%;
}

.tab-content .field-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #00796B;
    pointer-events: auto;
    z-index: 10;
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab-content .field-icon:hover {
    color: var(--primary-color);
}

/* Ensure input padding doesn't overlap with icon */
#txtchkin,
#txtchkout {
    padding-right: 60px;
}

.registration-form-wrapper .field-icon {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    color: #6c757d;
    pointer-events: auto;
    z-index: 10;
    cursor: pointer;
    transition: color 0.3s ease;
}

.registration-form-wrapper .field-icon:hover {
    color: #006064;
}

.registration-form-wrapper label {
    position: relative;
    display: block;
    width: 100%;
}

/* Flatpickr Calendar Styling */
.flatpickr-calendar {
    font-family: 'Manrope', sans-serif;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    border-color: #006064;
}

.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: linear-gradient(135deg, #c5a059 0%, #006064 100%);
    border-color: #c5a059;
}

.flatpickr-day.today {
    border-color: #006064;
}

.flatpickr-day.today:hover {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
}

.flatpickr-day:hover {
    background: rgba(0, 96, 100, 0.1);
}

.flatpickr-months .flatpickr-month {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
    border-radius: 8px 8px 0 0;
}

.flatpickr-weekdays {
    background: rgba(0, 96, 100, 0.1);
}

.flatpickr-weekday {
    color: #006064;
    font-weight: 600;
}

/* Submit Button */
.reg-but {
    padding: 10px 40px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 10px;
    background: #00796B;
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.reg-but:hover {
    
    color: #fff;
}

.reg-but:active {
    transform: translateY(0);
}

/* Form Row */
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.form-row .form-group {
    padding-left: 10px;
    padding-right: 10px;
}

/* Clearfix */
.clearfix {
    clear: both;
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-content {
        left: 10%;
        max-width: 720px;
    }

    .hero-content h1 {
        font-size: 48px;
        line-height: 56px;
    }

    .hero-overlay-img {
        right: -160px;
        opacity: 0.85;
    }
}

@media (max-width: 991px) {
    .hero-content {
        left: 5%;
        right: 5%;
        max-width: none;
        top: 58%;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .tab-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {

.navbar-nav {
    padding: 15px 0;
    align-items: flex-start !important;
}

    .mainnavbar {
        padding: 8px 0;
    }

    .hero-section {
        height: 100vh;
        min-height: 560px;
    }

    .hero-content {
        text-align: left;
        max-width: 100%;
        padding: 0 20px;
        left: 0;
        right: 0;
        top: 55%;
    }

    .hero-content h1 {
        letter-spacing: 0.3px;
        word-break: break-word;
        font-size: 34px;
        line-height: 40px;
    }

    .hero-content p {
        margin-top: 12px;
        font-size: 16px;
        line-height: 24px;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        max-width: 100%;
        margin-top: 25px;
    }

    .hero-buttons a {
        text-align: center;
        letter-spacing: 0.01em;
        width: 100%;
        padding: 12px 8px;
        font-size: 12px;
    }

    .hero-buttons a:nth-child(3) {
        grid-column: span 2;
    }

    .hero-overlay-img,
    .hero-arrow {
        display: none;
    }

.navbar-toggler {
    border: 2px solid rgba(255, 255, 255, 0.7) !important;
    padding: 2px 10px !important;
    border-radius: 8px !important;
    transition: all 0.3s ease;
}
    
.tab-content {
    padding: 14px 20px;
}
    
    .tab-content h2 {
        font-size: 18px;
    }
    
    .tab-form-bg .nav-tabs {
        padding: 6px;
        gap: 6px;
        background: no-repeat;
    }

    .reg-but {
        padding: 10px 30px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 10px;
        background: #00796B;
        border: none;
        color: #fff;
        transition: all 0.3s ease;
        width: 100%;
        margin-top: 0px;
    }

    .tab-content .form-control {
        border-radius: 8px;
        border: 1px solid #cdcdcd;
        padding: 10px 15px;
        font-size: 12px;
        transition: all 0.3s ease;
    }

    .tab-form-bg .nav-tabs .nav-link {
        padding: 9px 15px;
        font-size: 13px;
        border-radius: 10px;
    }

    .tab-form-bg .nav-tabs .nav-link i {
        margin-right: 6px;
        font-size: 14px;
    }
    
    .tab-content .form-group {
        padding: 0 5px;
    }
    
    .form-row {
        margin-left: -5px;
        margin-right: -5px;
        width: 100%;
        flex-wrap: nowrap;
    }
    
    .form-row .form-group {
        padding-left: 5px;
        padding-right: 5px;
        width: 100%;
    }
}

/* Top Header Bar */
.top-header-bar {
    background: #006064;
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 96, 100, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.top-header-item {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.top-header-item:hover {
    color: #fff;
}

.top-header-item i {
    color: #fff;
    font-size: 14px;
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.top-header-bar .text-md-end .top-header-item {
    justify-content: flex-end;
}

.navbar-toggler {
    border: 2px solid rgba(0, 96, 100, 0.2);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 96, 100, 0.25);
    border-color: #006064;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 96, 100, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 767px) {


    .about-content-card {
        padding: 30px 15px !important;
    }
    .top-header-bar {
        padding: 10px 0;
        display: none;
    }
    
    .top-header-item {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .top-header-item:last-child {
        margin-bottom: 0;
    }
    
    .top-header-bar .text-md-end {
        text-align: left !important;
    }

    .top-header-bar .col-md-6 {
        margin-bottom: 8px;
    }

    .top-header-bar .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* Navbar Styles */

.mainnavbar {
    background: #001547;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
}

.home-page .mainnavbar,
.inner-page .mainnavbar {
    background: transparent;
    box-shadow: none;
}

.home-page .mainnavbar.scrolled,
.inner-page .mainnavbar.scrolled,
.mainnavbar.scrolled {
    background: #001547;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.logo-img {
    object-fit: contain;
    width: auto;
    height: 56px;
    display: block;
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    padding: 4px 0;
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
}

.navbar-brand:hover {
    transform: scale(1.03);
    color: #fff;
}

.navbar-brand span {
    color: #fff;
}

.navbar-brand i {
    font-size: 20px;
    color: #fff;
}

.navbar-nav .nav-link {
    padding: 9px 20px;
    transition: all 0.3s ease;
    color: #fff !important;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    margin: 0 5px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

 
 

.navbar-nav .nav-link i {
    color: #fff;
    margin-right: 5px;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}

.navbar-nav .btn-outline-primary {
    padding: 9px 24px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    border-width: 1px;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    border-radius: 0;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.navbar-nav .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.3s ease;
    z-index: -1;
}

.navbar-nav .btn-outline-primary:hover::before {
    left: 0;
}

.navbar-nav .btn-outline-primary:hover {
    color: #001547 !important;
    border-color: #fff;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.65);
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991px) {
    .home-page .mainnavbar .navbar-collapse,
    .mainnavbar .navbar-collapse {
        background: #001547;
        margin-top: 10px;
        padding: 10px 16px 16px;
        border-radius: 8px;
    }

    .mainnavbar {
        padding: 8px 0;
    }

    .navbar-brand {
        padding: 4px 0;
    }

    .logo-img {
        height: 48px;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px;
        margin: 2px 0;
    }

    .navbar-nav .btn-outline-primary {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .navbar-nav .btn-outline-primary::before {
        display: none;
    }

    .navbar-nav .btn-outline-primary:hover {
        background: #fff;
    }

    .navbar-nav .nav-item.ms-2 {
        margin-left: 0 !important;
    }
}

/* Breadcrumb Section */
.breadcrumb-section {
    position: relative;
    padding: 100px 0 56px;
    min-height: 220px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #004d40;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/about-realistic.jpg');
    background-size: cover;
    background-position: center 30%;
    opacity: 0.28;
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 77, 64, 0.78) 0%, rgba(0, 121, 107, 0.62) 100%);
    pointer-events: none;
    z-index: 0;
}

.breadcrumb-section .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-content {
    color: #fff;
    text-align: center;
}

.breadcrumb-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.breadcrumb-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background: #c5a059;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 20px 0;
        min-height: 100px;
    }


    .about-us-badge {
        display: inline-block;
        background: #004d40;
        color: #fff;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 0.2px;
        padding: 7px 18px;
        border-radius: 50px;
        margin-bottom: 12px;
    }


    .breadcrumb-title {
        font-size: 26px;
    }
}

/* Contact Us Page */
.contact-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 52%, #e8f4f3 100%);
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='97' viewBox='0 0 84 97'%3E%3Cpath d='M42 1.5L82 24.5V70.5L42 93.5L2 70.5V24.5Z' fill='none' stroke='%2300796B' stroke-width='0.7' opacity='0.16'/%3E%3C/svg%3E");
    background-size: 84px 97px;
    pointer-events: none;
    z-index: 0;
}

.contact-section .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 42px;
}

.contact-badge {
    display: inline-block;
    background: #004d40;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.contact-title {
    color: #004d40;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 14px;
}

.contact-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: #00796B;
    border-radius: 4px;
}

.contact-intro {
    max-width: 640px;
    margin: 16px auto 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
}

.contact-form-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.08);
    height: 100%;
}

.contact-form-heading {
    color: #004d40;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 24px;
}

.contact-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #004d40;
    margin-bottom: 8px;
}

.contact-label span {
    color: #dc3545;
}

.contact-input {
    width: 100%;
    border: 1px solid #c5d5d3;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-input:focus {
    outline: none;
    border-color: #00796B;
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.12);
}

.contact-input::placeholder {
    color: #adb5bd;
}

textarea.contact-input {
    resize: vertical;
    min-height: 120px;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #00796B;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover {
    background: #004d40;
    color: #fff;
}

.contact-aside {
    background: linear-gradient(135deg, #004d40 0%, #00796B 100%);
    border-radius: 22px;
    padding: 36px 30px;
    color: #fff;
    height: 100%;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.18);
}

.contact-aside h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px;
}

.contact-aside > p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 28px;
}

.contact-aside-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-aside-item:last-child {
    margin-bottom: 0;
}

.contact-aside-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #00796B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-aside-item strong {
    display: block;
    font-size: 13px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.contact-aside-item span {
    font-size: 15px;
    color: #fff;
}

.contact-map {
    margin-top: 32px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.1);
}

.contact-map iframe {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {

 .navbar-brand {
    padding: 4px 0;
    font-size: 23px;
}


    .contact-section {
        padding: 46px 0;
    }

    .contact-title {
        font-size: 26px;
    }

    .contact-form-card,
    .contact-aside {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .contact-submit {
        width: 100%;
    }

    .contact-map {
        border-radius: 16px;
    }

    .contact-map iframe {
        height: 280px;
    }
}

/* Policy pages */
.policy-page {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background-color: #f7fbfa;
}

.policy-page .container {
    position: relative;
    z-index: 1;
    max-width: 960px;
}

.policy-page-header {
    text-align: center;
    margin-bottom: 36px;
}

.policy-page-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #c5a059;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    padding: 0;
    border-radius: 0;
    margin-bottom: 12px;
}

.policy-page-badge::before,
.policy-page-badge::after {
    content: '';
    width: 22px;
    height: 1px;
    background: #c5a059;
}

.policy-page-title {
    color: #004d40;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 14px;
}

.policy-page-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    background: #c5a059;
    border-radius: 3px;
}

.policy-page-intro {
    max-width: 720px;
    margin: 16px auto 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
}

.policy-page-card {
    background: #fff;
    border-radius: 22px;
    padding: 12px 8px;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.08);
}

.policy-page-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 28px;
    border-bottom: 1px solid #e8f4f3;
}

.policy-page-item:last-child {
    border-bottom: none;
}

.policy-page-num {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #00796B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.policy-page-body h3 {
    color: #004d40;
    font-size: 20px;
    font-weight: 700;
    margin: 6px 0 8px;
}

.policy-page-body p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

.policy-page-body p + p {
    margin-top: 12px;
}

.policy-page-body ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}

.policy-page-body li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
}

.policy-page-body li:last-child {
    margin-bottom: 0;
}

.policy-page-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(0, 121, 107, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2300796B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.2l2.6 2.6L10 3.2'/%3E%3C/svg%3E") center / 10px 10px no-repeat;
}

.policy-page-body li strong {
    color: #004d40;
    font-weight: 600;
}

.policy-page-cta {
    margin-top: 28px;
    background: #fff;
    border: 1px solid #e8f4f3;
    border-radius: 22px;
    padding: 32px 34px;
    color: #004d40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.08);
}

.policy-page-cta h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.policy-page-cta p {
    margin: 0;
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
}

.policy-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    background: #c5a059;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    padding: 12px 24px;
    transition: background 0.2s ease, color 0.2s ease;
}

.policy-page-btn:hover {
    background: #d4b36e;
    color: #fff;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 46px 0;
    }

    .policy-page-title {
        font-size: 26px;
    }

    .policy-page-header {
        text-align: center;
        margin-bottom: 20px;
    }

    .policy-page-intro {
        margin: 8px auto 0;
        font-size: 14px;
        line-height: 1.75;
    }

    .policy-page-card {
        border-radius: 18px;
        padding: 6px 4px;
    }

    .policy-page-item {
        padding: 18px 16px;
        gap: 14px;
    }

    .policy-page-body h3 {
        font-size: 16px;
        margin: 0 0 6px;
    }

    .policy-page-num {
        width: 32px;
        height: 32px;
        min-width: 32px;
        font-size: 14px;
    }

    .policy-page-body p,
    .policy-page-body li {
        font-size: 14px;
    }

    .policy-page-cta {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .policy-page-btn {
        width: 100%;
    }
}

/* Registration Section */
.registration-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.registration-form-wrapper {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.form-header h2 {
    color: #333;
    font-size: 32px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    margin-bottom: 0;
}

.registration-form-wrapper .form-group {
    margin-bottom: 20px;
    padding: 0 10px;
}

.registration-form-wrapper .form-control {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.registration-form-wrapper .form-control:focus {
    border-color: #006064;
    box-shadow: 0 0 0 0.2rem rgba(0, 96, 100, 0.25);
    outline: none;
}

.registration-form-wrapper .form-control::placeholder {
    color: #adb5bd;
}

.registration-form-wrapper select.form-control {
    cursor: pointer;
}

.registration-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.registration-form-wrapper .reg-but {
    padding: 14px 50px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.registration-form-wrapper .reg-but:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 96, 100, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #c5a059 0%, #006064 100%);
}

@media (max-width: 768px) {
    .registration-form-wrapper {
        padding: 20px 20px;
    }
    
    .form-header h2 {
        font-size: 20px;
    }
    .form-header p {
        font-size: 15px;
        margin-bottom: 0;
    }
    
    .registration-form-wrapper .form-group {
        padding: 0 5px;
    }
}

/* Privacy Policy Section */
.privacy-policy-section {
    background-color: #fff;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.policy-content {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.policy-intro .lead {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

.policy-section {
    border-left: 4px solid #006064;
    padding-left: 20px;
    margin-bottom: 30px;
}

.policy-title {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #c5a059;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.policy-section p, .policy-contact p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 0;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.policy-list li:before {
    content: "•";
    position: absolute;
    left: 10px;
    color: #006064;
    font-size: 24px;
    font-weight: bold;
}

.policy-list li strong {
    color: #333;
    font-weight: 600;
}

.policy-contact {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e9ecef;
}

.policy-contact .policy-title {
    border-left: none;
    padding-left: 0;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 30px 20px;
    }
    
    .policy-title {
        font-size: 20px;
    }
    
    .policy-number {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 14px;
    }
}

/* Thank You Section */
.thank-you-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.thank-you-section .container {
    position: relative;
    z-index: 1;
}

.thank-you-content {
    background: #fff;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    margin-bottom: 30px;
}

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleIn 0.6s ease-out 0.2s both;
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.3);
}

.icon-circle::before {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid rgba(0, 96, 100, 0.2);
    animation: pulse 2s ease-out infinite;
}

.icon-circle i {
    font-size: 50px;
    color: #fff;
    z-index: 1;
    position: relative;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.thank-you-title {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #006064 0%, #c5a059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-subtitle {
    font-size: 32px;
    font-weight: 600;
    color: #006064;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.thank-you-actions .btn {
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    border: none;
    color: #fff;
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 96, 100, 0.4);
    color: #fff;
    background: linear-gradient(135deg, #c5a059 0%, #006064 100%);
}

.thank-you-actions .btn-outline-primary {
    border: 2px solid #006064;
    color: #006064;
    background: transparent;
}

.thank-you-actions .btn-outline-primary:hover {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 96, 100, 0.3);
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 60px 0;
    }
    
    .thank-you-content {
        padding: 40px 30px;
    }
    
    .thank-you-title {
        font-size: 32px;
    }
    
    .thank-you-subtitle {
        font-size: 24px;
    }
    
    .thank-you-message {
        font-size: 16px;
    }
    
    .icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .icon-circle i {
        font-size: 40px;
    }
    
    .icon-circle::before {
        width: 120px;
        height: 120px;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* TEST RULE - Remove after testing */
/* If this works, about section will have bright yellow background */
/* section.about-section { background: yellow !important; } */ /* Uncomment to test */

/* About Us Section */
section.about-section,
#about.about-section,
.about-section {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 100px 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

section.about-section::before,
#about.about-section::before,
.about-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(0, 96, 100, 0.03) 25px, rgba(0, 96, 100, 0.03) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(0, 96, 100, 0.03) 25px, rgba(0, 96, 100, 0.03) 27px),
        radial-gradient(circle at 15% 15%, rgba(0, 96, 100, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(128, 203, 196, 0.04) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 40px 40px, 50px 50px !important;
    background-position: 0 0, 0 0, 0 0, 20px 20px !important;
    z-index: 0 !important;
    opacity: 0.4 !important;
}

section.about-section::after,
#about.about-section::after,
.about-section::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 96, 100, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(128, 203, 196, 0.03) 0%, transparent 30%) !important;
    z-index: 0 !important;
}

section.about-section .container,
#about.about-section .container,
.about-section .container {
    position: relative !important;
    z-index: 1 !important;
}

section.about-section .row,
#about.about-section .row,
.about-section .row {
    position: relative !important;
    z-index: 2 !important;
}

section.about-section .col-lg-6,
#about.about-section .col-lg-6,
.about-section .col-lg-6 {
    position: relative !important;
    z-index: auto !important;
}

/* Ensure the content card column has proper stacking */
/* Removed :has() selector for better browser compatibility */
section.about-section .col-lg-6.order-1.order-lg-2,
#about.about-section .col-lg-6.order-1.order-lg-2,
.about-section .col-lg-6.order-1.order-lg-2 {
    z-index: 50 !important;
}

/* About Video Wrapper */
section.about-section .about-video-wrapper, #about.about-section .about-video-wrapper, .about-section .about-video-wrapper, .about-video-wrapper {
    position: relative !important;
    width: 100% !important;
    text-align: center;
    margin: auto;
}

section.about-section .about-video-container,
#about.about-section .about-video-container,
.about-section .about-video-container,
.about-video-container {
    position: relative !important;
    
    overflow: hidden !important;
     
}
 
section.about-section .about-video-thumbnail,
#about.about-section .about-video-thumbnail,
.about-section .about-video-thumbnail,
.about-video-thumbnail {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transition: transform 0.4s ease !important;
    border-radius: 20px !important;
}

 

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 2;
}

.video-play-button i {
    color: #006064;
    font-size: 28px;
    margin-left: 4px;
    transition: all 0.3s ease;
}

.about-video-container:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    background: #006064;
}

.about-video-container:hover .video-play-button i {
    color: #fff;
    transform: scale(1.1);
}

/* About Content Card - Force White Background */
/* DIAGNOSTIC: Test if this rule applies - uncomment next line to test */
/* .about-content-card { background: lime !important; border: 10px solid red !important; } */

section.about-section .about-content-card, #about.about-section .about-content-card, .about-section .about-content-card, .about-content-card, div.about-content-card, .col-lg-6 .about-content-card, [class*="col"] .about-content-card {
    z-index: 100 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: auto !important;
    width: 100% !important;
    margin: 0 !important;
    isolation: isolate !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
}
/* Ensure no transparent backgrounds override */
section.about-section .col-lg-6 .about-content-card,
#about.about-section .col-lg-6 .about-content-card,
.about-section .col-lg-6 .about-content-card,
.col-lg-6 .about-content-card {
    background: #ffffff !important;
    background-color: #ffffff !important;
    background-image: none !important;
}

section.about-section .about-content-card *, #about.about-section .about-content-card *, .about-section .about-content-card * {
    position: relative !important;
    z-index: 1 !important;
    font-size: 15px;
    line-height: 28px;
}

section.about-section .about-card-header, #about.about-section .about-card-header, .about-section .about-card-header, .about-card-header {
    margin-bottom: 10px !important;
}

section.about-section .about-card-subtitle,
#about.about-section .about-card-subtitle,
.about-section .about-card-subtitle,
.about-card-subtitle {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #c5a059 !important;
    margin-bottom: 0px !important;
    letter-spacing: 0.5px !important;
}
section.about-section .about-card-title, #about.about-section .about-card-title, .about-section .about-card-title, .about-card-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #004d40 !important;
    line-height: 1.2 !important;
    margin-bottom: 30px !important;
    letter-spacing: 1px !important;
    text-align: center;
}

section.about-section .about-card-separator,
#about.about-section .about-card-separator,
.about-section .about-card-separator,
.about-card-separator {
    width: 80px !important;
    height: 4px !important;
    background: linear-gradient(90deg, #006064 0%, #006064 100%) !important;
    border-radius: 2px !important;
    margin-bottom: 30px !important;
}

section.about-section .about-card-description,
#about.about-section .about-card-description,
.about-section .about-card-description,
.about-card-description {
    margin-bottom: 15px !important;
}

.about-card-description ul li {
    font-size: 15px;
    padding: 0 0 20px 0;
}
section.about-section .about-card-description p, #about.about-section .about-card-description p, .about-section .about-card-description p, .about-card-description p {
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #393939 !important;
    margin: 0 0 8px 0 !important;
}
section.about-section .about-card-action,
#about.about-section .about-card-action,
.about-section .about-card-action,
.about-card-action {
    margin-top: 30px !important;
}

section.about-section .about-register-btn, #about.about-section .about-register-btn, .about-section .about-register-btn, .about-register-btn {
    display: inline-flex !important;
    align-items: center !important;
    padding: 12px 35px !important;
    background: linear-gradient(135deg, #006064 0%, #006064 100%) !important;
    background-color: transparent !important;
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.about-register-btn i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

 

.about-register-btn:hover i {
    transform: scale(1.15);
}

.about-subtitle {
    font-size: 18px;
    color: #666;
    margin-top: 30px;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.about-images-grid {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-item {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid transparent;
}

.about-image-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 96, 100, 0.35);
    border-color: #006064;
    z-index: 10;
}

.about-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.about-image-item:hover img {
    transform: scale(1.1);
}

.image-item-1 {
    width: 300px;
    height: 280px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.image-item-2 {
    width: 280px;
    height: 260px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.image-item-3 {
    width: 290px;
    height: 270px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-content-modern {
    padding: 30px 0;
    position: relative;
}

.about-content-modern::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #006064 0%, #006064 100%);
    border-radius: 10px;
}

.lead-text {
    color: #333;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.lead-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, #006064 0%, #006064 100%);
    border-radius: 2px;
}

.about-content-modern p {
    color: #555;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 25px;
    padding-left: 20px;
    position: relative;
}

.about-section .col-lg-6 img {
    
    box-shadow: 0 20px 60px rgba(0, 96, 100, 0.2);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     
    position: relative;
    overflow: hidden;
}

.about-section .col-lg-6 img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.1) 0%, rgba(128, 203, 196, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

 

.about-section .col-lg-6:hover img::before {
    opacity: 1;
}

.about-features-modern {
    margin-top: 30px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 0px;
}

.about-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.about-features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #006064 0%, #006064 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.about-features-list li:hover::before {
    transform: scaleY(1);
}

.about-features-list li:hover {
    border-color: rgba(0, 96, 100, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 96, 100, 0.03) 100%);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 96, 100, 0.2);
}

.about-features-list li i {
    color: #006064;
    font-size: 22px;
    margin-right: 18px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.1) 0%, rgba(128, 203, 196, 0.1) 100%);
    border-radius: 12px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.about-features-list li:hover i {
     
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 96, 100, 0.3);
}

.about-features-list li span {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    flex: 1;
}

@media (max-width: 991px) {
    section.about-section,
    #about.about-section,
    .about-section {
        padding: 80px 0 !important;
    }
    
    section.about-section .about-content-card,
    #about.about-section .about-content-card,
    .about-section .about-content-card,
    .about-content-card {
        padding: 40px 35px !important;
    }
    
    section.about-section .about-card-title,
    #about.about-section .about-card-title,
    .about-section .about-card-title,
    .about-card-title {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {

.about-card-description ul li {
    font-size: 15px;
    padding: 0 0 10px 0;
}

.about-card-description ul {
    margin: 0 0 0 0;
    padding: 0 15px 0 15px;
}

.bluebgsection h3 {
    padding: 0px;
    margin: 0px;
    color: #ffffff;
    font-size: 38px;
    text-align: center;
    font-weight: 700;
}
.bluebgsection p {
    padding: 10px 10px 0 10px;
    margin: 0px;
    color: #fff;
    text-align: center;
}

.bluebgsection ul {
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
}

.bluebgsection ul li {
    padding: 8px 20px 8px 20px;
    margin: 0px;
    list-style: none;
    color: #000000;
    border: #ccc dashed 1px;
    border-radius: 60px;
    font-size: 14px;
    background: #fff;
    width: 100%;
    text-align: center;
}

section.about-section .about-video-wrapper, #about.about-section .about-video-wrapper, .about-section .about-video-wrapper, .about-video-wrapper {
    position: relative !important;
    width: 100% !important;
    text-align: center;
    margin: auto;
}

    section.about-section,
    #about.about-section,
    .about-section {
        padding: 60px 0 !important;
    }
    
section.about-section .about-content-card, #about.about-section .about-content-card, .about-section .about-content-card, .about-content-card {
    padding: 0px 5px 0px 5px !important;
    margin-bottom: 0px !important;
}
    section.about-section .about-card-subtitle,
    #about.about-section .about-card-subtitle,
    .about-section .about-card-subtitle,
    .about-card-subtitle {
        font-size: 18px !important;
    }
    
    section.about-section .about-card-title,
    #about.about-section .about-card-title,
    .about-section .about-card-title,
    .about-card-title {
        font-size: 24px !important;
    }
    
 section.about-section .about-card-description p, #about.about-section .about-card-description p, .about-section .about-card-description p, .about-card-description p {
    font-size: 14px !important;
}
    
    section.about-section .about-register-btn,
    #about.about-section .about-register-btn,
    .about-section .about-register-btn,
    .about-register-btn {
        padding: 14px 30px !important;
        font-size: 15px !important;
        width: 100% !important;
        justify-content: center !important;
    }
    
    .video-play-button {
        width: 70px !important;
        height: 70px !important;
    }
    
    .video-play-button i {
        font-size: 24px !important;
    }
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #333;
}

.feature-item:hover {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
    transform: translateX(5px);
}

.feature-item:hover i {
    color: #fff !important;
}

.feature-item i {
    font-size: 20px;
    width: 30px;
}

/* Conference Info Section */
.conference-info-section {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background-color: #004d40;
}

.conference-info-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/about-realistic.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.16;
    pointer-events: none;
    z-index: 0;
}

.conference-info-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/conference-info-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.conference-info-section .container {
    position: relative;
    z-index: 1;
}

.conference-info-head {
    text-align: center;
    margin-bottom: 32px;
}

.conference-info-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 10px;
    color: #c5a059;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.conference-info-eyebrow::before,
.conference-info-eyebrow::after {
    content: '';
    width: 22px;
    height: 1px;
    background: #c5a059;
}

.conference-info-head h2 {
    margin: 0;
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

.conference-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.conference-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.conference-info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(197, 160, 89, 0.55);
}

.conference-info-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    margin: 0;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.18);
    color: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conference-info-icon i {
    font-size: 18px;
}

.conference-info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #c5a059;
    margin-bottom: 6px;
}

.conference-info-value {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .conference-info-section {
        padding: 56px 0;
    }

    .conference-info-head h2 {
        font-size: 26px;
    }

    .conference-info-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .conference-info-section {
        padding: 42px 0;
    }

    .conference-info-section::after {
        background-position: center bottom;
        opacity: 0.35;
    }

    .conference-info-head {
        margin-bottom: 22px;
    }

    .conference-info-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .conference-info-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    .conference-info-value {
        font-size: 15px;
    }
}

/* Conference Highlights Section */
.conference-highlights-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.conference-highlights-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(0, 96, 100, 0.03) 25px, rgba(0, 96, 100, 0.03) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(0, 96, 100, 0.03) 25px, rgba(0, 96, 100, 0.03) 27px),
        radial-gradient(circle at 15% 15%, rgba(0, 96, 100, 0.04) 1px, transparent 1px),
        radial-gradient(circle at 85% 85%, rgba(128, 203, 196, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 50px 50px;
    background-position: 0 0, 0 0, 0 0, 20px 20px;
    z-index: 0;
    opacity: 0.4;
}

.conference-highlights-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(0, 96, 100, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(128, 203, 196, 0.03) 0%, transparent 30%);
    z-index: 0;
}

.conference-highlights-section .container {
    position: relative;
    z-index: 1;
}

.highlights-section-alt {
    background: #ffffff;
}


.bluebgsection {
    background: #004d40;
    padding: 60px 0 60px 0;
}

.bluebgsection h3 {
    padding: 0px;
    margin: 0px 0 20px 0;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
}

.bluebgsection p {
    padding: 0 0 11px 0;
    margin: 0px;
    color: #fff;
    text-align: left;
    font-size: 15px;
    line-height: 28px;
}
.bluebgsection h4 {
    padding: 20px 0 20px 0;
    margin: 0px;
    color: #fff;
    text-align: center;
    font-size: 20px;
}

.bluebgsection ul {
    padding: 0px;
    margin: 0px 0 0 20px;
 
     
}

.bluebgsection ul li {
    padding: 0px 0px 0px 0px;
    margin: 0px;
    list-style: square;
    color: #ffffff;
    border-radius: 60px;
    font-size: 15px;
    background: bottom;
}
.section-label-modern {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.1) 0%, rgba(0, 96, 100, 0.05) 100%);
    border-left: 4px solid #006064;
    border-radius: 5px;
    margin-bottom: 20px;
}

.section-label-modern .label-text {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    color: #006064;
}

.highlights-title-modern {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.highlights-title-modern .title-main {
    color: #1a1a1a;
    display: inline-block;
    font-weight: 700;
}

.highlights-title-modern .title-accent {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
    font-weight: 900;
}

.highlights-title-modern::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 20px;
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent 0%, #006064 50%, transparent 100%);
    border-radius: 10px;
}

.highlights-content-modern {
    padding: 30px 0;
    position: relative;
}

.highlights-content-modern::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #006064 0%, #006064 100%);
    border-radius: 10px;
}

.conference-highlights-section p {
    color: #555;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 25px;
    font-weight: 400;
    padding-left: 0px;
    position: relative;
}

.highlights-list-modern {
    list-style: none;
    padding: 0;
    margin: 30px 0 0 0;
    padding-left: 20px;
}

.highlights-list-modern li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 18px 25px;
    font-size: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.highlights-list-modern li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #006064 0%, #006064 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: bottom;
}

.highlights-list-modern li:hover::before {
    transform: scaleY(1);
}

.highlights-list-modern li:hover {
    border-color: rgba(0, 96, 100, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 96, 100, 0.03) 100%);
    transform: translateX(10px) translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 96, 100, 0.2);
}

.highlights-list-modern li i {
    color: #006064;
    font-size: 22px;
    margin-right: 18px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.1) 0%, rgba(128, 203, 196, 0.1) 100%);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.highlights-list-modern li:hover i {
    transform: scale(1.15) rotate(5deg);
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 96, 100, 0.3);
}

.highlights-list-modern li span {
    color: #444;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 400;
}

.highlights-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 5px solid #fff;
    background: #000;
}

.highlights-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    border-radius: 25px;
}

.highlights-image-wrapper:hover::before {
    opacity: 1;
}

.highlights-image-wrapper:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 96, 100, 0.3);
    border-color: rgba(0, 96, 100, 0.3);
}

.highlights-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transition: transform 0.5s ease;
}

.highlights-image-wrapper:hover .highlights-image {
    transform: scale(1.08);
    opacity: 0.95;
}

@media (max-width: 991px) {
    .conference-highlights-section {
        padding: 80px 0;
    }
    
    .highlights-content-modern {
        padding: 20px 0;
    }

    .highlights-content-modern::before {
        left: -15px;
        width: 3px;
    }

    .highlights-title-modern {
        font-size: 36px;
        padding-left: 15px;
    }

    .highlights-title-modern::after {
        left: 15px;
    }

    .conference-highlights-section p {
        padding-left: 15px;
        font-size: 16px;
    }

    .highlights-list-modern {
        padding-left: 15px;
    }
}

@media (max-width: 768px) {
.conference-highlights-section {
    padding: 30px 0;
}
    
    .highlights-content-modern {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .highlights-title-modern {
        font-size: 32px;
        padding-left: 15px;
        margin-bottom: 20px;
    }

    .highlights-title-modern::after {
        width: 100px;
        left: 15px;
    }
    
    .conference-highlights-section p {
        padding-left: 0px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .highlights-list-modern {
        padding-left: 15px;
        margin-top: 25px;
    }
    
    .highlights-list-modern li {
        padding: 15px 20px;
        margin-bottom: 15px;
    }
    
    .highlights-list-modern li span {
        font-size: 14px;
    }
    
    .highlights-list-modern li i {
        font-size: 18px;
        width: 40px;
        height: 40px;
        margin-right: 15px;
    }
    
    .highlights-image-wrapper {
        margin-top: 30px;
        border-width: 3px;
        border-radius: 20px;
    }
    
    .highlights-section-alt .highlights-image-wrapper {
        margin-top: 0;
        margin-bottom: 30px;
    }
}



/* CTA Section - Registration & Housing */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.85) 0%, rgba(0, 77, 64, 0.9) 100%);
    z-index: 1;
}

.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.05) 25px, rgba(255, 255, 255, 0.05) 27px),
        repeating-linear-gradient(-45deg, transparent, transparent 25px, rgba(255, 255, 255, 0.05) 25px, rgba(255, 255, 255, 0.05) 27px);
    background-size: 100% 100%, 100% 100%;
    z-index: 2;
    opacity: 0.3;
}

.cta-section .container {
    position: relative;
    z-index: 3;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 96, 100, 0.05) 0%, rgba(128, 203, 196, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.4);
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-card:hover .cta-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 96, 100, 0.5);
}

.cta-icon-wrapper i {
    font-size: 42px;
    color: #fff;
    transition: transform 0.3s ease;
}

.cta-card:hover .cta-icon-wrapper i {
    transform: scale(1.15);
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #004d40;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    position: relative;
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 96, 100, 0.3);
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: linear-gradient(135deg, #006064 0%, #006064 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.5);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.cta-registration {
    animation: fadeInUp 0.8s ease-out;
}

.cta-housing {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@media (max-width: 991px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-card {
        padding: 40px 30px;
        margin-bottom: 30px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }
    
    .cta-icon-wrapper i {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .cta-card {
        padding: 35px 25px;
    }
    
    .cta-title {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .cta-description {
        font-size: 15px;
        margin-bottom: 30px;
    }
    
    .cta-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }
    
    .cta-icon-wrapper i {
        font-size: 32px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 16px;
    }
}

.highlights-description {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlights-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    color: #333;
    font-size: 16px;
    line-height: 1.6;
}

.check-icon {
    color: #006064;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Countdown Timer */
.countdown-timer {
    margin-top: 40px;
}

.timer-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.timer-item {
    flex: 1;
    min-width: 100px;
}

.timer-box {
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.timer-item.active .timer-box {
    border-color: #006064;
    background-color: #e0f2f1;
}

.timer-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1;
    margin-bottom: 8px;
}

.timer-label {
    display: block;
    font-size: 14px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Circular Images */
.circular-images-wrapper {
    position: relative;
    padding: 40px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-image-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.circular-image {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #006064;
    box-shadow: 0 10px 30px rgba(0, 96, 100, 0.3);
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.circular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.circular-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 96, 100, 0.4);
}

.circular-image.image-1 {
    top: 0;
    left: 70%;
    transform: translateX(-50%);
    z-index: 3;
}

.circular-image.image-2 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 2;
}

.circular-image.image-3 {
    bottom: 0%;
    right: 10%;
    z-index: 1;
}

@media (max-width: 991px) {
    .circular-image-container {
        height: 400px;
    }
    
    .circular-image {
        width: 200px;
        height: 200px;
    }
    
    .highlights-title {
        font-size: 36px;
    }
    
    .timer-grid {
        justify-content: center;
    }
    
    .timer-item {
        min-width: 80px;
    }
    
    .timer-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .circular-images-wrapper {
        min-height: 350px;
        padding: 20px;
    }
    
    .circular-image-container {
        height: 350px;
    }
    
    .circular-image {
        width: 150px;
        height: 150px;
    }
    
    .highlights-title {
        font-size: 32px;
    }
    
    .timer-item {
        min-width: 70px;
    }
    
    .timer-number {
        font-size: 24px;
    }
}

/* Footer */
.modern-footer {
    background: #004d40;
    color: #fff;
    margin-top: auto;
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.footer-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/about-realistic.jpg');
    background-size: cover;
    background-position: center;
}

.footer-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 77, 64, 0.82);
}

.modern-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #004d40 0%, #c5a059 50%, #00796B 100%);
    z-index: 2;
}

.footer-top {
    padding: 64px 0 48px;
    position: relative;
    z-index: 1;
}

.footer-widget {
    height: 100%;
}

.footer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 12px;
    color: #c5a059;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.2px;
    text-transform: uppercase;
}

.footer-eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background: #c5a059;
    border-radius: 2px;
}

.footer-brand {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.2;
    margin-bottom: 12px;
}

.footer-brand span {
    color: #c5a059;
}

.footer-brand:hover {
    color: #ffffff;
}

.footer-description {
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 20px;
    max-width: 360px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.5;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 12px 14px;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.18);
    color: #c5a059;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    background: #00796B;
    color: #fff;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-cta:hover {
    background: #c5a059;
    color: #fff;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #c5a059;
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    list-style: none;
    margin: 0;
}

.footer-links a {
    position: relative;
    display: block;
    padding: 7px 0 7px 16px;
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-right: 1.6px solid #c5a059;
    border-bottom: 1.6px solid #c5a059;
    transform: translateY(-60%) rotate(-45deg);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 20px;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.22);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 1;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom-links a:hover {
    color: #c5a059;
}

@media (max-width: 991px) {
    .footer-top {
        padding: 48px 0 36px;
    }

    .footer-description {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 36px 0 24px;
    }

    .footer-brand {
        font-size: 24px;
    }

    .footer-title {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .footer-description,
    .footer-contact-item,
    .footer-links a,
    .copyright-text,
    .footer-bottom-links a {
        font-size: 13px;
    }

    .footer-cta {
        width: 100%;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}
 
/* Tab Pane Animation */
.tab-pane {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern About Us Section */
.about-us-modern {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 52%, #e8f4f3 100%);
}

.about-us-modern::before,
.about-us-modern::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.about-us-modern::before {
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='97' viewBox='0 0 84 97'%3E%3Cpath d='M42 1.5L82 24.5V70.5L42 93.5L2 70.5V24.5Z' fill='none' stroke='%2300796B' stroke-width='0.7' opacity='0.18'/%3E%3C/svg%3E"),
        radial-gradient(circle at 12% 18%, rgba(0, 121, 107, 0.08) 0 1.5px, transparent 2px),
        radial-gradient(circle at 88% 78%, rgba(197, 160, 89, 0.08) 0 1.5px, transparent 2px);
    background-size: 84px 97px, 42px 42px, 56px 56px;
    background-position: 8% 12%, 0 0, 20px 20px;
    opacity: 0.55;
}

.about-us-modern::after {
    inset: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18'%3E%3Cpath d='M8 2h2v14H8zM2 8h14v2H2z' fill='%23c5a059' opacity='0.18'/%3E%3C/svg%3E"),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0 70C180 20 360 110 540 70C720 30 900 100 1080 60C1260 20 1380 80 1440 50V120H0Z' fill='none' stroke='%2300796B' stroke-width='1.2' opacity='0.12'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-size: 18px 18px, 100% 140px;
    background-position: 92% 18%, left bottom;
    opacity: 0.7;
}

.about-us-modern .container {
    position: relative;
    z-index: 1;
}

.about-us-header {
    text-align: center;
    margin-bottom: 48px;
}

.about-us-badge {
    display: inline-block;
    background: #004d40;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.2px;
    padding: 7px 18px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.about-us-title {
    color: #004d40;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    position: relative;
    padding-bottom: 14px;
}

.about-us-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 72px;
    height: 4px;
    background: #00796B;
    border-radius: 4px;
}

.about-us-intro {
    max-width: 720px;
    margin: 18px auto 0;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.about-us-body {
    margin-bottom: 40px;
}

.about-us-media {
    position: relative;
    height: 100%;
    min-height: 440px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(0, 77, 64, 0.14);
}

.about-us-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 77, 64, 0.08) 0%, transparent 28%, transparent 72%, rgba(0, 77, 64, 0.18) 100%);
    pointer-events: none;
}

.about-us-media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    filter: contrast(1.06) saturate(1.08);
}

.about-us-copy {
    padding: 8px 0 8px 8px;
}

.about-us-copy p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
}

.about-us-copy ul li{
	color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 0px;
}

.about-us-copy p:last-child {
    margin-bottom: 0;
}

.about-us-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.08);
    padding: 28px 20px;
}

.about-us-stat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 6px 14px;
}

.about-us-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.1);
    color: #00796B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-us-stat-icon i {
    font-size: 18px;
}

.about-us-stat-text {
    display: flex;
    flex-direction: column;
}

.about-us-stat-text strong {
    color: #004d40;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.about-us-stat-text span {
    color: #6b7280;
    font-size: 13px;
    font-weight: 400;
    margin-top: 3px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .about-us-modern {
        padding: 70px 0 60px;
    }

    .about-us-title {
        font-size: 34px;
    }

    .about-us-media,
    .about-us-media img {
        min-height: 360px;
    }

    .about-us-copy {
        padding: 10px 0 0;
    }

    .about-us-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 8px;
        padding: 24px 16px;
    }
}

@media (max-width: 768px) {


    .about-us-copy ul li {
        color: #4b5563;
        font-size: 13px;
        line-height: 1.8;
        margin: 0 0 0px;
    }

    .about-us-body {
        margin-bottom: 0px;
    }

    .about-us-modern {
        padding: 50px 0 45px;
    }

    .about-us-header {
        margin-bottom: 20px;
    }

    .about-us-title {
        font-size: 28px;
    }

    .about-us-intro {
        font-size: 14px;
        padding: 0 8px;
    }

    .about-us-media,
    .about-us-media img {
        min-height: 260px;
        border-radius: 20px;
    }

    .about-us-copy p {
        font-size: 13px;
        margin: 0 0 8px 0;
        text-align: justify;
    }

    .about-us-stats {
        grid-template-columns: 1fr 1fr;
        padding: 20px 12px;
        border-radius: 16px;
    }

    .about-us-stat {
        justify-content: flex-start;
        padding: 8px;
    }

    .about-us-stat-text strong {
        font-size: 15px;
    }

    .about-us-stat-text span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-us-stats {
        grid-template-columns: 1fr;
    }
}

/* About Us spotlight */
.about-spotlight {
    position: relative;
    padding: 90px 0 80px;
    overflow: hidden;
    background: #ffffff;
}

.about-spotlight::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    top: -140px;
    left: -120px;
    background: radial-gradient(circle, rgba(0, 121, 107, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-spotlight::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    right: -80px;
    bottom: -120px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.about-spotlight .container {
    position: relative;
    z-index: 1;
}

.about-spotlight-alt {
    background: #f7fbfa;
}

.about-spotlight-media {
    position: relative;
    margin: 0 18px 28px 0;
}

.about-spotlight-media-end {
    margin: 0 0 28px 18px;
}

.about-spotlight-media::before {
    content: '';
    position: absolute;
    inset: 22px -18px -18px 22px;
    border-radius: 28px;
    background: linear-gradient(135deg, #004d40 0%, #00796B 100%);
    z-index: 0;
}

.about-spotlight-media::after {
    content: '';
    position: absolute;
    top: -14px;
    right: 28px;
    width: 86px;
    height: 86px;
    border: 2px solid #c5a059;
    border-radius: 50%;
    z-index: 0;
}

.about-spotlight-media img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
   
    object-fit: cover;
    object-position: center 30%;
    border-radius: 28px;
    box-shadow: 0 22px 48px rgba(0, 77, 64, 0.16);
}

.about-spotlight-float {
    position: absolute;
    left: 22px;
    bottom: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 16px;
    padding: 12px 16px;
    box-shadow: 0 12px 30px rgba(0, 77, 64, 0.16);
}

.about-spotlight-float i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: #00796B;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-spotlight-float strong {
    display: block;
    color: #004d40;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.about-spotlight-float span {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-top: 2px;
}

.about-spotlight-copy {
    padding: 10px 0 10px 8px;
}

.about-spotlight-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    color: #c5a059;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.about-spotlight-eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: #c5a059;
    border-radius: 2px;
}

.about-spotlight-title {
    color: #004d40;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
}

.about-spotlight-lead {
    color: #004d40;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    margin: 0 0 14px;
}

.about-spotlight-copy p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 14px;
}

.about-spotlight-list {
    list-style: none;
    padding: 6px 0 8px;
    margin: 0 0 22px;
}

.about-spotlight-list li {
    position: relative;
    padding-left: 36px;
    color: #004d40;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}

.about-spotlight-list li:last-child {
    margin-bottom: 0;
}

.about-spotlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 121, 107, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%2300796B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M2 6.2l2.6 2.6L10 3.2'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.about-spotlight-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    background: #00796B;
    color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 121, 107, 0.24);
    transition: background 0.25s ease, transform 0.25s ease;
}

.about-spotlight-btn:hover {
    background: #004d40;
    color: #fff;
    transform: translateY(-2px);
}

.about-spotlight-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.about-spotlight-stat {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f7fbfa;
    border: 1px solid rgba(0, 77, 64, 0.08);
    border-radius: 16px;
    padding: 18px 16px;
}

.about-spotlight-stat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #fff;
    color: #00796B;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 77, 64, 0.08);
}

.about-spotlight-stat strong {
    display: block;
    color: #004d40;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.about-spotlight-stat span {
    display: block;
    color: #6b7280;
    font-size: 13px;
    margin-top: 4px;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .about-spotlight {
        padding: 70px 0 60px;
    }

    .about-spotlight-title {
        font-size: 32px;
    }

    .about-spotlight-media,
    .about-spotlight-media-end {
        margin: 0 0 10px;
    }

    .about-spotlight-media img {
        height: 380px;
    }

    .about-spotlight-copy {
        padding: 8px 0 0;
    }

    .about-spotlight-stats {
        grid-template-columns: 1fr 1fr;
        margin-top: 32px;
    }
}

@media (max-width: 768px) {
    .about-spotlight {
        padding: 50px 0 42px;
    }

    .about-spotlight-media::before,
    .about-spotlight-media::after {
        display: none;
    }

    .about-spotlight-media img {
        height: 260px;
        border-radius: 20px;
    }

    .about-spotlight-float {
        left: 12px;
        bottom: 12px;
        padding: 10px 12px;
    }

    .about-spotlight-title {
        font-size: 26px;
    }

    .about-spotlight-lead,
    .about-spotlight-copy p,
    .about-spotlight-list li {
        font-size: 14px;
    }

    .about-spotlight-btn {
        width: 100%;
    }

    .about-spotlight-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 24px;
    }
}

/* Inner form pages (Registration) */
.page-form-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfa 52%, #e8f4f3 100%);
}

.page-form-section .container {
    position: relative;
    z-index: 1;
}

.page-form-card {
    background: #fff;
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.08);
    height: 100%;
}

.page-form-card-title {
    color: #004d40;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 22px;
}

.page-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #004d40;
    margin-bottom: 8px;
}

.page-form-label span {
    color: #dc3545;
}

.page-form-input {
    width: 100%;
    border: 1px solid #c5d5d3;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-form-input:focus {
    outline: none;
    border-color: #00796B;
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.12);
}

.page-form-input::placeholder {
    color: #adb5bd;
}

select.page-form-input {
    cursor: pointer;
}

textarea.page-form-input {
    resize: vertical;
    min-height: 100px;
}

.page-form-date {
    position: relative;
    cursor: pointer;
}

.page-form-date .page-form-input {
    padding-right: 44px;
    caret-color: transparent;
}

.page-form-date .field-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #00796B;
    cursor: pointer;
    pointer-events: none;
}

.page-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 13px 28px;
    background: #00796B;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.page-form-submit:hover {
    background: #004d40;
    color: #fff;
}

.page-form-media {
    height: 100%;
    min-height: 480px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.14);
}

.page-form-media img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-form-map {
    margin-top: 32px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 77, 64, 0.1);
}

.page-form-map iframe {
    display: block;
    width: 100%;
}

@media (max-width: 991px) {
    .page-form-section {
        padding: 60px 0;
    }

    .page-form-media,
    .page-form-media img {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .page-form-section {
        padding: 46px 0;
    }

    .page-form-card {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .page-form-media,
    .page-form-media img {
        min-height: 260px;
        border-radius: 18px;
    }

    .page-form-map {
        margin-top: 20px;
        border-radius: 16px;
    }

    .page-form-map iframe {
        height: 280px;
    }
}

/* Overview / Features Section */
.features-section {
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.features-section::before {
    content: "";
    z-index: 0;
    background-image: url('../images/pattern-1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 420px;
    position: absolute;
    top: 0;
    left: 0;
}

.features-section::after {
    content: "";
    z-index: 1;
    width: 100%;
    height: 420px;
    position: absolute;
    top: 0;
    left: 0;
}

.features-section .container {
    z-index: 2;
    position: relative;
}

.features-section .sec-title {
    margin-bottom: 70px;
}

.features-section .sec-title h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    margin: 0;
}

.feature-block {
    margin-bottom: 80px;
    display: flex;
}

.feature-block .inner-box {
    background: #fff;
    transition: all 0.4s;
    position: relative;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.07);
    width: 100%;
}

.feature-block .inner-box::before {
    content: "";
    z-index: 2;
    background: #001547;
    width: 100%;
    height: 4px;
    transition: all 0.4s;
    position: absolute;
    top: 0;
    left: 0;
}

.feature-block .inner-box:hover::before {
    width: 0;
    left: 50%;
}

.feature-block .inner-box:hover .image img {
    transform: scale(1.1);
}

.feature-block .image-box {
    position: relative;
}

.feature-block .image-box .image {
    margin: 0;
    position: relative;
    overflow: hidden;
}

.feature-block .image-box .image::before {
    content: "";
    z-index: 1;
    background: linear-gradient(transparent, #fff);
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.feature-block .image-box .image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: all 0.4s;
}

.feature-block .content-box {
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    min-height: 330px;
    margin-top: -45px;
    padding: 20px 20px 30px;
    position: relative;
    z-index: 2;
}

.feature-block .content-box .title {
    z-index: 1;
    margin: 0 0 10px;
    font-weight: 800;
    font-size: 18px;
    color: #001547;
    position: relative;
}

.feature-block .content-box .text {
    text-align: justify;
    color: #000;
    margin-top: 15px;
    font-size: 14px;
    line-height: 22px;
}

.feature-block .content-box .view-btn {
    color: #fff;
    background: #001547;
    border-radius: 4px;
    margin-top: 15px;
    padding: 8px 18px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.feature-block .content-box .view-btn:hover {
    background: #002a6e;
    color: #fff;
}

@media (max-width: 768px) {
    .features-section {
        padding: 70px 0 40px;
    }

    .features-section::before,
    .features-section::after {
        height: 280px;
    }

    .features-section .sec-title {
        margin-bottom: 40px;
    }

    .features-section .sec-title h2 {
        font-size: 32px;
    }

    .feature-block {
        margin-bottom: 40px;
    }

    .feature-block .content-box {
        min-height: auto;
    }

    .feature-block .image-box .image img {
        height: 180px;
    }
}

/* About Section — stats, venue, FAQ */
.about-section {
    padding: 10px 0 50px;
    position: relative;
    background: #fff;
}

.about-section::before {
    content: "";
    z-index: 0;
    background-image: url('../images/dots1.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 367px;
    height: 730px;
    position: absolute;
    top: -40px;
    right: 0;
    pointer-events: none;
}

.about-section .container {
    z-index: 2;
    position: relative;
}

.stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    margin: 30px auto 60px;
}

.stats-container .stat-card {
    text-align: center;
    flex: 1 1 140px;
}

.stats-container .stat-card h2 {
    font-size: 50px;
    font-weight: 700;
    color: #001547;
    margin: 0 0 6px;
    line-height: 1.1;
}

.stats-container .stat-card p {
    margin: 0;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.about-section .image-column {
    margin-bottom: 50px;
}

.about-section .image-column .image-box {
    position: relative;
}

.about-section .image-column .image-box .icon-shapes {
    z-index: -1;
    background-image: url('../images/shapes.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 247px;
    height: 556px;
    position: absolute;
    top: 15px;
    left: -80px;
}

.about-section .image-column .image-box .image {
    margin: 0;
}

.about-section .image-column .image-box .image img {
    filter: drop-shadow(0 10px 100px rgba(0, 0, 0, 0.1));
    width: 100%;
    display: block;
}

.about-section .content-column {
    margin-bottom: 50px;
}

.about-section .content-column .inner-column {
    position: relative;
}

.about-section .content-column .sec-title {
    margin-bottom: 30px;
}

.about-section .content-column .sec-title h2 {
    margin: 0 0 15px;
    font-size: 38px;
    font-weight: 700;
    color: #0f1a20;
    line-height: 1.25;
}

.about-section .content-column .sec-title h5 {
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 18px;
    color: #0f1a20;
}

.about-section .content-column .sec-title .address {
    font-weight: 500;
    line-height: 26px;
    color: #333;
}

.about-section .content-column .sec-title .text {
    color: #555;
    margin-top: 15px;
    font-size: 15px;
    line-height: 24px;
}

.about-section .content-column .sec-title .reach-title {
    margin-top: 20px;
    margin-bottom: 0;
    color: #0f1a20;
}

.about-section .faq-section {
    margin-top: 20px;
    padding-bottom: 20px;
}

.about-section .faq-section > h2 {
    color: #0f1a20;
    font-size: 32px;
}

.about-section .accordion-item {
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    background: transparent;
}

.about-section .accordion-item:first-child {
    border-top: 0;
}

.about-section .accordion-item:last-child {
    border-bottom: 0;
}

.about-section .accordion-button {
    font-weight: 400;
    font-size: 16px;
    color: #0f1a20;
    background-color: #fff;
    box-shadow: none;
}

.about-section .accordion-button:not(.collapsed) {
    color: #001547;
    background-color: #fff;
    box-shadow: none;
}

.about-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.about-section .accordion-body {
    color: #555;
    font-size: 15px;
    line-height: 24px;
}

.about-section .accordion-body ul {
    margin: 0;
    padding-left: 18px;
}

.about-section .accordion-body li {
    margin-bottom: 6px;
}

@media (max-width: 991px) {
    .about-section::before,
    .about-section .image-column .image-box .icon-shapes {
        display: none;
    }

    .about-section .content-column .sec-title h2 {
        font-size: 30px;
    }

    .stats-container .stat-card h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 20px 0 40px;
    }

    .stats-container {
        gap: 18px;
        margin: 10px auto 40px;
        justify-content: center;
    }

    .stats-container .stat-card {
        flex: 1 1 40%;
    }

    .stats-container .stat-card h2 {
        font-size: 36px;
    }

    .about-section .content-column .sec-title h2 {
        font-size: 26px;
    }

    .about-section .faq-section > h2 {
        font-size: 26px;
    }
}

/* Main Footer — reference style */
.main-footer {
    color: #fff;
    position: relative;
    overflow: hidden;
}

.main-footer .widgets-section {
    background-color: #0f1a20;
    background-image: url('../images/pattern-6.jpg');
    background-position: center;
    background-repeat: repeat;
    background-size: auto;
    padding: 40px 0 20px;
    position: relative;
}

.main-footer .footer-column {
    margin-bottom: 30px;
}

.main-footer .footer-widget .widget-title {
    color: #fff;
    margin-bottom: 14px;
    font-weight: 700;
    font-size: 16px;
}

.main-footer .footer-widget ul.user-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-footer .footer-widget ul.user-links li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.main-footer .footer-widget ul.user-links li a {
    color: #ccc;
    padding-bottom: 3px;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    position: relative;
}

.main-footer .footer-widget ul.user-links li a::after {
    content: "";
    background-color: #fff;
    width: 0;
    height: 2px;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.main-footer .footer-widget ul.user-links li a:hover {
    color: #fff;
}

.main-footer .footer-widget ul.user-links li a:hover::after {
    width: 100%;
}

.main-footer .social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}

.main-footer .social-links a {
    color: #ccc;
    font-size: 18px;
    transition: color 0.3s;
    text-decoration: none;
}

.main-footer .social-links a:hover {
    color: #fff;
}

.main-footer .footer-bottom {
    background-color: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.main-footer .footer-bottom .copyright-text {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.main-footer .footer-bottom .disclaimer {
    color: #bbb;
    margin: 8px auto 0;
    font-size: 13px;
    line-height: 22px;
}

@media (max-width: 768px) {
    .main-footer {
        text-align: center;
    }

    .main-footer .social-links {
        justify-content: center;
    }
}

/* Page Banner — inner pages */
.page-banner {
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    justify-content: center;
    align-items: center;
    height: 380px;
    display: flex;
    position: relative;
}

.page-banner .page-banner-overlay {
    opacity: 0.6;
    z-index: 1;
    background: #131313;
    position: absolute;
    inset: 0;
}

.page-banner .container {
    z-index: 2;
    position: relative;
}

.page-banner .page-banner-content {
    margin: 0 auto;
    padding-top: 40px;
}

.page-banner .page-banner-content h1 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 37px;
    font-weight: 800;
    line-height: 1.2;
}

.page-banner .page-banner-content .subtitle {
    color: #fff;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 500;
}

.page-banner .page-banner-content .subline {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* About Intro Section */
.about-intro-section {
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.about-intro-section::before {
    content: "";
    z-index: 0;
    background-image: url('../images/dots1.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 367px;
    height: 730px;
    position: absolute;
    top: -40px;
    right: 0;
    pointer-events: none;
}

.about-intro-container {
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.about-intro-content {
    text-align: left;
}

.about-intro-title {
    color: #0f1a20;
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 800;
    position: relative;
}

.about-intro-text p {
    color: #444;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 28px;
}

.about-intro-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .page-banner {
        height: 320px;
    }

    .page-banner .page-banner-content h1 {
        font-size: 32px;
        line-height: 40px;
    }

    .about-intro-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .page-banner {
        height: 280px;
        padding: 0 20px;
    }

    .page-banner .page-banner-content {
        padding-top: 60px;
    }

    .page-banner .page-banner-content h1 {
        margin-top: 20px;
        font-size: 20px;
        line-height: 26px;
    }

    .page-banner .page-banner-content .subtitle,
    .page-banner .page-banner-content .subline {
        font-size: 14px;
    }

    .about-intro-section {
        padding: 80px 0 50px;
    }

    .about-intro-section::before {
        display: none;
    }

    .about-intro-title {
        font-size: 26px;
    }

    .about-intro-text p {
        font-size: 14px;
        line-height: 24px;
    }
}

/* Contact Page — reference style */
.contact-section.contact-page {
    background: #f1f1f1;
    padding: 100px 0;
    overflow: visible;
}

.contact-section.contact-page::before {
    display: none;
}

.contact-section.contact-page .contact-row {
    align-items: flex-start;
}

.contact-section.contact-page .small-title {
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
}

.contact-section.contact-page .main-title {
    margin-bottom: 30px;
    font-size: 34px;
    font-weight: 700;
    color: #0f1a20;
}

.contact-section.contact-page .form-box {
    background: #f8f8f8;
    border: 1px solid #d9d9d9;
    padding: 25px;
}

.contact-section.contact-page .contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-section.contact-page .form-group {
    margin: 0;
}

.contact-section.contact-page .form-group input,
.contact-section.contact-page .form-group textarea {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-radius: 2px;
    outline: none;
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: #333;
    font-family: inherit;
}

.contact-section.contact-page .form-group input:focus,
.contact-section.contact-page .form-group textarea:focus {
    border-color: #001547;
}

.contact-section.contact-page .form-group textarea {
    resize: none;
    min-height: 150px;
}

.contact-section.contact-page .form-group.full {
    grid-column: span 2;
}

.contact-section.contact-page .submit-wrapper {
    text-align: right;
}

.contact-section.contact-page .exhibitor-submit-btn {
    color: #fff;
    cursor: pointer;
    background: #4a4a4a;
    border: none;
    width: auto;
    min-width: 140px;
    margin-top: 0;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.contact-section.contact-page .exhibitor-submit-btn:hover {
    background: #001547;
    color: #fff;
}

.contact-section.contact-page .description {
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
    font-size: 15px;
}

.contact-section.contact-page .map-wrapper {
    margin-bottom: 30px;
    overflow: hidden;
}

.contact-section.contact-page .map-wrapper iframe {
    display: block;
    width: 100%;
}

.contact-section.contact-page .venue-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-section.contact-page .venue-icon {
    color: #fff;
    background: #111;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 22px;
    transition: all 0.3s;
    display: flex;
}

.contact-section.contact-page .venue-icon:hover {
    color: #fff;
    background: #001547;
}

.contact-section.contact-page .venue-text h5 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #0f1a20;
}

.contact-section.contact-page .venue-text p {
    margin: 0;
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.contact-section.contact-page .social-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.contact-section.contact-page .social-links a {
    color: #001547;
    font-size: 22px;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-section.contact-page .social-links a:hover {
    color: #0f1a20;
}

@media (max-width: 991px) {
    .contact-section.contact-page {
        padding: 60px 0;
    }

    .contact-section.contact-page .contact-left {
        margin-bottom: 40px;
    }

    .contact-section.contact-page .contact-form {
        grid-template-columns: 1fr;
    }

    .contact-section.contact-page .form-group.full {
        grid-column: span 1;
    }

    .contact-section.contact-page .submit-wrapper {
        text-align: left;
    }

    .contact-section.contact-page .exhibitor-submit-btn {
        width: 100%;
    }

    .contact-section.contact-page .main-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .contact-section.contact-page {
        padding: 40px 0;
    }

    .contact-section.contact-page .main-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .contact-section.contact-page .form-box {
        padding: 18px;
    }
}

/* Registration Page — reference style */
.registration-section {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.registration-section::after {
    content: "";
    z-index: 0;
    background-image: url('../images/dots1.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 367px;
    height: 730px;
    position: absolute;
    top: -40px;
    right: 0;
    pointer-events: none;
}

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

.registration-section .registration-container {
    position: relative;
    padding-right: 15px;
}

.registration-section .registration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.registration-section .registration-title {
    color: #111;
    margin: 0 0 20px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.registration-section .registration-text {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 26px;
}

.registration-section .registration-subtitle {
    margin-top: 30px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #0f1a20;
}

.registration-section .terms-list {
    margin: 15px 0 20px;
    padding: 0;
    list-style: none;
}

.registration-section .terms-list li {
    color: #555;
    margin-bottom: 12px;
    padding-left: 30px;
    font-size: 14px;
    line-height: 22px;
    position: relative;
}

.registration-section .terms-list li::before {
    content: "✓";
    color: #001547;
    font-weight: 700;
    position: absolute;
    top: 0;
    left: 0;
}

.registration-section .exhibitor-form-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 25px;
}

.registration-section .exhibitor-form-header {
    color: #fff;
    text-align: center;
    background: #001547;
    margin: -25px -25px 20px;
    padding: 18px;
}

.registration-section .exhibitor-form-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.registration-section .exhibitor-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.registration-section .exhibitor-form-group {
    display: flex;
    flex-direction: column;
    width: calc(50% - 5px);
}

.registration-section .exhibitor-form-group.full {
    width: 100%;
}

.registration-section .exhibitor-form-group label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.registration-section .exhibitor-form-group input,
.registration-section .exhibitor-form-group select,
.registration-section .exhibitor-form-group textarea {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    background: #fff;
    color: #333;
    border-radius: 0;
    outline: none;
    width: 100%;
    font-family: inherit;
}

.registration-section .exhibitor-form-group input:focus,
.registration-section .exhibitor-form-group select:focus,
.registration-section .exhibitor-form-group textarea:focus {
    border-color: #001547;
}

.registration-section .exhibitor-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.registration-section .exhibitor-submit-btn {
    color: #fff;
    cursor: pointer;
    background: #4a4a4a;
    border: none;
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.registration-section .exhibitor-submit-btn:hover {
    background: #001547;
    color: #fff;
}

@media (max-width: 991px) {
    .registration-section {
        padding: 70px 0 50px;
    }

    .registration-section::after {
        display: none;
    }

    .registration-section .registration-container {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .registration-section .registration-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .registration-section .registration-title {
        font-size: 26px;
    }

    .registration-section .exhibitor-form-group {
        width: 100%;
    }
}

/* Hotel / Housing Page — reference style */
.hotel-section {
    background: #f3f3f3;
    padding: 100px 0;
}

.hotel-section .hotel-details {
    margin-bottom: 40px;
}

.hotel-section .hotel-title {
    color: #0f1a20;
    margin: 0 0 16px;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
}

.hotel-section .hotel-desc {
    color: #555;
    margin: 0 0 1rem;
    font-size: 15px;
    line-height: 26px;
    max-width: 1100px;
}

.hotel-section .hotel-container {
    max-width: 100%;
    margin: 0 0 40px;
}

.hotel-section .hotel-form-card {
    background: #fff;
    border: 1px solid #ddd;
    padding: 30px;
}

.hotel-section .hotel-form-header {
    color: #fff;
    text-align: center;
    background: #001547;
    margin: -30px -30px 20px;
    padding: 18px;
}

.hotel-section .hotel-form-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 18px;
    color: #fff;
}

.hotel-section .hotel-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 16px;
}

.hotel-section .hotel-form-group {
    display: flex;
    flex-direction: column;
    width: calc(50% - 8px);
}

.hotel-section .hotel-form-group.full {
    width: 100%;
}

.hotel-section .hotel-form-group label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
}

.hotel-section .hotel-form-group input,
.hotel-section .hotel-form-group select {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    background: #fff;
    color: #333;
    border-radius: 0;
    outline: none;
    width: 100%;
    font-family: inherit;
}

.hotel-section .hotel-form-group input:focus,
.hotel-section .hotel-form-group select:focus {
    border-color: #001547;
}

.hotel-section .hotel-date-wrap {
    position: relative;
}

.hotel-section .hotel-date-wrap input {
    padding-right: 40px;
}

.hotel-section .hotel-date-wrap .field-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #001547;
    pointer-events: none;
}

.hotel-section .hotel-submit-btn {
    color: #fff;
    cursor: pointer;
    background: #4a4a4a;
    border: none;
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.hotel-section .hotel-submit-btn:hover {
    background: #001547;
    color: #fff;
}

.hotel-section .hotel-categories {
    padding-left: 10px;
}

.hotel-section .hotel-category-title {
    color: #0f1a20;
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 800;
}

.hotel-section .hotel-category-item {
    margin-bottom: 10px;
}

.hotel-section .category-heading {
    margin: 1rem 0;
    font-size: 18px;
    font-weight: 700;
    color: #001547;
}

.hotel-section .category-subtitle {
    color: #555;
    margin: 0 0 12px;
    font-size: 15px;
    line-height: 1.6;
}

.hotel-section .hotel-category-item ul {
    margin: 0 0 16px;
    padding-left: 18px;
}

.hotel-section .hotel-category-item ul li {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 4px;
}

.hotel-section .hotel-category-item hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

@media (max-width: 991px) {
    .hotel-section {
        padding: 70px 0 50px;
    }

    .hotel-section .hotel-title {
        font-size: 30px;
    }

    .hotel-section .hotel-categories {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hotel-section .hotel-title {
        font-size: 26px;
    }

    .hotel-section .hotel-form-group {
        width: 100%;
    }

    .hotel-section .hotel-category-title {
        font-size: 24px;
    }
}

/* Exhibitors Page — reference style */
.exhibitor-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.exhibitor-section::after {
    content: "";
    opacity: 0.5;
    z-index: 0;
    background-image: url('../images/dots1.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 367px;
    height: 730px;
    position: absolute;
    top: -40px;
    right: 0;
    pointer-events: none;
}

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

.exhibitor-section .exhibitor-form-card {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 25px;
    margin-bottom: 30px;
}

.exhibitor-section .exhibitor-form-header {
    color: #fff;
    text-align: center;
    background: #001547;
    margin: -25px -25px 20px;
    padding: 18px;
}

.exhibitor-section .exhibitor-form-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.exhibitor-section .exhibitor-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.exhibitor-section .exhibitor-form-group {
    display: flex;
    flex-direction: column;
    width: calc(50% - 5px);
}

.exhibitor-section .exhibitor-form-group.full {
    width: 100%;
}

.exhibitor-section .exhibitor-form-group label {
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.exhibitor-section .exhibitor-form-group input,
.exhibitor-section .exhibitor-form-group select,
.exhibitor-section .exhibitor-form-group textarea {
    border: 1px solid #ccc;
    padding: 10px;
    font-size: 14px;
    background: #fff;
    color: #333;
    border-radius: 0;
    outline: none;
    width: 100%;
    font-family: inherit;
}

.exhibitor-section .exhibitor-form-group input:focus,
.exhibitor-section .exhibitor-form-group select:focus,
.exhibitor-section .exhibitor-form-group textarea:focus {
    border-color: #001547;
}

.exhibitor-section .exhibitor-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.exhibitor-section .exhibitor-submit-btn {
    color: #fff;
    cursor: pointer;
    background: #4a4a4a;
    border: none;
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: background 0.2s;
}

.exhibitor-section .exhibitor-submit-btn:hover {
    background: #001547;
    color: #fff;
}

.exhibitor-section .exhibitor-content {
    padding-left: 15px;
}

.exhibitor-section .exhibitor-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

.exhibitor-section .exhibitor-content h4 {
    color: #0f1a20;
    margin: 22px 0 10px;
    font-size: 18px;
    font-weight: 700;
}

.exhibitor-section .exhibitor-list {
    margin: 12px 0 18px;
    padding-left: 18px;
}

.exhibitor-section .exhibitor-list li {
    color: #555;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

.exhibitor-section .exhibitor-image img {
    width: 100%;
    margin-top: 20px;
    display: block;
}

@media (max-width: 991px) {
    .exhibitor-section {
        padding: 70px 0 50px;
    }

    .exhibitor-section::after {
        display: none;
    }

    .exhibitor-section .exhibitor-content {
        padding-left: 0;
    }

    .exhibitor-section .exhibitor-form-group {
        width: 100%;
    }
}

/* Privacy Policy Page — reference style */
.privacy-policy-section {
    background: #f1f1f1;
    padding: 60px 0;
}

.privacy-policy-section .privacy-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.privacy-policy-section .privacy-title {
    margin-bottom: 10px;
    font-size: 32px;
    font-weight: 800;
    color: #0f1a20;
}

.privacy-policy-section .privacy-updated {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.privacy-policy-section .privacy-block {
    margin-bottom: 30px;
}

.privacy-policy-section .privacy-heading {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 800;
    color: #0f1a20;
}

.privacy-policy-section .privacy-text {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
}

.privacy-policy-section .privacy-list {
    padding-left: 20px;
    margin: 0 0 10px;
}

.privacy-policy-section .privacy-list li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #555;
    font-size: 15px;
}

.privacy-policy-section .privacy-link {
    color: #2f6ce5;
    text-decoration: none;
}

.privacy-policy-section .privacy-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .privacy-policy-section {
        padding: 40px 0;
    }

    .privacy-policy-section .privacy-title {
        font-size: 26px;
    }

    .privacy-policy-section .privacy-heading {
        font-size: 18px;
    }
}

/* Cookie Policy Page — reference style */
.cookie-policy-section {
    background: #f1f1f1;
    padding: 60px 0;
}

.cookie-policy-section .cookie-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.cookie-policy-section .cookie-title {
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
    color: #0f1a20;
}

.cookie-policy-section .cookie-intro {
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 15px;
}

.cookie-policy-section .cookie-block {
    margin-bottom: 30px;
}

.cookie-policy-section .cookie-heading {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 800;
    color: #0f1a20;
}

.cookie-policy-section .cookie-text {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
}

.cookie-policy-section .cookie-email {
    color: #2f6ce5;
    text-decoration: none;
}

.cookie-policy-section .cookie-email:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-policy-section {
        padding: 40px 0;
    }

    .cookie-policy-section .cookie-title {
        font-size: 26px;
    }

    .cookie-policy-section .cookie-heading {
        font-size: 18px;
    }
}

/* Chargeback Policy Page — reference style */
.chargeback-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.chargeback-section .chargeback-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.chargeback-section .chargeback-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
    color: #0f1a20;
}

.chargeback-section .chargeback-block {
    margin-bottom: 25px;
}

.chargeback-section .chargeback-heading {
    color: #222;
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 800;
}

.chargeback-section .chargeback-text {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
}

@media (max-width: 768px) {
    .chargeback-section {
        padding: 40px 0;
    }

    .chargeback-section .chargeback-title {
        font-size: 26px;
    }

    .chargeback-section .chargeback-heading {
        font-size: 18px;
    }
}

/* Refund Policy Page — reference style */
.refund-section {
    background: #f8f8f8;
    padding: 60px 0;
}

.refund-section .refund-container {
    max-width: 1100px;
    margin: auto;
    padding: 0 15px;
}

.refund-section .refund-title {
    text-align: left;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 800;
    color: #0f1a20;
}

.refund-section .refund-block {
    margin-bottom: 25px;
}

.refund-section .refund-heading {
    color: #222;
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 800;
}

.refund-section .refund-text {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
    font-size: 15px;
}

.refund-section .refund-list {
    color: #555;
    margin: 0 0 10px 20px;
    padding: 0;
}

.refund-section .refund-list li {
    margin-bottom: 6px;
    line-height: 1.7;
    list-style-type: disc;
    font-size: 15px;
}

@media (max-width: 768px) {
    .refund-section {
        padding: 40px 0;
    }

    .refund-section .refund-title {
        font-size: 26px;
    }

    .refund-section .refund-heading {
        font-size: 18px;
    }
}

/* Thank You Page — reference style */
.thankyou-section {
    background: #fff;
}

.thankyou-section .thankyou-container {
    text-align: center;
    padding: 80px 20px 90px;
    max-width: 800px;
    margin: 0 auto;
}

.thankyou-section .thankyou-icon {
    color: #fff;
    background: #4caf50;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    font-size: 50px;
    display: flex;
}

.thankyou-section .thankyou-title {
    color: #444;
    margin: 0 0 10px;
    font-size: 48px;
    font-weight: 800;
}

.thankyou-section .thankyou-text {
    color: #666;
    margin: 0 0 30px;
    font-size: 18px;
    line-height: 1.6;
}

.thankyou-section .thankyou-btn {
    color: #fff;
    cursor: pointer;
    background: #001547;
    border: none;
    border-radius: 10px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.thankyou-section .thankyou-btn:hover {
    background: #002a6e;
    color: #fff;
}

@media (max-width: 768px) {
    .thankyou-section .thankyou-container {
        padding: 50px 20px 60px;
    }

    .thankyou-section .thankyou-icon {
        width: 90px;
        height: 90px;
        font-size: 38px;
    }

    .thankyou-section .thankyou-title {
        font-size: 34px;
    }

    .thankyou-section .thankyou-text {
        font-size: 16px;
    }

    .thankyou-section .thankyou-btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}
