@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

body {
    font-family: "Titillium Web", sans-serif;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --red: #EF8225;
    --blue: #1E8BC4;
    --dark: #2A3855;
    --black: #000;
    --white: #fff;
    --muted: #F6F8FA;
    --glass: rgba(255, 255, 255, 0.78);
    --text: #1b1b1b;
    --soft-shadow: rgba(16, 24, 40, 0.06);
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    margin-top: 0;
    color: var(--dark);
    font-weight: 700;
}


h1,
.h1 {
    font-size: calc(1.5458726913rem + 3.5504722955vw)
}

@media(min-width: 1200px) {

    h1,
    .h1 {
        font-size: 4.2087269129rem
    }
}

h2,
.h2 {
    font-size: calc(1.4407334518rem + 2.288801422vw)
}

@media(min-width: 1200px) {

    h2,
    .h2 {
        font-size: 3.1573345183rem
    }
}

h3,
.h3 {
    font-size: calc(1.3618593037rem + 1.3423116444vw)
}

@media(min-width: 1200px) {

    h3,
    .h3 {
        font-size: 2.368593037rem
    }
}

h4,
.h4 {
    font-size: calc(1.3026889rem + 0.6322668vw)
}

@media(min-width: 1200px) {

    h4,
    .h4 {
        font-size: 1.776889rem
    }
}

h5,
.h5 {
    font-size: calc(1.2583rem + 0.0996vw)
}

@media(min-width: 1200px) {

    h5,
    .h5 {
        font-size: 1.333rem
    }
}

h6,
.h6 {
    font-size: 0.7501875469rem
}


a {
    text-decoration: none;
}

p {
    font-size: 16px;
    margin-bottom: 0px;
    text-align: justify;
    color: #000;
}


ul {
    padding: 0px;
    margin: 0;
}

ul li {
    list-style: none;
}



section {
    padding: 50px 0px;
}

@media(max-width: 767px) {
    section {
        padding: 20px 0px;
    }

    p {
        font-size: 14px;
        text-align: justify;
    }
}




/* magnetic cursor design start */
/* .magnetic-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: background-color 0.2s ease;
}

.magnetic-cursor img {
    height: 45px;
    position: absolute;
    top: 0;
} */

/* magnetic cursor design end */



/* fixed-icon-start */
.whatsapp-fixed {
    position: fixed;
    right: 1%;
    bottom: 10%;
    z-index: 999;

}

.whatsapp-fixed img {
    height: 50px;
    filter: drop-shadow(rgba(255, 255, 255, 0.349) 0px 5px 15px);
}

@media(max-width:768px) {
    .whatsapp-fixed {
        position: fixed;
        right: 1%;
        bottom: 5%;
        z-index: 999;

    }
}

/* fixed-icon-end */




/* subpage banner start */

.sub-page {
    background: url(../img/banner/Rudra-sub-banner.jpg);
    /* background: var(--red); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.sub-page-heading {
    padding: 60px 0px;
    text-align: start;
}

.sub-page-heading h1 {
    color: #fff;
    font-size: 50px;
    font-weight: 600;
}

.sub-page-heading p a,
.sub-page-heading p i {
    text-decoration: none;
    color: #fff;
}

@media(max-width: 768px) {
    .sub-page-heading h1 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
    }

    .sub-page-heading {
        padding: 10px 0px;
        text-align: start;
    }

    .sub-page-heading p {
        font-size: 11px;
    }
}

/* sub page banner end */




/* topbar css end======================================================= */
.topbar {
    background: var(--dark);
    color: var(--white);
    padding: 15px;
}

.topbar-item {
    display: flex;
    justify-content: space-between;
}

.topbar-item .topbar-left-item {
    display: flex;
    gap: 15px;

}

.topbar-item .topbar-left-item p,
a {
    font-size: 13px;
    color: var(--white) !important;
    font-weight: 600;
}

.topbar-item .topbar-left-item p i,
.topbar-item .topbar-left-item a i {
    color: var(--red);
}


.topbar-right-item a {
    border: 1px solid var(--white);
    padding: 5px 10px;
    font-size: 14px;

}

.topbar-right-item a:hover {
    background: var(--red);
    border-radius: 40px;
    transition: 0.5s ease-out;
}

@media(max-width: 991px) {

    .topbar-item .topbar-left-item p,
    a {
        font-size: 11px;
    }
}

@media(max-width: 767px) {
    .topbar {
        display: none;
    }
}

/* top bar css end========================================================================= */



/* navbar css start========================================================== */

.btn1 {
    display: inline-block;
    background: var(--red);
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    transition: 0.4s ease-in-out;
}

.btn1:hover {
    background: var(--dark);
    border: none;
    font-weight: 500;
    color: #fff;
}



/* btn end */


.dropdown:hover .dropdown-menu {
    display: block !important;
}

.dropdown-menu .dropdown-item {
    color: var(--dark) !important;
    font-size: 16px;
    font-weight: 600;
}

.dropdown-menu .dropdown-item:hover {
    background: var(--blue);
    color: #fff !important;
}


.navbar {
    background-color: #fff !important;

}

.navbar-brand {
    font-weight: bold;
    font-size: 28px !important;
    /* font-style: italic; */
}


.nav-link {
    padding-bottom: 0px !important;
    color: var(--dark) !important;
}

.nav-item .nav-link {
    font-weight: 600;
    font-size: 15px;
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    top: 30px;
}


/* logo */
.logo {
    height: 120px;
}

@media(max-width: 767px) {
    .navbar-brand {
        padding: 0 !important;
    }

    .logo {
        height: 70px;
    }

    .btn1 {
        margin-top: 10px;
        padding: 5px 15px;
    }
}

.carousel-item img {
    width: 100% !important;
}

/* navbar css end ==================================================================*/







/* about css start =============================================== */

.about-elite {
    background: linear-gradient(135deg, var(--muted) 0%, #f1f8fc 100%);
    color: var(--text);
    overflow: hidden;
}

/* Layout */
.about-inner {
    display: flex;
    gap: 44px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Side */
.about-left {
    flex: 1 1 46%;
}

.styled-heading {
    margin-bottom: 50px;
    position: relative;
}

.styled-heading h2 {

    display: inline-block;
    position: relative;
    /* padding: 0 15px; */
}

/* “Welcome to” style */
.welcome {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    position: relative;
    margin-right: 8px;
}

.welcome::after {
    content: "";
    display: inline-block;
    width: 50px;
    height: 2px;
    background: var(--blue);
    vertical-align: middle;
    margin-left: 10px;
    border-radius: 2px;
}

/* Company Name */
.company-name {

    font-weight: 700;
    font-size: 40px;
    color: var(--red);
    display: block;
    /* margin-top: 6px; */
    letter-spacing: 0.5px;
}

.about-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 14px 40px var(--soft-shadow);
}

.about-img img {
    width: 100%;
    display: block;
    transition: transform .6s ease;
}

.about-img:hover img {
    transform: scale(1.04);
}

/* Overlay and Circles */
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30, 139, 196, 0.12) 0%, rgba(239, 130, 37, 0.12) 100%);
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: .26;
    z-index: 0;
    filter: blur(14px);
    animation: float 6s ease-in-out infinite;
}

.circle1 {
    width: 140px;
    height: 140px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle at 30% 30%, var(--red) 0%, transparent 60%);
}

.circle2 {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: -60px;
    background: radial-gradient(circle at 70% 70%, var(--blue) 0%, transparent 60%);
    animation-delay: 2s;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 32px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-btn:hover {
    background: linear-gradient(135deg, var(--blue), var(--red));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Right Side */
.about-right {
    flex: 1 1 50%;
}

.about-box {
    background: var(--glass);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 12px 34px var(--soft-shadow);
    backdrop-filter: blur(8px);
    transition: transform .45s ease, box-shadow .45s ease;
}

.about-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(16, 24, 40, 0.12);
}

.about-box p {
    line-height: 1.75;
    margin-bottom: 14px;
}

/* Stats */
.stats-row {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.stat {
    flex: 1 1 30%;
    background: linear-gradient(180deg, #fff, #fbfbfb);
    border-radius: 12px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all 0.35s ease;
}

.stat h3 {
    font-size: 1.9rem;
    margin-bottom: 6px;
    color: var(--blue);
    font-weight: 800;
}

.stat p {
    margin: 0;
    text-align: center;
}

.stat:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: #fff;
}

.stat:hover h3,
.stat:hover p {
    color: #fff;
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-inner {
        flex-direction: column;
        /* text-align: center; */
    }

    .about-box {
        padding: 30px;
    }

    .stats-row {
        justify-content: center;
    }

    .stat {
        flex: 1 1 40%;
        max-width: 180px;
    }
}

@media (max-width:480px) {
    .about-heading {
        font-size: 1.8rem;
    }

    .stat h3 {
        font-size: 1.4rem;
    }
}

@media(max-width: 767px) {
    .styled-heading h2 {
        text-align: start;
    }

    .company-name {
        font-size: 28px;
    }

    .welcome {
        font-size: 16px;
    }

    .styled-heading {
        margin-bottom: 20px;
    }
}

/* about css end ============================================================================= */

/* about page css start ==========================================================================*/

.about-page-detail h2 {
    font-size: 30px;
}

.about-page-detail ul li {
    font-weight: 600;
    list-style-type: disc;
    line-height: 1.8;
}




/* Grid */
.mv-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mv-box {
    flex: 1 1 48%;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: 0 12px 35px var(--soft-shadow);
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border-top: 6px solid transparent;
}

.mv-box:hover {
    transform: translateY(-8px);
    border-top: 6px solid var(--blue);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.mv-box h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.mv-box p {
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .mv-grid {
        flex-direction: column;
    }

    .mv-box {
        flex: 1 1 100%;
    }

    .about-page-detail h2 {
        font-size: 26px;
    }

    .about-page-detail ul li {
        font-weight: 600;
        list-style-type: disc;
        line-height: 1.8;
        font-size: 14px;
    }
}


/* about page css end ================================================================================*/



/* products css start============================================================ */
.product-card {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    cursor: pointer;
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay Style */
.product-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.397);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s ease;
}

.product-card .overlay h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hover Effects */
.product-card:hover img {
    transform: scale(1.08);
}

.product-card:hover .overlay {
    background: rgba(30, 139, 196, 0.7);
    /* uses your blue accent */
}

@media(max-width: 767px) {
    .product-card .overlay h3 {
        font-size: 18px;
    }
}

/* products css end============================================================ */




/* why choose css start================================================== */

.why-choose-us {
    background: var(--red);
}

/* Feature Boxes */
.feature-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(30, 139, 196, 0.15);
}

.icon-box {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bg-blue {
    background: var(--blue);
}

.bg-orange {
    background: var(--red);
}

.bg-red {
    background: #28a745;
}

.bg-purple {
    background: #8e44ad;
}

/* Modern Image Design */
.modern-image {
    display: flex;
    justify-content: center;
    background: var(--white);
    border-top-left-radius: 45px;
    border-bottom-right-radius: 45px;

}

.image-frame {
    position: relative;
    /* background: #eaf5fc; */
    border-radius: 40px 0 40px 0;
    /* Modern curved corners */
    padding: 12px;
    display: inline-block;
    border: 4px solid var(--blue);
    overflow: hidden;
    transition: transform 0.3s ease;

}

.image-frame img {
    border-radius: 30px 0 30px 0;
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;

}

.image-frame:hover img {
    transform: scale(1.03);
}

.image-frame:hover {
    transform: translateY(-8px);
}

/* Responsive */
@media (max-width: 992px) {

    .image-frame {
        margin-top: 25px;
    }
}

/* why choose uss css end========================================================= */



/* award css start================================================================== */

.awards-section {
    background: linear-gradient(120deg, #f9fbff 0%, #eef7ff 100%);
}


.award-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(30, 139, 196, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
}

.award-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(239, 130, 37, 0.25);
}

.award-card:hover img {
    transform: scale(1.08);
}

/* Responsive */
@media (max-width: 992px) {
    .award-card img {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .award-card img {
        height: 180px;
    }
}

/* award css end==================================================================== */




/* blog css start ======================================================== */

.blog-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

.date-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--blue);
    color: #fff;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.blog-content {
    padding: 24px;
    background-color: var(--red);
}

.blog-content h3 {
    font-size: 25px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.blog-content p {
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 16px;
}



@media (max-width: 768px) {


    .blog-content {
        padding: 20px;
    }
}

/* blog css end============================================================= */



/* testimonail css start=================================================== */

.testimonial-section {
    background: var(--dark);
}

/* Testimonial Card */
.testimonial-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    padding: 30px;
    transition: all 0.4s ease;
    border-top: 5px solid #EF8225;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    color: #444;
    font-size: 1rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Client Info */
.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #1E8BC4;
}

.client-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: #1E8BC4;
    font-weight: 600;
}

.client-info span {
    color: #777;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonial-card {
        margin-bottom: 30px;
    }
}

/* testimonail css end======================================================== */




/* contact css start ================================================== */




.contact-header {
    max-width: 600px;
}



.contact-section {
    background: linear-gradient(#090909a8, #000000b7), url(../img/contact/contact-bg-rudra.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.contact-info .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.contact-info .icon i {
    color: var(--red);
}


.contact-info h3 {
    font-size: 18px;
}







/* ======================  Call-to-action Section End  ======================*/
.contact-section__info {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.contact-section__item {
    border: 1px solid var(--dark);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    width: 100%;
}

.contact-section__item:nth-child(2) i {
    background-color: var(--red);
}

.contact-section__item i {
    font-size: 24px;
    color: var(--white);
    background-color: var(--red);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.contact-section__item .text p {
    color: var(--white);
}

.contact-section__item .text p a {
    color: var(--white);
}

.map-section {
    margin-bottom: -10px;
}

.map-section iframe {
    width: 100%;
    height: 350px;
}

@media screen and (max-width: 575px) {
    .map-section iframe {
        height: 400px;
    }
}

@media(max-width: 767px) {
    .contact-info h3 {
        font-size: 12px;
    }

    .contact-info {
        margin-bottom: 20px !important;
        padding: 10px !important;
    }
}

/* contact css end============================================================ */


/* enq page css start ===========================================================*/
.enq-post {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;

}

.enq-post img {
    border-radius: 5px;
}

.enq-detail {
    margin-bottom: 20px;
}

.enq-detail h3 {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}

.enq-detail ul {
    padding-left: 10px;
}

.enq-detail ul li {
    list-style: disc;
    line-height: 1.9;
    font-weight: 500;
    color: #000;
}

.enq-btn button {
    background-color: var(--blue);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
}

.enq-form-btn {
    background-color: var(--blue);
    color: #fff;
}

.enq-form-btn:hover {
    background-color: var(--blue);
    color: #fff;
}


@media(max-width: 767px) {
    .enq-detail ul li {
        font-size: 12px;
        line-height: 1.7;
    }

    .enq-detail h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .enq-post img {
        margin-bottom: 12px;
    }

}

/* enquire page css end ============================================================*/




/* blog-details css start =================================================*/
.blog-detail-content {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 5px;
}

.blog-detail-date {
    margin-bottom: 15px;
}

.blog-detail-date span {
    color: #555555;
    font-size: 14px;
}

.blog-detail-heading h2 {
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-detail-post {
    margin-bottom: 15px;
}

.blog-detail-para h2 {
    font-size: 21px;
    font-weight: 600;
}

.blog-detail-para p {
    font-size: 16px;
    text-align: justify;
}



.main-recent-blog {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 20px;
    border-radius: 8px;
    background-color: #fff;
}

.recent-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.recent-card {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.recent-card:last-child {
    border-bottom: none;
}

.recent-card-post img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-card-detail {
    flex: 1;
}

.recent-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.recent-title {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    margin: 0;
}


@media(max-width: 767px) {
    .blog-detail-heading h1 {
        font-size: 19px;
    }

    .blog-detail-para h2 {
        font-size: 19px;
    }

    .blog-detail-para p {
        font-size: 14px;
    }

    .blog-detail-content {
        margin-bottom: 25px;
    }

}

/* blog-details css end ============================================================*/






/* footer css start ===================================================================*/
.footer-section {
    background: linear-gradient(#2a3855e8), url(../img/footer/footer-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0px;
}

.footer-logo {
    margin-bottom: 13px;
}

.footer-logo img {
    height: 130px;
}

.footer-para {
    margin-bottom: 20px;
}

.footer-para p {
    color: var(--white) !important;
    text-align: start;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
}

.footer-icon a {
    border: 1px solid var(--white);
    padding: 7px 12px;
    font-size: 18px;
}

.footer-icon a:hover {
    background: var(--red);
    border-radius: 40px;
    transition: 0.5s ease-out;
}

.footer-heading {
    margin-bottom: 25px;
}

.footer-heading h2 {
    color: var(--white);
    font-size: 26px;
}

.footer-cont-detail p {
    color: var(--white) !important;
    font-weight: 500;
    margin-bottom: 13px;
    font-size: 15px;
}

.footer-cont-detail p:hover {
    color: var(--red);
    transition: 0.4s ease-out;
    cursor: pointer;
}

.footer-cont-detail a {
    font-size: 15px;
}

.footer-cont-detail a:hover {
    color: var(--red);
    transition: 0.4s ease-out;
}

.footer-cont-detail a i,
p i {
    color: var(--red);
    padding-right: 3px;
}

.footer-ul ul li a {
    font-size: 15px;
    line-height: 2;
}

.footer-ul ul li a:hover {
    color: var(--red);
    transition: 0.4s ease-out;
}

.footer-ul ul li a i {
    color: var(--red);
    padding-right: 3px;
}

@media(max-width: 991px) {
    .main-mb-col {
        margin-bottom: 25px;
    }
}

@media(max-width: 767px) {
    .footer-section {
        padding: 30px 0px;
    }

    .footer-logo img {
        height: 100px;
    }

    .footer-para p {
        font-size: 14px;
        text-align: justify;
        line-height: 1.5;
    }

    .main-mb-col {
        margin-bottom: 25px;
    }

    .footer-heading {
        margin-bottom: 14px;
    }

    .footer-heading h2 {
        font-size: 20px;
    }

    .footer-ul ul li a {
        font-size: 14px;
    }

    .footer-ul ul li a {
        line-height: 1.7;
    }

    .footer-icon a {
        font-size: 15px;
    }

    .footer-cont-detail p {
        font-size: 14px;
    }

    .footer-cont-detail a {
        font-size: 14px;
    }
}

/* footer css end ============================================================================= */




/* copyright start =========================================*/

/* copyright */
.copyright-section {
    background-color: var(--red);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 10px;
}

.main-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.right-side p,
.left-side p {
    color: #fff;
    font-size: 16px;
    margin-bottom: 0px;
}

.left-side p a {
    text-decoration: none;
    color: #fff;
}

@media (max-width: 767px) {
    .footer-line {
        margin-bottom: 10px;
    }

    .main-copyright {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .right-side p {
        text-align: center;
    }

    .logo-icon {
        margin-bottom: 20px;
    }

    .right-side p,
    .left-side p {
        color: #fff;
        font-size: 12px;
        margin-bottom: 0px;
    }
}

/* copyright end =================================================*/