@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    word-break: break-word;
    font: 15px/25px "Poppins", sans-serif;
    color: #393939;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: #28b16d;
    white-space: initial;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    background: #fff url("../images/arrow.png") no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

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

img {
    max-width: 100%;
}


/***** Font Files *****/

@font-face {
    font-family: "Fonts Awesome";
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "urban";
    src: url(../fonts/urban-shadow-sans-serif.otf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-family: "urban";
    font-size: 55px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h2 {
    font-family: "urban";
    font-size: 45px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h3 {
    font-family: "urban";
    font-size: 35px;
    color: #000000;
    font-weight: 600;
    margin: 0 0 0px;
}

h4 {
    font-family: "urban";
    font-size: 24px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h5 {
    font-family: "urban";
    font-size: 16px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

h6 {
    font-family: "urban";
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin: 0 0 0px;
}

p {
    color: #5b5c5c;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    letter-spacing: 0px;
    margin: 0px;
}


/*header css start */

.menuSec {
    padding: 0px 0;
}

.menuSec img {
    margin: 0;
}

.menuSec ul {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    margin: 0 auto;
}

.menuSec ul li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.menuSec li ul {
    display: none;
}

.menuSec ul li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #131212;
    padding: 15px 20px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 1;
}

.menuSec ul li a::before {
    position: absolute;
    content: '';
    width: 0;
    left: 50%;
    height: 3px;
    background: #ff0e2a;
    bottom: -6px;
    transition: .5s all;
}

.menuSec ul li a:hover::before,
.menuSec ul li a.active::before {
    width: 100%;
    left: 0;
}


/*.menuSec ul li a:after {
    content: '';
    position: absolute;
    top: 35%;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #393939;
    display: none;
}
*/


/*.menuSec ul li:last-child a {
    padding-right: 0px;
}*/


/* .menuSec ul li:last-child a:after {
    display: none;
} */

.menuSec ul li a:hover,
.menuSec ul li a.active {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    color: #ff0e2a;
}

.menuSec li:hover>ul {
    display: block;
    position: absolute;
    z-index: 1000;
    background-color: #000000;
    left: 0px;
    width: 230px;
    text-align: left;
    top: 38px;
}

.menuSec li>ul>li>a {
    border: none;
    padding: 13px 20px !important;
    color: #fff !important;
    overflow: hidden;
    font-size: 13px;
    line-height: 20px;
}

.menuSec li>ul>li,
.menuSec li>ul>li>a {
    display: block;
    margin: 0;
}

.menuSec li>ul>li>a:before,
.menuSec li>ul>li>a:after {
    display: none;
}

.menuSec li:hover li {
    float: none;
}

.menuSec li ul li a:hover {
    background-color: #ffffff;
    color: #000000 !important;
}

.menuSec ul ul ul {
    left: 100%;
    top: 0;
}

.menuSec ul:before,
.menuSec ul:after {
    content: " ";
    display: table;
    display: none;
}

.menuSec ul:after {
    clear: both;
}

.menuSec li>ul>li:hover>ul {
    left: 230px;
    top: 0px;
    width: 270px;
}

.container-fluid {
    padding: 0 5%;
}

.menuSection .row {
    align-items: center;
}

.menuSection {
    padding: 5px 0;
}

.header-btn {
    text-align: end;
}

.theme-btn span {
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    padding: 15px 40px;
    background: #ff0e2a;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.5s ease;
}

.theme-btn {
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
    border-radius: 50px;
    border: 1px solid #e6e6e6;
    transition: all 0.5s ease;
    cursor: pointer;
}

.theme-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(63, 28, 14, 0.4);
}

.theme-btn img {
    padding: 0 18px;
    width: fit-content !important;
    height: fit-content !important;
    transition: all 0.5s ease;
}

.theme-btn:hover img {
    transform: translateX(5px);
}


/*header css start */


/* banner Start */

.home-banner-sec {
    position: relative;
    z-index: 1;
}

img.hm-baner {
    width: 100%;
    object-fit: cover;
}

.hm-banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
}

.home-baner-text h1 {
    font-size: 74.24px;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 75px;
}

.head-imag {
    position: relative;
    z-index: 1;
}

.head-imag img {
    position: absolute;
    top: 7px;
    right: 6%;
}

.home-baner-text p {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 25px;
}

.home-baner-img {
    width: 39%;
    border: 10px solid #fff;
    overflow: hidden;
}

.home-baner-img img {
    width: 100%;
    object-fit: cover;
}

.home-baner-social {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 61%;
    margin-left: auto;
    padding-left: 50px !important;
    padding: 25px 0;
}

.home-baner-social::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #fff;
    z-index: -1;
}

.home-baner-social::after {
    position: absolute;
    content: '';
    width: 55%;
    left: 17.5%;
    height: 1px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #e2dfdb;
}

.home-baner-social h6 {
    font-size: 14px;
    color: #1f1f1f;
    text-transform: uppercase;
    font-family: 'Montserrat';
}

ul.ban-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

ul.ban-social i {
    font-size: 16px;
    color: #b5b5b5;
    width: 45px;
    height: 45px;
    border: 1px solid #d1d1d1;
    display: grid;
    place-content: center;
    background: #ffff;
    position: relative;
    z-index: 1;
    border-radius: 50px;
    transition: .5s all;
}

ul.ban-social i:hover {
    color: #fff;
    background: #f00d28;
}

.home-baner-text {
    width: 55%;
    margin-left: auto;
    position: relative;
    top: -25px;
}


/* banner Start */


/* About Section */

.theme-head {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 100;
}

.about-sec {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.about-sec::before {
    position: absolute;
    content: '';
    width: 4%;
    height: 85%;
    left: 0;
    top: 0;
    background: #111010;
}

.about-content {
    padding-left: 6%;
}

.about-content p {
    margin: 15px 0;
}

ul.about-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    margin: 15px 0 20px;
}

ul.about-list h5 {
    font-size: 16px;
    color: #181717;
    text-transform: uppercase;
    margin-bottom: 0;
}

ul.about-list p {
    margin: 0;
}

ul.about-list li:last-child {
    border-left: 1px solid #7c7c7c;
    padding-left: 20px;
}

.about-sec .row {
    align-items: center;
}

.about-image img {
    width: 100%;
}


/* About Section */


/* Services Section */

.services-sec {
    padding: 30px 0 80px;
}

.sec-head {
    margin-bottom: 50px;
}

.service-card {
    position: relative;
    z-index: 6;
    box-shadow: 0 0 20px 1px #2525254a;
    transition: .5s all;
}

.service-card:hover {
    box-shadow: 0 15px 10px 5px #25252566;
}

.service-image img {
    width: 100%;
    object-fit: cover;
    transition: 1s all;
}

.service-card::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgb(37 37 37 / 95%) 20%, rgb(37 37 37 / 29%) 70%);
    transition: .5s all;
}

.service-image {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.service-content {
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    z-index: 3;
    width: 94%;
    transition: .5s all;
}

.service-content h4 {
    font-size: 28px;
    color: #ffffff;
    text-transform: uppercase;
}

.service-content p {
    color: #fff;
    margin-bottom: 5px;
}

.theme-btn-2 {
    background: #ff0e2a;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    padding: 15px 0;
    width: 100%;
    border-radius: 80px;
}

.service-card:hover .service-content {
    bottom: 30%;
}

.service-card:hover::before {
    background: linear-gradient(0deg, rgb(37 37 37) 20%, rgb(37 37 37 / 64%) 70%);
}

.service-card:hover a {
    color: #fff;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}


/* Services Section */


/* Project Section */

.project-sec {
    margin: 50px 0;
    position: relative;
    z-index: 1;
}

.project-sec img.project-bg {
    width: 100%;
    object-fit: cover;
}

.project-content-bx {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    align-items: center;
    justify-self: center;
    right: 0;
    margin: auto;
}

.project-content {
    position: relative;
    z-index: 1;
    padding: 60px 50px 50px 0;
}

.project-content::before {
    position: absolute;
    content: '';
    width: 100vw;
    height: 100%;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: -1;
}

.project-content p {
    margin: 0 0 15px;
}


/* Project Section */


/* Why Choose Section */

.why-choose-sec {
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.why-choose-image img {
    width: 95%;
}

.why-choose-content h3 {
    position: relative;
    z-index: 1;
}

.why-choose-content h3::before {
    position: absolute;
    content: '';
    width: 80%;
    right: 5%;
    bottom: 20%;
    background: #d3d3d3;
    height: 1px;
}

.why-choose-content h5 {
    font-size: 22.35px;
    color: #181717;
    margin: 20px 0 5px;
    text-transform: uppercase;
}

ul.choose-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 10px 0;
}

ul.choose-list li {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

ul.choose-list h6 {
    font-size: 12px;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-weight: 100;
}


/* Why Choose Section */


/* What People Say Section */

.client-section {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    margin: 0 8px;
}

.client-section .testimonial-head {
    text-align: center;
    margin-bottom: 30px;
}

.client-section .testimonial-head h2 {
    font-size: 80px;
    color: #ffff;
    text-transform: capitalize;
}

.client-section .testimonial-head p {}

.client-section::before {
    position: absolute;
}

.client-verticle-box {
    background: #ededec;
    border: 7px solid #fff;
    padding: 20px;
    border-top: 0;
}

.client-verticle-box .clntv-image img {
    width: 71px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
}

.clntv-image {
    padding-bottom: 20px;
    border-bottom: 2px solid #b9b9b9;
    margin-bottom: 20px;
}

.client-horizontal-box.show .clntv-text {
    top: 0;
}

.clntv-text {
    writing-mode: sideways-rl;
    width: 100%;
    margin: auto;
    display: block;
    align-content: center;
    padding: 4px 13px;
    position: relative;
    top: 40px;
}

.clntv-text h5 {
    font-size: 17px;
    color: #09050d;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.clntv-text h6 {
    font-size: 11px;
    color: #09050d;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 30px;
    font-family: 'urban';
}

.client-horizontal-box ul {
    display: flex;
    align-items: end;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ffffff80;
}

.client-horizontal-box .clntv-text {
    writing-mode: horizontal-tb;
    padding: 0;
}

.client-horizontal-box ul h4 {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 25px;
}

.client-horizontal-box ul h5 {
    font-size: 21px;
    color: #ffffff;
}

.client-horizontal-box ul h6 {
    font-size: 12px;
    color: #ffffff;
    font-family: 'Montserrat';
}

.client-horizontal-box ul .clntv-image {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.client-horizontal-box ul .clntv-image img {
    width: 117px;
    height: 116px;
    object-fit: cover;
    border-radius: 5px;
}

.client-description p {
    font-size: 14px;
    color: #ffffff;
    margin: 15px 0;
}

.client-review i {
    font-size: 15px;
    color: #fff;
}

.client-review span {
    font-size: 17px;
    margin-left: 7px;
    color: #fff;
    font-family: 'Montserrat';
}

.client-flex {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.main-client-box {
    display: flex;
    align-items: flex-start;
}

.client-verticle-box {
    cursor: pointer;
    width: 120px;
    height: 390px;
}

.client-horizontal-box.show {
    display: block;
    position: relative;
    z-index: 1;
}

.client-horizontal-box {
    background: #111010;
    padding: 55px 70px;
    /* border: 4px solid #ffffffb3; */
    display: none;
    margin-left: -150px;
    width: 801px;
    height: 453px;
}


/* What People Say Section */

html {
    overflow-x: hidden;
}


/* Blog Section */

.blog-sec .sec-head {
    margin-bottom: 20px;
}

.row.blog-heade {
    align-items: center;
}

.sec-head-btn {
    text-align: end;
}

.blog-image a,
.blog-image img {
    width: 95%;
    object-fit: cover;
}

.blog-text {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 25.28px 6.72px rgba(0, 0, 0, 0.06);
    width: 250px;
    height: 283px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    padding: 10px;
    display: block;
    align-content: center;
}

.blog-card {
    position: relative;
}

.blog-text h4 {
    font-size: 14.77px;
    color: #000000;
    text-transform: capitalize;
    font-family: 'Montserrat';
}

.blog-text p {
    font-size: 14.18px;
    color: #666666;
    margin: 15px 0;
}

ul.blog-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 40px;
}

ul.blog-list li i,
ul.blog-list li img {
    font-size: 16px;
    color: #ff0e2a;
    border: 1px solid #6a6a6a;
    width: 35px;
    height: 35px;
    display: grid;
    place-content: center;
    border-radius: 50px;
    object-fit: none;
}

ul.blog-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

ul.blog-list span {
    font-size: 14px;
    color: #666;
    text-transform: capitalize;
}

.blog-sec {
    padding: 80px 0;
}


/* Blog Section */


/* Footer */

footer {
    background: #111010;
    padding-top: 80px;
}

.footer-btm {
    padding: 22px 0;
    border-top: 1px solid #b8b8b8;
    text-align: center;
    width: 90%;
    margin: 0 auto;
}

.foter-main {
    text-align: center;
    border-left: 1px solid #b8b8b8;
    border-right: 1px solid #b8b8b8;
    padding: 40px 0 40px;
    width: 95%;
}

.foter-main ul {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.filednwsltr {
    display: flex;
    align-items: center;
    gap: 13px;
    justify-content: center;
}

.newsltr-text {
    text-align: center;
    padding: 0 30% 40px;
    border-bottom: 1px solid #b8b8b8;
}

footer h5 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.uselinks-ftr ul {
    column-count: 2;
    width: 90%;
}

.uselinks-ftr ul li {
    margin-bottom: 20px;
}

.uselinks-ftr ul li a {
    text-transform: uppercase;
    font-size: 14px;
    color: #b8b8b8;
    font-weight: 500;
}

.foter-main img {
    margin-bottom: 30px;
}

.foter-main ul li a {
    width: 40px;
    height: 40px;
    border: 1px solid #c8c3ce;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #c8c3ce;
    transition: 0.5s all;
}

.cntinfo-ftr ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.cntinfo-ftr {
    margin-left: 40px;
    padding-top: 42px;
}

.cntinfo-ftr ul {
    width: 85%;
}

.cntinfo-ftr ul li a,
.cntinfo-ftr ul li p {
    color: #b8b8b8;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
}

.cntinfo-ftr ul li i {
    font-size: 20px;
    color: #fff;
}

.cntinfo-ftr ul li p {
    line-height: 25px;
    margin-top: -5px;
}

.container-fluid.rtg {
    padding: 0;
}

.uselinks-ftr {
    padding-top: 42px;
}

.newsltr-text h3 {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.filednwsltr input {
    width: 100%;
    height: 50px;
    padding: 5px 27px 0 10px;
    border-bottom: 1px solid #fff !important;
    background: transparent;
    border: 0;
    color: #ffff;
}

img.flwrcntct {
    position: absolute;
    bottom: -150px;
    right: 0;
}

.filednwsltr button {
    color: #fff;
    font-size: 16px;
    border: 0;
    background: transparent;
    margin: 0 0 0 -50px;
}

.newsltr-img {
    text-align: center;
    margin: 50px 0;
}

.filednwsltr input::placeholder {
    color: #fff;
}

.foter-main p {
    font-size: 14px;
    color: #b8b8b8;
    width: 90%;
    margin: 30px auto;
}

.foter-main ul li a:hover {
    background: #fff;
    color: #ff0723;
}

.footer-btm p {
    color: #b8b8b8;
}


/* Footer */


/***** NEW ANIMATIONS & ENHANCED HOVERS *****/


/* Smooth global transitions */

*,
*::before,
*::after {
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* WOW.js support */

.wow {
    visibility: hidden;
    animation-fill-mode: both;
}

.animated {
    visibility: visible;
}


/* Enhanced buttons */

.theme-btn:hover,
.theme-btn-2:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 14, 42, 0.4);
}


/* Nav links */

.menuSec ul li a:hover {
    transform: scale(1.1);
}


/* Service cards */

.service-card:hover {
    transform: translateY(-10px);
}

.service-image:hover img {
    transform: scale(1.15) rotate(1deg);
}


/* Blog cards */

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}


/* Images hover */

.about-image img:hover,
.home-baner-img img:hover,
.project-bg:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
    border-radius: 8px;
}


/* Social icons pulse */

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.ban-social i.pulse,
footer ul li a.pulse {
    animation: pulse 0.6s ease-in-out;
}


/* Glow for testimonials */

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 14, 42, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
    }
}

.client-verticle-box.glow {
    animation: glow 0.8s ease-in-out;
}


/* Lists & icons bounce */

.choose-list li:hover,
.about-list li:hover {
    transform: translateX(10px);
}

.choose-list .approve:hover {
    animation: bounce 0.5s;
}


/* Headings subtle lift */

.theme-head:hover {
    transform: translateY(-2px);
}


/* Newsletter button */

.filednwsltr button:hover {
    transform: scale(1.2);
    color: #ff0e2a;
}


/* Footer links */

.uselinks-ftr a:hover,
.cntinfo-ftr p:hover,
.cntinfo-ftr a:hover {
    color: #ff0e2a;
    padding-left: 10px;
}