/********** Template CSS **********/
:root {
    --primary: #CA3D37;
    --light: #F8F8F8;
    --dark: #252525;
    --gradient-start: #f8f9fa;
    --gradient-end: #e9ecef;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}

/* Elegant Section Styling */
.elegant-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.elegant-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.elegant-section .container {
    position: relative;
    z-index: 1;
}

.elegant-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--dark), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeIn 0.8s ease-out;
}

.elegant-section p {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    animation: slideUp 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    /* background: rgba(0, 0, 0, .6); */
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 127px;

    }

    .header-carousel .owl-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}



.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.cmmon-bg {
    background-color: #F6F5ED;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.section-1 {
    background-color: #F6F5ED;
    padding: 20px;
    border-radius: 10px;
    transition: background 0.3s, border-radius 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-1 h2 {
    text-align: center;
    color: #13294B;
}

.pre-rolled-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

.para-cus {
    color: #000;
    text-align: justify;
    hyphens: auto;
}

.roll img {
    height: 50px;
    width: 50px;
}

.process-item {
    position: relative;
    transition: all 0.3s ease;
}

.process-item:hover {
    transform: translateY(-10px);
}

.process-icon {
    position: relative;
    display: inline-block;
}

.process-step {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.process-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.process-item:hover {
    background-color: var(--primary);
    color: #fff;
}

.process-item h4 {
    color: var(--primary);
    font-size: 28px;
}

.process-item:hover img {
    filter: invert(100%);
}

.process-item:hover h4 {
    color: #fff;
}

.product-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    background: #fff;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%;
}

.product-card .img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.product-card:hover .img-wrapper img {
    transform: scale(1.05);
}

.product-card .card-body {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(249, 249, 249, 1) 100%);
}

.product-card .card-title {
    font-weight: 600;
    color: var(--primary);
    font-size: 28px
}

.product-card p {
    font-size: 20px;
    color: #000 !important;
    line-height: normal;
}

.product-card .list-unstyled li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #000;
}

.product-card .text-primary {
    color: #FF6B6B !important;
}

.catalogue-viewer {
    position: relative;
    background: #fff;
    border: 1px solid #eee;
}

.catalogue-overlay {
    position: absolute;
    bottom: 15px;
    right: 15px;
}


/* ========== Sizes Section Styling ========== */
.sizes-section {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

.section-title {
    /* font-size: 2rem; */
    font-weight: 600;
    color: #13294B;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: #d62d2f;
}

.sizes-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    border-radius: 10px;
}

.sizes-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

/* Overlay icon */
.view-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    font-size: 28px;
    background: rgb(239 15 15 / 60%);
    padding: 12px 14px;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}
.view-icon i{
    color: #fff;
}
/* Hover effects */
.sizes-image-wrapper:hover .sizes-image {
    transform: scale(1.05);
    filter: brightness(0.8);
}

.sizes-image-wrapper:hover .view-icon {
    opacity: 1;
}

.sizes-description {
    text-align: left;
    color: #000;
    line-height: 1.8;
    font-size: 1rem;
}

.sizes-description p {
    margin-bottom: 15px;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.6rem;
        text-align: center;
    }

    .sizes-description {
        font-size: 0.9rem;
        text-align: center;
    }

    .sizes-image-wrapper {
        margin: 10px auto 30px;
    }
}

@media (max-width: 480px) {
    .sizes-section {
        padding: 60px 15px;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .sizes-description p {
        margin-bottom: 12px;
    }
}


/* Custom Carousel Styling for PaperCone */

/* Carousel Indicators (Dots) Styling */
.product-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
    z-index: 15;
}

.product-carousel .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-carousel .carousel-indicators .active {
    width: 14px;
    height: 14px;
    background-color: var(--primary);
    transform: scale(1.1);
}

/* Hover effect for indicators */
.product-carousel .carousel-indicators [data-bs-target]:hover {
    background-color: rgba(214, 45, 47, 0.5);
}

/* Carousel Controls (Arrows) Styling */
.product-carousel .carousel-control-prev,
.product-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    opacity: 0.7;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.product-carousel .carousel-control-prev {
    left: 20px;
}

.product-carousel .carousel-control-next {
    right: 20px;
}

.product-carousel .carousel-control-prev:hover,
.product-carousel .carousel-control-next:hover {
    opacity: 1;
    background-color: var(--primary);
}

.product-carousel .carousel-control-prev-icon,
.product-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .product-carousel .carousel-control-prev,
    .product-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .product-carousel .carousel-control-prev {
        left: 10px;
    }

    .product-carousel .carousel-control-next {
        right: 10px;
    }

    .product-carousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

    .product-carousel .carousel-indicators .active {
        width: 12px;
        height: 12px;
    }
}

/* Mobile adjustments */
@media (max-width: 576px) {

    .product-carousel .carousel-control-prev,
    .product-carousel .carousel-control-next {
        width: 35px;
        height: 35px;
    }

    .product-carousel .carousel-control-prev-icon,
    .product-carousel .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
}

.filter-section h2 {
    color: #13294B;
}

.filter-section p {
    color: #000;

}


/* Disclaimer overlay */
.disclaimer-overlay {
 position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* viewport width */
  height: 100vh; /* viewport height */
  overflow: hidden;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Disclaimer box */
.disclaimer-box {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  animation: fadeIn 0.5s ease;
}

.disclaimer-box h2 {
  margin-bottom: 15px;
  font-size: 22px;
}

.disclaimer-box p {
  font-size: 15px;
  color: #333;
  margin-bottom: 20px;
}

.disclaimer-box .btn-group {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Buttons */
#yesBtn, #noBtn {
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

#yesBtn {
  background-color: #28a745;
  color: white;
}

#noBtn {
  background-color: #dc3545;
  color: white;
}

#yesBtn:hover {
  background-color: #218838;
}

#noBtn:hover {
  background-color: #c82333;
}



/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.navbar-brand img {
    width: 50px;
    scale: 1.6;
}

/* Follow Section */
.follow-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--gradient-start);
    color: #1c2b39;
    font-family: 'Poppins', sans-serif;
}

.follow-section p {
    font-size: 25px;
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.follow-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000;
}

.follow-section .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.follow-section .social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d62d2f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.follow-section .social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .follow-section p {
        font-size: 16px;
    }

    .follow-section .social-icons a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .navbar-brand img {
        width: 50px;
        scale: 1;
    }
    .disclaimer-box {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    max-width: 295px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.5s ease;
}
.disclaimer-box .btn-group{
    flex-direction: column;
}
}

/* ====== TITLE STYLING ====== */

.section-title h2 {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 700;
    color: #222;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffd900);
    border-radius: 2px;
    animation: underlineGrow 2s ease-in-out infinite alternate;
}

@keyframes underlineGrow {
    from {
        width: 50px;
        opacity: 0.6;
    }

    to {
        width: 100px;
        opacity: 1;
    }
}

/* ====== GRID LAYOUT ====== */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-box,
.vision-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 5px solid transparent;
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-10px);
    border-top: 5px solid #ff0000;
}

.mission-box i,
.vision-box i {
    font-size: 40px;
    color: #ff0000;
    margin-bottom: 20px;
}

.mission-box h3,
.vision-box h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.mission-box p,
.vision-box p {
    font-size: 16px;
    color: #555;
    text-align: justify;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:767px) {
    .header-carousel .owl-dots .owl-dot.active {
        width: 30px;
        height: 30px;
    }
}


.header-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Adjust height on different devices */
@media (max-width: 992px) {
    .header-image {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .header-image {
        height: 100%;
    }
    html, body {
  width: 100%;
  overflow-x: hidden;
}
.header-carousel .owl-dots {
display: none;
}
.filter-section h2 {
    margin-top: 15px;
}
.section-1 h2 {
    text-align: center;
    margin-top: 15px;
    color: #13294B;
}
.para-cus {
    color: #000;
    text-align: justify;
    hyphens: auto;
    font-size: 14px;
            word-wrap: break-word;
        word-break: break-all;
}
}

@media (max-width: 576px) {
    .header-image {
        height: 100%;
    }
}


  .whatsapp-float {
      position: fixed;
      bottom: 25px;
      left: 25px;
      width: 60px;
      height: 60px;
      background-color: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 32px;
      box-shadow: 0 8px 15px rgba(37, 211, 102, 0.4);
      cursor: pointer;
      z-index: 1000;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      animation: bounce 2.5s infinite ease-in-out;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }