
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    /*color: var(--bs-white) !important;*/
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 60px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 70px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.hero-slider {
    height: 520px;
    position: relative;
}

/* Slide background */
.carousel-item {
    height: 520px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 6s ease;
}

    /* Zoom effect */
    /*.carousel-item.active {
        transform: scale(1.08);
    }*/

    /* Gradient overlay */
    .carousel-item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.1) 100% );
        z-index: 1;
        pointer-events: none;
    }

/* Content box */
.slider-box {
    position: relative;
    z-index: 5;
    height: 520px;
    display: flex;
    align-items: center;
}

/* Glass card */
.slider-content {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 45px;
    max-width: 650px;
    color: #fff;
    border-left: 5px solid #13357b;
    animation: fadeUp 1s ease;
    position: relative;
    z-index: 10;
}

    /* Title */
    .slider-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
    }

    /* Text */
    .slider-content p {
        font-size: 18px;
        line-height: 1.7;
        color: #f1f1f1;
    }

/* Button */
.slider-btn {
    margin-top: 25px;
}

    .slider-btn a {
        background: #13357b;
        color: #fff;
        padding: 12px 28px;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: .3s;
        position: relative;
        z-index: 20;
    }

        .slider-btn a:hover {
            background: #13357b;
        }

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Indicators */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

/* Responsive */
@media(max-width:768px) {

    .hero-slider,
    .carousel-item,
    .slider-box {
        height: 430px;
    }

    .slider-content {
        padding: 25px;
    }

        .slider-content h1 {
            font-size: 28px;
        }

        .slider-content p {
            font-size: 15px;
        }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    padding: 150px 0 60px 0px;
    background: linear-gradient( rgba(19,53,123,0.5), rgba(19,53,123,0.32) ), url("../images/contact-1.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
    .bg-breadcrumb h1,
    .bg-breadcrumb h3 {
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
        text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
    }

    .bg-breadcrumb .breadcrumb {
        background: transparent;
    }

    .bg-breadcrumb .breadcrumb-item a {
        color: #ffffff !important;
        text-decoration: none;
        font-weight: 500;
    }

        .bg-breadcrumb .breadcrumb-item a:hover {
            color: #dcdcdc !important;
        }

    .bg-breadcrumb .breadcrumb-item.active {
        color: #ffffff;
    }
/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
.bg-breadcrumb-about {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgb(19, 53, 123, 0.36)), url(../images/bg-aboutus.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 60px 0;
}

    .bg-breadcrumb-about .breadcrumb-item a {
        color: var(--bs-secondary) !important;
    }

.vm-section {
    background: #f5f7fb;
}

.section-title {
    color: #13357b;
    font-size: 34px;
    font-weight: 700;
}

.section-subtitle {
    color: #666;
}

.vm-box {
    position: relative;
}

.vm-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

.vm-content {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    margin-top: -80px;
    position: relative;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

    .vm-content h3 {
        color: #13357b;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .vm-content p {
        font-size: 15px;
        line-height: 1.8;
        color: #555;
    }

.timeline-section {
    background: #FFF;
    padding: 80px 0;
}

.timeline {
    position: relative;
    margin: 0 auto;
    padding-left: 40px;
    border-left: 3px solid #13357b;
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: -52px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #FFF;
    border: 4px solid #13357b;
    border-radius: 50%;
}

.timeline-year {
    font-weight: 600;
    color: #13357b;
    margin-bottom: 5px;
}

.timeline-content {
    background: #FFF;
    border-radius: 8px;
    padding: 20px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-left: 4px solid #13357b;
}

    .timeline-content h5 {
        color: #13357b;
        font-weight: 600;
    }

    .timeline-content p {
        margin-bottom: 0;
        color: #333;
        font-size: 14px;
    }

@media (max-width: 768px) {
    .timeline {
        padding-left: 25px;
    }

    .timeline-dot {
        left: -40px;
    }
}

/* Our Strengths Section */
.our-strengths {
    background: #ffffff;
}

/* Title */
.strength-title {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Card */
.strength-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
    text-align: center;
    transition: 0.4s ease;
    height: 100%;
}

    .strength-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }

/* Icon */
.strength-icon {
    width: 70px;
    height: 70px;
    background: #13357b;
    color: #fff;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

/* Card Title */
.strength-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* Card Text */
.strength-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}
/*** About End ***/

/* =============================
   MODERN CONTACT DESIGN
============================= */

.contact-modern {
    background: #f4f7fc;
    padding: 50px 0;
}

/* Wrapper */
.contact-wrapper {
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
}

/* LEFT PANEL */
.contact-info {
    background: #13357b;
    color: #fff;
    padding: 50px 40px;
    height: 100%;
    position: relative;
}

    .contact-info h3 {
        font-weight: 700;
        margin-bottom: 20px;
    }

/* INFO ITEM */
.info-item {
    display: flex;
    margin-bottom: 22px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: #ffffff20;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

/* Working hours box */
.working-hours {
    background: #ffffff15;
    padding: 18px;
    border-radius: 12px;
    margin-top: 20px;
}

/* decorative shape */
.contact-info::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: #ffffff15;
    border-radius: 50%;
    bottom: -70px;
    right: -70px;
}

/* ===== FORM ===== */
.contact-form {
    padding: 50px 40px;
}

    .contact-form h3 {
        color: #13357b;
        font-weight: 700;
        margin-bottom: 25px;
    }

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #dcdcdc;
}

    .form-control:focus {
        border-color: #13357b;
        box-shadow: none;
    }

.btn-send {
    background: #13357b;
    color: #fff;
    border-radius: 30px;
    padding: 12px 35px;
    border: none;
    transition: .3s;
}

    .btn-send:hover {
        background: #0f2b63;
    }

/* IMAGE STRIP */
.contact-image {
    background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=900&q=60") center/cover;
    height: 180px;
}


/* MAP */
.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* Responsive */
@media(max-width:991px) {

    .contact-left,
    .contact-right {
        padding: 30px;
    }
}
/*** Contact End ***/

/*** Footer Start ***/
footer {
    background: linear-gradient(135deg,#eef3ff,#f8faff);
    color: #1f2937;
    position: relative;
}

    /* top gradient line */
    footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg,#13357b,#4f7cff,#13357b);
    }

/* titles */
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #13357b;
}

/* text */
.footer-text {
    color: #475569;
    line-height: 1.7;
}

/* links */
.footer-link {
    display: block;
    text-decoration: none;
    color: #334155;
    margin-bottom: 10px;
    transition: .3s;
}

    .footer-link:hover {
        color: #13357b;
        padding-left: 6px;
    }

/* logo */
.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo-box img {
        width: 70px;
    }

/* contact */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.contact-icon {
    min-width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #13357b;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* bottom */
.footer-bottom {
    border-top: 1px solid #cbd5e1;
    margin-top: 35px;
    padding-top: 15px;
    font-size: 14px;
    color: #475569;
}

/* wrapper */
.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* right links */
.footer-links a {
    text-decoration: none;
    color: #475569;
    margin: 0 6px;
    transition: .3s;
    font-weight: 500;
}

    .footer-links a:hover {
        color: #13357b;
    }

.footer-links span {
    color: #94a3b8;
}

/* mobile */
@media (max-width:768px) {
    .footer-bottom-wrapper {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* responsive */
@media(max-width:768px) {

    .footer-section {
        text-align: center;
    }

    .logo-box {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
    }
}
/*** Footer End ***/

.about-image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.stats-card {
    position: absolute;
    bottom: 30px;
    padding: 25px;
    color: #fff;
    border-radius: 12px;
    width: 260px;
}

    .stats-card h6 {
        color: white;
        font-size: 14px;
        margin-bottom: 10px;
        font-weight: 500;
    }

    .stats-card h2 {
        color: white;
        font-size: 36px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stats-card p {
        margin: 0;
        font-size: 14px;
    }

.card-one {
    left: 20px;
    background-color: #0077b6;
}

.card-two {
    left: 300px;
    background-color: #0b2c5d;
}

/* Responsive */
@media (max-width: 768px) {
    .stats-card {
        position: static;
        margin-top: 15px;
        width: 100%;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .animate-on-scroll.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Directions */

.fade-left {
    transform: translateX(-60px);
}

.fade-right {
    transform: translateX(60px);
}

.fade-up {
    transform: translateY(60px);
}

.zoom-in {
    transform: scale(0.8);
}

.animate-on-scroll.active.fade-left,
.animate-on-scroll.active.fade-right,
.animate-on-scroll.active.fade-up {
    transform: translate(0,0);
}

.animate-on-scroll.active.zoom-in {
    transform: scale(1);
}

/* Product Page*/
/* ===============================
   BREADCRUMB BACKGROUND
=================================*/
.bg-breadcrumb-product {
    background: linear-gradient(rgba(19, 53, 123, 0.29), rgb(19, 53, 123, 0.36)), url('../images/bg-product.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 60px 0;
}

    .bg-breadcrumb-product .breadcrumb-item a {
        color: var(--bs-secondary) !important;
    }

.product-section {
    padding: 80px 0;
}

.product-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px 40px 10px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.product-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 10px;
}

.product-title {
    color: #13357b;
    font-weight: 700;
    margin-bottom: 15px;
    text-align:justify;
}

.product-section-title {
    color: #13357b;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
}

.product-box {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.product-text {
    color: #555;
    line-height: 1.7;
    margin: 15px 0;
    text-align: justify !important;
}

/* TAGS */
.product-tags span {
    display: inline-block;
    background: #eef2ff;
    color: #13357b;
    padding: 6px 12px;
    margin-right: 8px;
    border-radius: 20px;
    font-size: 13px;
}

/* Specification table */
.spec-table th {
    width: 30%;
    background: #eef2f8;
}

/* Applications */
.application-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start; /* key fix */
}

.application-icon {
    width: 40px;
    height: 40px;
    min-width: 40px; /* prevent shrink */
    flex-shrink: 0; /* prevent collapse */
    background: #13357b;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .application-item {
        gap: 10px;
    }

    .application-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }
}
/* product elemenet for home page*/
.hero {
    background: linear-gradient(rgba(19,53,123,0.85), rgba(19,53,123,0.85)), url("https://images.unsplash.com/photo-1581092580497-e0d23cbdf1dc");
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0;
    text-align: center;
}

/* PRODUCT SECTION */
.product-section-home {
    background: #f8fbff;
    padding: 15px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

    .product-card img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

.product-content {
    padding: 25px;
    text-align: center;
}

    .product-content h5 {
        color: #13357b;
        font-weight: 600;
    }

    .product-content p {
        font-size: 15px;
        color: #6c757d;
    }

.product-btn {
    background: #13357b;
    color: #fff;
    border-radius: 30px;
    padding: 8px 22px;
}

    .product-btn:hover {
        background: #0e2a63;
        color: #fff;
    }

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* =============================
   POLICY CARD
=============================*/
.bg-breadcrumb-privacy-policy {
    background: linear-gradient(rgba(19, 53, 123, 0.29), rgb(19, 53, 123, 0.36)), url('../images/bg-privacy-policy.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 180px 0 80px 0;
}

.policy-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 6px solid #13357b;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: .3s;
}

    .policy-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(19,53,123,.15);
    }

    .policy-card h4 {
        color: #13357b;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .policy-card p,
    .policy-card li {
        line-height: 1.8;
        font-size: 16px;
    }

    .policy-card ul {
        padding-left: 20px;
    }

.bg-breadcrumb-disclaimer {
    background: linear-gradient(rgba(19, 53, 123, 0.29), rgb(19, 53, 123, 0.36)), url('../images/bg-disclaimer.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 180px 0 80px 0;
}

.bg-breadcrumb-termsconditions {
    background: linear-gradient(rgba(19, 53, 123, 0.29), rgb(19, 53, 123, 0.36)), url('../images/bg-termsconditions.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 180px 0 80px 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 2px 2px 3px #999;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
}

.whatsapp-float i {
    margin-top: 0;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}
