@import url("https://fonts.googleapis.com/css2?family=Sarabun:wght@100;200;300;400;500;600;700;800&display=swap");

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
/* Update these CSS rules */
body {
    width: 100%;
    height: 100%;
    font-family: "Sarabun", sans-serif;
    overflow-x: hidden;
    padding-top: 119px; /* Update: 39px (top-header) + 80px (navbar) */
    background-color: #faf9f6;
    margin: 0;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 39px;
    z-index: 1040; /* Higher z-index than navbar */
    display: flex;
    align-items: center;
}

.top-header__background {
    background: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.top-header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
}

.top-header__tagline {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin: 0;
}

.top-header__contact-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-header__contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 3px 6px;
    border-radius: 4px;
}

.top-header__contact-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.top-header__contact-item:focus {
    outline: 1px solid rgba(255, 255, 255, 0.5);
}

.top-header__icon {
    width: auto;
    height: 16px;
    transition: transform 0.3s ease;
}

.top-header__contact-item:hover .top-header__icon {
    transform: scale(1.1);
}

.top-header__text {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

.top-header__contact-item:hover .top-header__text {
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .top-header__contact-wrapper {
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .top-header {
        height: auto;
        padding: 10px 0;
    }

    .top-header__content {
        flex-direction: column;
        gap: 10px;
    }

    .top-header__contact-wrapper {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px 20px;
    }
}

@media (max-width: 767px) {
    .top-header__tagline {
        font-size: 14px;
    }

    .top-header__contact-wrapper {
        flex-direction: column;
        gap: 8px;
    }

    body {
        padding-top: 200px !important;
    }

    .navbar {
        top: 135px !important;
    }
    .top-header__text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .top-header__contact-item {
        justify-content: center;
        width: 100%;
    }
}

.navbar {
    background-color: #ffffff;
    height: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 39px; /* Position navbar below top-header */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
}

.main-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.navbar-brand img {
    width: 141px;
    height: 40px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-nav {
    margin-left: 120px;
}

.nav-item {
    margin: 0 12px;
    position: relative;
}

.nav-link {
    color: #000000 !important;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 28px 0;
    position: relative;
    transition: color 0.3s ease;
}

/* Indicator styling */
.nav-item .indicator {
    position: absolute;
    background-color: #ff0000;
    height: 3px;
    width: 0;
    bottom: 20px;
    left: 0;
    right: auto;
    transition: width 0.3s ease;
    z-index: 10;
}

.nav-item:hover .indicator,
.nav-item.active .indicator,
.nav-item.show .indicator {
    width: 100%;
}

/* Dropdown styling */
.dropdown-toggle::after {
    display: none;
}

.dropdown-icon {
    width: 9px;
    height: 7px;
    margin-left: 4px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon,
.nav-item.show .dropdown-icon,
.nav-item.active .dropdown-icon {
    transform: rotate(180deg);
}

.contact-us-item {
    margin-left: auto;
}

.dropdown-menu {
    padding: 10px 0;
    border-radius: 0;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 0 !important;
    animation: fadeIn 0.3s ease;
    display: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

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

.dropdown-item {
    padding: 10px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    padding-left: 25px;
}

/* Megamenu dropdowns */
.services-dropdown,
.technologies-dropdown {
    position: relative;
}

.services-dropdown .dropdown-menu,
.technologies-dropdown .dropdown-menu {
    width: 100vw;
    position: fixed !important;
    left: 0;
    right: 0;
    padding: 30px;
}

/* Menu column styling */
.mega-menu-column {
    margin-bottom: 10px;
}

.service-header {
    color: #264653;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 20px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 10px;
    margin-bottom: 20px;
}

.service-list {
    list-style-type: disc;
    padding-left: 20px;
    color: #264653;
}

.service-list li {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
}

.service-list li a {
    color: #264653;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 400;
}

.service-list li a:hover {
    color: #000;
    font-weight: 500;
}

/* Regular dropdowns styling */
.rectangle-203 {
    background: #ffffff;
    border-radius: 0px 0px 20px 20px;
    position: relative;
    width: 20vw;
    left: 0;
    right: 0;
    padding: 5px 0px;
}

.rectangle-204 {
    background: #ffffff;
    border-radius: 0px 0px 20px 20px;
    position: relative;
    width: 15vw !important;
    left: 0;
    right: 0;
    padding: 5px 0px;
}

.industries-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 15px;
}

.industries-list li {
    margin-bottom: 10px;
}

.industries-list li a {
    color: #264653;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.industries-list li a:hover {
    color: #000;
}

/* Technologies menu styling */
.rectangle-206 {
    background: #ffffff;
    border-radius: 4px;
    width: 340px;
    position: absolute;
    padding: 5px 10px;
    top: 5px;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.25);
}

.software-development {
    color: #264653;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: underline;
}

.tech-category {
    position: relative;
    margin-bottom: 30px;
}

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

.tech-item {
    margin-right: 30px;
    position: relative;
}

.tech-item a {
    color: #264653;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
    font-weight: 400;
}

.tech-item a:hover {
    color: #000;
    font-weight: 500;
}

.tech-item:nth-child(1) {
    position: absolute;
    left: 396px;
    top: 5px;
}
.tech-item:nth-child(2) {
    position: absolute;
    left: 493px;
    top: 5px;
}
.tech-item:nth-child(3) {
    position: absolute;
    left: 591px;
    top: 5px;
}
.tech-item:nth-child(4) {
    position: absolute;
    left: 708px;
    top: 5px;
}
.tech-item:nth-child(5) {
    position: absolute;
    left: 846px;
    top: 5px;
}
.tech-item:nth-child(6) {
    position: absolute;
    left: 953px;
    top: 5px;
}
.tech-item:nth-child(7) {
    position: absolute;
    left: 1075px;
    top: 5px;
}

.tech-item a {
    color: #264653;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

/* Responsive styles */
@media (max-width: 1200px) {
    .navbar-nav {
        margin-left: 0px;
    }

    .nav-item {
        margin: 0 8px;
    }

    /* Adjust tech item positions */
    .tech-item:nth-child(1) {
        left: 320px;
    }
    .tech-item:nth-child(2) {
        left: 400px;
    }
    .tech-item:nth-child(3) {
        left: 480px;
    }
    .tech-item:nth-child(4) {
        left: 580px;
    }
    .tech-item:nth-child(5) {
        left: 680px;
    }
    .tech-item:nth-child(6) {
        left: 760px;
    }
    .tech-item:nth-child(7) {
        left: 860px;
    }
}

@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 15px 0;
    }

    .navbar-nav {
        margin-left: 0;
        padding: 15px 0;
    }

    .nav-item {
        margin: 0;
        border-bottom: 1px solid #f1f1f1;
    }

    .contact-us-item {
        margin-left: 0;
    }

    /* Mobile dropdown menu adjustments */
    .dropdown-menu {
        animation: none;
        box-shadow: none;
        border: none;
        background-color: #f8f9fa;
        border-radius: 0;
        padding: 0;
        width: 100%;
        position: static !important;
        display: none;

        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Allow hover to work on mobile */
    .dropdown:hover .dropdown-menu {
        display: block;
    }

    /* For touch devices */
    .dropdown-toggle.nav-link {
        position: relative;
    }

    /* Add a tap/click area for mobile */
    .nav-item.dropdown > .nav-link:after {
        content: "";
        position: absolute;
        right: 0;
        top: 0;
        width: 50px;
        height: 100%;
        z-index: 5;
    }

    .nav-link {
        padding: 15px 10px;
    }

    .nav-item .indicator {
        bottom: 10px;
        left: 10px;
        width: 30px !important;
    }

    .nav-item:hover .indicator {
        width: 30px !important;
    }

    /* Mega menu adjustments for mobile */
    .services-dropdown .dropdown-menu,
    .technologies-dropdown .dropdown-menu {
        width: 100%;
        padding: 15px;
        position: static !important;
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mega-menu-column {
        margin-bottom: 20px;
    }

    /* Improved service headers for mobile */
    .service-header {
        font-size: 20px;
        margin-bottom: 15px;
        text-decoration: underline;
        text-underline-offset: 5px;
    }

    .service-list li {
        font-size: 16px;
        margin-bottom: 10px;
    }

    /* Regular dropdown improvements for mobile */
    .rectangle-203 {
        width: 100% !important;
        position: static !important;
        height: auto;
        border-radius: 0;
        padding: 15px;
        background-color: #f8f9fa;
    }

    .industries-list {
        margin: 0;
    }

    .industries-list li {
        margin-bottom: 10px;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 10px;
    }

    .industries-list li:last-child {
        border-bottom: none;
    }

    .industries-list li a {
        display: block;
        width: 100%;
        padding: 8px 15px;
    }

    /* Technologies dropdown improvements for mobile */
    .tech-category {
        height: auto;
        padding: 15px;
        margin-bottom: 0;
    }

    .rectangle-206 {
        width: 100%;
        position: relative;
        height: auto;
        box-shadow: none;
        margin-bottom: 10px;
    }

    .software-development {
        position: relative;
        left: 0;
        top: 0;
        display: block;
        margin-bottom: 15px;
        font-size: 18px;
    }

    .tech-list {
        display: flex;
        flex-direction: column;
        margin: 0;
    }

    .tech-item {
        position: static !important;
        margin: 0 0 10px 0;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 10px;
    }

    .tech-item:last-child {
        border-bottom: none;
    }

    .tech-item a {
        display: block;
        padding: 8px 15px;
        width: 100%;
    }

    /* Making dropdown toggle more touchable on mobile */
    .dropdown-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-icon {
        width: 12px;
        height: 12px;
        margin-left: 8px;
    }
}

@media (max-width: 768px) {
    .service-header {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-list li {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* Better padding for smaller screens */
    .dropdown-menu {
        padding: 10px;
    }

    .services-dropdown .dropdown-menu,
    .technologies-dropdown .dropdown-menu {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        width: 120px;
        height: 34px;
    }

    .service-header {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .service-list {
        padding-left: 15px;
    }

    .service-list li {
        margin-bottom: 6px;
    }

    /* Tighten spacing on very small screens */
    .nav-link {
        padding: 12px 8px;
    }

    .dropdown-item {
        padding: 8px 15px;
    }

    .nav-item .indicator {
        bottom: 8px;
    }
}

/* Hero section responsive improvements */
.hero-main {
    position: relative;
    background-color: #222a3d;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* .hero-background {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-image: url("/assets/images/WD_Mobile_App.svg");
    background-size: cover;
    background-position: center;
    z-index: 1;
} */
.hero-background {
    width: 100%;
    height: 520px;
    background-image: url("/assets/images/WD_Mobile_App.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    margin: 0 auto;
}

/* Large devices (desktops) */
@media (max-width: 1200px) {
    .hero-background {
        height: 480px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 992px) {
    .hero-background {
        height: 420px;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 768px) {
    .hero-background {
        height: 320px;
    }
}

/* Extra small devices (portrait phones) */
@media (max-width: 576px) {
    .hero-background {
        height: 200px;
    }
}
.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 96px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 40px;
}

.indicator-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 10px;
    width: 125px;
    background: #ffffff;
    border-radius: 71px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    z-index: 3;
}

.indicator-active {
    background: #000000;
    border-radius: 71px;
    width: 41px;
    height: 6px;
    margin-right: 2px;
}

.indicator-dot {
    background: #000000;
    border-radius: 71px;
    width: 6px;
    height: 6px;
    margin-right: 2px;
    cursor: pointer;
}

/* About section responsive improvements */
.home-about-section {
    padding: 60px 0;
}

.about-title-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.home-about-section-title {
    color: #264653;
    font-size: 64px;
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    line-height: 1.1;

    text-align: center;
    margin: 0 auto;
    height: auto;
}

.home-about-company-heading {
    color: #264653;
    font-size: 32px;
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

.home-about-mission-statement {
    position: relative;
    margin-bottom: 30px;
}

.home-about-accent-line {
    width: 3px;
    height: 78px;
    position: absolute;
    background: #264653;
}

.home-about-mission-text {
    padding-left: 30px;
    text-align: justify;
    color: black;
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
}

.home-about-company-description {
    text-align: justify;
    color: black;
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
}
@media (max-width: 992px) {
    .for-margins {
        margin-top: 8rem;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .home-about-section-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-main {
        min-height: 500px;
    }

    .home-about-section-title {
        font-size: 42px;
        text-align: center;
        margin-bottom: 30px;
    }

    .home-about-company-heading {
        font-size: 28px;
    }

    .home-about-mission-text {
        padding-left: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-main {
        min-height: 280px;
    }

    .indicator-container {
        width: 100px;
        height: 8px;
    }

    .indicator-active {
        width: 32px;
        height: 5px;
    }

    .indicator-dot {
        width: 5px;
        height: 5px;
    }

    .home-about-section-title {
        font-size: 36px;
    }

    .home-about-company-heading {
        font-size: 24px;
    }

    .home-about-accent-line {
        height: 110px;
    }
}

/* Extra small devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .home-about-section-title {
        font-size: 32px;
    }

    .home-about-company-heading {
        font-size: 22px;
    }
}

.stats-section {
    padding: 0;
}
.stats-container {
    border-radius: 12px;
    padding: 40px 0px;
    margin: 20px 0;
    background-image: url("/assets/images/Stats\ BG.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.stat-number {
    color: white;
    font-size: 100px;
    font-weight: 800;
    margin: 5px 0;
    font-family: sans-serif;
}

.stat-text {
    color: #ea6f50;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 0;
    font-weight: 500;
}

.stat-icon {
    margin-bottom: 10px;
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .stat-item {
        margin-bottom: 30px;
    }

    .stats-container {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

.trusted-section h2 {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .trusted-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .trusted-section h2 {
        font-size: 24px;
    }
}

.home-insight-journey-section {
    padding: 80px 0;
}

.home-insight-journey-title {
    text-align: center;
    margin-bottom: 60px;
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
}

.home-insight-journey-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
}

.home-insight-journey-step-wrapper {
    width: calc(25% - 30px);
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative;
}

.home-insight-journey-step-number {
    position: absolute;
    top: -20px;
    left: 18px;
    color: rgba(38, 70, 83, 1);
    opacity: 1;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
}

.home-insight-journey-step-title {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    text-align: left;
}

.home-insight-journey-step-description {
    color: #000;
    font-size: 16px;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
}

.home-insight-journey-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 103%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .home-insight-journey-step-wrapper {
        width: calc(25% - 20px);
    }
    .home-insight-journey-step {
        padding: 15px;
    }
    .home-insight-journey-step-title {
        font-size: 22px;
    }
    .home-insight-journey-step-description {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .home-insight-journey-step-wrapper {
        width: calc(50% - 20px);
    }
    .home-insight-journey-arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .home-insight-journey-section {
        padding: 30px 0;
    }
    .home-insight-journey-title {
        margin-bottom: 20px;
        font-size: 32px;
    }
    .home-insight-journey-step-wrapper {
        width: 100%;
        padding: 0 15px;
    }
    .home-insight-journey-step-number {
        top: -12px;
        left: 12px;
    }
    .home-insight-journey-step {
        margin-bottom: 20px;
    }
}
.home-booking-section {
    padding: 20px 0;
    position: relative;
}
.home-booking-header {
    color: #264653;
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    padding: 40px 0;
    margin-bottom: 60px;
}
.home-booking-container {
    display: flex;
    background: white;
}
.home-booking-left {
    flex: 0 0 50%;
    background-color: #264653;
    position: relative;
    min-height: 415px;
    overflow: hidden;
}

.home-booking-left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(38, 70, 83, 0.8),
        rgba(38, 70, 83, 0.5)
    );
    z-index: 1;
}
.home-booking-left-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}
.home-booking-left-content {
    position: relative;
    color: white;
    padding: 57px 100px;
    z-index: 1;
}
.home-booking-left-title {
    color: #ea6f50;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.home-booking-process-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}
.home-booking-process-icon {
    width: 14px;
    height: 14px;
    margin-right: 15px;
}
.home-booking-process-text {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px;
}
.home-booking-process-texts {
    font-size: 16px;
    font-weight: 800;
}
.home-booking-right {
    flex: 0 0 50%;
    padding: 35px 50px;
}
.home-booking-right-title {
    color: #264653;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}
.home-booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.home-booking-form-group {
    display: flex;
    flex-direction: column;
}
.home-booking-form-label {
    color: #264653;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}
.home-booking-form-input {
    border: none;
    border-bottom: 1px solid black;
    padding: 5px 0;
    color: #c6c7c7;
    font-size: 14px;
}
.home-booking-form-submit {
    grid-column: span 2;
    justify-self: center;
}

.home-booking-submit-btn {
    display: block;
    width: 193px;
    height: 50px;
    background: #264653;
    color: white;
    border-radius: 209px;
    margin: 0 auto;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    position: relative;
    font-size: 16px;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.home-booking-submit-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ea6f50;
    transition: left 0.3s ease;
    z-index: -1;
}

.home-booking-submit-btn:hover {
    color: white;
}

.home-booking-submit-btn:hover::before {
    left: 0;
}
@media (max-width: 1024px) {
    .home-booking-container {
        flex-direction: column;
    }
    .home-booking-left,
    .home-booking-right {
        flex: 0 0 100%;
    }
    .home-booking-header {
        font-size: 48px;
    }
}
@media (max-width: 768px) {
    .home-booking-form {
        grid-template-columns: -1fr;
    }
    .home-booking-form-submit {
        grid-column: span 2;
    }
    .home-booking-header {
        font-size: 36px;
    }
    .home-booking-right {
        padding: 57px 5px;
    }
    .home-booking-left-content {
        padding: 30px;
    }
}
.case-studies-section {
    padding: 80px 0;
    position: relative;
}

.case-studies-title {
    color: #264653;
    font-weight: 800;
    text-align: center;
    font-size: 64px;
    margin-bottom: 30px;
}

.case-study-image {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    width: 100%; /* Ensure image fills its container */
}

.case-study-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(233, 111, 80, 0.1);
}

.case-study-content {
    padding: 55px;
    position: relative;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.case-study-contents {
    padding: 70px;
}

.case-study-category {
    background: #ea6f50;
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 15px;
}

.case-study-title {
    color: #000000;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 15px;
}

.case-study-description {
    color: #000000;
    margin-bottom: 20px;
    text-align: justify !important;
}

.read-more-container {
    display: flex;
    align-items: center;
    color: #ea6f50;
    font-weight: 800;
    text-decoration: none;
}

.read-more-container:hover {
    text-decoration: none;
    font-weight: 900;
    color: #ea6f50;
}

.read-more-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background-size: contain;
    background-repeat: no-repeat;
}

.carousel-bottom-navigation {
    position: absolute;
    bottom: 5%;
    right: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-bottom-control {
    width: 36px;
    height: 35px;
    text-align: center;
    background: #ea6f50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 10px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.carousel-bottom-control:hover {
    background-color: #d45a3a;
}

.carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.carousel-item.active {
    opacity: 1;
    position: relative;
}

/* Tablet Responsiveness */
@media (max-width: 991px) {
    .case-study-image {
        margin-bottom: 20px;
    }

    .case-study-content {
        padding: 20px;
    }

    .carousel-bottom-navigation {
        bottom: 1%;
        right: 0%;
    }
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .case-studies-section {
        padding: 30px 0;
    }

    .case-studies-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .case-study-content {
        padding: 15px;
    }

    .case-study-title {
        font-size: 20px;
    }

    .case-study-description {
        font-size: 14px;
    }

    .carousel-bottom-control {
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }

    .read-more-container {
        font-size: 14px;
    }

    .read-more-icon {
        width: 20px;
        height: 20px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 480px) {
    .case-study-content {
        padding: 10px;
    }

    .case-studies-title {
        font-size: 20px;
    }

    .case-study-title {
        font-size: 18px;
    }

    .case-study-description {
        font-size: 12px;
    }
}

.read-more-container:hover {
    text-decoration: none;
    font-weight: 900;
    color: #ea6f50;
}

.read-more-icon {
    transition: transform 0.3s ease;
}

.read-more-container:hover .read-more-icon {
    transform: translateX(5px);
}

.carousel-bottom-control:hover {
    background-color: #d45a3a;
}
.blogs {
    position: relative;
    background: #e9e9e9;
    padding: 66px 0;
}

.blogs * {
    box-sizing: border-box;
}

.blogs-title {
    color: #264653;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 50px;
}

.blog-item {
    margin-bottom: 50px;
}

.blog-cover {
    width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.blog-cover:hover {
    transform: scale(1.05);
}

.content-box {
    border: 2px solid #264653;
    border-radius: 20px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.content-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-insight-journey-step {
    border: 4px solid #264653;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.home-insight-journey-step:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-category {
    background: #ea6f50;
    border-radius: 50px;
    color: white;
    padding: 5px 15px;
    display: inline-block;
    font-family: "Sarabun", sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-heading {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-excerpt {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.read-more-link {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #264653;
}

.read-more-link img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.read-more-link:hover img {
    transform: translateX(5px);
}

.discover-more-btn {
    display: block;
    width: 274px;
    height: 66px;
    background: #264653;
    color: white;
    border-radius: 209px;
    margin: 0 auto;
    text-align: center;
    line-height: 66px;
    text-decoration: none;
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    position: relative;
    overflow: hidden;
    transition: color 0.3s ease;
    z-index: 1;
}

.discover-more-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ea6f50;
    transition: left 0.3s ease;
    z-index: -1;
}

.discover-more-btn:hover {
    color: white;
}

.discover-more-btn:hover::before {
    left: 0;
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
    .blog-item {
        margin-bottom: 40px;
    }

    .blog-cover {
        height: 220px;
        margin-bottom: 15px;
    }

    .content-box {
        padding: 15px;
    }

    .home-insight-journey-step {
        padding: 15px;
    }

    .blog-category {
        font-size: 13px;
        padding: 4px 12px;
    }

    .blog-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .blog-excerpt {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .read-more-link {
        font-size: 15px;
    }

    .read-more-link img {
        width: 22px;
        height: 22px;
    }

    .discover-more-btn {
        width: 240px;
        height: 58px;
        line-height: 58px;
    }
}

.home-testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
/* Crucial fix: Override Bootstrap's default overflow */
.carousel-inners {
    overflow: visible !important;
}

.home-testimonial-carousel {
    margin: 0 auto;
    position: relative;
    padding-top: 80px;
    overflow: visible;
}

.carousel-item {
    overflow: visible !important;
}

.home-testimonial-profile-img-wrapper {
    position: absolute;
    top: -50px;
    left: 20%;
    transform: translateX(-50%);
    width: 90px;
    height: 90px;
    z-index: 10;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.home-testimonial-card {
    position: relative;
    overflow: visible;
}

.home-testimonials-title {
    color: #264653;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 50px;
}

.carousel-item .row {
    margin-left: 0;
    margin-right: 0;
}

.carousel-item .col-md-4 {
    display: flex;
    justify-content: center;
}

.home-testimonial-card {
    background-color: #264653;
    border-radius: 20px;
    color: white;
    padding: 60px 30px 30px;
    margin: 0 auto;
    height: 100%;
}

.home-testimonial-profile-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.home-testimonial-stars {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.home-testimonial-star {
    color: #ea6f50;
    margin: 0 2px;
}

.home-testimonial-star.empty {
    color: white;
}

.home-testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.home-testimonial-author {
    font-size: 16px;
}

.home-testimonial-author-name {
    font-weight: 700;
    display: block;
}

.home-testimonial-author-title {
    font-weight: 400;
}

.button-arrow-container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: -190px; /* Adjust based on your design */
    z-index: 20;
    pointer-events: none;
}

.home-carousel-control-prev,
.home-carousel-control-next {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #264653;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #264653;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

@media (max-width: 991px) {
    .button-arrow-container {
        display: none;
    }
}

@media screen and (min-width: 768px) and (max-width: 1440px) {
    .home-testimonials-section {
        padding: 80px 0;
    }

    .home-testimonial-carousel {
        padding-top: 70px;
    }

    .home-testimonial-profile-img-wrapper {
        width: 60px;
        height: 60px;
        top: -40px;
    }

    .home-testimonial-profile-img {
        width: 60px;
        height: 60px;
    }

    .home-testimonial-card {
        padding: 50px 25px 25px;
    }

    .home-testimonial-text {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .home-testimonial-author {
        font-size: 15px;
    }

    .button-arrow-container {
        top: -170px;
    }

    .home-carousel-control-prev,
    .home-carousel-control-next {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Additional specific adjustments for smaller tablets */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .home-testimonial-profile-img-wrapper {
        left: 25%;
    }

    .home-testimonials-title {
        margin-bottom: 35px;
    }

    .button-arrow-container {
        top: -150px;
    }
}

/* SVG Background Styling */
.wd-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.wd-footer-bg svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Keep aspect ratio from top part of curve */
    transform-origin: top center;
    /* Don't distort the curve */
    /* preserveaspectratio: xMidYMin slice; */
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    margin-bottom: -80px;
    z-index: 10;
}

.cta-container {
    background-color: #ea6f50;
    border-radius: 36px;
    padding: 40px 30px;
    color: white;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.cta-description {
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    max-width: 860px;
    font-weight: 400;
    margin: 0 auto 25px;
}

.cta-button {
    background-color: #264653;
    color: white;
    border: none;
    border-radius: 89px;
    padding: 15px 40px;
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.cta-button:hover {
    background-color: #1a323c;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Custom Footer Styles */
.wd-footer {
    background-color: transparent;
    color: white;
    font-family: "Sarabun", sans-serif;
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: hidden;
}

/* Typography classes */
.wd-text {
    color: white;
    font-size: 15px;
    font-family: "Sarabun", sans-serif;
    font-weight: 400;
    word-wrap: break-word;
}

.wd-text-bold {
    color: white;
    font-size: 16px;
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    word-wrap: break-word;
}

/* Divider Line */
.wd-divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
    margin: 15px 0;
}

/* Updated divider style */
.logo-divider-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.logo-container {
    margin-right: 0;
}

.divider-container {
    flex-grow: 1;
}

.wd-footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.wd-footer a:hover {
    color: #f0f0f0;
    transform: scale(1.05);
}

.wd-heading {
    margin-bottom: 15px;
    position: relative;
}

.wd-social-icon {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.wd-social-icon:hover {
    transform: scale(1.2) rotate(360deg);
}

.wd-contact > div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Footer bottom section */
.wd-copyright {
    margin-bottom: 0;
}

.wd-legal-links {
    display: flex;
    justify-content: flex-end;
}

.wd-legal-link {
    margin-right: 1rem;
}

/* Mobile to Tablet (max-width: 767px) */
@media screen and (max-width: 767px) {
    .wd-footer {
        padding-top: 70px;
        padding-bottom: 30px;
    }

    .wd-text {
        font-size: 14px;
    }

    .wd-text-bold {
        font-size: 15px;
    }

    .wd-divider {
        margin: 10px 0;
    }

    .logo-divider-container {
        display: block;
        text-align: center;
    }

    .logo-container {
        margin-bottom: 15px;
        text-align: center;
    }

    .wd-heading {
        text-align: center;
        margin-bottom: 10px;
    }

    .wd-social-container {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }

    .wd-social-icon {
        width: 26px;
        height: 26px;
    }

    .wd-contact > div {
        justify-content: center;
        margin-bottom: 8px;
    }

    .list-unstyled {
        text-align: center;
    }

    .wd-legal-wrapper {
        text-align: center !important;
        margin-top: 15px;
    }

    .wd-legal-links {
        justify-content: center !important;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .wd-legal-link {
        margin-right: 0 !important;
    }

    .wd-copyright-wrapper p {
        text-align: center;
    }
}

/* Tablet (min-width: 768px and max-width: 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .wd-footer {
        padding-top: 100px;
        padding-bottom: 35px;
    }

    .wd-text {
        font-size: 14px;
    }

    .wd-text-bold {
        font-size: 15px;
    }

    .wd-footer [class^="col-md-"] {
        margin-bottom: 25px;
    }

    .wd-social-container {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-bottom: 15px;
    }

    .wd-social-icon {
        width: 28px;
        height: 28px;
    }

    .wd-heading {
        text-align: center;
        margin-bottom: 12px;
    }

    .list-unstyled {
        text-align: center;
    }

    .wd-contact > div {
        justify-content: center;
        margin-bottom: 8px;
    }

    .wd-contact > div img {
        max-width: 20px;
        margin-right: 8px;
    }

    .logo-container {
        text-align: center;
        margin-bottom: 15px;
    }

    .logo-container img {
        max-width: 90%;
    }
}

/* Tablet to Large Desktop (min-width: 992px and max-width: 1440px) */
@media screen and (min-width: 992px) and (max-width: 1440px) {
    .wd-footer {
        padding-top: 150px;
        padding-bottom: 40px;
    }

    .wd-text {
        font-size: 14px;
    }

    .wd-text-bold {
        font-size: 15px;
    }

    .wd-divider {
        margin: 12px 0;
    }

    .wd-heading {
        margin-bottom: 12px;
    }

    .wd-social-icon {
        width: 28px;
        height: 28px;
    }

    .wd-contact > div {
        margin-bottom: 8px;
    }

    .wd-legal-link {
        margin-right: 0.8rem;
    }

    .logo-container img {
        max-width: 95%;
    }
}
/* Enhanced Responsive Adjustments */
@media (max-width: 991px) {
    .cta-section {
        margin-bottom: -40px;
    }

    .cta-container {
        padding: 30px 15px;
    }

    .cta-title {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        margin-bottom: -30px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-description {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .cta-section {
        margin-bottom: -20px;
    }

    .cta-container {
        padding: 25px 15px;
        border-radius: 20px;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        top: 80px !important;
    }

    body {
        padding-top: 155px !important;
    }
}
.services-section {
    background-color: #264653;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-title {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
}

.service-card {
    border-radius: 26px;
    height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-card.primary {
    background-color: #ea6f50;
}

.service-card.secondary {
    background-color: #30515f;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-title {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 1199px) {
    .section-title {
        font-size: 56px;
    }
}

@media (max-width: 991px) {
    .section-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 40px;
    }

    .service-card {
        height: 170px;
    }

    .service-icon {
        width: 54px;
        height: 54px;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .service-card {
        height: 150px;
        margin-bottom: 20px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 10px;
    }

    .service-title {
        font-size: 14px;
    }
}

/* Service Hero Styles */
.service-hero {
    position: relative;
    overflow: hidden;
    background: #e9e9e9;
}

.service-hero-content-wrapper {
    height: 507px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.service-hero-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    left: 15%;
    z-index: 2;
    padding: 30px;
}

.for-industries {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    position: absolute;
    right: 15% !important;
    z-index: 2;
    padding: 30px;
}
.service-hero-title {
    color: #264653;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-hero-description {
    color: #264653;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 25px;
}

.service-hero-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.service-hero-cta-btn {
    background: #264653;
    border-radius: 75px;
    color: #ffffff;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-hero-cta-btn:hover {
    background: #1a323c;
    color: #ffffff;
    transform: translateY(-2px);
}

.service-hero-image-wrapper {
    height: 507px;
    position: relative;
    overflow: hidden;
}

.service-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Mobile Responsive styles */
@media (max-width: 991.98px) {
    .service-hero-card {
        max-width: 90%;
        margin: 0 auto;
        left: 0;
        right: 0;
        position: relative;
    }
    .for-industries {
        max-width: 90%;
        margin: 0 auto;
        left: 0;
        right: 0;
        position: relative;
    }
    .service-hero-content-wrapper,
    .service-hero-image-wrapper {
        height: auto;
        min-height: 400px;
    }

    .service-hero-title {
        font-size: 28px;
    }

    .service-hero-description br {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .service-hero .row {
        flex-direction: column-reverse;
    }

    .service-hero-content-wrapper {
        padding: 40px 15px;
        height: auto;
        min-height: auto;
    }

    .service-hero-image-wrapper {
        height: 300px;
        min-height: auto;
    }

    .service-hero-title {
        font-size: 24px;
    }

    .service-hero-description {
        font-size: 14px;
    }

    .service-hero-card {
        padding: 25px 20px;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .for-industries {
        padding: 25px 20px;
        box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    }

    .service-hero-cta-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .service-hero-image-wrapper {
        height: 200px;
    }

    .service-hero-content-wrapper {
        padding: 30px 15px;
    }

    .service-hero-card {
        padding: 20px 15px;
        border-radius: 15px;
    }

    .for-industries {
        padding: 20px 15px;
        border-radius: 15px;
    }
    .service-hero-title {
        font-size: 22px;
    }

    .service-hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .service-hero-cta-wrapper {
        margin-top: 10px;
    }

    .service-hero-cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Fix for very small mobile devices */
@media (max-width: 375px) {
    .service-hero-title {
        font-size: 20px;
    }

    .service-hero-card {
        padding: 15px 12px;
    }
    .for-industries {
        padding: 15px 12px;
    }
}

.service-sub-page-hero {
    background-color: #264653;
    padding: 60px 0;
}

.service-sub-page-title {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.service-sub-page-titles {
    font-size: 58px;
}
.service-sub-page-titless {
    font-size: 55px !important;
}
.service-sub-page-description {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto;
}

.service-sub-page-button {
    background-color: #ea6f50;
    border-radius: 75px;
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    padding: 12px 50px;
    border: none;
    transition: all 0.3s ease;
}

.service-sub-page-button:hover {
    background-color: #d15a3c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-sub-page-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .service-sub-page-title {
        font-size: 36px;
    }

    .service-sub-page-hero {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    .service-sub-page-title {
        font-size: 32px;
    }

    .service-sub-page-description {
        font-size: 14px;
    }

    .service-sub-page-button {
        font-size: 14px;
        padding: 10px 24px;
    }
}

.sub-services-section {
    font-family: "Sarabun", sans-serif;
}

.sub-services-heading {
    color: #ea6f50;
    font-weight: 700;
    font-size: 32px;
}

.sub-services-subheading {
    color: #000000;
    font-size: 16px;
    margin-left: auto;
    margin-right: auto;
}

.sub-services-card {
    border-radius: 10px;
    transition: transform 0.3s ease;
    height: 100%;
}

.sub-services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.sub-services-icon-container {
    background: #264653;
    border-radius: 10px;

    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-services-icon {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}

.sub-services-card-title {
    font-weight: 800;
    font-size: 16px;
    color: rgba(0, 0, 0, 1);
}

.sub-services-card-text {
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
}

.sub-services-cta-btn {
    background-color: #ea6f50;
    color: white;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    border: none;
    transition: all 0.3s ease;
}

.sub-services-cta-btn:hover {
    background-color: #d55d3e;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .sub-services-heading {
        font-size: 28px;
    }

    .sub-services-subheading {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .sub-services-heading {
        font-size: 24px;
    }

    .sub-services-card {
        padding: 15px !important;
    }
}

/* Services Section Styles */
.service-provider-section {
    padding: 60px 0;
}

.service-provider-heading {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 80px !important;
    text-align: center;
}
.service-provider-card {
    background-color: white;
    border-radius: 26px;
    padding: 30px 25px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 450px; /* Fixed height for all cards */
    display: flex;
    flex-direction: column;
}

.service-provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

.service-provider-icon-wrapper {
    display: flex;
    justify-content: start;
    margin-bottom: 40px;
}

.service-provider-icon {
    height: 100px;
    width: auto;
}

.service-provider-card-title {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    height: 70px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.service-provider-divider {
    border-style: solid;
    border-color: rgba(0, 0, 0, 1) !important;
    border-width: 1px 0 0 0;
    margin-bottom: 15px;
}

.service-provider-description {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    flex: 1;
    overflow: auto;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .service-provider-heading {
        font-size: 48px;
    }

    .service-provider-card {
        padding: 25px 20px;
    }
    .service-provider-card {
        height: auto;
    }
}

@media (max-width: 767.98px) {
    .service-provider-heading {
        font-size: 36px;
        text-align: center;
    }

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

    .service-provider-description {
        font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    .service-provider-heading {
        font-size: 32px;
    }

    .service-provider-icon {
        height: auto;
    }

    .service-provider-card {
        padding: 20px 15px;
    }

    .service-provider-card-title {
        font-size: 20px;
    }

    .service-provider-description {
        font-size: 14px;
    }
}
@media (max-width: 767.98px) {
    .service-provider-card {
        height: auto;
    }

    .service-provider-card-title {
        height: auto;
    }
}

.service-process-heading {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.service-process-step-card {
    background-color: rgba(38, 70, 83, 1);
    border-radius: 13px;
    color: #ffffff;
    padding: 10px 15px;
    height: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-process-number {
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-process-subtitle {
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
}

.service-process-description {
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .service-process-heading {
        font-size: 32px;
    }

    .service-process-step-card {
        min-height: 150px;
        margin-bottom: 20px;
    }

    .service-process-number {
        font-size: 38px;
    }

    .service-process-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .service-process-heading {
        font-size: 28px;
    }

    .service-process-step-card {
        min-height: 130px;
    }

    .service-process-number {
        font-size: 32px;
    }

    .service-process-subtitle {
        font-size: 18px;
    }

    .service-process-description {
        font-size: 15px;
    }
}
/* Section styles */
.service-choose-us-section {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 42.5%; /* Maintain aspect ratio of the image (720/1695) */
    overflow: hidden;
}

.service-choose-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.service-choose-us-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
}

.service-choose-us-content {
    padding-left: 7%;
    width: 50%;
}

.service-choose-us-heading {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 40px;
}

.service-choose-us-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.service-choose-us-item {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .service-choose-us-heading {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .service-choose-us-item {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .service-choose-us-content {
        width: 65%;
    }
}

@media (max-width: 767.98px) {
    .service-choose-us-heading {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .service-choose-us-item {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .service-choose-us-content {
        width: 80%;
    }
}

@media (max-width: 575.98px) {
    .service-choose-us-content {
        width: 90%;
        padding-left: 15px;
    }

    .service-choose-us-heading {
        font-size: 28px;
    }

    .service-choose-us-item {
        font-size: 10px;
        margin-bottom: 0px;
    }
}

.services-solution-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-solution-heading {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
}

.services-solution-card {
    background: #e9e9e9;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.services-solution-icon-wrapper {
    margin-bottom: 15px;
}

.services-solution-icon {
    width: 60px;
    height: 60px;
    filter: invert(53%) sepia(39%) saturate(2371%) hue-rotate(331deg)
        brightness(95%) contrast(92%);
}

.services-solution-industry {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .services-solution-heading {
        font-size: 32px;
    }

    .services-solution-card {
        padding: 25px 15px;
    }

    .services-solution-industry {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .services-solution-heading {
        font-size: 28px;
    }

    .services-solution-card {
        padding: 20px 10px;
    }

    .services-solution-icon {
        width: 50px;
        height: 50px;
    }
}

.faq-section {
    padding: 60px 0;
    font-family: "Sarabun", sans-serif;
}

.faq-heading {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-accordion {
    width: 100%;
}

.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    border-bottom: 1px solid #000;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.faq-btn {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    background: transparent;
    border: none;
    font-family: "Sarabun", sans-serif;

    font-size: 16px;
    font-weight: 800;
    color: #000;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-btn:focus {
    outline: none;
    box-shadow: none;
}

.faq-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid #000;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-icon .fa-minus {
    display: none;
}

.faq-btn:not(.collapsed) .fa-plus {
    display: none;
}

.faq-btn:not(.collapsed) .fa-minus {
    display: inline-block;
}

.faq-answer {
    padding: 20px 0;
    color: #000;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .faq-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .faq-heading {
        font-size: 36px;
    }

    .faq-btn {
        font-size: 15px;
        padding: 12px 0;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 576px) {
    .faq-heading {
        font-size: 32px;
    }

    .faq-btn {
        font-size: 14px;
    }

    .faq-icon {
        width: 24px;
        height: 24px;
    }

    .faq-answer {
        padding: 15px 0;
        font-size: 14px;
    }
}

/* Industries Section Styles */
.industries-section {
    padding: 60px 0;
}

.industries-heading {
    color: #ea6f50;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 40px;
}

.industry-card {
    background-color: #264653;
    border-radius: 26px;
    padding: 25px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-icon-wrapper {
    margin-bottom: 15px;
    text-align: center;
}

.industry-icon {
    filter: brightness(0) invert(1);
}

.industry-card-title {
    color: white;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.industry-divider-container {
    width: 100%;
}

.industry-divider {
    border-top: 2px solid white;
    opacity: 1;
    margin: 10px 0 15px;
}

.industry-description-container {
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.industry-description {
    color: white;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .industry-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .industries-heading {
        font-size: 2rem;
    }

    .industry-card-title {
        font-size: 1.1rem;
    }

    .industry-description {
        font-size: 0.85rem;
    }
}
.service-lists {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.service-lists li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 16px;
    color: #000000;
    line-height: 1.6;
    font-weight: 400;
}

.service-lists li:before {
    content: "◆";
    position: absolute;
    left: 0;
    color: #0078d7; /* Blue diamond color matching the image */
    font-size: 16px;
    top: 2px;
}
.tech-category-heading {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-top: 15px;
}

.tech-card-container {
    margin-bottom: 40px;
}

.tech-card {
    background-color: #264653;
    border-radius: 10px;
    height: 100%;
    min-height: 114px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.tech-card:hover {
    transform: translateY(-5px);
}

.tech-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.tech-icon {
    width: 64px;
    height: 64px;
}

@media (max-width: 767px) {
    .tech-card {
        min-height: 90px;
    }

    .tech-category-heading {
        font-size: 24px;
        text-align: center;
    }
}

.pagination-container {
    width: 100%;
}

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

.page-item {
    margin: 0 4px;
}

.page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 29px;
    border-radius: 3px;
    font-family: "Sarabun", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    border: 1px solid #264653;
    background: #ffffff;
    transition: all 0.3s ease;
}

.page-item.active .page-link {
    background: #d9d9d9;
    border-color: #d9d9d9;
}

.page-item.disabled .page-link {
    background: #d9d9d9;
    border-color: #d9d9d9;
    pointer-events: none;
}

.page-link.highlighted {
    border-color: #ea6f50;
}

.page-link:hover:not(.disabled) {
    background-color: #f5f5f5;
}

.ellipsis .page-link {
    border: none;
    width: 29px;
    pointer-events: none;
}

.ellipsis-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #264653;
    display: inline-block;
    border: 1px solid #264653;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .pagination {
        justify-content: center;
    }

    .page-item:not(.active):not(:first-child):not(:last-child):not(.ellipsis) {
        display: none;
    }

    .page-item.ellipsis {
        display: block;
    }
}

@media (max-width: 400px) {
    .page-link {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .page-item {
        margin: 0 2px;
    }
}

/* Complete CSS with blogs-main prefix for all classes */

.blogs-main-pagination-container {
    width: 100%;
}

.blogs-main-pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.blogs-main {
    position: relative;
    padding: 66px 0;
}

.blogs-main * {
    box-sizing: border-box;
}

.blogs-main-title {
    color: #264653;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 50px;
}

.blogs-main-item {
    margin-bottom: 50px;
}

.blogs-main-cover {
    width: 100%;
    height: 265px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.blogs-main-cover:hover {
    transform: scale(1.05);
}

.blogs-main-content-box {
    border: 2px solid #264653;
    border-radius: 20px;
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.blogs-main-content-box:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blogs-main-home-insight-journey-step {
    border: 4px solid #264653;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.blogs-main-home-insight-journey-step:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blogs-main-category {
    background: #ea6f50;
    border-radius: 50px;
    color: white;
    padding: 5px 15px;
    display: inline-block;
    font-family: "Sarabun", sans-serif;
    font-size: 14px;
    margin-bottom: 10px;
}

.blogs-main-heading {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blogs-main-excerpt {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
}

.blogs-main-read-more-link {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blogs-main-read-more-link:hover {
    color: #264653;
}

.blogs-main-read-more-link img {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.blogs-main-read-more-link:hover img {
    transform: translateX(5px);
}

.blogs-main-page-item {
    margin: 0 4px;
}

.blogs-main-page-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 29px;
    height: 29px;
    border-radius: 3px;
    font-family: "Sarabun", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    text-decoration: none;
    border: 1px solid #264653;
    background: #ffffff;
    transition: all 0.3s ease;
}

.blogs-main-page-item.active .blogs-main-page-link {
    background: #d9d9d9;
    border-color: #d9d9d9;
}

.blogs-main-page-item.disabled .blogs-main-page-link {
    background: #d9d9d9;
    border-color: #d9d9d9;
    pointer-events: none;
}

.blogs-main-page-link.highlighted {
    border-color: #ea6f50;
}

.blogs-main-page-link:hover:not(.disabled) {
    background-color: #f5f5f5;
}

.blogs-main-ellipsis .blogs-main-page-link {
    border: none;
    width: 29px;
    pointer-events: none;
}

.blogs-main-ellipsis-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.blogs-main-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #264653;
    display: inline-block;
    border: 1px solid #264653;
}

/* Most Popular Section Styles */
.blogs-main-popular {
    padding: 0 15px;
}

.blogs-main-popular-title {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 15px;
    text-align: center;
}

.blogs-main-popular-divider {
    height: 4px;
    background-color: #ea6f50;
    width: 100%;
    margin-bottom: 25px;
}

.blogs-main-popular-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blogs-main-popular-item {
    padding-bottom: 20px;
}

.blogs-main-popular-item:last-child {
    border-bottom: none;
}

.blogs-main-popular-heading {
    color: #000000;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blogs-main-popular-link {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blogs-main-popular-link:hover {
    color: #264653;
}

.blogs-main-popular-link img {
    width: 20px;
    height: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.blogs-main-popular-link:hover img {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .blogs-main-popular {
        margin-top: 30px;
    }

    .blogs-main-popular {
        padding: 0px;
    }
    .blogs-main-title {
        font-size: 48px;
    }

    .blogs-main-heading {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .blogs-main-title {
        font-size: 40px;
    }

    .blogs-main-heading {
        font-size: 24px;
    }

    .blogs-main-popular-title {
        font-size: 28px;
    }

    .blogs-main-popular-list {
        gap: 15px;
    }

    .blogs-main-popular-item {
        padding-bottom: 15px;
    }

    .blogs-main-pagination {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .blogs-main-title {
        font-size: 32px;
    }

    .blogs-main-cover {
        height: 220px;
    }

    .blogs-main-popular-title {
        font-size: 24px;
        text-align: center;
    }

    .blogs-main-popular-divider {
        margin-left: auto;
        margin-right: auto;
        width: 80%;
    }

    .blogs-main-page-item:not(.active):not(:first-child):not(:last-child):not(
            .ellipsis
        ) {
        display: none;
    }

    .blogs-main-page-item.ellipsis {
        display: block;
    }
}

@media (max-width: 400px) {
    .blogs-main-page-link {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .blogs-main-page-item {
        margin: 0 2px;
    }
}

/* Blog Detail Styles */
.blog-detail-section {
    padding: 30px 0;
    overflow-x: hidden; /* Prevent horizontal scroll due to full-width image */
}

.blog-detail-header {
    margin-bottom: 30px;
}

.blog-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.blog-detail-by-author {
    color: #ea6f50;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    margin-right: 20px;
    margin-bottom: 10px;
}

.blog-detail-by-author-label {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.blog-detail-by-author-name {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.blog-detail-posted-on {
    color: #ea6f50;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    position: relative;
    margin-bottom: 10px;
}

.blog-detail-posted-on-label {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 700;
}

.blog-detail-posted-on-date {
    color: #ea6f50;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.blog-detail-intro {
    color: #000000;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}

.blog-detail-subheading {
    color: #000000;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: 30px;
}

.blog-detail-content-block {
    color: #000000;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Full viewport width image */
.blog-detail-image {
    width: 100vw;
    max-width: 100vw;
    height: auto;
    object-fit: cover;
    margin: 30px 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Blog Navigation */
.blog-detail-navigation {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.blog-detail-nav-item {
    display: flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.blog-detail-nav-item:hover {
    color: #ea6f50;
}

.blog-detail-nav-icon {
    background: #d9d9d9;
    border-radius: 3px;
    min-width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    flex-shrink: 0; /* Prevent the icon from shrinking */
}

.blog-detail-nav-previous {
    margin-right: auto;
}

.blog-detail-nav-previous .blog-detail-nav-icon {
    margin-left: 0;
}

.blog-detail-nav-next {
    margin-left: auto;
    text-align: right;
    align-self: flex-end;
}

.blog-detail-nav-next .blog-detail-nav-icon {
    margin-right: 0;
}

/* Media Queries */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .blog-detail-section {
        padding: 40px 0;
    }

    .blog-detail-meta {
        flex-wrap: nowrap;
    }

    .blog-detail-navigation {
        flex-direction: row;
        justify-content: space-between;
    }

    .blog-detail-nav-item {
        max-width: 45%;
        margin-bottom: 0;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .blog-detail-section {
        padding: 50px 0;
    }

    .blog-detail-intro {
        font-size: 18px;
    }

    .blog-detail-subheading {
        font-size: 18px;
    }

    .blog-detail-content-block {
        font-size: 17px;
    }

    .blog-detail-nav-item {
        font-size: 16px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .blog-detail-section {
        padding: 60px 0;
    }

    .blog-detail-intro {
        font-size: 18px;
    }

    .blog-detail-subheading {
        font-size: 20px;
    }

    .blog-detail-content-block {
        font-size: 18px;
    }

    .blog-detail-nav-item {
        max-width: 48%;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .blog-detail-section {
        padding: 70px 0;
    }

    .blog-detail-header {
        margin-bottom: 40px;
    }

    .blog-detail-nav-item {
        font-size: 16px;
    }
}

/* Fix for very small mobile devices */
@media (max-width: 375px) {
    .blog-detail-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-detail-by-author,
    .blog-detail-posted-on {
        margin-bottom: 10px;
    }

    .blog-detail-nav-item {
        font-size: 14px;
    }

    .blog-detail-nav-icon {
        min-width: 24px;
        height: 24px;
    }
}
.home-booking-lefts {
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-booking-left-titles {
    color: #ffffff;
    text-align: center;
    font-family: "Sarabun", sans-serif;
    font-size: 55px;
    font-weight: 800;
    position: relative;
}

/* About Us Section */
.career-about-us {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.paragraph-setting {
    color: #ffffff;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
}
.career-company-title {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.career-company-highlight {
    position: relative;
    padding-left: 20px;
    margin-bottom: 30px;
}

.career-vertical-line {
    background: #264653;
    width: 3px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.career-company-highlight-text {
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    text-align: justify;
    color: #000000;
    font-size: 16px;
}

.career-company-description {
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    text-align: justify;
    color: #000000;

    font-weight: 400;
    margin-bottom: 0px !important;
}

/* FAQ Section Styles */
.career-faq-heading {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 30px;
}

.career-divider {
    border-top: 1px solid #000000;
}

.career-faq-item {
    padding: 15px 0;
    border-bottom: 1px solid #000000;
}

.career-faq-question {
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    font-size: 16px;
    color: #264653;
}

.career-faq-answer {
    padding-top: 15px;
    padding-bottom: 10px;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
}

.career-toggle-btn {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    border: 1px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: "Sarabun", sans-serif;
    font-weight: 700;
    transition: all 0.3s ease;
}

.career-toggle-btn:hover {
    background-color: rgba(38, 70, 83, 0.1);
}

.career-job-section-title {
    color: #000000;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.career-apply-btn {
    background-color: transparent;
    border: none;
    margin-top: 15px;
    transition: all 0.3s ease;
    color: #ea6f50;
    text-align: left;
    font-family: "Sarabun", sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.career-apply-btn:hover {
    font-weight: 900;
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
    .career-about-us,
    .career-faq-heading {
        font-size: 32px;
    }

    .paragraph-setting {
        color: #ffffff;
        font-family: "Sarabun", sans-serif;
        font-size: 16px;
        font-weight: 700;
    }
    .career-company-title {
        font-size: 24px;
    }

    .career-about-column,
    .career-faq-column {
        margin-bottom: 40px;
    }

    .career-faq-question {
        font-size: 16px;
    }
}

.blog-job-heading {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-size: 32px;
    font-weight: 700;
}
.resume-upload-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.resume-label {
    color: #264653;
    font-family: "Sarabun", sans-serif;
    font-weight: 800;
    font-size: 16px;
    margin: 0;
}

.paperclip-icon {
    position: absolute;
    right: 35%;
    top: 50%;
    transform: translateY(-50%);
}

.resume-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #264653;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: #ff0000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}
