/* Root Variables */
:root {
    --primary-blue: #193fa3;
    --dark-blue: #001F5C;
    --light-blue: #4A9EFF;
    --bright-blue: #00A3FF;
    --dark-navy: #000B36;
    --text-light: #E5E9F2;
    --text-gray: #8B93A7;
    --badge-blue: #007BFF;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
    color: #333;
}

.lighblue {
    color: #ffffff;
    background-color: #7ABAFF !important;
    margin-top: 2rem !important;
}

/* Navigation */
.navbar {
    background: transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    overflow: hidden;
    width: 100%;
}

.navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 82, 204, 0.95) 0%, rgba(0, 31, 92, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 158, 255, 0.3);
    transform: translateY(0);
}


.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(0, 163, 255, 0.1) 100%);
    border-radius: inherit;
    z-index: -1;
    animation: navbarGlow 3s ease-in-out infinite;
}

@keyframes navbarGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.navbar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.navbar .row {
    margin: 0;
    width: 100%;
}

.navbar-brand {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: white !important;
    margin: 0;
}

.navbar-logo {
    width: 156px;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0px rgba(255, 255, 255, 0));
}

.navbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.navbar.scrolled .navbar-logo {
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.navbar-toggler {
    display: none;
}

.navbar-collapse {
    display: block !important;
}

.navbar-nav {
    align-items: center;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-link {
    font-family: 'Bai Jamjuree', sans-serif;
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 0 0.25rem;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 0.5rem 0.5rem;
    white-space: nowrap;
    position: relative;
    border-radius: 8px;
    font-size: 0.9rem;
}

.nav-link:hover {
    color: white !important;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--light-blue), var(--bright-blue));
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.navbar.scrolled .nav-link {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Section */
.hero-section {
    background-color: var(--dark-navy);
    background-image: url("images/HeroSectionGradient.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: 100% 1050px; /* Image shows only in first 1050px */
    min-height: 1800px; /* Ensure enough height to see the transition */
    padding: 150px 0 0px;
    position: relative;
    overflow: hidden;
    color: white;
    z-index: 1;
    margin: 0;
    top: 0;
    margin-bottom: 3rem;
}

.partner-section 



.background-svg {
    width: 100%;
    height: 1070px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center center;
    will-change: transform;
    max-width: none;
    max-height: none;
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
    padding-left: 1rem;
    padding-right: 1rem;
}

.hero-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.fb-icon-box {
 width: 75%;
}


.shape {
    position: absolute;
    background: rgba(74, 158, 255, 0.2);
    border-radius: 50%;
}

.shape-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: 10%;
    background: rgba(0, 163, 255, 0.15);
}

.hero-title {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 77px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-align: center;
}

.title-line-1 {
    display: block;
}

.hero-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding-left: 5rem;
    padding-right: 5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #BACAF2;
}

.hero-buttons {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-outline-light {
    border: 1px solid white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 14px;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-light-blue {
    background: var(--light-blue);
    color: white;
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-family: 'Bai Jamjuree', sans-serif;
       font-size: 14px;
}

.btn-light-blue:hover {
    background: var(--bright-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 158, 255, 0.3);
}

.dashboard-badge {
    position: absolute;
    top: -26px;
    left: -90px;
    border-radius: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-text {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 600;
    color: white;
    margin: 0;
}

span.section-badge.light {
    background-color: #ffffff;
    color: #00A3FF;
}

.badge-arrow {
    width: 60px;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Dashboard Preview */
.dashboard-preview {
    position: relative;
    padding: 2rem;
    margin-top: 2rem;
}

.dashboard-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 0rem !important;
}


/* Floating Stats */
.floating-stat {
    position: absolute;
    background: rgba(74, 158, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: white;
    padding: 0.4rem;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
    animation: float 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 220px;
    gap: 1rem;
}

.floating-stat .floating-stat-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: #57A8FF;
    padding: 1rem;
    border-radius: 20px;
}

.floating-stat h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.floating-stat h3 .plus-icon,
.floating-stat h3 .percent-icon {
    font-size: 2rem;
    opacity: 0.9;
    font-weight: 700;
    color: rgba(255, 255, 255);
    margin-right: 0.1rem;
}

.floating-stat p {
    font-size: 0.85rem;
    margin: 0;
    opacity: 0.95;
    text-align: left;
    flex: 1;
}

.accordion-container {
    background-color: #F8F8F8;
    padding: 3rem 3rem;
    border-radius: 20px;
}

.section-title-faq{
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    width: 100%;
}

.stat-1 {
    top: 20%;
    left: -8%;
    width: 26%;
    animation-delay: 0s;
}

.stat-2 {
    bottom: 16%;
    left: -10%;
    width: 27%;
    animation-delay: 1s;
}

.stat-3 {
    top: 20%;
    right: -17%;
    width: 30%;
    animation-delay: 0.5s;
}

.stat-4 {
    bottom: 15%;
    right: -8%;
    width: 22%;
    animation-delay: 1.5s;
}

.mt-4 {
    margin-top: 1.7rem !important;
}

h4.text-white.mt-4 {
    width: 100%;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Floating Stats Container */
.floating-stats-container {
    display: grid;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: var(--badge-blue);
    color: white;
    padding: 0.5rem 1.7rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.global-card .section-badge{
    font-weight: 400;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section-title {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    width: 100%;
}

.section-title br {
    display: block;
    margin: 0.5rem 0;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-weight: 600;
}

.section-description {
    color: #5C5C5C;
    font-weight: 400;
}

.feature-image {
    position: relative;
    height: 400px;
}

.floating-devices {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.device-box {
    max-width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* Partner Section */
.partner-section {
    background: white;
    color: black;
}

/* Booking Section */
.booking-section {
    background: white;
    color: black;
}

.partner-btn {
    background: var(--light-blue);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Bai Jamjuree', sans-serif;
}

.partner-btn:hover {
    background: var(--bright-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 82, 204, 0.3);
}

.section-title-white {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    color: rgb(255, 255, 255);
}

.section-description-white {
    color: rgb(255, 255, 255);
    margin-top: 20px;
    font-weight: 300;
}

.section-subtitle-white {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    color: black;
    font-weight: 500;
}

.db-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup-image img,
.dashboard-semi-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

.feature-box {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem;
  
}

.fb-1 , .fb-2 , .fb-3 {
    border-top: 0.5px solid #aeaeae89 !important;
}



.feature-box:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.8rem;
    color: white;
}

.feature-svg {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

h5.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #101010;
    margin: 0;
    line-height: 1.4;
}

.green-icon {
    background: linear-gradient(135deg, #C8F4E3 0%, #A8E6CF 100%);
}

.purple-icon {
    background: linear-gradient(135deg, #E0D4F7 0%, #C8B6E2 100%);
}

.yellow-icon {
    background: linear-gradient(135deg, #FFF0D4 0%, #FFE4B5 100%);
}

.orange-icon {
    background: linear-gradient(135deg, #FFCCD5 0%, #FFB3C1 100%);
}

/* Dashboard Preview 2 & Booking Preview - Unified Styling */
.dashboard-preview-2,
.booking-preview {
    position: relative;
    padding: 0rem;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup-image,
.booking-mockup-container {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: block;
}

.booking-mockup-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}

/* Global Section */
.global-section {
    padding: 80px 0;
}

.global-card {
    background: #0070E8;
    border-radius: 85px;
    padding: 5rem 5rem;
    position: relative;
    overflow: hidden;
}

.world-map {
    position: relative;
}

.world-map img {
    opacity: 0.3;
    mix-blend-mode: overlay;
}

.map-marker {
    position: absolute;
    background: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.marker-flag {
    font-size: 1.5rem;
}

.marker-info {
    font-weight: 600;
    color: #333;
}

.marker-1 {
    top: 30%;
    left: 10%;
    animation-delay: 0s;
}

.marker-2 {
    top: 40%;
    right: 15%;
    animation-delay: 0.7s;
}

.marker-3 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.4s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* FAQ Section */
.faq-section {
    background: white;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    
}

.accordion-button {
    background-color: #F8F8F8;
    color: #000000;
    font-weight: 400;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid #33333327;
}

.accordion-button:not(.collapsed) {
    background: #d7d7d782;
    color: rgba(32, 32, 32, 0.574);
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.25rem 1.5rem;
    color: #555;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: #004187;
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    
}



.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: left;
}

.footer-logo {
    width: 300px;
    height: auto;
}

.footer-title {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 2rem;
    text-align: left;
    font-weight: 600;
}


.footer-contact {
    padding: 2rem;
}

.footer-contact h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-contact a:hover {
    color: var(--bright-blue);
}

.footer-divider {
    border-color: rgb(255, 255, 255);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
    opacity: 0.8;
}




/* Off-Canvas Mobile Menu Styles */
.off-canvas-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.off-canvas-menu.active {
    visibility: visible;
    opacity: 1;
}

.off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.off-canvas-menu.active .off-canvas-overlay {
    opacity: 1;
}

.off-canvas-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.off-canvas-menu.active .off-canvas-content {
    transform: translateX(0);
}

.off-canvas-header {
    padding: 2rem 1.5rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.off-canvas-logo {
    width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
}

.off-canvas-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.off-canvas-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.off-canvas-nav {
    flex: 1;
    padding: 2rem 0;
}

.off-canvas-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.off-canvas-nav-item {
    margin: 0;
}

.off-canvas-nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.off-canvas-nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--light-blue);
    padding-left: 2rem;
}

.off-canvas-nav-link i {
    margin-left: 0.5rem;
    font-size: 0.9rem;
}

.off-canvas-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.off-canvas-buttons .btn {
    width: 100%;
    text-align: center;
    font-family: 'Bai Jamjuree', sans-serif;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.off-canvas-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.off-canvas-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

.off-canvas-buttons .btn-light-blue {
    background: var(--light-blue);
    color: white;
    border: none;
}

.off-canvas-buttons .btn-light-blue:hover {
    background: var(--bright-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
}
.contact-us-btn{
    text-decoration: none;
}
.contact-us-btn:hover{
    background-color: #ffffff !important;
    color: #00A3FF;
}
/* Custom Hamburger Menu Button */
.custom-hamburger {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 0.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.custom-hamburger:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.custom-hamburger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: white;
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.custom-hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.custom-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.custom-hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Toggle Button (fallback) */
.navbar-toggler {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    padding: 0.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

.navbar-toggler-icon {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -6px;
}

.navbar-toggler-icon::after {
    top: 6px;
}

.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 0;
}

.navbar-toggler.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Hide FAQ dropdown icon */
.nav-link i.bi-chevron-down {
    display: none;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

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

.animate-on-scroll {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   RESPONSIVE STYLES - DESCENDING ORDER
   ============================================ */

/* Desktop and Laptop - Full Width SVG */
@media (min-width: 1024px) {
    .background-svg {
        width: 100vw;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Extra Large Desktop - 1200px and below */
@media (max-width: 1200px) {
    .hero-description {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}

/* Large Desktop - 992px and below */
@media (max-width: 991px) {
    .custom-hamburger {
        display: flex;
        margin: 0;
    }
    
    .navbar-collapse {
        display: none !important;
    }
    
    .navbar-nav {
        display: none;
    }
    
    .navbar .container {
        padding: 0 1rem;
    }
    
    .navbar .row {
        flex-direction: row;
        align-items: center;
    }
    
    .navbar .col-6 {
        width: 50%;
    }
    
    .navbar .col-lg-4 {
        width: 50%;
    }
    
    .navbar .col-6:first-child {
        text-align: left;
    }
    
    .navbar .col-6:last-child {
        text-align: right;
    }
    
    .container {
        text-align: center;
    }
    
    .hero-content {
        text-align: justify;
    }

    h4.text-white.mt-4 {
    width: 100%;
    padding-bottom: 20px;
}

.section-title-faq {
    font-family: 'Bai Jamjuree', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #1a1a1a;
    width: 100%;
}
    
    .section-title,
    .section-title-white {
        text-align: center;
        width: 100%;
    }
    
    .section-description,
    .section-description-white {
        text-align: justify;
     
    }
    
    .hero-description {
        text-align: justify;
    }
    
    .feature-text {
        text-align: left;
        color: #101010;
    }
    


        .col-lg-6 {
        align-items: center;
        text-align: center;
    }
    
    .accordion-body {
        text-align: justify;
    }
    
    .footer-contact p {
        text-align: center;
    }

    .hero-section {
        background-color: var(--dark-navy);
        background-image: url("images/HeroSectionGradient.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 600px; /* Image shows only in first 1050px */
        min-height: 1900px; /* Ensure enough height to see the transition */
        padding: 150px 0 0px;
        position: relative;
        overflow: hidden;
        color: white;
        z-index: 1;
        margin: 0;
        top: 0;
        margin-bottom: 3rem;
    }
    

    
    .background-svg {
        min-height: 1000px;
        opacity: 0.5;
        mix-blend-mode: overlay;
    }
    
    .hero-title {
        font-size: 50px;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 16px;
        padding-left: 2rem;
        padding-right: 2rem;
        margin-bottom: 2rem;
        text-align: justify;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .floating-devices {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .dashboard-badge {
        display: none;
    }
    
    .dashboard-image {
        display: none;
    }
    
    .dashboard-preview {
        padding: 1.5rem;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dashboard-preview-2,
    .booking-preview {
        position: relative;
        padding: 0rem;
        height: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .floating-stat {
        position: static;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-width: auto;
        width: 100%;
        padding: 1rem 1.25rem;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .floating-stat .floating-stat-content {
        display: grid;
        width: 100%;
    }
    
    .floating-stat h3 {
        font-size: 1.5rem;
        margin: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .floating-stat h3 .plus-icon,
    .floating-stat h3 .percent-icon {
        font-size: 1.5rem;
        opacity: 0.9;
        margin-left: 0.25rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .floating-stat p {
        font-size: 0.75rem;
        line-height: 1.3;
        text-align: left;
        flex: 1;
        margin-left: 0.5rem;
    }
    
    .floating-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-title {
        font-size: 2rem;
        color: #1a1a1a;
        text-align: center;
    }

    .section-title-white {
        font-size: 1.8rem;
        color: rgb(255, 255, 255);
        padding-top: 1rem;
        padding-bottom: 1rem;
        text-align: center;
    }
    
    .section-subtitle-white {
        font-size: 1.1rem;
    }
    
    .col-md-6.mb-4 {
        width: 50%;
    }

    .partner-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    h5.feature-text {
        font-size: 1rem;
    }
    
    .feature-box {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-icon {
        width: 35px;
        height: 35px;
    }
    
    .feature-svg {
        width: 34px;
        height: 34px;
    }
    
    .dashboard-preview,
    .booking-preview,
    .dashboard-preview-2 {
        margin-top: 0rem;
    }
    
 
    
    .dashboard-mockup-image,
    .booking-mockup-container {
        width: 100%;
        height: 300px;
        bottom: 0;
        right: 0;
    }
}

/* Tablet - 768px and below */
@media (max-width: 768px) {
    .background-svg {
        transform: translateZ(0);
        backface-visibility: hidden;
        -webkit-backface-visibility: hidden;
        mix-blend-mode: overlay;
        -webkit-mix-blend-mode: overlay;
    }
    

    .footer {
        background: #004187;
        color: white;
        padding: 4rem 0 2rem;
        margin-top: 3rem;
    }

    .fb-icon-box {
 width: 100%;
}
 
.global-section{
    margin-top: 2rem;
}
  
}

/* Tablet - 767px and below */
@media (max-width: 767px) {
    .navbar-logo {
        width: 120px;
        height: auto;
    }


    
.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    justify-content: center;
}

    
    
    .hero-section {
        padding: 110px 0 70px;
        min-height: 1200px;
    }
    
    .global-card {
        background: #0070E8;
        border-radius: 40px;
        padding: 4rem 5rem;
        position: relative;
        overflow: hidden;
    }
    
    .background-svg {
        min-height: 800px;
        opacity: 0.4;
        mix-blend-mode: overlay;
    }
    
    .hero-title {
        font-size: 35px;
        line-height: 1.2;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 15px;
        line-height: 1.7;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .dashboard-preview {
        padding: 0rem;
        margin-top: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .floating-stat {
        width: 100%;
        margin: 0;
        padding: 0.25rem 0.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .floating-stat h3 {
        font-size: 1.5rem;
        margin: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .floating-stat h3 .plus-icon,
    .floating-stat h3 .percent-icon {
        font-size: 1.5rem;
        opacity: 0.9;
        margin-left: 0.25rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .floating-stat p {
        font-size: 0.75rem;
        line-height: 1.3;
        flex: 1;
        margin-left: 0.5rem;
    }
    
    .floating-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* Mobile - 576px and below */
@media (max-width: 576px) {
    .hero-section .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {

    .hero-section {
        background-color: var(--dark-navy);
        background-image: url("images/HeroSectionGradient.png");
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 100% 500px; /* Image shows only in first 1050px */
        min-height: 1900px; /* Ensure enough height to see the transition */
        padding: 150px 0 0px;
        position: relative;
        overflow: hidden;
        color: white;
        z-index: 1;
        margin: 0;
        top: 0;
        margin-bottom: 3rem;
    }

    .col-lg-6 {
        align-items: center;
        text-align: center;
    }

    .accordion-button{
        font-size: 0.8rem;
        padding: 0.5rem 0.5rem;
    }

    .accordion-body{
        font-size: 0.8rem;
    }
    
    .custom-hamburger {
        width: 45px;
        height: 45px;
        padding: 0.4rem;
    }
    
    .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: 1000px;
    }
    
  
    
    .background-svg {
        min-height: 600px;
        opacity: 0.3;
        mix-blend-mode: overlay;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }

   .section-title-white{
     font-size: 1.5rem;
   }

   p.section-description-white,p.section-description {
    font-size: 14px;
}


    .floating-stat {
        width: 100%;
        margin: 0;
        padding: 0.25rem 0.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .floating-stat .floating-stat-content {
        display: grid;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        background-color: #57A8FF;
        padding: 1rem;
        border-radius: 20px;
    }
    
    .floating-stats-container {
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-top: 1rem;
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }


    .global-card{
        padding: 1.25rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        width: 100%;
        padding: 0.25rem 0.25rem;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
    }

    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
    
    .off-canvas-content {
        width: 100%;
        max-width: 300px;
    }
    
    .off-canvas-header {
        padding: 1.5rem 1rem 1rem;
    }
    
    .off-canvas-logo {
        width: 100px;
    }
    
    .off-canvas-nav {
        padding: 1.5rem 0;
    }
    
    .off-canvas-nav-link {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }
}

/* Smallest Screens - 360px and below */
@media (max-width: 360px) {
    .hero-section {
        padding: 90px 0 50px;
        min-height: 900px;
    }
    

    
    .background-svg {
        min-height: 500px;
        opacity: 0.25;
        mix-blend-mode: overlay;
    }
    
    .hero-title {
        font-size: 24px;
        line-height: 1.4;
    }
    
    .hero-description {
        font-size: 13px;
        line-height: 1.5;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-buttons .btn {
        padding: 0.65rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .floating-stat {
        width: 100%;
        margin: 0;
        padding: 0.25rem 0.25rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.5rem;
    }
    
    .floating-stat h3 {
        font-size: 1.25rem;
        margin: 0;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 0.25rem;
    }
    
    .floating-stat h3 .plus-icon,
    .floating-stat h3 .percent-icon {
        font-size: 1.25rem;
        opacity: 0.9;
        margin-left: 0.25rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .floating-stat p {
        font-size: 0.7rem;
        text-align: right;
        flex: 1;
        margin-left: 0.5rem;
    }
    
    .dashboard-preview {
        padding: 0.25rem;
    }
    
    .floating-stats-container {
        display: flex;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0 0.25rem;
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .background-svg {
        opacity: 0.2;
        mix-blend-mode: overlay;
    }
    

}