/* 1- general css style */
/* #042f47*/
/* #1c9ebd*/
/* #fffff*/

/* 1- general css style */
@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2');
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #042f47;
}

::-webkit-scrollbar-thumb {
    background: #1c9ebd;
}

body {
    font-family: 'Poppins', sans-serif;
}

.line {
    display: block;
    height: 4px;
    width: 60px;
    background-color: #1c9ebd;
    transition: width .5s;
}

.text-justify {
    text-align: justify;
    padding: 5px;
    word-spacing: 0px;
}

.section-title:hover .line {
    width: 150px;
}

a {
    text-decoration: none;
    font-size: 15px;
}

li {
    list-style: none;
}

hr {
    color: #fff;
}

h1,
h2,
h3,
h4 {
    text-transform: capitalize;
}

.tb-effect,
.lt-effect,
.lt-effect-1,
.tb-effect-1 {
    position: relative;
    z-index: 5;
    border-radius: 2px;
}

.tb-effect::after,
.lt-effect::after,
.lt-effect-1::after,
.tb-effect-1::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
}



.lt-effect {
    width: 110px;
}

.lt-effect::after {
    width: 1%;
    background-color: #FF7F11;
    color: #0e2c72;
    transition: width .5s;
}

.lt-effect:hover::after {
    width: 110%;
    color: #fff;
}


.lt-effect-1::after {
    width: 1%;
    background-color: #fe7c34;
    color: #17283d;
    transition: width .5s;
}

.lt-effect-1:hover::after {
    width: 100%;
    color: #fff;
}

.button-hover,
.button-hover-1 {
    position: relative;
    overflow: hidden;
    display: inline-block;

    &:after {
        display: block;
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        top: 0%;
        left: 50%;
        opacity: .4;
        transform: translate(-50%, -50%) scale(0, 0);
        transition: transform .5s ease 0s;
        z-index: 0;
        color: #fff;
    }

    &:hover {
        &:after {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1, 1);
            transition: transform .5s ease 0s;
        }
    }
}

.button-hover {
    background-color: #1a2737;

    &:after {
        background-color: #FF7F11;
    }
}

/* call button */
.btn {
    position: relative;
    text-align: center;
    z-index: 1;
    font-size: 19px;
    background: #1a2737;
    cursor: pointer;
    color: #fff;
    padding: 30px 40px;
    font-weight: 500;

    &:hover {
        color: #fff;
    }
}

.yp-icon {
    width: 30px;
    height: 30px;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Arial, sans-serif;
    font-weight: bold;
    color: #fff;
    font-size: 14px;
   
    position: relative;
}

.yp-line {
    width: 60%;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}
/* Topbar */
.topbar {
    background-color: #042f47;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
}

.topbar i {
    margin-right: 5px;
}

/* Add to your CSS */
.topbar .bi {
    color: #fff !important;
}

/* Navbar */
.main-header {
    background-color: #ffffff;
    padding: 0.8rem 1rem;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-size: 1.7rem;
    font-weight: 700;
    color: #000;
}

.navbar-brand span {
    color: #1c9ebd;
}

.navbar-nav .nav-link {
    color: #042f47 !important;
    font-weight: 500;
    margin-right: 15px;
}

.navbar-nav .nav-link:hover {
    color: #1c9ebd !important;
}

.phone-block {
    display: flex;
    align-items: center;
    background-color: #ec7357;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    color: #fff;
}

.phone-block i {
    margin-right: 8px;
}

/* Centered nav between logo and phone */
.navbar-center {
    flex-grow: 1;
    justify-content: center;
}

@media (max-width: 992px) {
    .phone-block {
        margin-top: 10px;
        justify-content: center;
    }

    .navbar-center {
        justify-content: start;
    }
}

/* Custom styles for phone-block */
.phone-call-link {
    background-color: #1c9ebd;
    /* Original background color */
    color: #fff;
    /* Text color */
    padding: 0.5rem 1rem;
    /* Adjust padding as needed */
    border-radius: 0.375rem;
    /* Match Bootstrap's default border-radius */
    text-decoration: none;
    /* Remove underline from link */
    transition: background-color 0.3s ease, transform 0.3s ease;
    /* Smooth transition for hover */
    display: flex;
    /* Ensure flex properties are applied */
    align-items: center;
    /* Vertically align icon and text */
    gap: 0.5rem;
    /* Space between icon and text */
}

.phone-call-link:hover {
    background-color: #042f47;
    /* Darker shade on hover */
    transform: scale(1.02);
    /* Slightly enlarge on hover */
}

.phone-call-link i {
    transition: transform 0.3s ease;
    /* Smooth transition for icon animation */
}

.phone-call-link:hover i {
    animation: phone-shake 0.5s infinite alternate;
    /* Apply shake animation on hover */
}

@keyframes phone-shake {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(5deg);
    }

    50% {
        transform: rotate(0deg);
    }

    75% {
        transform: rotate(-5deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* .................................... */


/* Hero Section */

.hero-locksmith {
    position: relative;
    background: url('../locksmith/home-locks.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith1 {
    position: relative;
    background: url('../locksmith/automobile-locksmith.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith2 {
    position: relative;
    background: url('../locksmith/residential-locksmith-of-seattle.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith3 {
    position: relative;
    background: url('../locksmith/locksmith-commercial.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith4 {
    position: relative;
    background: url('../locksmith/rekey-lock.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith5 {
    position: relative;
    background: url('../locksmith/change-locks.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith6 {
    position: relative;
    background: url('../locksmith/ignitionkey-locksmith.png') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith7 {
    position: relative;
    background: url('../locksmith/lock-out-locksmith.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith8 {
    position: relative;
    background: url('../locksmith/transponder-key.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-locksmith9 {
    position: relative;
    background: url('../locksmith/cut-replacement-key.webp') no-repeat center center;
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-in-out;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content h1 span {
    color: #1c9ebd;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

.back-text {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13vw;
    /* Responsive font size */
    color: rgba(255, 255, 255, 0.25);
    font-weight: 919;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
    animation: back-text-float 15s ease-in-out infinite;
    /* Apply the floating animation */
}





/* Media query for larger screens */
@media (min-width: 1200px) {
    .back-text {
        font-size: 13rem;
        /* Set a maximum size for very large screens */
    }
}

/* Keyframes for the floating animation of the back text */
@keyframes back-text-float {
    0% {
        transform: translate(-50%, -50%);
        /* Start at original centered position */
    }

    50% {
        transform: translate(-50%, -51%);
        /* Move slightly up */
    }

    100% {
        transform: translate(-50%, -50%);
        /* Return to original position */
    }
}

/* ............................................ */
/* Hero Section Buttons - Creative Shape, Animation, and Hover */
.hero-content .btn-appointment {
    background-color: #1c9ebd;
    /* A vibrant blue from your palette */
    color: #fff;
    border: 2px solid #1c9ebd;
    /* Match border to background */
    border-radius: 50px;
    /* Pill-shaped creative border-radius */
    padding: 0.75rem 1.5rem;
    /* Adjust padding for better look */
    font-size: 1.1rem;
    /* Slightly larger font */
    font-weight: 600;
    /* Make it bolder */
    text-decoration: none;
    display: inline-flex;
    /* Align icon and text */
    align-items: center;
    gap: 0.5rem;
    /* Space between icon and text */
    transition: all 0.3s ease-in-out;
    /* Smooth transitions for all properties */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
}

.hero-content .btn-appointment:hover {
    background-color: #178a9e;
    /* Darker shade on hover */
    border-color: #178a9e;
    transform: translateY(-5px);
    /* Lift effect on hover */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
    /* More pronounced shadow on hover */
}

/* Animation for the phone icon within the button */
.hero-content .btn-appointment i {
    transition: transform 0.3s ease-in-out;
    /* Smooth transition for icon */
}

.hero-content .btn-appointment:hover i {
    animation: pulse-icon 0.7s infinite alternate;
    /* Apply pulse animation on hover */
}

@keyframes pulse-icon {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}


.service-locksmith {
    background: url('../locksmith/bg1.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
}

.service-section {
    padding: 60px 0;
    text-align: center;
}

.service-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.service-section p.lead {
    color: #777;
    max-width: 700px;
    margin: 0 auto 40px;
}

.service-card {
    background: #fff;
    border-radius: 0px 190px 168.75px 168.75px;
    overflow: hidden;
    box-shadow: inset 0px 0px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.service-card h5 {
    font-weight: 700;
    margin-top: 20px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    margin: 0 20px 20px;
}

.btn-book {
    background-color: #042f47;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: 30px;
    transition: 0.3s ease;
}

.btn-book:hover {
    background-color: #178a9e;
}

@media (max-width: 768px) {
    .service-card img {
        height: 180px;
    }
}

.promo-section {
    background-color: #042f47;
    background-image: url('../locksmith/bg.webp');
    background-repeat: repeat;
    padding: 60px 20px;
}

.promo-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #fff;
}

.promo-text h5 {
    font-weight: bold;
    color: #fff;
}

.promo-text p {
    color: #fefefe;
    max-width: 480px;
}

.btn-book {
    background-color: #000;
    color: white;
    border-radius: 6px;
    font-weight: bold;
    padding: 10px 24px;
    margin-top: 20px;
}

.promo-image-split {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
    width: 100%;
    max-width: 600px;
    margin: auto;
    gap: 0;
}

.split-half {
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.split-half.left {
    clip-path: polygon(0 0, 100% 0, 0 100%);
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
    transform: translateX(0);
}

.split-half.right {
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    transform: translateX(0);
}

.split-half img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.split-half:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .promo-text h1 {
        font-size: 2.5rem;
    }

    .promo-image-split {
        flex-direction: column;
        height: auto;
        max-width: 100%;
    }

    .split-half {
        width: 100%;
        clip-path: none !important;
        border-radius: 20px !important;
    }

    .split-half img {
        width: 100%;
        height: auto;
    }
}



.section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.section-header .line {
    width: 2px;
    height: 40px;
    background-color: #1c9ebd;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    color: #042f47;
}

.section-header p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.product-card img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    height: 100%;
}

.product-card {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.visit-btn {
    background: linear-gradient(to right, #042f47, #3180ac);
    color: white;
    font-weight: 600;
    border: none;
    padding: 10px 25px;
    border-radius: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
}

.section-subtitle {
    color: #666;
    max-width: 400px;
}

.floating {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*  */
/* Animation for the Residential Locksmith Service section */
.residential-animate {
    opacity: 1;
    transform: translateY(40px) scale(0.96);
    transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1), transform 0.8s cubic-bezier(.4, 0, .2, 1);
}

.residential-animate.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}


.about-section {
    position: relative;
    background-color: #efefef;
    padding: 60px 0;
}

.side-bar-left,
.side-bar-right {
    position: absolute;
    top: 0;
    width: 60px;
    height: 100%;
    background-color: #042f47;
    z-index: 0;
}

.side-bar-left {
    left: 0;
}

.side-bar-right {
    right: 0;
}

.about-container {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0.5rem;
}

.youtube-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #fff;
    background: rgba(255, 0, 0, 0.8);
    padding: 15px;
    border-radius: 27%;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image-wrapper:hover .youtube-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.9);
}

.btn-learn-more {
    border: 2px solid #042f47;
    color: #fff;
    transition: 0.3s;
    padding: 10px 25px;
    border-radius: 30px;
}

.btn-learn-more:hover {
    background-color: #178a9e;
    color: #fff;
}

/*  */
.service1-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service1-icon {
    color: #178a9e;
    font-size: 50px;
    margin-bottom: 20px;
}

.service1-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service1-text {
    color: #474747;
    font-size: 0.95rem;
}

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

/*  */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 2rem 0;
    background: #f9f9f9;
}

.marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}

.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/*  */
.partner-logo {
    display: inline-block;
    margin: 0 2rem;
    padding: 1rem;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 220px;
    height: 120px;
    text-align: center;
    vertical-align: middle;
    line-height: 100px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.partner-logo img {
    max-height: 60px;
    max-width: 100%;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .partner-logo {
        width: 160px;
        margin: 0 1rem;
    }
}



/* Form */
form label {
    opacity: 0;
    position: absolute;
    z-index: -1;
    left: 0;
    right: 0
}

.spam {
    display: none;
}

input {
    width: 48%;
    float: left;
    margin-right: 2%;
    height: 50px;
    margin-top: 5%;
    padding: 3%;
    border-bottom: #1c9ebd 3px solid;
    color: #1a2737;
    font-size: 14px;
    box-shadow: 3px 1px 8px #0000005e;
}

textarea.form-control {
    width: 98%;
    float: left;
    margin-right: 2%;
    height: 85px;
    margin-top: 5%;
    padding: 1%;
    border-bottom: #fff 3px solid;
    color: #42648b;
    font-size: 14px;
    box-shadow: 3px 1px 8px #0000005e;
}

.submit {
    width: 38%;
    float: left;
    height: 50px;
    margin-top: 2%;
    padding: 1%;
    background-color: #042f47;
    color: #fff;
    font-size: 17px;
    margin-right: 3%;
}

/* Reviews Section */
.testimonial-section {
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial-section h2 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-avatar:hover {
    transform: scale(1.1);
}

/*  */
.floating-avatar {
    position: absolute;
    z-index: 1;
    opacity: 0.6;
    transition: 0.3s;
}

.floating-avatar:hover {
    opacity: 1;
    transform: scale(1.05);
}

.floating-avatar.img1 {
    top: 50%;
    left: 5%;
    transform: translateY(-50%) rotate(-5deg);
}

.floating-avatar.img2 {
    top: 75%;
    left: 20%;
    transform: rotate(10deg);
}

.floating-avatar.img3 {
    top: 55%;
    right: 15%;
    transform: rotate(-8deg);
}

.carousel-inner {
    max-width: 600px;
    margin: auto;
    z-index: 2;
    position: relative;
}

.carousel-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.carousel-caption {
    position: static;
    padding: 1rem;
}

.carousel-caption h5 {
    font-weight: bold;
}

.carousel-caption .stars {
    color: orange;
}

.feature-section {
    background-color: #042f47;
    color: #fff;
    padding: 4rem 2rem;
}

.feature-img-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.yellow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #1c9ebd;
    width: 54%;
    height: 145%;
    z-index: 0;
    border-radius: 0.5rem;
}

.feature-img-wrapper img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

.feature-text h2 {
    font-weight: 800;
    font-size: 2.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.feature-btn {
    border: 2px solid #fff;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background-color: transparent;
}

.feature-btn:hover {
    background-color: #fff;
    color: #6a1b9a;
}

@media (max-width: 768px) {
    .feature-text h2 {
        font-size: 2rem;
    }

    .yellow-bg {
        width: 70%;
        height: 70%;
    }
}

/*  */
.footer-top {
    background: linear-gradient(145deg, #1c9ebd, #1c9ebd);
    border-radius: 30px;
    padding: 2rem;
    margin-top: -60px;
    z-index: 10;
    position: relative;
    text-align: center;
}

.footer-top h4 {
    color: white;
    font-weight: 700;
}

.footer-top .contact-info i {
    color: white;
    margin-right: 10px;
}

.footer-top .contact-info span {
    color: white;
    display: block;
    margin-top: 0.5rem;
}

.footer-bottom {
    background-color: #fff;
    padding: 3rem 1rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: bold;
}

.footer-links a {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #1c9ebd;
    padding-left: 5px;
}

.footer-bottom .bi {
    color: #c8924b;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .footer-top {
        text-align: center;
    }
}


.site-map-container {
    padding: 50px 15px;
}

.site-map-title {
    font-size: 2rem;
    color: #1c9ebd;
    font-weight: bold;
}

.site-map-subtitle {
    font-size: 2rem;
    color: white;
    font-weight: 300;
}

.node,
.child-node {
    position: relative;
    z-index: 2;
}

.node {
    background-color: #1c9ebd;
    color: #0c1c33;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin: 0 auto;
    transition: 0.3s;
    text-align: center;
    max-width: fit-content;
}

.node:hover {
    transform: scale(1.05);
    background-color: #1c9ebd;
}

.child-node {
    background-color: #1a2e4f;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    margin: 8px auto;
    font-size: 0.95rem;
    transition: 0.3s;
    width: fit-content;
}

.child-node:hover {
    background-color: #274367;
}
.child-node:a:hover {
    background-color: #fff;
}
/* Line styles */
.v-line {
    width: 2px;
    height: 30px;
    background-color: white;
    margin: 0 auto;
}

.h-line-group {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-top: 40px;
    margin-bottom: 40px;
}

.h-line {
    height: 2px;
    background-color: white;
    flex-grow: 1;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 1;
}

.h-line-group>div {
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.site-map-footer {
    margin-top: 60px;
}

@media (max-width: 768px) {
    .h-line {
        display: none;
    }
}

.vertical-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: #ffa534;
    transform: translateX(-50%);
    z-index: 1;
}

.horizontal-line::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #178a9e;
    transform: translateY(-50%);
    z-index: 1;
}

.vertical-line .vertical-line {
    top: 100%;
    height: 20px;
}

.service-btn {

    width: 198px;
    margin: 7px;
    font-size: 15px;
    padding: 10px;
    cursor: text;
    margin-top: 0;


}

.btn1 {

    color: #fff;
    font-size: 12px;
    border-radius: 0;
    float: left;
    border: 1px solid;
    border-radius: 7px;
    text-align: center;
    background-color: #032e46;

}

.btn1 a {
    color: #fff;
}

.btn1:hover {
    background-color: #178a9e;
    color: #fff;
}

@media (max-width: 646px) {
    .side-bar-left, .side-bar-right {
     background-color: #efefef;
    }
}





.submit {
    width: 48%;
    float: left;
    height: 50px;
    margin-top: 3%;
    padding: 1%;
    background-color: #0d2235;
    color: #fff;
    font-size: 17px;
    margin-right: 3%;
    box-shadow: 3px 1px 8px #0000005e
}


form.CUS input.subject {
    display: none;
}

.input {
    width: 31%;
    padding: 1%;
    margin: 1%;
    height: 40px;
    float: left;
    border: #062739 1px solid;
    color: #062739;
    font-size: 14px;
    box-shadow: 3px 1px 8px #0000005e;
    background-color: #fff0;
    font-weight: bold;
    background-color: #fff;
}
.input2{    width: 45% !important;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s 
ease;
    margin-top: 3%;
    float: left;
    margin-left: 4.5%;}