/*----------------------------------------------------------------------------------

Project     :   Buten - Product Marketing Landing Page
Author      :   thememeta
Athor URI   :   https://themeforest.net/user/thememeta

-------------------------------------------------------------------------------------*/

/*------------------------------------------------------------------------------------

[Table of contents]

Default CSS
Site Preloader
Header
Home Area
Home Slider
Home Newsletter
About Area
Section Heading
Features Area
Video Area
Core Feature Area
Why Choose Area
Newsletter Area
Product Area
Testimonial Area
FAQ Area
Contact Area
Footer

--------------------------------------------------------------------------------------*/

/*-------------------------------------------------------------------------------------
    Default CSS
---------------------------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Raleway:400,500,600,700,800');
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #000;
    position: relative;
    overflow-x: hidden;
    letter-spacing: 1px
}

ul {
    list-style: none;
    margin: 0;
    padding: 0
}

a,
a:visited,
a:focus,
a:active,
a:hover {
    text-decoration: none;
    outline: none;
}

input:required,
input:invalid,
textarea:required,
textarea:invalid {
    -webkit-box-shadow: none;
    box-shadow: none;
}

a,
button {
    -webkit-transition: 0.3s;
    transition: 0.3s
}

a {
    color: #2c3e50;
    font-size: 14px
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3 {
    font-weight: 400;
    margin-top: 0
}

h1 {
    font-size: 56px;
    line-height: 66px
}

h2 {
    font-size: 36px;
    line-height: 46px
}

h3 {
    font-size: 24px;
    line-height: 34px
}

h4 {
    font-size: 20px;
    line-height: 30px
}

h5 {
    font-size: 18px;
    line-height: 28px
}

h6 {
    font-size: 16px;
    line-height: 26px
}

p {
    font-size: 14px;
    color: #555;
    line-height: 24px;
    font-weight: 500;
}

.d-table {
    width: 100%;
    height: 100%
}

.animation-jump {
    position: relative;
    -webkit-animation: animation-jump 2s ease-in-out infinite;
    animation: animation-jump 2s ease-in-out infinite;
}

.animation-bg {
    -webkit-animation: animation-bg 25s ease-in-out infinite;
    animation: animation-bg 25s ease-in-out infinite;
}

@-webkit-keyframes animation-jump {
    0% {
        top: 3px;
    }
    50% {
        top: -3px;
    }
    100% {
        top: 3px;
    }
}

@keyframes animation-jump {
    0% {
        top: 3px;
    }
    50% {
        top: -3px;
    }
    100% {
        top: 3px;
    }
}

@-webkit-keyframes animation-bg {
    0% {
        background-position: top;
    }

    50% {
        background-position: bottom;
    }
    100% {
        background-position: top;
    }
}

@keyframes animation-bg {
    0% {
        background-position: top;
    }

    50% {
        background-position: bottom;
    }
    100% {
        background-position: top;
    }
}

/*-------------------------------------------------------------------------------------
    Site Preloader
---------------------------------------------------------------------------------------*/

.preloader {
    background-color: #1c1c1c;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999999;
}

.preloader .spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1.0s infinite ease-in-out;
    animation: sk-scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1.0);
        opacity: 0;
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    Header
---------------------------------------------------------------------------------------*/

#header {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    padding: 10px 0
}

#header.sticky {
    position: fixed;
    width: 100%;
    -webkit-box-shadow: 0 2px 10px #ccc;
    box-shadow: 0 2px 10px #ccc;
    background-color: #fff;
    z-index: 999;
    padding: 14px 0;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.navbar-nav {
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

.navbar-nav .nav-item .nav-link {
    font-weight: 700;
    font-size: 15px;
    padding: 0 15px;
    color: #fff;
    letter-spacing: 2px
}

.nav-item .nav-link:hover,
.nav-item .nav-link.active,
.sticky .nav-item .nav-link {
    color: #131a48
}

.sticky .nav-item .nav-link.active,
.sticky .nav-item .nav-link:hover {
    color: #2273f8
}

.navbar-nav.buy-btn .nav-link {
    background-color: #fff;
    color: #2273f8;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700
}

.navbar-nav.buy-btn .nav-link:hover {
    background-color: #131a48;
    color: #fff;
}

.sticky .navbar-nav.buy-btn a {
    background-color: #2273f8;
    color: #fff;
}

.sticky .navbar-nav.buy-btn .nav-link:hover {
    color: #fff;
}

.logo-scroll,
.sticky .logo {
    display: none
}

.sticky .logo-scroll {
    display: block
}

/*-------------------------------------------------------------------------------------
    Home Area
---------------------------------------------------------------------------------------*/

#home-area {
    background-image: url(banner-1.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover;
    height: 100vh
}

.caption-content {
    height: 100vh
}

.caption-content h1 {
    color: #fff;
    font-weight: 800;
}

.caption-content p {
    color: #ddd;
    margin: 20px 0 10px;
}

.caption-content a {
    background-color: #131a48;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    margin: 40px 0 0;
}

.caption-content a:hover {
    background-color: #fff;
    color: #2273f8;
}

.caption-content a i {
    padding-right: 2px;
    font-size: 18px;
}

.caption-img {
    padding: 25% 0 0;
}

/*-------------------------------------------------------------------------------------
    Home Slider
---------------------------------------------------------------------------------------*/

#home-area.slider {
    background-image: url(banner-1.webp);
}

.slide-single {
    padding: 0 12%;
}

.slide-single .caption-img img {
    max-width: 350px;
    margin: 0 auto;
    padding: 8% 0 0
}

.home-slider .owl-dots {
    position: absolute;
    left: 0;
    bottom: 80px;
    width: 100%;
    text-align: center
}

.home-slider .owl-dot {
    display: inline-block;
    width: 15px;
    height: 6px;
    margin: 0 4px;
    background-color: #fff;
    border-radius: 2px;
    margin: 0 4px;
    border: 0;
    outline: 0
}

.home-slider .owl-dot.active {
    width: 25px;
}

.owl-item.active .caption-content h1 {
    -webkit-animation: 1s .3s fadeInLeft both;
    animation: 1s .3s fadeInLeft both;
}

.owl-item.active .caption-content p {
    -webkit-animation: 1s .5s fadeInRight both;
    animation: 1s .5s fadeInRight both;
}

.owl-item.active .caption-content a {
    -webkit-animation: 1s .8s fadeInUp both;
    animation: 1s .8s fadeInUp both;
}

/*-------------------------------------------------------------------------------------
    Home Newsletter
---------------------------------------------------------------------------------------*/

#home-area.newsletter {
    background-image: url(../images/banner-2.jpg);
    position: relative
}

.home-news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.newsletter .caption-img img {
    max-width: 350px;
    margin: 10% auto 0
}

.home-newsletter {
    background-color: #fff;
    padding: 40px 30px 50px;
    border-radius: 10px;
    margin: 9% 40px 0
}

.home-newsletter h2 {
    font-weight: 800;
    text-align: center;
    margin: 0 0 30px;
}

.home-newsletter input {
    height: 50px;
    font-size: 15px;
    border: 1px solid #e6f0fa;
}

.home-newsletter button {
    width: 100%;
    height: 50px;
    color: #fff;
    background-color: #2273f8;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    outline: 0
}

.home-newsletter button:hover {
    background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    About Area
---------------------------------------------------------------------------------------*/

#about-area {
    padding: 100px 0;
}

.about-img img {
    border-radius: 10px;
}

.about-content h2 {
    font-weight: 800;
    margin: 0 0 10px;
}

.about-content h4 {
    font-weight: 600;
    color: #2273f8;
}

.about-content ul {
    margin: 20px 0 0;
}

.about-content ul li {
    font-weight: 600;
    padding: 3px 0;
    font-size: 14px;
    line-height: 24px
}

.about-content li i {
    color: #2273f8;
}

/*-------------------------------------------------------------------------------------
    Section Heading
---------------------------------------------------------------------------------------*/

.section-heading h2 {
    font-weight: 800;
}

.section-heading {
    margin: 0 0 60px;
}

/*-------------------------------------------------------------------------------------
    Features Area
---------------------------------------------------------------------------------------*/

#feature-area {
    background-color: #fafafa;
    padding: 90px 0 30px;
    /* color: white;
    background-image: url(banner-1.webp);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: cover; */
}

.feature-single {
    margin: 0 0 60px;
}

.feature-single h4 {
    font-weight: 600;
    margin-bottom: 5px
}

.feature-single i {
    display: inline-block;
    font-size: 30px;
    margin: 0 0 15px;
    color: #2273f8;
    padding: 20px;
    border-radius: 50%;
    -webkit-box-shadow: 0 4px 15px 0 #ccc;
    box-shadow: 0 4px 15px 0 #ccc;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    background-color: #fff
}

.feature-single:hover i {
    color: #fff;
    background-color: #2273f8
}

/*-------------------------------------------------------------------------------------
    Video Area
---------------------------------------------------------------------------------------*/

#interface-colors-area{
        background-color: #fafafa;
    padding: 90px 0 30px;
}

#video-area {
    position: relative;
    background-image: url(banner-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 90px 0 100px
}

.video-overlay {
    background-color: rgba(34, 115, 248, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.video-content h2 {
    font-weight: 800;
    color: #fff;
}

.video-content p {
    color: #ddd;
    margin: 0 0 50px;
}

.video-content,
.video-player {
    position: relative
}

.video-player a {
    font-size: 35px;
    color: #2273f8;
    border-radius: 50%;
    display: inline-block;
    background-color: #fff;
    width: 80px;
    height: 80px;
    line-height: 80px;
    position: relative;
    z-index: 2;
    padding: 0 28px;
}

.video-player a:hover {
    color: #fff;
    background-color: #131a48;
}

.pulse1 {
    position: absolute;
    width: 100px;
    height: 100px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    opacity: 0;
    border: 3px solid rgba(255, 255, 255, .1);
    -webkit-animation: pulsejg1 1.3s linear infinite;
    animation: pulsejg1 1.3s linear infinite;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    box-shadow: inset 0px 0px 15px 10px rgba(0, 0, 0, .6);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.pulse2 {
    position: absolute;
    width: 100px;
    height: 100px;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    border: 1px solid rgba(255, 255, 255, 0);
    -webkit-animation: pulsejg2 0.9s linear infinite;
    animation: pulsejg2 0.9s linear infinite;
    border-radius: 999px;
    -webkit-box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    box-shadow: inset 0px 0px 12px 5px rgba(255, 255, 255, .8);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

@-webkit-keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        opacity: .2;
    }

    70% {
        -webkit-transform: scale(1.1);
        opacity: .35;
    }

    80% {
        -webkit-transform: scale(1.25);
        opacity: .2;
    }

    100% {
        -webkit-transform: scale(1.4);
        opacity: 0;
    }
}

@keyframes pulsejg1 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    60% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
        opacity: .1;
    }

    70% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .25;
    }

    80% {
        -webkit-transform: scale(1.25);
        transform: scale(1.25);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.4);
        transform: scale(1.4);
        opacity: 0;
    }
}

@-webkit-keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.3);
        opacity: 0;
    }
}

@keyframes pulsejg2 {
    0% {
        -webkit-transform: scale(.6);
        transform: scale(.6);
        opacity: 0;
    }

    40% {
        -webkit-transform: scale(.8);
        transform: scale(.8);
        opacity: .05;
    }

    50% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .1;
    }

    60% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        opacity: .3;
    }

    80% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: .1;
    }

    100% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        opacity: 0;
    }
}

/*-------------------------------------------------------------------------------------
    Core Feature Area
---------------------------------------------------------------------------------------*/

#core-feature-area {
    padding: 90px 0 70px;
}

.core-feat-content {
    padding-top: 20px;
}

.core-feat-single {
    background-color: #fff;
    padding: 20px 20px 8px;
    border-radius: 10px;
    border: 1px solid #eff0f1;
    margin: 0 0 30px;
    -webkit-box-shadow: 0 5px 15px #e6f0fa;
    box-shadow: 0 5px 15px #e6f0fa
}

.core-feat-single i {
    color: #2273f8;
    font-size: 20px;
    display: inline-block;
}

.core-feat-single h4 {
    font-weight: 600;
    margin-bottom: 5px
}

.core-feat-img {
    background-image: url(circle.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: center;
}

.core-feat-img img {
    max-width: 300px;
}

/*-------------------------------------------------------------------------------------
    Why Choose Area
---------------------------------------------------------------------------------------*/

#why-choose-area {
    padding: 90px 0 30px;
    background-color: #ffffff;
    /* background-image: url(banner-1.webp); */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: cover; */
}

.why-choose-img img {
    /* max-width: 300px */
}

.why-choose-single {
    margin: 0 0 30px;
    overflow: hidden
}

.why-choose-single .icon {
    width: 20%;
    float: left;
}

.why-choose-single .content {
    width: 80%;
    float: left;
}

.why-choose-single i {
    display: inline-block;
    font-size: 30px;
    width: 80px;
    height: 80px;
    border: 2px dashed #2273f8;
    border-radius: 50%;
    line-height: 80px;
    padding: 0 24px;
    color: #2273f8;
    margin: 15px 0 0;
}

.why-choose-single h4 {
    font-weight: 600;
    margin-bottom: 5px
}

/*-------------------------------------------------------------------------------------
   Newsletter Area
---------------------------------------------------------------------------------------*/

#newsletter-area {
    padding: 100px 0;
    background-image: url(banner-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative
}

.newsletter-overlay {
    background-color: rgba(34, 115, 248, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.newsletter-box {
    padding: 40px;
    border-radius: 10px;
    background-color: #fff;
    position: relative
}

.newsletter-box h2 {
    font-weight: 800;
    margin: 0 0 5px
}

.newsletter-box p {
    margin: 0
}

.newsletter-form {
    position: relative;
    margin: 14px 0 0
}

.newsletter-form input {
    border-radius: 30px;
    height: 50px;
    padding-left: 30px;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    font-size: 14px
}

.newsletter-form button {
    height: 50px;
    padding: 10px 20px; /* Adjusted padding */
    border-radius: 30px;
    border: 0;
    background-color: #2273f8;
    color: #fff;
    outline: 0;
    cursor: pointer;
    width: 100%; /* Ensure it takes full width */
}

.newsletter-form button:hover {
    background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    Product Area
---------------------------------------------------------------------------------------*/

#product-area {
    padding: 90px 0 100px;
}

.product-single {
    border: 1px solid #eff0f1;
    padding: 35px 20px 45px;
    border-radius: 10px;
    background-color: #fafafa
}

.product-single img {
    max-width: 200px;
}

.product-single h4 {
    font-weight: 800;
    color: #2273f8;
    margin: 0 0 20px;
}

.product-single h2 {
    font-weight: 700;
    margin: 10px 0 20px;
    font-size: 30px
}

.product-single a {
    display: inline-block;
    padding: 8px 16px;
    color: #fff;
    background-color: #2273f8;
    font-weight: 600;
    border-radius: 30px;
}

.product-single a:hover {
    background-color: #0857d8;
}

/*-------------------------------------------------------------------------------------
    Testimonial Area
---------------------------------------------------------------------------------------*/

#testimonial-area {
    padding: 90px 0 135px;
    background-image: url(banner-1.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

#testimonial-area .section-heading h2 {
    color: #fff
}

.client-info img {
    max-width: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
}

.client-info h4 {
    color: #fff;
    font-weight: 600;
    margin: 0
}

#testimonial-area .section-heading p,
.client-info p {
    color: #ddd;
}

.client-comment p {
    color: #fff;
    font-style: italic
}

.client-comment i {
    color: #f39c12
}

.testimonial-carousel .owl-dots {
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 100%;
    text-align: center
}

.testimonial-carousel .owl-dot {
    display: inline-block;
    width: 15px;
    height: 6px;
    margin: 0 4px;
    background-color: #fff;
    border-radius: 2px;
    margin: 0 4px;
    border: 0;
    outline: 0
}

.testimonial-carousel .owl-dot.active {
    width: 25px;
}

/*-------------------------------------------------------------------------------------
    FAQ Area
---------------------------------------------------------------------------------------*/

#faq-area {
    padding: 90px 0 72px
}

#accordion .card {
    margin: 0 0 20px;
    border: 0;
    border-radius: 10px;
}

#accordion .card-header {
    border-radius: 10px;
    border: 0;
    -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
    background-color: #fff;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    position: relative
}

#accordion .card-header.active a,
#accordion .card-header:hover a,
#accordion .card-header:hover:after {
    color: #fff;
}

#accordion .card,
#accordion .card-header.active,
#accordion .card-header:hover {
    background-color: #2273f8;
}

#accordion .card-header a:after {
    content: "\eab2";
    font-family: "IcoFont";
    position: absolute;
    right: 12px;
    top: 12px;
    font-size: 20px
}

#accordion .card-header.active a:after {
    content: "\eab9";
    color: #fff
}

#accordion .card-header a {
    font-weight: 600;
    font-size: 18px;
    display: block
}

#accordion .collapse.show,
#accordion .card-body {
    background-color: #2273f8;
    color: #fff;
    border-radius: 0 0 10px 10px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    font-size: 14px;
    line-height: 24px
}

.faq-img img {
    /* max-width: 300px; */
    margin-top: 10px;


}

/*-------------------------------------------------------------------------------------
   Contact Area
---------------------------------------------------------------------------------------*/

#contact-area {
    padding: 90px 0 85px;
    background-image: url(map.web);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #fafafa
}

.contact-info {
    padding: 0 0 0 15%;
}

.contact-info-single {
    margin: 0 0 30px;
    overflow: hidden
}

.contact-info-single .icon {
    width: 25%;
    float: left;
    margin-right: 10px;
    text-align: center
}

.contact-info-single .content {
    width: 70%;
    float: left;
}

.contact-info-single i {
    font-size: 30px;
    color: #2273f8;
    border: 1.2px solid #2273f8;
    border-radius: 4px;
    width: 55px;
    height: 55px;
    display: inline-block;
    line-height: 55px
}

.contact-info-single p {
    font-size: 15px;
    color: #555
}

.contact-form input {
    height: 50px;
    border: 1px solid #e6f0fa;
    font-size: 14px
}

.contact-form textarea {
    border: 1px solid #e6f0fa;
    padding-top: 12px;
    font-size: 14px
}

.contact-form button {
    background-color: #2273f8;
    border: 0;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    outline: 0;
    cursor: pointer
}

.contact-form button:hover {
    background-color: #0857d8;
}

.help-block.with-errors li {
    color: #ff0000;
    margin: 4px 0 0;
}

.messages {
    margin: 15px 0 0
}

.messages button {
    color: #000;
    padding: 0;
    background-color: transparent
}

.messages button:hover {
    background-color: transparent
}

/*-------------------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------------------*/

#footer {
    /* padding: 65px 0 0; */
    background-color: #1c1c1c;
    overflow: hidden
}

#footer h4 {
    color: #fff;
    font-weight: 700;
    margin: 0 0 15px
}

.footer-social-icons ul li {
    display: inline-block;
}

.footer-social-icons ul li a {
    display: block;
    background-color: #2273f8;
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
    margin: 0 2px
}

.footer-social-icons ul li a:hover {
    background-color: #fff;
    color: #2273f8;
}

#footer p {
    color: #fff;
    padding: 30px 0 50px;
    text-align: center;
}

#footer p a {
    color: #2273f8
}

#footer p a:hover {
    color: #0857d8
}


        .newsletter-form select.form-control {
            border-radius: 30px;
            height: 50px !important;
            padding-left: 30px;
            -webkit-box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
            box-shadow: 0px 0px 15px 0px rgba(52, 69, 199, 0.4);
            font-size: 14px;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1.5em 1.5em;
            padding-right: 2.5rem;
        }



        /* New styles for circular icons */
        .feature-single i {
            width: 64px;
            height: 64px;
            line-height: 64px;
            /* Vertically center icon */
            border-radius: 50%;
            background-color: #007bff;
            /* Blue background */
            color: #ffffff !important;
            /* White icon, using !important to override text-danger */
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            text-align: center;
        }

        .feature-single:hover i {
            background-color: #ffffff;
            /* White background on hover */
            color: #007bff !important;
            /* Blue icon on hover */
            border: 1px solid #007bff;
        }

        /* FAQ Accordion Icons */
        #faq-area .card-header a {
            display: block;
            position: relative;
        }

        #faq-area .card-header a::after {
            content: '+';
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            color: #007bff;
            transition: all 0.3s ease;
        }

        #faq-area .card-header a[aria-expanded="true"]::after {
            content: '-';
        }

        /* Video Box Styles */
        .video-box {
            position: relative;
            cursor: pointer;
        }

        .video-box img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .video-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #007bff;
            font-size: 30px;
            transition: all 0.3s ease;
        }

        .video-play-btn:hover {
            background-color: #007bff;
            color: #ffffff;
            transform: translate(-50%, -50%) scale(1.1);
        }

        /* Feature Area Text Limiting */
        #feature-area .feature-single h3 {
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 1.4em;
            /* Approximate height for 2 lines, adjust as needed */
        }

        #feature-area .feature-single p {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            min-height: 3em;
            /* Approximate height for 2 lines, adjust as needed */
        }

        /* Owl Carousel Navigation Buttons */
        .owl-carousel .owl-nav button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: #007bff !important;
            color: #fff !important;
            border-radius: 50% !important;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            transition: all 0.3s ease;
            opacity: 0.8;
        }

        .owl-carousel .owl-nav button:hover {
            opacity: 1;
            background-color: #0056b3 !important; /* Darker blue on hover */
        }

        .owl-carousel .owl-nav .owl-prev {
            left: -20px;
        }

        .owl-carousel .owl-nav .owl-next {
            right: -20px;
        }

        /* Adjust for smaller screens */
        @media (max-width: 767px) {
            .owl-carousel .owl-nav button {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
            .owl-carousel .owl-nav .owl-prev {
                left: 0px;
            }
            .owl-carousel .owl-nav .owl-next {
                right: 0px;
            }
        }

        /* Fixed Action Buttons */
        .fixed-buttons {
            position: fixed !important;
            bottom: 20px !important;
            right: 20px !important;
            z-index: 1030;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .fixed-buttons a, .fixed-buttons button {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
        }
        .fixed-buttons a:hover, .fixed-buttons button:hover {
            transform: scale(1.1);
            color: #fff;
        }
        .btn-messenger {
            background-color: #0078FF;
        }
        .btn-messenger:hover {
            background-color: #005cbf;
        }
        .btn-phone {
            background-color: #25D366;
        }
        .btn-phone:hover {
            background-color: #1da851;
        }
        .btn-to-top {
            background-color: #343a40;
            display: none; /* Hidden by default */
        }
        .btn-to-top.show {
            display: flex !important; /* Use a class to show it, overriding other display properties */
        }
        .btn-to-top:hover {
            background-color: #23272b;
        }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake-animation {
  animation: shake 1s infinite;
}

@keyframes ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(30deg); }
  20% { transform: rotate(-25deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(-10deg); }
  50% { transform: rotate(5deg); }
  60% { transform: rotate(-2deg); }
  100% { transform: rotate(0); }
}

.ring-animation {
  animation: ring 2s infinite;
}

@media (max-width: 767px) {
    body {
        padding-bottom: 80px; /* Space for the fixed bottom bar */
    }

    /* .fixed-buttons {
        flex-direction: row;
        justify-content: space-around;
        width: 100%;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
        gap: 0;
        border-top: 1px solid #eee;
    }

    .fixed-buttons a, .fixed-buttons button {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .fixed-buttons #to-top-btn {
        display: none !important;
    } */

    #footer p {
        margin-bottom: 80px; /* Increased margin-bottom for footer text on mobile */
    }
}

