:root {
    --blue-light: #f5f7ff;
    --blue-medium: #a5b8f9;
    --blue-primary: #4a50e0;
    --blue-dark: #2f326d;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}
.logo-width{
width: 15%;;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background-color: var(--white);
    color: var(--text-dark);
}

.hob-top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--blue-dark);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.4rem 1.5rem;
}

.hob-top-header__contacts {
    display: flex;
    gap: 1.2rem;
}

.hob-top-header__contacts span {
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hob-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background-color: var(--blue-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 99;
}

/* .hob-header__logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-dark);
    letter-spacing: -0.5px;
    cursor: pointer;
} */

.hob-header__nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}

.hob-header__nav span {
    position: relative;
    font-size: 1rem;
    color: var(--blue-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.hob-header__nav span::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--blue-primary);
    transition: width 0.3s ease;
}

.hob-header__nav span:hover {
    color: var(--blue-primary);
}

.hob-header__nav span:hover::after {
    width: 100%;
}

.hob-header__nav-services {
    position: relative;
}

.hob-header__nav-services-dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: rgba(47, 50, 109, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.6rem 0;
    min-width: 180px;
    border-radius: 10px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
    z-index: 20;
}

.hob-header__nav-services-dropdown li {
    padding: 0.6rem 1.2rem;
    color: #e4e6fb;
    cursor: pointer;
    transition: background 0.25s ease;
    white-space: nowrap;
}

.hob-header__nav-services-dropdown li:hover {
    background-color: var(--blue-primary);
    color: #fff;
}

.hob-header__call-button {
    position: relative;
    overflow: hidden;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: #fff;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
}

.hob-header__call-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: slide-glow 2s infinite;
}

.hob-header__call-button:hover {
    transform: translateY(-2px);
}

@keyframes slide-glow {
    0% {
        left: -75%;
    }

    50% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

.hob-hamburger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    gap: 5px;
}

.hob-hamburger-icon span {
    height: 3px;
    width: 100%;
    background-color: var(--blue-dark);
    border-radius: 2px;
}

.hob-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background-color: var(--blue-light);
    transition: left 0.3s ease;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.hob-drawer.hob-open {
    left: 0;
}

.hob-drawer-content {
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hob-drawer-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--blue-dark);
}

.hob-header__nav-services-mobile span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--blue-dark);
    font-weight: 500;
}

.hob-header__nav-services-dropdown-mobile {
    padding-left: 1rem;
    margin-top: 0.5rem;
}

.hob-header__nav-services-dropdown-mobile li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--blue-dark);
    cursor: pointer;
}

.hob-header__nav-services-dropdown-mobile li:hover {
    color: var(--blue-primary);
}

.hob-header__call-button-mobile {
    margin-top: 1rem;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    border: none;
    outline: none;
    text-align: center !important;
}

.hob-header__call-button-mobile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: slide-glow 2s infinite;
}

@media (max-width: 768px) {
    .hob-header__nav {
        display: none;
    }

    .hob-header__logo {
        font-size: 20px;
    }

    .hob-drawer .hob-header__nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .hob-header__nav span {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(173, 191, 244, 0.3);
        /* lighter stroke */
        font-weight: 600;
        font-size: 1rem;
        color: var(--blue-dark);
        transition: background-color 0.3s ease, color 0.3s ease;
        padding-left: 1rem;
    }

    .hob-header__nav span:hover {
        background-color: rgba(85, 89, 214, 0.1);
        color: var(--blue-primary);
    }

    .hob-header__nav-services-mobile {
        width: 100%;
    }

    .hob-header__nav-services-mobile span {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        font-weight: 600;
        color: var(--blue-dark);
        cursor: pointer;
        transition: background-color 0.3s ease, color 0.3s ease;
    }

    .hob-header__nav-services-mobile span:hover {
        background-color: rgba(85, 89, 214, 0.1);
        color: var(--blue-primary);
    }

    .hob-header__nav-services-dropdown-mobile li {
        padding: 0.75rem;
        color: var(--blue-dark);
        font-size: 0.95rem;
        transition: background 0.3s ease;
        cursor: pointer;
    }

    .hob-header__nav-services-dropdown-mobile li:hover {
        background-color: rgba(85, 89, 214, 0.1);
        color: var(--blue-primary);
    }

    .hob-hamburger-icon {
        display: flex;
    }

    .hob-header__call-button {
        display: none;
    }

    .hob-drawer {
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
        border-top-right-radius: 12px;
        border-bottom-right-radius: 12px;
        overflow-y: auto;
    }
}



/* -------------------------------------------------------------------------------------------- */

/* Main section */
.hob-main-home-section {
    display: flex;
    justify-content: center;
    height: 90vh;
    overflow: hidden;
    
    /* CHANGED: Use specific property and check filename casing */
    background-image: url("https://css.100billiontech.com/secure_css/HBT/royal_ambulance/hob_Main_bg.png");
    
    /* Ensure these are AFTER the image url */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Hero container */
.hob-main-home-hero {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 20px;
}

/* Left side */
.hob-main-home-left {
    flex: 1;
    padding-right: 24px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.hob-main-home-highlight-text {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: bold;
    color: var(--blue-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    width: auto !important;
    max-width: fit-content;
    margin-bottom: 5px;
}


/* Heading */
.hob-main-home-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 13px;
    letter-spacing: 1px;
    line-height: 52px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

/* Paragraph */
.hob-main-home-paragraph {
    font-size: 16px;
    color: #333;
    line-height: 22px;
    margin-bottom: 24px;
}

/* Right side */
.hob-main-home-right {
    flex: 1;
    width: 100%;
    height: 100%;
    position: relative;
}

/* Image */
.hob-main-home-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 500px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    border-radius: 10px 10px 0 0;
}

.hob-main-right-testimonial {
    position: absolute;
    bottom: 50px;
    left: -20px;
    z-index: 5;
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    /* More prominent shadow on all sides */
    max-width: 180px;
    width: 100%;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    text-align: center;
    animation: bounce 5s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Bounce animation */
@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.hob-main-right-testimonial p,
.hob-main-right1-testimonial p {
    font-style: italic;
    margin: 0;
}

.hob-main-right-testimonial span,
.hob-main-right1-testimonial span {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    width: 50px;
    height: 50px;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hob-main-right-testimonial svg,
.hob-main-right1-testimonial svg {
    color: var(--blue-light);
    width: 30px;
    height: 30px;
}

.hob-testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: var(--blue-primary);
    margin-right: 5px;
}

.hob-main-right1-testimonial {
    position: absolute;
    top: 50px;
    right: 5px;
    z-index: 5;
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    /* More prominent shadow on all sides */
    max-width: 180px;
    width: 100%;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    text-align: center;
    animation: bounce 5s infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* CTA container */
.hob-main-home-cta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
}

/* CTA Buttons */
.hob-main-home-cta button {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    outline: none;
    border: 2px solid transparent;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
.hob-main-home-cta-primary {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hob-main-home-cta-primary:hover {
    background: linear-gradient(135deg, var(--blue-primary), #0088ff);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Secondary Button */
.hob-main-home-cta-secondary {
    background: linear-gradient(135deg, #ffffff, #f2f2f2);
    color: var(--blue-dark);
    border-color: var(--blue-dark) !important;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.05);
}

.hob-main-home-cta-secondary:hover {
    background: linear-gradient(135deg, var(--blue-primary), #0078d4);
    color: white;
    border-color: var(--blue-primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive styling (in px) */
@media (max-width: 768px) {
    .hob-main-home-section {
        height: 85vh;
    }

    .hob-main-home-hero {
        flex-direction: column;
        align-items: center;
        padding: 16px;
    }

    .hob-main-home-left {
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .hob-main-home-right {
        margin-top: 24px;
    }

    .hob-main-home-highlight-text {
        font-size: 12px;
        padding: 6px 8px;
    }

    .hob-main-home-heading {
        font-size: 24px;
        line-height: 36px;
    }

    .hob-main-home-paragraph {
        font-size: 14px;
        line-height: 20px;
    }

    .hob-main-home-cta button {
        font-size: 14px;
        padding: 10px 18px;
        margin-bottom: 10px;
    }

    /* .hob-main-home-image {
        max-width: 320px;
    } */

    .hob-main-right-testimonial {
        bottom: 10px;
        left: 0;
        max-width: 150px;
        font-size: 10px;
    }

    .hob-main-right1-testimonial {
        top: 0px;
        right: 0;
        max-width: 150px;
        font-size: 12px;
    }

    .hob-main-right-testimonial span,
    .hob-main-right1-testimonial span {
        width: 40px;
        height: 40px;
    }

    .hob-main-right-testimonial svg,
    .hob-main-right1-testimonial svg {
        width: 25px;
        height: 25px;
    }

    .hob-testimonial-stars svg {
        width: 14px;
        height: 14px;
    }

    .hob-main-home-cta {
        justify-content: center;
    }
}


/* ---------------------------------------------------------------------------------------------- */

/* Main Section */
.hob-services-section {
    padding: 50px 20px;
    text-align: center;
}

/* Header */
.hob-services-header {
    margin-bottom: 20px;
}

.hob-services-heading {
    font-size: 32px;
    font-weight: 800;
    color: var(--blue-dark);
    letter-spacing: -0.5px;
}

.hob-services-subtext {
    font-size: 15px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Flex container */
.hob-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
    padding-bottom: 10px;
}

/* Premium-style card */
.hob-service-card {
    background: linear-gradient(145deg, #ffffff, #f8f8f8);
    border-radius: 20px;
    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.04),
        0 10px 20px rgba(0, 0, 0, 0.06),
        0 20px 40px rgba(0, 0, 0, 0.08);
    padding: 24px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 260px;
    max-width: 300px;
    scroll-snap-align: start;
    border: 1px solid rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(4px);
}

.hob-service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.06),
        0 14px 28px rgba(0, 0, 0, 0.1),
        0 22px 48px rgba(0, 0, 0, 0.14);
}

/* Icon styling */
.hob-service-icon {
    background: var(--blue-primary);
    color: white;
    padding: 14px;
    border-radius: 50%;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text elements */
.hob-service-title {
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.hob-service-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hob-service-link {
    font-size: 13px;
    color: var(--blue-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    transition: color 0.3s;
    cursor: pointer;
    width: 100%;
    text-align: center;
    justify-content: center;
}

.hob-service-link:hover {
    color: var(--blue-dark);
}

.hob-service-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    text-align: center;
}


/* Responsive styling */
@media (max-width: 1024px) {
    .hob-services-heading {
        font-size: 28px;
    }

    .hob-services-subtext {
        font-size: 14px;
    }

    .hob-service-card {
        min-width: 280px;
        max-width: 320px;
        padding: 20px 18px;
    }

    .hob-service-title {
        font-size: 16px;
    }

    .hob-service-desc {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .hob-services-heading {
        font-size: 24px;
    }

    .hob-services-subtext {
        font-size: 13px;
    }

    .hob-services-grid {
        flex-direction: column;
        gap: 20px;
    }

    .hob-service-card {
        min-width: 100%;
        max-width: 100%;
        padding: 16px 14px;
    }

    .hob-service-title {
        font-size: 15px;
    }

    .hob-service-desc {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hob-services-heading {
        font-size: 20px;
    }

    .hob-services-subtext {
        font-size: 12px;
    }

    .hob-services-grid {
        gap: 16px;
    }

    .hob-service-card {
        padding: 14px 12px;
    }

    .hob-service-title {
        font-size: 16px;
    }

    .hob-service-desc {
        font-size: 12px;
    }
}


/* --------------------------------------------------------------------------------------------- */

/* Main Section */
.hob-aboutus-section {
    padding: 60px 20px;
    background: linear-gradient(145deg, #ffffff, #f6f9fc);
}

/* Container */
.hob-aboutus-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Left Section */
.hob-aboutus-left {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
}

.hob-aboutus-heading {
    font-size: 34px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 20px;
}

.hob-aboutus-text {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 18px;
    text-align: justify;
}

.hob-aboutus-subtext {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Right Section */
.hob-aboutus-right {
    flex: 1;
    position: relative;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.hob-aboutus-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hob-aboutus-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

/* Floating badges */
.hob-aboutus-float {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #333;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.hob-aboutus-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center !important;
}

.hob-aboutus-float svg {
    color: var(--blue-primary);
}

/* Infinite float animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Floating positions */
.hob-aboutus-top-right {
    top: -20px;
    right: 0px;
    animation: float 3s ease-in-out infinite;
}

.hob-aboutus-bottom-right {
    bottom: -20px;
    right: -20px;
    animation: float 3s ease-in-out infinite;
}

.hob-aboutus-center-float {
    bottom: 30%;
    left: -30px;
    animation: float 3s ease-in-out infinite;
}

.hob-aboutus-float-desc {
    font-size: 12px;
    color: #777;
    text-align: center;
    max-width: 150px;
    line-height: 1.4;
}

/* List Styling */
.hob-aboutus-list {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
}

.hob-aboutus-list li {
    font-size: 16px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hob-aboutus-list li svg {
    color: var(--blue-primary);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hob-aboutus-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .hob-aboutus-left {
        max-width: 100%;
    }

    .hob-aboutus-right {
        max-width: 100%;
    }

    .hob-aboutus-image {
        max-width: 100%;
        height: auto;
    }

    .hob-aboutus-heading {
        font-size: 28px;
    }

    .hob-aboutus-text {
        font-size: 15px;
    }

    .hob-aboutus-subtext {
        font-size: 13px;
    }

    .hob-aboutus-float {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .hob-aboutus-container {
        flex-direction: column;
        gap: 30px;
    }

    .hob-aboutus-heading {
        font-size: 24px;
    }

    .hob-aboutus-text {
        font-size: 14px;
    }

    .hob-aboutus-subtext {
        font-size: 12px;
    }

    .hob-aboutus-image {
        max-width: 100%;
        height: auto;
    }

    .hob-aboutus-float {
        font-size: 11px;
        padding: 6px 10px;
    }
}

@media (max-width:600px) {
    .hob-aboutus-bottom-right {
        right: -10px;
    }

    .hob-aboutus-center-float {
        left: -10px;
    }
}

@media (max-width: 480px) {
    .hob-aboutus-heading {
        font-size: 20px;
    }

    .hob-aboutus-subtext {
        font-size: 11px;
    }

    .hob-aboutus-float {
        font-size: 10px;
        padding: 5px 8px;
    }
}



/* ---------------------------------------------------------------------------------------------- */

/* Base CTA Section */
.hob-cta-section {
    background-image: url("https://css.100billiontech.com/secure_css/HBT/royal_ambulance/hob_cta_bg.png");
    background-size: cover;
    background-position: center;
    padding: 30px 15px;
    color: #fff;
    position: relative;
    max-width: 1200px;
    width: 95%;
    margin: 30px auto 30px;
    border-radius: 20px;
}

/* Container */
.hob-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    padding: 10px;
    text-align: center;
}

/* Left Content */
.hob-cta-left {
    text-align: center;
    max-width: 600px;
}

/* Heading */
.hob-cta-heading {
    font-size: 34px;
    font-weight: 800;
    color: var(--blue-dark);
    margin-bottom: 10px;
}

/* Description */
.hob-cta-description {
    font-size: 18px;
    color: var(--blue-primary);
    margin-bottom: 20px;
}

/* Button */
.hob-cta-button {
    position: relative;
    overflow: hidden;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: #fff;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: auto;
}

.hob-cta-button svg {
    margin-right: 5px;
}

.hob-cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: slide-glow 2s infinite;
}

.hob-cta-button:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hob-cta-section {
        padding: 25px 20px;
    }

    .hob-cta-heading {
        font-size: 28px;
    }

    .hob-cta-description {
        font-size: 16px;
    }

    .hob-cta-button {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .hob-cta-section {
        padding: 20px 15px;
    }

    .hob-cta-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 10px;
    }

    .hob-cta-heading {
        font-size: 24px;
    }

    .hob-cta-description {
        font-size: 15px;
    }

    .hob-cta-button {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .hob-cta-section {
        padding: 15px 10px;
    }

    .hob-cta-heading {
        font-size: 20px;
    }

    .hob-cta-description {
        font-size: 14px;
    }

    .hob-cta-button {
        font-size: 0.85rem;
        padding: 0.45rem 0.9rem;
    }
}

/* -------------------------------------------------------------------------------------------- */

.hob-footer {
    background-color: var(--blue-dark);
    color: #fff;
    padding: 20px 15px;
    text-align: center;
}

.hob-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.hob-footer-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hob-footer-logo svg {
    margin-right: 10px;
}

.hob-footer-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--blue-light);
}

.hob-footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.hob-footer-link {
    font-size: 16px;
    color: var(--blue-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hob-footer-link:hover {
    color: var(--blue-medium);
}

.hob-footer-bottom {
    padding-top: 15px;
    border-top: 1px solid var(--blue-medium);
}

.hob-footer-copyright {
    font-size: 14px;
    color: var(--blue-light);
}

.hob-footer-copyright a {
    color: var(--blue-medium);
}

/* Responsive */
@media (max-width: 768px) {
    .hob-footer-top {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .hob-footer-text {
        font-size: 20px;
    }

    .hob-footer-links {
        gap: 15px;
    }

    .hob-footer-link {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hob-footer-text {
        font-size: 18px;
    }

    .hob-footer-link {
        font-size: 14px;
    }

    .hob-footer-logo svg {
        margin-right: 6px;
        width: 20px;
        height: 20px;
    }
}

/* --------------------------------------------------------------------------------------------------- */

.hob-about-hero {
    background: radial-gradient(circle at center, var(--blue-light), var(--blue-medium), var(--blue-primary));
    padding: 80px 20px;
    text-align: center;
    color: var(--text-dark);
}


.hob-about-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hob-about-subtitle {
    font-size: 1.2rem;
    color: #666;
}

.hob-about-story {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hob-about-heading {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: #222;
}

.hob-about-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.hob-about-values {
    background-color: #f9f9f9;
    padding: 60px 20px;
}

.hob-about-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.hob-about-value-card {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    text-align: center;
    transition: transform 0.3s ease;
}

.hob-about-value-card:hover {
    transform: translateY(-6px);
}

.hob-about-icon {
    color: #1d4ed8;
    margin-bottom: 12px;
}

.hob-about-value-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hob-about-value-text {
    font-size: 0.95rem;
    color: #666;
}

.hob-about-closing {
    padding: 60px 20px;
    background: #ffffff;
    text-align: center;
}

.hob-about-closing-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hob-about-title {
        font-size: 2.2rem;
    }

    .hob-about-heading {
        font-size: 1.6rem;
    }

    .hob-about-values-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hob-about-title {
        font-size: 2rem;
    }

    .hob-about-subtitle {
        font-size: 1rem;
    }

    .hob-about-heading {
        font-size: 1.5rem;
    }

    .hob-about-value-title {
        font-size: 1rem;
    }

    .hob-about-value-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hob-about-hero {
        padding: 50px 15px;
    }

    .hob-about-title {
        font-size: 1.75rem;
    }

    .hob-about-subtitle {
        font-size: 0.95rem;
    }

    .hob-about-story,
    .hob-about-values,
    .hob-about-closing {
        padding: 40px 15px;
    }

    .hob-about-heading {
        font-size: 1.3rem;
    }

    .hob-about-text {
        font-size: 0.95rem;
    }

    .hob-about-values-grid {
        gap: 16px;
    }

    .hob-about-value-card {
        padding: 20px;
    }
}

/* --------------------------------------------------------------------------------------------- */

:root {
    --blue-light: #f5f7ff;
    --blue-medium: #a5b8f9;
    --blue-primary: #4a50e0;
    --blue-dark: #2f326d;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

.chimney-repair-container {
    padding: 15px;
    background-color: var(--blue-light);
}

.chimney-repair-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.chimney-repair-hero {
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding: 40px;
    background-color: var(--blue-light);
    color: var(--blue-dark);
    border-radius: 8px;
    margin-bottom: 24px;
}

.chimney-repair-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.chimney-repair-subtitle {
    font-size: 14px;
    line-height: 22px;
    color: var(--blue-primary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.chimney-repair-cta-btn {
    position: relative;
    overflow: hidden;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    color: #fff;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.chimney-repair-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    animation: slide-glow 2s infinite;
}

.chimney-repair-cta-btn:hover {
    transform: translateY(-2px);
}

.chimney-repair-service-img {
    width: 100%;
    height: 400px;
    overflow: hidden;
    max-height: 1200px;
    margin: 20px auto;
}

.chimney-repair-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chimney-repair-why-choose {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 20px auto 20px;
}

.chimney-repair-why-content {
    text-align: center;
}

.chimney-repair-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.chimney-repair-why-item {
    text-align: center;
    padding: 16px;
}

.chimney-repair-icon {
    color: var(--blue-primary);
    margin-bottom: 16px;
}

.chimney-repair-subheading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.chimney-repair-description {
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-dark);
}

/* Our Process Section */
.chimney-repair-process {
    padding: 15px;
    background-color: var(--blue-light);
    border-radius: 8px;
    max-width: 1200px;
    margin: 30px auto 50px;
}

.chimney-repair-heading {
    margin-bottom: 10px;
}

.chimney-repair-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.chimney-repair-step {
    background-color: var(--white);
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.chimney-repair-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.chimney-repair-step-description {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .chimney-repair-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .chimney-repair-process-steps {
        grid-template-columns: 1fr;
    }

    .chimney-repair-service-img {
        height: 300px;
    }

    .chimney-repair-why-choose,
    .chimney-repair-process {
        padding: 30px 20px;
    }

    .chimney-repair-title {
        font-size: 24px;
    }

    .chimney-repair-step-title {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .chimney-repair-hero {
        flex-direction: column;
        padding: 30px 15px;
    }

    .chimney-repair-title {
        font-size: 22px;
    }

    .chimney-repair-subtitle {
        font-size: 13px;
    }

    .chimney-repair-cta-btn {
        font-size: 0.95rem;
        padding: 0.5rem 1.2rem;
    }

    .chimney-repair-service-img {
        height: 250px;
    }

    .chimney-repair-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .chimney-repair-step-title {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .chimney-repair-hero {
        padding: 20px 10px;
    }

    .chimney-repair-title {
        font-size: 20px;
    }

    .chimney-repair-subtitle {
        font-size: 12px;
        line-height: 20px;
    }

    .chimney-repair-cta-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .chimney-repair-service-img {
        height: 200px;
    }

    .chimney-repair-why-grid {
        grid-template-columns: 1fr;
    }

    .chimney-repair-why-item {
        padding: 12px;
    }

    .chimney-repair-subheading {
        font-size: 15px;
    }

    .chimney-repair-description {
        font-size: 11px;
    }

    .chimney-repair-step {
        padding: 18px;
    }

    .chimney-repair-step-title {
        font-size: 14px;
    }

    .chimney-repair-step-description {
        font-size: 11px;
    }
}


/* ------------------------------------------------------------------------------------------------- */

:root {
    --blue-light: #f5f7ff;
    --blue-medium: #a5b8f9;
    --blue-primary: #4a50e0;
    --blue-dark: #2f326d;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --white: #ffffff;
    --background-card-white: var(--white);
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Base Styles */
.contact-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    background: var(--blue-light);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
}

.contact-us-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 40px;
}

.contact-us-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--text-primary);
    letter-spacing: 1px;
}

.contact-us-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.contact-us-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: var(--background-card-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-light);
    width: 280px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow: hidden;
}


.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 30px;
    height: 30px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.contact-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.contact-detail {
    font-size: 16px;
    color: var(--text-secondary);
}

.contact-us-map {
    margin-top: 40px;
    text-align: center;
}

.contact-us-map h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}


.contact-detail {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px;
}

.contact-detail li {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue-primary));
    padding: 12px 18px;
    border-radius: 12px;
    color: var(--blue-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-weight: 500;
    font-size: 14px;
}

.contact-detail li:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}


/* Responsive Breakpoints */

/* Tablets and below */
@media (max-width: 1024px) {
    .contact-us-title {
        font-size: 28px;
    }

    .contact-us-description {
        font-size: 16px;
    }

    .contact-card {
        width: 240px;
    }

    .contact-card h3 {
        font-size: 18px;
    }

    .contact-detail {
        font-size: 14px;
    }

    .contact-us-map h2 {
        font-size: 24px;
    }
}

/* Mobile large and below */
@media (max-width: 768px) {
    .contact-us-info {
        flex-direction: column;
        align-items: center;
    }

    .contact-card {
        width: 90%;
    }

    .contact-us-header {
        padding: 0 20px;
    }

    .contact-us-title {
        font-size: 24px;
    }

    .contact-us-map h2 {
        font-size: 22px;
    }
}

/* Small mobiles */
@media (max-width: 480px) {
    .contact-us-container {
        padding: 40px 15px;
    }

    .contact-us-title {
        font-size: 20px;
    }

    .contact-us-description,
    .contact-detail {
        font-size: 14px;
    }

    .contact-card h3 {
        font-size: 16px;
    }

    .contact-icon {
        width: 24px;
        height: 24px;
    }
}



.custom-marquee-wrapper {
    background-color: var(--blue-dark);
    padding: 10px 0;
}

.custom-marquee-text {
    margin: 0;
    padding: 0 50px;
    font-size: 16px;
    color: var(--white);
    white-space: nowrap;
    display: flex;
    align-items: center;
}



/* ---------------------------------------------------------------------------- */

:root {
    --blue-light: #f5f7ff;
    --blue-medium: #a5b8f9;
    --blue-primary: #4a50e0;
    --blue-dark: #2f326d;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

.wcu-hob-section {
    padding: 40px 20px;
    background: linear-gradient(to right, var(--blue-dark), #1e1f3f);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.wcu-hob-section::before,
.wcu-hob-section::after {
    content: '';
    position: absolute;
    z-index: -1;
    opacity: 0.2;
}

.wcu-hob-section::before {
    top: -20%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: rgba(74, 80, 224, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(74, 80, 224, 0.3);
}

.wcu-hob-section::after {
    bottom: -20%;
    right: -20%;
    width: 250px;
    height: 250px;
    background: rgba(74, 80, 224, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 60px rgba(74, 80, 224, 0.3);
}

.wcu-hob-container {
    max-width: 1100px;
    margin: 0 auto;
}

.wcu-hob-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.wcu-hob-subtitle {
    font-size: 16px;
    color: var(--blue-medium);
    margin-bottom: 30px;
}

.wcu-hob-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.wcu-hob-card {
    background: var(--blue-dark);
    border: 1px solid var(--blue-primary);
    padding: 24px;
    border-radius: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(74, 80, 224, 0.15);
}

.wcu-hob-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 24px rgba(74, 80, 224, 0.3);
}

.wcu-hob-icon-wrapper {
    margin-bottom: 16px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    border: 1px solid var(--blue-primary);
    padding: 12px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--blue-primary), var(--blue-light));
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.wcu-hob-icon-wrapper:hover {
    background: linear-gradient(45deg, var(--blue-light), var(--blue-primary));
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(74, 80, 224, 0.25);
}

.wcu-hob-icon {
    color: var(--white);
    width: 35px;
    height: 35px;
    transition: color 0.3s ease;
}

.wcu-hob-icon-wrapper:hover .wcu-hob-icon {
    color: var(--blue-dark);
}

.wcu-hob-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2), 0px 0px 12px rgba(74, 80, 224, 0.4);
    transition: all 0.3s ease;
}

.wcu-hob-card-desc {
    font-size: 14px;
    color: var(--blue-light);
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    transition: color 0.3s ease;
}




/* -------------------------------------------------------------------------------- */

:root {
    --blue-light: #f5f7ff;
    --blue-medium: #a5b8f9;
    --blue-primary: #4a50e0;
    --blue-dark: #2f326d;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

.best-services-section {
    padding: 60px 20px;
    background: linear-gradient(to right, var(--blue-dark), #1e1f3f);
    color: var(--white);
    text-align: center;
}

.best-services-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.best-services-content {
    max-width: 50%;
    text-align: left;
    padding-right: 40px;
}

.best-services-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.best-services-description {
    font-size: 16px;
    color: var(--blue-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.best-services-benefits {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

.benefit {
    text-align: left;
}

.benefits-icon-title {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.benefit h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.benefit p {
    font-size: 14px;
    color: var(--blue-light);
    line-height: 1.4;
}

.best-services-image {
    max-width: 50%;
    overflow: hidden;
}

.best-services-image-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Responsive Styles */

/* Tablet and Mobile Adjustments */
@media (max-width: 1024px) {
    .best-services-container {
        flex-direction: column;
        align-items: center;
    }

    .best-services-content {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .best-services-image {
        max-width: 100%;
        margin-top: 20px;
    }

    .best-services-title {
        font-size: 26px;
    }

    .best-services-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .best-services-section {
        padding: 40px 20px;
    }

    .best-services-title {
        font-size: 24px;
    }

    .best-services-description {
        font-size: 14px;
    }

    .best-services-benefits {
        grid-template-columns: repeat(1, 1fr);
    }

    .benefit h3 {
        font-size: 15px;
    }

    .benefit p {
        font-size: 13px;
    }

    .best-services-image-img {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .best-services-section {
        padding: 30px 15px;
    }

    .best-services-title {
        font-size: 22px;
    }

    .best-services-description {
        font-size: 13px;
    }

    .best-services-benefits {
        grid-template-columns: 1fr;
    }

    .best-services-container {
        padding: 0 15px;
    }

    .best-services-image-img {
        border-radius: 8px;
    }

    .benefit h3 {
        font-size: 14px;
    }

    .benefit p {
        font-size: 12px;
    }
}

/* ------------------------------------------------------------------------------------------------- */

:root {
    --blue-light: #f5f7ff;
    --blue-medium: #a5b8f9;
    --blue-primary: #4a50e0;
    --blue-dark: #2f326d;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

.connect-us-hob-wrapper {
    padding: 20px;
    background-color: var(--blue-light);
    overflow-x: hidden;
    display: flex;
    justify-content: center;
}

.connect-us-hob-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.connect-us-hob-form-section,
.connect-us-hob-info-section {
    flex: 1;
    padding: 40px;
    min-width: 0;
}

.connect-us-hob-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--blue-dark);
    text-align: center;
}

.connect-us-hob-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.connect-us-hob-group {
    display: flex;
    flex-direction: column;
}

.connect-us-hob-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--blue-dark);
}

.connect-us-hob-input-icon {
    display: flex;
    align-items: center;
    background-color: var(--white);
    border: 1px solid var(--blue-medium);
    border-radius: 12px;
    padding: 12px 14px;
    gap: 10px;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.connect-us-hob-input-icon input {
    outline: none;
    font-size: 16px;
    width: 100%;
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid transparent;
}

.connect-us-hob-input-icon:focus-within {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(74, 80, 224, 0.2);
}

.input-error {
  border-color: red !important;
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}


.connect-us-hob-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--blue-medium);
    border-radius: 12px;
    font-size: 16px;
    background-color: var(--white);
    color: var(--text-dark);
    resize: vertical;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.connect-us-hob-group textarea:focus {
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(74, 80, 224, 0.2);
    outline: none;
}

.connect-us-hob-button {
    padding: 14px;
    background-color: var(--blue-primary);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s ease;
}

.connect-us-hob-button:hover {
    background-color: var(--blue-dark);
    transform: translateY(-2px);
}

.connect-us-hob-button:active {
    transform: translateY(0);
}

/* Info section */
.connect-us-hob-info-section {
    background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    gap: 20px;
}

.connect-us-hob-info-section h3 {
    font-size: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.connect-us-hob-info-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease;
}

.connect-us-hob-info-card:hover {
    transform: translateY(-4px);
}

.connect-us-hob-info-card svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--white);
}

.connect-us-hob-info-card span {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Responsive */
@media (max-width: 768px) {
    .connect-us-hob-container {
        flex-direction: column;
        border-radius: 20px;
    }

    .connect-us-hob-form-section,
    .connect-us-hob-info-section {
        padding: 20px;
    }

    .connect-us-hob-info-section {
        border-radius: 0 0 20px 20px;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .connect-us-hob-info-card {
        justify-content: center;
        text-align: left;
        width: 100%;
        max-width: 320px;
    }
}



/* --------------------------------------------------------------------------------------------- */

/* Our Works Section */
.our-works-section {
    padding: 40px 20px;
    background-color: var(--blue-light);
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.12);
}

.our-works-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.our-works-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--blue-dark);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-works-description {
    font-size: 15px;
    color: var(--blue-medium);
    margin-bottom: 30px;
    line-height: 1.5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.our-works-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.our-works-image img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.our-works-image img:hover {
    transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .our-works-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

    .our-works-title {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .our-works-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .our-works-gallery {
        grid-template-columns: 1fr;
    }

    .our-works-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .our-works-description {
        font-size: 13px;
    }
}


/* --------------------------------------------------------------------------------- */

.premium-support-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.premium-support-menu {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.3s ease forwards;
}

.premium-support-button {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.premium-support-button svg {
  flex-shrink: 0;
}

.premium-support-button.whatsapp {
  background-color: #e5f7ef;
  color: #087f23;
}

.premium-support-button.whatsapp:hover {
  background-color: #d1f0e4;
}

.premium-support-button.call {
  background-color: #e6edfb;
  color: #1a56db;
}

.premium-support-button.call:hover {
  background-color: #d3e2fc;
}

.premium-support-toggle {
  background-color: #4a50e0;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: relative;
  animation: pulse-glow 2s infinite;
}

.premium-support-toggle:hover {
  background-color: #2f326d;
}

.premium-support-toggle:active {
  transform: scale(0.95);
}

/* Pulse Animation */
@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 80, 224, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(74, 80, 224, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 80, 224, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
