/********** Template CSS **********/
:root {
    --primary: #06a3da;
    --secondary: #34ad54;
    --light: #eef9ff;
    --dark: #091e3e;
    --accent: #f5a623; /* orange/gold for Values */
    --info: #ff6f61; /* coral/red-orange for Goals */
}

/*** Spinner ***/
.spinner {
    width: 140px;
    height: 140px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg)
            rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}

/*** Button ***/
.btn {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    transition: 0.5s;
}

.btn-primary,
.btn-secondary {
    color: #ffffff;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: "Nunito", sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #ffffff;
}
.navbar-dark .navbar-brand {
    padding-bottom: 0px !important;
}
.navbar-dark .navbar-brand img {
    height: 85px;
    width: 190px;
    object-fit: cover;
    /* object-position: 5px -10px; */
    /* border: 1px solid red; */
}
.navbar-dark .navbar-brand .logo-2 {
    display: none;
    height: 90px;
    width: 210px;
    /* border: 1px solid red; */
}
.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #ffffff;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
    .navbar-dark .navbar-brand .logo-2 {
        display: block !important;
        margin-bottom: 20px;
    }
    .navbar-dark .navbar-brand .logo-1 {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #ffffff;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: 0.5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, 0.7);
    z-index: 1;
}
.carousel-item img {
    object-fit: cover;
    object-position: left;
}
.carousel-caption h5 {
    font-size: 22px;
}

.carousel-caption h1 {
    font-size: 65px;
}
@media (max-width: 970px) {
    .carousel-caption h5 {
        font-size: 18px;
    }

    .carousel-caption h1 {
        font-size: 50px;
    }
}
@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #ffffff;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }
    50% {
        left: 145px;
    }
    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }
    50% {
        left: 50%;
        margin-left: 45px;
    }
    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }
    50% {
        left: 85px;
    }
    100% {
        left: 0;
    }
}

/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: 0.5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}

/*** price ***/

.Pricing-Plan-buttons {
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
}
.Pricing-Plan-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    text-align: center;
}

.Pricing-Plan-buttons .btns {
    background: linear-gradient(135deg, var(--primary), #00c6ff);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.Pricing-Plan-buttons .btns:hover {
    background: linear-gradient(135deg, #00c6ff, var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.3);
}

.Pricing-Plan-buttons .btns:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 123, 255, 0.2);
}
/* #app, #graphic, #seo, #content {
  display: none;
} */

.active-btn {
    background: #ffffff !important;
    color: var(--primary) !important;
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* Responsive tweak */
@media (max-width: 768px) {
    .Pricing-Plan-buttons .btns {
        width: 100%;
        max-width: 300px;
    }
}

/*** price ***/

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #dddddd;
    border-radius: 2px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #ffffff !important;
    box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
    transition: 0.5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: 0.5s;
}
.blog-item .blog-img {
    /* border: 1px solid red; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}
.blog-item .blog-img img {
    height: 280px;
    width: 90%;
    object-position: center;
    object-fit: cover;
}
.blog-item {
    background-color: var(--dark);
}
.blog-details small,
.blog-details p,
.blog-details h4,
.blog-details a {
    color: white;
}
.blog-details .far {
    color: white !important;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
        url(../images/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: 0.5s;
}

.link-animated a:hover {
    padding-left: 10px;
}
/* .footer_logo_anchor{
    border: 1px solid red;
    padding: 0;
    margin: 0;
} */
.footer_logo {
    width: 200px;
    height: 200px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.logo_sliders_section_main {
    width: 100%;
    display: flex;
    justify-content: center;
}
.logo_sliders_section {
    width: 100%;
    max-width: 1180px;
    /* border: 1px solid red; */
}

.logo_sliders_section .slider {
    margin-top: 0px;
    /* background-color: whitesmoke; */
    padding: 4.2em 2em;
    /* border: 1px solid rgb(2, 255, 14); */
}

.logo_sliders_section .slider .slide-track {
    width: 100%;
    display: flex;
    gap: 5em;
    overflow: hidden;
    /* border: 1px solid red; */
}

.logo_sliders_section .slider .slide-track .slide img {
    width: 100px;
    height: 100px;
    animation: scroll 60s linear infinite;
    /* border: 1px solid red; */
}
.logo_slider_heading {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
}
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-1000%);
    }
}

/* industries we serve */

.industries-section {
    position: relative;
    color: white;
    background: url("../images/industries_we_serve.jpg") center/cover no-repeat;
    overflow: hidden;
    margin-top: 60px;
}

.industries-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.644);
    /* background: rgba(0, 0, 0, 0.466); */
    /* backdrop-filter: blur(8px); */
    z-index: 1;
}

.industries-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 255, 255, 0.15),
        rgba(0, 0, 255, 0.15)
    );
    z-index: 2;
}

/* ===== CONTENT ===== */
.industries-section .container {
    position: relative;
    z-index: 3;
}

.industries-section h2 {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: 1px;
    /* background: linear-gradient(90deg, #00e0ff, #0077ff); */
    color: #06a3da;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

.industries-section p.lead {
    color: #b0c4de;
    max-width: 600px;
    margin: 0 auto 50px;
}

/* ===== CARDS ===== */
.industry-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(10px); */
}

.industry-card i {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #00e0ff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #00e0ff;
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.4);
}

.industry-card:hover i {
    color: #00bfff;
    transform: rotateY(180deg);
}

.industry-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.industry-card p {
    color: #c0c7d6;
    font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .industry-card {
        padding: 1.5rem;
    }
    .industries-section h2 {
        font-size: 2rem;
    }
}
@media (max-width: 650px) {
    #hero-txt-1{
        font-size: 35px !important;
    }
}
@media (max-width: 400px) {
    #hero-txt-1{
        font-size: 22px !important;
    }
}
/* about banner */

.about-bg {
    background-image: url(../images/portfolio_2.jpg);
    background-position: center;
    background-size: cover;
}
/* --primary: #06a3da;
    --secondary: #34ad54;
    --light: #eef9ff;
    --dark: #091e3e; */

.text-primary-about {
    color: var(--primary) !important;
}
.text-secondary-about {
    color: #c0c7d6;
}
.about-innovation {
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    height: 390px;
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.6rem;
    }
}

/* services */

.service-bg {
    background-image: url(../images/service-2.jpg);
    background-position: center;
    background-size: cover;
}

.process-section {
    background: radial-gradient(circle at top, #0a0f1e, #05070f);
    color: white;
    overflow: hidden;
}

.text-gradient {
    background: linear-gradient(90deg, #00e0ff, #0077ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    /* backdrop-filter: blur(10px); */
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.3);
    border-color: #00e0ff;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    font-weight: 700;
    color: #fff;
    font-size: 1.4rem;
    background: linear-gradient(135deg, #00e0ff, #0077ff);
    box-shadow: 0 0 15px rgba(0, 224, 255, 0.5);
    transition: 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(0, 224, 255, 0.6);
}

.process-step h5 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.process-step p {
    color: #b0c4de;
    font-size: 0.95rem;
}

/* Connecting Line (center glow line) */
.process-line {
    position: absolute;
    top: 50%;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e0ff, transparent);
    opacity: 0.2;
    z-index: 0;
}

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

.vision-section {
    /* background-color: var(--light); */
    margin: 0px 0px 90px 0px;
}

.section-title {
    color: var(--dark);
    font-size: 2.5rem;
}

.section-subtitle {
    color: #6c757d;
}

/* Card */
.vision-card {
    background-color: #fff;
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-top: 0.5rem solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Icon wrapper */
.icon-wrapper {
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-wrapper.primary {
    color: var(--primary);
}

.icon-wrapper.secondary {
    color: var(--secondary);
}

.icon-wrapper.accent {
    color: var(--accent);
}

.icon-wrapper.info {
    color: var(--info);
}

.vision-card:hover .icon-wrapper {
    transform: scale(1.3);
    color: var(--primary); /* highlight all icons to primary on hover */
}

/* Card title and text */
.card-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Card border-top colors */
.border-top-primary {
    border-top: 0.5rem solid var(--primary);
}

.border-top-secondary {
    border-top: 0.5rem solid var(--secondary);
}

.border-top-accent {
    border-top: 0.5rem solid var(--accent);
}

.border-top-info {
    border-top: 0.5rem solid var(--info);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
}

/* Basic Section Styling */
.logo-gallery {
    padding: 60px 20px;
    background: #f9fafb;
    text-align: center;
    font-family: "Poppins", sans-serif;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #1a1a1a;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Gallery Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

/* Hover Effects */
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Optional: Subtle Gradient Overlay */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.15)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Hero Section Styling */
.cc-hero {
    width: 100%;
    min-height: 90vh;
    /* background: url('https://images.unsplash.com/photo-1557683316-973673baf926?auto=format&fit=crop&w=1400&q=80')
             no-repeat center/cover; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* Light blur overlay */
.cc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    /* backdrop-filter: blur(6px); */
}

/* Text content */
.cc-hero-content {
    position: relative;
    max-width: 800px;
    text-align: center;
}

.cc-hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #06a3da; /* Red brand color */
    margin-bottom: 20px;
}

.cc-hero-content p {
    font-size: 26px;
    color: #1d3557;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.4;
}

/* CTA Button */
.cc-btn {
    background: #06a3da;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.cc-btn:hover {
    background: #06a3da;
}

/* back to top */

.back-to-top {
    position: fixed;
    cursor: pointer;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.absolute_contact_btn {
    position: fixed;
    right: 0;
    bottom: 200px;
    display: none;
    background-color: #06a3da;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 1000;
    transform: rotate(-90deg);
}
.absolute_contact_btn h5 {
    color: white;
}
.absolute_contact_btn:hover {
    background-color: #0284a8; /* slightly darker on hover */
}

@media only screen and (max-width: 850px) {
    .absolute_contact_btn {
        position: absolute;
        right: 0;
        bottom: 0;
        padding: 0px 0px;
        z-index: -1000;
        opacity: 0;
    }
}
