/* =========================================
   1. General Layout & Containers
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.container-custom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* =========================================
   2. Top Bar (FAQ / Socials)
   ========================================= */
.top-bar {
    background-color: #f28524;
    /* Theme Orange */
    color: white;
    padding: 10px 0;
    font-size: 13px;
}

.top-links a,
.social-icons a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
    transition: opacity 0.3s;
}

.top-links a:hover,
.social-icons a:hover {
    opacity: 0.8;
}

.social-icons a {
    font-size: 14px;
}

/* =========================================
   3. Middle Header (Logo & Contact Info)
   ========================================= */
.middle-header {
    background: #ffffff;
    border-bottom: 1px solid #eee;
}

.flex-header {
    padding: 20px 0;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    height: 70px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    margin: 0;
    color: #333333;
    line-height: 1;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.brand-name span {
    color: #f28524;
}

.brand-tagline {
    font-size: 11px;
    color: #999999;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Contact Details (Reference Style) */
.contact-details {
    display: flex;
    gap: 35px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-large {
    font-size: 35px;
}

.icon-cyan {
    color: #00bcd4;
    /* Cyan color from reference image */
}

.contact-item .text strong {
    display: block;
    font-size: 15px;
    color: #333;
    font-weight: 700;
}

.orange-text,
.orange-link {
    color: #ff6600;
    /* Bold orange from reference image */
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

/* Volunteer Button In Header */
.header-btn-join {
    background-color: #ff9800;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    transition: 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-btn-join:hover {
    background-color: #e68a00;
    transform: translateY(-1px);
}

/* =========================================
   4. Navigation Bar & Dropdowns
   ========================================= */
.main-nav {
    background: #fdfdfd;
    border-top: 1px solid #eee;
    border-bottom: 3px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.flex-nav {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    border-right: 1px solid #eee;
}

.nav-list li a {
    display: block;
    padding: 12px 20px;
    color: #666;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-list li.active a,
.nav-list li a:hover {
    background-color: #ff854e;
    color: white;
}

.nav-list li a i {
    font-size: 10px;
    margin-left: 5px;
}

/* Dropdown Menu logic */
.nav-list li.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 250px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
    border-top: 3px solid #f28524;
}

.dropdown-menu li {
    border-right: none;
    width: 100%;
}

.dropdown-menu li a {
    color: #333 !important;
    padding: 12px 20px !important;
    text-transform: none;
    font-weight: 500;
    display: block;
    border-bottom: 1px solid #f0f0f0;
    background: transparent !important;
}

.dropdown-menu li a:hover {
    background-color: #f8f8f8 !important;
    color: #f28524 !important;
}

.nav-list li.dropdown:hover .dropdown-menu {
    display: block;
}

/* Donate Button In Navbar */
.nav-right {
    display: flex;
    align-items: center;
    padding-left: 20px;
}

.btn-donate {
    background-color: #f9a602;
    color: white;
    padding: 7px 18px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-donate:hover {
    background-color: #e09502;
}

/* Slider Heading */
.slider-h2 {
    color: #f0f0f0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
    background: #2d3436;
}

/* Breadcumb Section */
/* Breadcrumb Container with Background Image */
.breadcrumb-area {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    /* Adjust for height */
    color: #fff;
}

/* Page Title Styling */
.page-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Breadcrumb Navigation Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #f28524;
    /* Theme Orange */
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #00bcd4;
    /* Hover Cyan */
}

/* Separator styling (the / between items) */
.breadcrumb-item+.breadcrumb-item::before {
    content: "||";
    color: rgba(255, 255, 255, 0.5);
    padding: 0 10px;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

/* About Section */
/* About Section Styles */
.about-section {
    padding: 20px 0;
    background-color: #ffffff;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.sub-title {
    color: #f28524;
    /* Theme Orange */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 36px;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text h2 .highlight {
    color: #00bcd4;
    /* Reference Cyan */
}

.about-text p {
    color: #666;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Feature Icons */
.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: #f28524;
    font-size: 20px;
}

.feature-item span {
    font-weight: 600;
    color: #444;
}

/* Buttons */
.btn-read-more {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f28524;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-read-more:hover {
    background-color: #f28524;
}

/* Image Styling */
.img-responsive {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #00bcd4;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.experience-badge .years {
    display: block;
    font-size: 30px;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}


/* Footer */
/* Custom Footer Styling */
.footer-links li a:hover {
    color: #f28524 !important;
    /* Theme Orange */
    padding-left: 8px;
    transition: all 0.3s ease;
}

.text-info {
    color: #00bcd4 !important;
    /* Reference Cyan icon color */
}

.border-warning {
    border-color: #f28524 !important;
    /* Theme Orange underline */
}

.border-info {
    border-color: #00bcd4 !important;
    /* Cyan underline */
}

.btn-outline-light:hover {
    background-color: #f28524;
    border-color: #f28524;
}

/* Founder */
/* Custom Styles for extra design */
.ls-2 {
    letter-spacing: 2px;
}

.ls-1 {
    letter-spacing: 1px;
}

.icon-box-cyan {
    width: 70px;
    height: 70px;
    background: #e0f7fa;
    color: #00bcd4;
    /* Reference Cyan */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 30px;
}

.founder-card img {
    transition: transform 0.5s ease;
}

.founder-card:hover img {
    transform: scale(1.05);
}

.btn-warning {
    background-color: #f28524 !important;
    /* Theme Orange */
    border: none;
}

/* Our Volunteer */

.team-member-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.member-thumb img {
    transition: transform 0.5s ease;
    filter: grayscale(20%);
}

.team-member-card:hover .member-thumb img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* Action Trigger (+) button style from image */
.action-trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #0d2a26;
    /* Dark green from image */
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: all 0.3s ease;
}

.team-member-card:hover .action-trigger {
    background: #f28524;
    /* Theme Orange */
    transform: rotate(45deg);
    /* Turns + into x like the image */
}

/* Social Overlay Style from Arian Drobloas image */
.social-overlay {
    position: absolute;
    top: 20px;
    right: -50px;
    /* Hidden initially */
    transition: right 0.4s ease;
    z-index: 5;
}

.team-member-card:hover .social-overlay {
    right: 20px;
    /* Slides in on hover */
}

.social-btn {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #00bcd4;
    /* Theme Cyan */
    color: white;
}

.ls-2 {
    letter-spacing: 2px;
}


/* Our Team */
/* Modern V2 Design Styles */
.member-box-v2 {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.member-box-v2 .img-container {
    position: relative;
    overflow: hidden;
}

.member-box-v2 .img-container img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.6s ease;
}


.info-overlay {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(13, 42, 38, 0.9), transparent);
    padding: 30px;
    transition: bottom 0.4s ease;
    display: flex;
    justify-content: center;
}

.member-box-v2:hover .info-overlay {
    bottom: 0;
}

.member-box-v2:hover img {
    transform: scale(1.1);
}

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

.social-slide a {
    width: 40px;
    height: 40px;
    background: #f28524;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s;
}

.social-slide a:hover {
    background: #00bcd4;
}

/* Text Content */
.designation {
    color: #00bcd4;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Photo */
.gallery-item-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-item-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.gallery-item-wrap:hover img {
    filter: brightness(70%);
}


.plus-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-decoration: none;
}

.gallery-item-wrap:hover .plus-trigger {
    opacity: 1;
}

.plus-circle {
    width: 60px;
    height: 60px;
    background: rgba(13, 42, 38, 0.9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.4s ease;
}

.plus-circle.yellow-bg {
    background: rgba(242, 133, 36, 0.9);
}

.gallery-item-wrap:hover .plus-circle {
    transform: rotate(90deg) scale(1.1);
}


.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.ls-2 {
    letter-spacing: 2px;
}


/* Join As A volunteer */
.volunteer-card {
    background: #ffffff;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.custom-input {
    border: 2px solid #f8f9fa;
    border-radius: 12px;
    padding: 12px 20px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.custom-input:focus {
    border-color: #00bcd4;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.1);
    outline: none;
}

.custom-check .form-check-input:checked {
    background-color: #00bcd4;
    border-color: #00bcd4;
}

.ls-2 {
    letter-spacing: 2px;
}

.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.btn-warning {
    background-color: #f28524 !important;
    border: none;
}

/* Contact */
/* Color Branding */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info-subtle {
    background-color: rgba(0, 188, 212, 0.1) !important;
}

.bg-warning-subtle {
    background-color: rgba(242, 133, 36, 0.1) !important;
}

/* Contact Cards */
.contact-box-v4 {
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.contact-box-v4:hover {
    transform: translateY(-5px);
    border-color: #00bcd4;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* Icon Wrap */
.icon-wrap-v4 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Minimalist Inputs */
.minimal-input {
    border: 1px solid #eee !important;
    background-color: #fafafa !important;
    padding: 12px 20px !important;
    border-radius: 12px !important;
    font-size: 14px;
}

.minimal-input:focus {
    background-color: #fff !important;
    border-color: #00bcd4 !important;
    box-shadow: 0 0 15px rgba(0, 188, 212, 0.1) !important;
}

/* Typography */
.ls-3 {
    letter-spacing: 3px;
}

.rounded-5 {
    border-radius: 2rem !important;
}

.btn-warning {
    background-color: #f28524 !important;
    border: none;
}


/* Event PAge */

/* Color Branding */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info-subtle {
    background-color: rgba(0, 188, 212, 0.1) !important;
}

.bg-warning-subtle {
    background-color: rgba(242, 133, 36, 0.1) !important;
}

/* Notice Card Styling */
.notice-card-premium {
    background-color: #fff9f4;
    border-color: #f28524 !important;
}

/* Modern Event Card */
.event-card-modern {
    background: #fff;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.event-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.event-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.event-img-container img {
    height: 100%;
    object-fit: cover;
}

/* Floating Date Badge */
.event-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #f28524;
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    line-height: 1;
    min-width: 60px;
}

.event-date span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    margin-top: 5px;
}

/* Badge Styling */
.badge {
    padding: 6px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* End Event page */


/* Who We Are  */
/* Custom Spacing & Typography */
.ls-3 {
    letter-spacing: 3px;
}

/* Stats Card Styling */
.stats-card {
    background: #fff;
    transition: transform 0.3s ease;
    border-bottom: 4px solid #00bcd4;
}

.stats-card:hover {
    transform: translateY(-10px);
}

/* Collaboration Items */
.collab-item {
    font-size: 0.9rem;
    min-height: 80px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.collab-item:hover {
    color: #f28524;
    border-color: #f28524;
}

/* Destination Cards */
.dest-card {
    transition: background 0.3s ease, color 0.3s ease;
}

.dest-card:hover {
    background: #00bcd4;
    color: white !important;
}

.dest-card:hover .text-info,
.dest-card:hover .text-muted {
    color: white !important;
}

/* Colors */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info {
    background-color: #00bcd4 !important;
}

.bg-warning {
    background-color: #f28524 !important;
}


/* Reusable Corporate Heading */
.crtd-section-header {
    text-align: center;
}

.header-divider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.header-line {
    height: 3px;
    width: 100px;
    /* Longer lines for balance without the icon */
    background-color: #f28524;
}

/* Logo Card Styles */
.logo-collab-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.logo-collab-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Ensures logos stay uniform */
.logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.x-small {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Card Hover Effects */
.collab-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f0f0f0;
}

.collab-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent;
}

/* Icon Box Styling */
.icon-box-md {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.bg-info-subtle {
    background-color: rgba(0, 188, 212, 0.12);
}

.bg-warning-subtle {
    background-color: rgba(242, 133, 36, 0.12);
}

/* Typography */
.ls-3 {
    letter-spacing: 3px;
}

.opacity-05 {
    opacity: 0.05;
}

/* Destination Cards Hover */
.dest-card-v5 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.dest-card-v5:hover {
    transform: scale(1.05);
    background: #f8fdfd;
    border-color: #00bcd4 !important;
    box-shadow: 0 20px 30px rgba(0, 188, 212, 0.1) !important;
}

/* Icon Circles */
.icon-circle-sm {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Typography Extensions */
.ls-3 {
    letter-spacing: 3px;
}

.leading-relaxed {
    line-height: 1.8;
}

.italic-font {
    font-style: italic;
    opacity: 0.8;
}

/* Colors */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info {
    background-color: #00bcd4 !important;
}

.bg-warning {
    background-color: #f28524 !important;
}

/* Who We Are */

/* Layout Spacing */
/* Video Card Polish */
.video-card-small {
    transition: all 0.3s ease;
}

.video-card-small:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Utilities */
.x-small {
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Corporate Heading (Shared Style) */
.crtd-section-header h2 {
    font-weight: 800;
    letter-spacing: 2px;
}

.header-divider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.header-line {
    height: 3px;
    width: 80px;
    background-color: #f28524;
}

/* Colors */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.border-info {
    border-color: #00bcd4 !important;
}

.border-warning {
    border-color: #f28524 !important;
}

/* Home Page 3 Sections */
/* Corporate Heading Lines */
.crtd-section-header {
    text-align: center;
}

.header-divider-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.header-line {
    height: 3px;
    width: 100px;
    background-color: #f28524;
    /* Theme Orange */
}

/* Visual Components */
.rounded-5 {
    border-radius: 2rem !important;
}

.leading-relaxed {
    line-height: 1.8;
}

.ls-2 {
    letter-spacing: 2px;
}

/* Background Shape */
.shape-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

/* Colors */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info-subtle {
    background-color: rgba(0, 188, 212, 0.1) !important;
}

/* Container Card Styles */
.modern-impact-card {
    background: #ffffff;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.modern-impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08) !important;
}

/* Accent Line Styling */
.accent-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 4px;
    height: 30px;
    border-radius: 0 4px 4px 0;
}

/* Background Card Number */
.card-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Extremely subtle number */
    user-select: none;
}

/* Global Utilities */
.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info {
    background-color: #00bcd4 !important;
}

.bg-warning {
    background-color: #f28524 !important;
}

.bg-dark {
    background-color: #121212 !important;
}

/* Consistency with your Header Line style */
.header-line {
    height: 3px;
    width: 100px;
    background-color: #f28524;
}

/* BLog Page */
.blog-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.blog-img-wrap {
    height: 220px;
    overflow: hidden;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    border-radius: 50px;
    letter-spacing: 1px;
}

/* Pagination Styling */
.page-link {
    padding: 10px 20px;
    font-weight: 600;
}

/* Global Utilities */
.ls-3 {
    letter-spacing: 3px;
}

.x-small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text-info {
    color: #00bcd4 !important;
}

.text-warning {
    color: #f28524 !important;
}

.bg-info {
    background-color: #00bcd4 !important;
}

.bg-warning {
    background-color: #f28524 !important;
}

/* Application Page Styling */
.application-section {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.form-container {
    background: #ffffff;
    border-radius: 15px;
    max-width: 850px;
    width: 100%;
    /* The teal border at the top from image_946271.png */
    border-top: 8px solid #00acc1;
}

.form-title {
    font-weight: 700;
    color: #333;
    font-size: 1.8rem;
}

.form-label-custom {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

.form-input-custom {
    width: 100%;
    padding: 12px 15px;
    background-color: #f1f3f5;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    color: #495057;
    transition: all 0.3s ease;
}

.form-input-custom:focus {
    outline: none;
    background-color: #ffffff;
    border-color: #00acc1;
    box-shadow: 0 0 0 0.2rem rgba(0, 172, 193, 0.1);
}

/* The Orange Button from image_946271.png */
.btn-send-application {
    background-color: #f58220;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
    transition: all 0.3s ease;
}

.btn-send-application:hover {
    background-color: #e47412;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}


/* ============================
Home Page Second Section
=============================== */
/* Section Background */
.theme-tours-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1606744666360-2f22c8b4a45b?q=80&w=764&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-attachment: fixed;
    color: white;
}

.theme-title {
    color: #ffc107;
    /* Golden yellow from image */
    letter-spacing: 1px;
}

/* Card Styling */
.theme-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: none;
}

.theme-card:hover {
    transform: translateY(-10px);
}

.theme-img-wrapper {
    height: 350px;
    overflow: hidden;
}

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

/* The Signature Blue Label */
.theme-label-blue {
    background-color: #00bcd4;
    /* Accurate blue from your reference */
    padding: 15px 10px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-label-blue h6 {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
}

/* Nav Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #ffc107;
    font-size: 2rem;
    z-index: 10;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.nav-arrow:hover {
    opacity: 1;
}

.left-arrow {
    left: -40px;
}

.right-arrow {
    right: -40px;
}

/* =======================
Footer Section 
============================*/
.cta-custom-trip {
    position: relative;
    /* Use a high-quality map image for the background */
    background:
        url('https://images.unsplash.com/photo-1606744666360-2f22c8b4a45b?q=80&w=764&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax effect */
    min-height: 400px;
    display: flex;
    align-items: center;
}

.tracking-wider {
    letter-spacing: 2px;
}

.btn-customize-tour {
    background-color: #009640;
    /* Exact green from the reference */
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-customize-tour:hover {
    background-color: #007a33;
    color: white;
    transform: scale(1.05);
}

.cta-custom-trip h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* ==============================
End Footer
================================= */



/* Brand Color Definitions */
:root {
    --crtd-orange: #f58220; /* Primary Action Color */
    --crtd-teal: #00acc1;   /* Secondary Accent Color */
    --crtd-bg-dark: #1a1a1a; /* Background from image_923051.jpg */
}

.crtd-welcome-section {
    background-color: var(--crtd-bg-white);
    color: white;
}

.text-orange { color: #00bcd4; }
.text-teal { color: var(--crtd-teal); }

/* The Framed Slider Effect */
/* .crtd-image-frame {
    border: 10px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
} */

.slider-view {
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
}

/* Tactical Branding Accents */
.vertical-divider-orange {
    position: absolute;
    left: 0;
    top: 5%;
    bottom: 5%;
    width: 4px;
    background-color: var(--crtd-orange);
}

.btn-crtd-orange {
    background-color: var(--crtd-orange);
    color: white;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-crtd-orange:hover {
    background-color: #e67610;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 130, 32, 0.4);
}

.lead-p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ================================
End
===================================== */


/* -------------------------------------
Blog Details
----------------------------------------------- */
.blog-detail-section {
    min-height: 100vh;
}

.detail-img-wrap {
    max-height: 500px;
}

.detail-img-wrap img {
    height: 100%;
    object-fit: cover;
}

.blog-content-body {
    font-size: 1.1rem;
    white-space: pre-wrap; /* Preserves line breaks from your DB content */
}

.text-teal { color: #00acc1; }
.bg-teal-subtle { background-color: rgba(0, 172, 193, 0.1); }
.border-orange { border-color: #f58220 !important; }

.btn-outline-teal {
    color: #00acc1;
    border-color: #00acc1;
}

.btn-outline-teal:hover {
    background-color: #00acc1;
    color: white;
}



/* FAQ Branded Styling */
.text-orange { color: #f58220 !important; }
.text-teal { color: #00acc1 !important; }

.light-hud-label {
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #00acc1;
    letter-spacing: 4px;
    font-weight: 800;
}

.header-line {
    width: 60px;
    height: 3px;
    background-color: #f58220;
}

/* Accordion Customization */
.custom-faq .accordion-button {
    background-color: #ffffff;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #f58220;
    background-color: rgba(245, 130, 32, 0.05);
    box-shadow: none;
}

.custom-faq .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 172, 193, 0.2);
}

.custom-faq .accordion-button::after {
    background-size: 1rem;
    transition: transform 0.3s ease;
}

/* Button Styling */
.btn-crtd-orange {
    background-color: #f58220;
    color: white;
    border: none;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.btn-crtd-orange:hover {
    background-color: #e67610;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 130, 32, 0.3);
}


/* Slider Container Logic */
.tour-scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
}

.tour-scroll-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tour-card-wrapper {
    flex: 0 0 calc(25% - 15px); /* 4 cards on desktop */
    min-width: 280px; /* Ensures cards don't crush on small screens */
}

@media (max-width: 992px) {
    .tour-card-wrapper { flex: 0 0 calc(50% - 10px); } /* 2 cards on tablet */
}

@media (max-width: 576px) {
    .tour-card-wrapper { flex: 0 0 85%; } /* 1.5 cards on mobile to show hint of next */
}

/* Branded Navigation Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    background: #f58220; /* CRTD Orange */
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.nav-arrow:hover {
    background: #00acc1; /* CRTD Teal */
    transform: translateY(-50%) scale(1.1);
}

.left-arrow { left: 0; }
.right-arrow { right: 0; }

/* Card Styling Accents */
.theme-label-blue {
    background-color: #00acc1; /* CRTD Teal Label */
    border-radius: 0 0 10px 10px;
}

.theme-img-wrapper {
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 200px;
}

.theme-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-card:hover .theme-img {
    transform: scale(1.1);
}

/* Editorial Design System */
.text-teal { color: #00acc1 !important; }
.letter-spacing-3 { letter-spacing: 3px; }
.letter-spacing-1 { letter-spacing: 1.5px; }

.editorial-divider {
    width: 40px;
    height: 2px;
    background-color: #f58220; /* Subtle orange indicator */
}

/* Typography Custom Tracking */
.policy-editorial-body .font-serif {
    font-family: 'Georgia', 'Times New Roman', serif;
}

.policy-editorial-body p {
    font-size: 0.95rem;
}

.policy-editorial-body ul li {
    list-style-type: square;
}

.policy-editorial-body hr {
    border-top: 1px solid #7f8c8d;
}

/* Subtle Link Interaction */
.policy-editorial-body a:hover {
    color: #f58220 !important;
    text-decoration: underline !important;
}


.text-orange { color: #f58220 !important; }
.tracking-wider { letter-spacing: 1.5px; }
.x-small { font-size: 0.75rem; }
.font-monospace { font-family: 'Courier New', Courier, monospace; }
.font-sans { font-family: 'Poppins', sans-serif; }
.bg-warning-subtle { background-color: #fffdf6 !important; }

@media (max-width: 576px) {
    .border-end {
        border-end: none !important;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 1.5rem;
    }
}



/* Core Structural Layout Configurations */
.travel-hero-section {
    min-height: 600px;
    font-family: 'Poppins', sans-serif;
}

.text-purple-accent {
    color: #f58220 !important; /* Exact purple hue match for indicator tag */
}

.text-navy-dark {
    color: #0b132a !important; /* Rich premium dark font shade assignment */
}

.fw-extrabold {
    font-weight: 800 !important;
}

/* Floating Image Layout Anchoring */
.floating-image-wrapper {
    position: absolute;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.floating-image-wrapper img {
    border-radius: 20px !important; /* Perfect visual corner matching */
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Precise Image Dimensions and Coordinates from Screenshot */
.pos-top-left {
    left: 4%;
    top: 15%;
    width: 250px;
    height: 165px;
}

.pos-bottom-left {
    left: 14%;
    bottom: 5%;
    width: 150px;
    height: 120px;
}

.pos-top-right {
    right: 4%;
    top: 15%;
    width: 250px;
    height: 165px;
}

.pos-bottom-right {
    right: 14%;
    bottom: 5%;
    width: 150px;
    height: 120px;
}

/* Brand Logo Layout Parameters */
.hero-brand-logo {
    max-height: 55px;
    object-fit: contain;
}

/* Interactive CTA Action Elements Customization */
.btn-purple-cta {
    background-color: #f1ecf9; /* Soft target tone overlay matching context */
    color: #f58220;
    border: none;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
}

.btn-purple-cta:hover {
    background-color: #f58220;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(111, 66, 193, 0.2) !important;
}

/* Dynamic Interactive Hover Micro-Effects */
.travel-hero-section:hover .floating-image-wrapper {
    transform: scale(1.02);
}

/* Responsive Fluid Scalability Breakpoints */
@media (max-width: 1200px) {
    .pos-top-left, .pos-top-right { width: 200px; height: 135px; }
    .pos-bottom-left, .pos-bottom-right { width: 120px; height: 95px; }
}

@media (max-width: 992px) {
    .content-layer {
        z-index: 10;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 24px;
    }
}


/* Import script typography layout family matching image context exactly */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Poppins:wght@400;600;700&display=swap');

/* Main Container Radius Constraints */
.promo-banner-card {
    border-radius: 30px !important; /* Matches smooth wide capsule container edge */
    min-height: 240px;
}

/* Left Callout Block Box */
.promo-left-panel {
    background-color: #05164d; /* Accurate deep midnight navy background */
    flex: 0 0 35%; /* Fixed ratio footprint */
    min-width: 320px;
    overflow: hidden;
}

.banner-discount-heading {
    font-size: 1.65rem;
    letter-spacing: -0.5px;
    font-family: 'Poppins', sans-serif;
}

/* Compass Watermark Vector Silhouette Position */
.compass-watermark {
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 9rem;
    color: rgba(255, 255, 255, 0.03); /* Faint structural overlay accent */
    transform: rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

/* Target Action Button Design */
.btn-promo-cta {
    background-color: #5900e3; /* High-vibrancy purple accent selection */
    color: #ffffff !important;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    border: none;
}

.btn-promo-cta:hover {
    background-color: #4500b0;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(89, 0, 227, 0.3);
}

/* Right Panoramic Image Window */
.promo-right-panel {
    background-size: cover;
    background-position: center 65%; /* Adjusted vertical alignment to balance plane wing view */
    min-height: 220px;
}

/* Cursive/Handwritten Script Layer */
.promo-script-text {
    font-family: 'Caveat', cursive;
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.2;
}

.drop-shadow-sm {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Fluid Scalability Adjustments for Smaller Viewports */
@media (max-width: 768px) {
    .promo-left-panel {
        flex: 1 1 auto;
        width: 100%;
        padding: 3rem 1.5rem !important;
    }
    .promo-script-text {
        font-size: 2.5rem;
    }
}

