body {
    margin: 0px;
}

* {
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
}




a {
    text-decoration: none !important;
    font-family: "Poppins", sans-serif;
}

h1 {
    font-family: "Poppins", sans-serif;
}

h2 {
    font-family: "Poppins", sans-serif;
}

h3 {
    font-family: "Poppins", sans-serif;
}

h4 {
    font-family: "Poppins", sans-serif;
}

h5 {
    font-family: "Poppins", sans-serif;
}

h6 {
    font-family: "Poppins", sans-serif;
}

p {
    font-family: "Poppins", sans-serif;
}

/* tag font end */

/* .sticky-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
} */

/* section title */

.section-title {
    font-size: 36px;
    font-weight: 500;
    color: #3b4345;
    margin-bottom: 10px;
    
    
}

.section-title span {
    color: #ffc400;
}

.section-subtitle {
    font-size: 15px;
    color: #000000;
    margin: 0 auto;
}


@media (max-width: 575px) {
    .section-title {
        font-size: 30px;
    }
}

/* section title end*/




/* header start */



.navbar-custom {
    /* position: fixed; */
    /* top: 0; */
    width: 100%;
    z-index: 1030;
    background: transparent;
    transition: all 0.4s ease-in-out;
}

.navbar-brand img {
    width: 150px;
}


/* sticky */
.sticky-scroll {
    background-color: #ffffff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.sticky-scroll .navbar-nav a {
    color: #000000 !important;
}
/* sticky */


.navbar-nav {
    justify-content: end;
}

.navbar-nav a {
    color: #000000 !important;
    margin: 0 20px;
    font-size: 16px;
    font-weight: 400;
}

.navbar-nav a:hover,
.navbar-nav .active a {
    color: #ffc400 !important;
}



.navbar-toggler span {
    color: #000000;
}

.navbar-toggler:focus {
    box-shadow: none;
}



.header-btn a {
    background: #ffc400;
    padding: 10px 26px;
    border-radius: 50px;
    color: #3b4345;
    transition: 0.3s;
}

.header-btn a:hover {
    border: 1px solid #ffc400;
    background: transparent;
    color: #ffc400;
}



.offcanvas-end {
    background-color: #ffffff;
}



/* .course-dropdown {
    border-radius: 12px;
    padding: 8px 0;
}


.dropdown-submenu {
    position: relative;
}

.dropdown-submenu a{
    color: #000 !important;
}


.submenu {
    border-radius: 12px;
    
} */


.course-dropdown .dropdown-item {
    padding: 10px 18px;
    transition: background-color 0.3s ease;
    position: relative;
}


.course-dropdown .dropdown-item:hover {
    /* background-color: #dc6a00; */
    background: transparent;
    color: #ffc400 !important;
    
}


.course-dropdown .dropdown-item:hover i {
    color: #ffc400;
}


.dropdown-submenu > .submenu {
    margin-left: 0;
}


@media (min-width: 992px) {

    .dropdown-submenu > .submenu {
        position: absolute;
        top: 0;
        left: 100%;
        min-width: 220px;
        display: none;
    }

    .dropdown-submenu:hover > .submenu {
        display: block;
    }
}


@media (max-width: 991px) {

    .navbar-nav a {
        color: #000000 !important;
    }

    .submenu {
        display: none;
        padding-left: 15px;
        margin-top: 5px;
        border-left: 2px solid #ffc400;
    }

    .submenu.show {
        display: block;
    }

    .submenu-toggle {
        font-weight: 500;
        color: #000000 !important;
    }
}



@media (max-width: 1200px) {
    .header-btn {
        display: none;
    }
}

@media (max-width: 432px) {
    .navbar-brand img {
        width: 120px;
    }
}



/* .navbar-toggler-icon{
    background-color: #000000 !important;
    color: #00ff37 !important;
} */

/* header end */



/* banner section */

.hero-banner-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 95vh;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
    90deg,
    #3b4345 0%,
    rgba(59, 67, 69, 0.60) 35%,
    rgba(59, 67, 69, 0.35) 70%,
    rgba(59, 67, 69, 0.05) 100%
);

    /* background: rgba(59, 67, 69, 0.45); */

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-content h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 22px;
    color: #ffffff;
    /* font-family: "Ubuntu", sans-serif; */
    font-family: "Electrolize", sans-serif;
    
    
}

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

.hero-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #f5f5f5;
    margin-bottom: 35px;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-buttons .btn {
    padding: 11px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
}

.hero-buttons .btn-primary {
    background: #ffc400;
    color: #3b4345;
    border: none;
}

.hero-buttons .btn-primary:hover {
    background-color: #ffffff;
    color: #3b4345;
}

.hero-buttons .btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
}

.hero-buttons .btn-outline:hover {
    background: #ffc400;
    color: #3b4345;
    border: none;
}

@media (max-width: 991px) {

    .hero-banner {
        min-height: 85vh;
    }

    .hero-content h1 {
        font-size: 46px;
    }

    .hero-content p {
        font-size: 16px;
    }
}

@media (max-width: 575px) {

    .hero-banner {
        min-height: 80vh;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-buttons .btn {
        /* width: 100%; */
    }
}

@media (max-width: 375px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
    }
}


/* banner end */



/* footer start */


.footer-section {
    position: relative;
    background: url('../image/banner-2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0 20px;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(25, 25, 25, 0.53);
}

.footer-section .container {
    position: relative;
    z-index: 2;
}



.footer-bg {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px 25px;
}

/* Logo */

.footer-logo img {
    width: 180px;
}

/* About */

.footer-about p {
    color: #d9d9d9;
    font-size: 15px;
    line-height: 1.9;
    margin: 20px 0 25px;
}

/* Social Icons */

.social-icon {
    display: flex;
    gap: 12px;
}

.social-icon a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    font-size: 18px;
    transition: .4s;
}

.social-icon a:hover {
    background: #ffc400;
    color: #3b4345;
    transform: translateY(-5px) rotate(360deg);
}

/* Footer Menu */

.footer-menu {
    display: flex;
    justify-content: center;
}

.footer-menu ul {
    padding: 0;
    margin: 0;
}

.footer-menu h2 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
}

.footer-menu h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background: #ffc400;
    position: absolute;
    left: 0;
    bottom: -10px;
}

.footer-menu li {
    list-style: none;
    margin-bottom: 16px;
}

.footer-menu a {
    color: #d8d8d8;
    text-decoration: none;
    transition: .4s;
}

.footer-menu a:hover {
    color: #ffc400;
    padding-left: 8px;
}

.footer-menu li i {
    color: #ffc400;
    width: 25px;
}

/* Copyright */

.copy-right {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .1);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copy-right p {
    color: #d8d8d8;
    margin: 0;
    font-size: 14px;
}

.copy-right a {
    color: #d8d8d8;
    text-decoration: none;
    transition: .4s;
}

.copy-right a:hover {
    color: #ffffff;
}

/* Responsive */

@media (max-width: 991px) {

    .footer-bg {
        padding: 40px 25px 20px;
    }

    .footer-menu {
        justify-content: flex-start;
    }

    .footer-logo img {
        width: 150px;
    }

    .copy-right {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 767px) {

    .footer-section {
        padding: 60px 0 15px;
    }

    .footer-bg {
        padding: 30px 20px;
        border-radius: 15px;
    }

    .footer-menu h2 {
        font-size: 20px;
    }

    .social-icon a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .copy-right p {
        font-size: 13px;
        line-height: 1.8;
    }
}

/* footer end */





/* about start */

.about-section {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

/* Image */

.about-image {
    position: relative;
}

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

.about-image:hover img {
    transform: scale(1.03);
}

/* Floating Card */

.about-floating-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: #3b4345;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    min-width: 180px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
    animation: floatCard 4s infinite ease-in-out;
}

.about-floating-card h3 {
    font-size: 36px;
    font-weight: 700;
    color: #ffc400;
    margin-bottom: 5px;
}

.about-floating-card span {
    font-size: 14px;
}

/* Content */

.about-content {
    padding-left: 25px;
}

.about-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(233,201,95,.15);
    color: #3b4345;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 {
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: 700;
    color: #3b4345;
    font-family: "Electrolize", sans-serif;
}

.about-content h2 span{
    color: #ffc400;
}

.about-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Stats Cards */

.about-stats {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

.about-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(233,201,95,.20);
    transition: .4s;
}

.about-stat-card:hover {
    transform: translateY(-8px);
    background: #3b4345;
}

.about-stat-card:hover h3,
.about-stat-card:hover span {
    color: #fff;
}

.about-stat-card h3 {
    color: #ffc400;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 5px;
}

.about-stat-card span {
    color: #666;
    font-size: 14px;
}

/* Button */

.about-btn {
    margin-top: 35px;
}

.about-btn a {
    display: inline-block;
    background: #ffc400;
    color: #3b4345;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: .4s;
}

.about-btn a:hover {
    background: #3b4345;
    color: #ffffff;
}

/* Animation */

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

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

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

/* Responsive */

@media(max-width:991px){

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

    .about-content{
        padding-left:0;
        margin-top:40px;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-floating-card{
        right:10px;
    }

}

@media(max-width:767px){

    .about-section{
        padding:70px 0;
    }

    .about-content h2{
        font-size:28px;
        line-height: 1.5;
    }

    .about-stats{
        grid-template-columns:2,fr;
    }

    .about-floating-card{
        min-width:140px;
        padding:18px;
    }

    .about-floating-card h3{
        font-size:28px;
    }

}


@media(max-width:432px){
    .about-stat-card h3{
        font-size:25px;
    }
}

/* about end */



/* floating btn */

.floating-buttons-left {
    position: fixed;
    left: 15px;
    bottom: 3%;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
}


.float-btn.whatsapp {
    background: #25d366;
}


.float-btn.call {
    background: #ffc400;
}
/* end */

/* bootom to top */

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 3%;
    width: 40px;
    height: 40px;
    background: #ffc400;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    z-index: 999;
}
/* end */



/* contact page */



.contact-page-section {
    padding: 50px 0;
}

/* heading */

.contact-heading .sub-title {
    display: inline-block;
    background: rgba(255, 196, 0, 0.10);
    color: #3b4345;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-heading h2 {
    font-size: 40px;
    font-weight: 600;
    color: #3b4345;
    margin-bottom: 18px;
    font-family: "Electrolize", sans-serif;
    
}

.contact-heading h2 .title-color {
    color: #ffc400;
}

.contact-heading p {
    font-size: 16px;
    line-height: 1.9;
    color: #666;
}

/* form box */

.contact-form-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 28px;
    border: 1px solid rgba(255, 196, 0, 0.12);
    /* box-shadow: 0 20px 50px rgba(22, 178, 169, 0.08); */
}

.contact-form-box h3 {
    font-size: 32px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 28px;
    
}

/* form */

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    height: 58px;
    border-radius: 16px;
    border: 1px solid rgba(255, 196, 0, 0.12);
    padding: 0 20px;
    font-size: 15px;
    box-shadow: none !important;
}

textarea.form-control {
    height: auto;
    padding-top: 18px;
}

.form-control:focus {
    border-color: #3b4345;
}

.contact-btn {
    width: 100%;
    height: 58px;
    border: none;
    border-radius: 16px;
    background-color: #ffc400;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-btn:hover {
    background: #3b4345;
}

/* info box */

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* info card */

.contact-info-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
    border: 1px solid rgba(255, 196, 0, 0.12);
    transition: 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(255, 196, 0, 0.12);
}

/* icon */

.contact-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 20px;
    background: rgba(255, 196, 0, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 28px;
    color: #3b4345;
}

/* content */

.contact-info-content h4 {
    font-size: 20px;
    font-weight: 500;
    color: #1f3356;
    margin-bottom: 8px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
    text-decoration: none;
    transition: 0.3s ease;
}

.contact-info-content a:hover {
    color: #3b4345;
}

/* responsive */

@media (max-width: 991px) {

    .contact-heading h2 {
        font-size: 38px;
    }

    .contact-form-box {
        padding: 35px 28px;
    }
}

@media (max-width: 575px) {

    .contact-page-section {
        padding: 70px 0;
    }

    .contact-heading h2 {
        font-size: 30px;
    }

    .contact-heading p {
        font-size: 15px;
    }

    .contact-form-box {
        padding: 28px 22px;
    }

    .contact-form-box h3 {
        font-size: 28px;
    }

    .contact-info-card {
        padding: 22px;
        gap: 16px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .contact-icon i {
        font-size: 22px;
    }

    .contact-info-content h4 {
        font-size: 20px;
    }
}

/* contact page end */








/* testimonial section */


.testimonial-top-small {
    padding: 5cqh 0;
    background: #f8f8f8;
    overflow: hidden;
}

/* Heading */

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #3b4345;
    margin-bottom: 15px;
    font-family: "Electrolize", sans-serif;
}

.section-title span {
    color: #ffc400;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

/* Card */

.testimonial-small-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 20px;
    border: 1px solid rgba(233, 201, 95, 0.20);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.testimonial-small-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ffc400;
    border-radius: 50px;
}

.testimonial-small-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Client Top */

.client-top {
    margin-bottom: 20px;
}

/* IMAGE FIX */

.client-top img {
    width: 90px !important;
    height: 90px !important;
    min-width: 90px;
    max-width: 90px;
    min-height: 90px;
    max-height: 90px;

    border-radius: 50%;
    object-fit: cover;
    object-position: center center;

    display: block;
    margin: 0 auto 15px;

    border: 4px solid #ffc400;
    background: #f5f5f5;
}

/* Name */

.client-top h4 {
    font-size: 17px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

/* Designation */

.client-top span {
    font-size: 14px;
    color: #666;
    display: block;
}

/* Content */

.testimonial-small-content {
    margin: 20px 0;
}

.testimonial-small-content p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0;
}

/* Stars */

.review-stars {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eeeeee;
    color: #ffc400;
    font-size: 20px;
    letter-spacing: 3px;
}

/* Owl Carousel */

.testimonial-small-carousel .owl-stage {
    display: flex;
}

.testimonial-small-carousel .owl-item {
    display: flex;
    height: auto;
}

.testimonial-small-carousel .testimonial-small-card {
    width: 100%;
}

/* Navigation */

.testimonial-small-carousel .owl-nav {
    text-align: center;
    margin-top: 40px;
}

.testimonial-small-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: #3b4345 !important;
    color: #ffffff !important;
    font-size: 18px !important;
    margin: 0 8px;
    transition: all 0.3s ease;
}

.testimonial-small-carousel .owl-nav button:hover {
    background: #ffc400 !important;
    color: #000000 !important;
}

/* Dots */

.testimonial-small-carousel .owl-dots {
    text-align: center;
    margin-top: 25px;
}

.testimonial-small-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d6d6d6 !important;
    border-radius: 50%;
    display: block;
    margin: 5px;
}

.testimonial-small-carousel .owl-dot.active span {
    background: #ffc400 !important;
}

/* Mobile */

@media (max-width: 991px) {

    .section-title {
        font-size: 34px;
    }
}

@media (max-width: 767px) {

    .testimonial-top-small {
        padding: 70px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .testimonial-small-card {
        padding: 25px 20px;
    }

    .client-top img {
        width: 80px !important;
        height: 80px !important;
        min-width: 80px;
        max-width: 80px;
    }

    .client-top h4 {
        font-size: 16px;
    }

    .client-top span {
        font-size: 13px;
    }

    .testimonial-small-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .review-stars {
        font-size: 18px;
    }

    .testimonial-small-carousel .owl-nav button {
        width: 45px;
        height: 45px;
    }
}

/* testimonial end */




.baf-interior-section {
    padding: 50px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Image */

.baf-image-wrap {
    position: relative;
}

.baf-image-wrap img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

/* Floating Cards */

.baf-floating-card {
    position: absolute;
    background: #ffffff;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 250px;
    animation: bafFloat 4s ease-in-out infinite;
}

.baf-floating-card i {
    width: 55px;
    height: 55px;
    background: #ffc400;
    color: #3b4345;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baf-floating-card h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #3b4345;
}

.baf-floating-card span {
    font-size: 13px;
    color: #777;
}

.baf-card-top {
    top: 50px;
    right: -30px;
}

.baf-card-bottom {
    bottom: 50px;
    left: -30px;
    animation-delay: 1s;
}

/* Content */

.baf-title-tag {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(233,201,95,.15);
    color: #3b4345;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.baf-content-wrap h2 {
    font-size: 45px;
    font-weight: 700;
    color: #3b4345;
    line-height: 1.3;
    margin-bottom: 25px;
    font-family: "Electrolize", sans-serif;
}


.baf-content-wrap h2 span{
    color: #ffc400;
}

.baf-content-wrap p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
    margin-bottom: 18px;
}

/* Feature Grid */

.baf-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    margin-top: 35px;
    margin-bottom: 35px;
}

.baf-feature-item {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .4s;
}

.baf-feature-item:hover {
    background: #3b4345;
    transform: translateY(-5px);
}

.baf-feature-item:hover span {
    color: #ffffff;
}

.baf-feature-item i {
    width: 45px;
    height: 45px;
    background: #ffc400;
    color: #3b4345;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.baf-feature-item span {
    font-weight: 600;
    color: #3b4345;
}

/* Button */

.baf-main-btn {
    display: inline-block;
    background: #3b4345;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.baf-main-btn:hover {
    background: #ffc400;
    color: #3b4345;
}

/* Animation */

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

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

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

/* Responsive */

@media (max-width: 991px) {

    .baf-interior-section {
        padding: 80px 0;
    }

    .baf-content-wrap h2 {
        font-size: 34px;
    }

    .baf-image-wrap img {
        height: auto;
    }

    .baf-card-top {
        right: 10px;
    }

    .baf-card-bottom {
        left: 10px;
    }
}

@media (max-width: 767px) {

    .baf-interior-section {
        padding: 10px 0;
    }

    .baf-content-wrap h2 {
        font-size: 28px;
        line-height: 1.5;
    }

    .baf-feature-grid {
        grid-template-columns: 1fr;
    }

    .baf-floating-card {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin-top: 15px;
        min-width: 100%;
    }

    .baf-image-wrap img {
        border-radius: 20px;
    }
}

/* end */




/* services  page*/

.services-section {
    padding: 50px 0;
    background: #ffffff;
}

.services-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #3b4345;
    margin-bottom: 15px;
}

.services-section .section-title span {
    color: #ffc400;
}

.services-section .section-subtitle {
    color: #666;
    line-height: 1.9;
    max-width: 750px;
    margin: auto;
}

.service-row {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    
    transition: 0.4s;
}

.service-row:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12); */
    box-shadow: 0 18px 40px rgba(255, 196, 0, 0.12);
}

.service-number {
    display: block;
    font-size: 70px;
    font-weight: 700;
    color: #ffc400;
    opacity: .20;
    line-height: 1;
    margin-bottom: 10px;
}

.service-content h3 {
    font-size: 25px;
    font-weight: 500;
    color: #3b4345;
    margin-bottom: 20px;
}

.service-content h3::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #ffc400;
    margin-top: 12px;
    border-radius: 50px;
}

.service-content p {
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 0;
    text-align: justify;
}

.service-image {
    overflow: hidden;
    border-radius: 10px;
}

.service-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s;
}

.service-row:hover .service-image img {
    transform: scale(1.06);
}


.view-all-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 38px;
    background:#ffc400;
    color:#3b4345;
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    border-radius:50px;
    transition:all .4s ease;
    /* box-shadow:0 8px 25px rgba(255,196,0,0.35); */
    position:relative;
    overflow:hidden;
}

.view-all-btn::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:rgba(255,255,255,.25);
    transition:.5s;
}

.view-all-btn:hover::before{
    left:100%;
}

.view-all-btn:hover{
    background:#3b4345;
    color:#ffffff;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(0,0,0,.18);
}

@media (max-width: 991px) {

    .services-section {
        padding: 50px 0;
    }

    .services-section .section-title {
        font-size: 34px;
    }

    .service-row {
        padding: 25px;
    }

    .service-content h3 {
        font-size: 28px;
    }

    .service-image img {
        height: 300px;
    }
}

@media (max-width: 767px) {

    .services-section {
        padding: 50px 0;
    }

    .services-section .section-title {
        font-size: 28px;
    }

    .service-number {
        font-size: 50px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-image img {
        height: 250px;
    }

    .service-row {
        padding: 20px;
    }

    .view-all-btn{
        padding:12px 30px;
        font-size:15px;
    }
}

/* services end */



/* mission and vision */

.mission-vision-section{
    padding:50px 0;
    background:#f7f7f7;
    overflow:hidden;
}

.mission-vision-section .section-heading{
    margin-bottom:70px;
}

.mission-vision-section .section-heading span{
    color:#ffc400;
    font-weight:600;
    letter-spacing:2px;
}

.mission-vision-section .section-heading h2{
    font-size:40px;
    color:#3b4345;
    font-weight:700;
    margin-top:10px;
    font-family: "Electrolize", sans-serif;
}

/* Image */

.mv-image{
    position:relative;
}

.mv-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/* Cards */

.mission-box,
.vision-box{
    background:#fff;
    padding:40px;
    border-radius:20px;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.mission-box{
    margin-left:-120px;
    margin-bottom:40px;
    z-index:2;
}

.vision-box{
    margin-left:-60px;
}

.mission-box:hover,
.vision-box:hover{
    transform:translateY(-10px);
}

.mv-number{
    position:absolute;
    top:-20px;
    right:30px;
    font-size:80px;
    font-weight:700;
    color:#ffc400;
    opacity:.20;
}

.mission-box h3,
.vision-box h3{
    color:#3b4345;
    font-size:25px;
    margin-bottom:20px;
    font-weight:500;
}

.mission-box p,
.vision-box p{
    color:#666;
    line-height:1.9;
    margin:0;
    font-size:15px;
}

/* Left Border */

.mission-box::before,
.vision-box::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:8px;
    height:100%;
    background:#ffc400;
    border-radius:20px 0 0 20px;
}

/* Responsive */

@media(max-width:991px){

    .mv-image img{
        height:400px;
    }

    .mission-box,
    .vision-box{
        margin-left:0;
        margin-top:30px;
    }

    .mission-vision-section .section-heading h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .mission-vision-section{
        padding:70px 0;
    }

    .mv-image img{
        height:280px;
    }

    .mission-box,
    .vision-box{
        padding:25px;
    }

    .mission-box h3,
    .vision-box h3{
        font-size:24px;
    }

    .mv-number{
        font-size:55px;
    }

    .mission-vision-section .section-heading h2{
        font-size:28px;
    }
}

/* mission end */


/* why choose us */

.why-choose-section{
    padding:50px 0;
    background:
    linear-gradient(rgba(20,20,20,.75),rgba(20,20,20,.75)),
    url('../image/banner-5.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

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

.section-heading span{
    color:#ffc400;
    font-weight:600;
    letter-spacing:2px;
}

.section-heading h2{
    color:#ffffff;
    font-size:40px;
    font-weight:700;
    margin:15px 0;
    font-family: "Electrolize", sans-serif;
}

.section-heading p{
    color:#dddddd;
    max-width:750px;
    margin:auto;
    line-height:1.9;
}

/* Cards */

.why-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.5s;
    position:relative;
    overflow:hidden;
}

.why-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:0;
    height:100%;
    background:#ffc400;
    opacity:.08;
    transition:.5s;
}

.why-card:hover::before{
    width:100%;
}

.why-card:hover{
    transform:translateY(-12px);
    border-color:#ffc400;
}

.why-card span{
    font-size:60px;
    font-weight:700;
    color:#ffc400;
    opacity:.30;
    display:block;
    margin-bottom:10px;
}

.why-card h4{
    color:#ffffff;
    font-size:20px;
    margin-bottom:15px;
    font-weight:600;
}

.why-card p{
    color:#d9d9d9;
    line-height:1.8;
    margin:0;
}

/* Animation */

.why-card{
    animation:cardFloat 4s ease-in-out infinite;
}

.why-card:nth-child(2){
    animation-delay:.5s;
}

.why-card:nth-child(3){
    animation-delay:1s;
}

@keyframes cardFloat{

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

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

/* Mobile */

@media(max-width:991px){

    .section-heading h2{
        font-size:36px;
    }
}

@media(max-width:767px){

    .why-choose-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:28px;
    }

    .why-card{
        padding:25px;
    }

    .why-card span{
        font-size:45px;
    }

    .why-card h4{
        font-size:20px;
    }
}