/* ================================
Font Display Fix (Icons)
================================ */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-display: swap;
}

@font-face {
  font-family: 'Font Awesome 5 Brands';
  font-display: swap;
}

@font-face {
  font-family: 'bootstrap-icons';
  font-display: swap;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/

.back-to-top {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
    position: fixed;
    bottom: 30px;
    right: 30px;
}

.btn {
    text-transform: none;
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
}

.btn.btn-dark {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.form-wrapper {
    border-left: 4px solid var(--bs-primary);
    margin-top: 0;
}

.form-label {
    font-weight: 600;
    font-size: 0.85rem;
}

.form-control,
.form-select {
    background: #f8f9fa;
}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--bs-primary);
}

.btn-primary {
    border-radius: 50px;
    font-size: 1rem;
}

/* Remove unwanted top space above form */
.form-wrapper {
    margin-top: 0 !important;
}

.container-fluid.bg-light {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/*** Topbar Start ***/

.search-btn {
    position: relative;
    width: 100%;
    padding: 0 0 0 25px;
}

.search-btn .form-group {
    width: 100%;
}

.search-btn button {
    position: absolute;
    right: 25px;
}

@media (max-width: 992px) {
    .search-btn {
        display: none;
    }
}

@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
    }
    .search-btn {
        display: none;
    }
    .topbar-info {
        flex-direction: column;
    }
    .topbar-info a {
        padding: 0 0 10px 0;
    }
    .topbar-icon {
        padding: 0 0 10px 0;
    }
}

@media (max-width: 576px) {
    .topbar-top {
        display: none;
    }
}

/*** Topbar End ***/

/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 15px;
    color: var(--bs-white);
    font-weight: 500;
    font-size: 16px;
    outline: none;
    transition: .5s;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active  {
    color: var(--bs-primary);
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 800;
    vertical-align: middle;
    margin-left: 8px;
}

@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;
    }
}

.dropdown .dropdown-menu a:hover,
.dropdown .dropdown-menu a.active {
    background: var(--bs-dark);
    color: var(--bs-primary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

.navbar-toggler {
    background: var(--bs-secondary);
    color: var(--bs-light) !important;
    padding: 5px 12px;
    border: 2px solid var(--bs-primary) !important;
}

/*** Navbar End ***/

/*** Carousel Start ***/

/* Carousel Item & Overlay */
.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
}

/* Images */
.carousel-inner img {
    width: 100%;
    object-fit: cover;
}

/* Desktop / Tablet heights */
@media(min-width: 768px) and (max-width: 1199px) {
    .carousel-inner img,
    .carousel-item {
        height: 65vh;
    }
}

/* Large desktops */
@media(min-width: 1200px) {
    .carousel-inner img,
    .carousel-item {
        height: 80vh;
    }
}

/* Mobile */
@media(max-width: 767px) {
    .carousel-inner img,
    .carousel-item {
        height: 60vh !important; /* taller mobile banner */
    }
}

/* Carousel Caption */
.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    z-index: 2;
    padding: 1rem;
}

/* Desktop / larger screens captions */
@media(min-width: 768px) {
    .carousel-caption h1 { font-size: 4rem; }
    .carousel-caption h4 { font-size: 1.5rem; }
    .carousel-caption .btn {
        padding: 1rem 3rem;
        font-size: 1rem;
    }
}

/* Mobile adjustments */
@media(max-width: 767px) {
    .carousel-caption {
        top: 18%; /* move content slightly higher for mobile */
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem; /* spacing between heading, subheading, button */
        width: 90%;
        padding: 0 1rem;
    }

    .carousel-caption h1 {
        font-size: 1.9rem;
        line-height: 1.2;
        text-align: center;
    }

    .carousel-caption h4 {
        font-size: 1.1rem;
        text-align: center;
    }

    .carousel-caption .btn {
        margin-top: 0;
        display: inline-block;
        padding: 0.6rem 1.8rem;
        font-size: 1rem;
    }

    /* Indicators below buttons */
    .carousel-indicators {
        bottom: 5%;
    }

    /* Hide controls on mobile */
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 80px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bs-primary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-control-prev { left: 0; border-radius: 0 30px 30px 0; }
.carousel-control-next { right: 0; border-radius: 30px 0 0 30px; }

/* Carousel Indicators */
#carouselId .carousel-indicators li {
    width: 5px;
    height: 5px;
    background: var(--bs-dark);
    border: 2px solid var(--bs-primary);
    border-radius: 50%;
    margin: 0 10px;
}

#carouselId .carousel-indicators li.active {
    background: var(--bs-primary) !important;
}

/*** Carousel End ***/


/*** About Start ***/

.about-img {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.about-img::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.about-img::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.rotate-left {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    left: -10%;
    rotate: 25deg;
    z-index: 2;
}

.rotate-right {
    width: 150px;
    height: 100px;
    position: absolute;
    top: 28%;
    right: -10%;
    rotate: -25deg;
    z-index: 2;
}

.about-img img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.experiences {
    width: 160px;
    height: 200px;
    position: absolute;
    bottom: 10px;        /* distance from bottom */
    right: 10px;         /* distance from right */
    padding: 35px 35px;
    text-align: center;
    border-radius: 10px;
    z-index: 3;
    animation: none;     /* ensure it doesn't move */
    
}

@keyframes mymove {
    from {top: -202px;}
    to {top: 102%;}
}

/*** About End ***/


/*** Services Start ***/
.services-inner-icon {
    width: 130px;
    height: 130px;
    background: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    position: relative;
    
}

.services-inner-icon::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 62px;
    top: 50%;
    left: 50%;
    transition: .5s;
}

.services-item:hover .services-inner-icon::after {
    width: 100%;
    height: 100%;
    margin-top: -50%;
    margin-left: -50%;
    background: var(--bs-primary);
    color: var(--bs-dark);
    
} 

.services-item i {
    text-align: center;
    transition: .5s;
}

.services-item:hover i {
    color: var(--bs-dark) !important;
    z-index: 1;
    rotate: 360deg;
}

.services-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

/*** Services Start ***/

/*** Project Start ***/
.project-item {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 30px 30px 30px 30px ;
    overflow: hidden;
}

.project-item::before {
    content: "";
    width: 100%;
    height: 40%;
    background: var(--bs-dark);
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}


.project-item::after {
    content: "";
    width: 100%;
    height: 60%;
    background: var(--bs-primary);
    position: absolute;
    bottom: 0px;
    left: 0px;
    z-index: 1;
    border-radius: 10px 10px 10px 10px;
}

.project-left {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    left: -18%;
    rotate: 30deg;
    z-index: 2;
}

.project-right {
    width: 180px;
    height: 70px;
    position: absolute;
    top: 22%;
    right: -18%;
    rotate: -30deg;
    z-index: 2;
}

.project-item img {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-item a {
    position: absolute;
    padding: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(-360deg);
    border-radius: 10px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    opacity: 0;
}

.project-item:hover a {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    background: var(--bs-primary);
    color: var(--bs-dark) !important;
    opacity: 1;

}


/*** prohect Start ***/


/*** Blog Start ***/

.blog-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}


.blog-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    left: 0;
    border: 0;
    border-radius: 10px 30px 30px 10px;
}

.blog-carousel .owl-nav .owl-prev {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.blog-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.blog-carousel .owl-prev,
.blog-carousel .owl-next {
    color: var(--bs-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-carousel .owl-nav .owl-next {
    position: absolute;
    width: 80px;
    height: 50px;
    background: var(--bs-primary);
    top: -51px;
    right: 0;
    border-radius: 30px 10px 10px 30px;
}

.blog-carousel .owl-nav .owl-next {
    box-shadow: inset 0 0 0 0 #000000;
    transition: .5s;
}

.blog-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 #000000;
    color: var(--bs-primary) !important;
}

/*** Blog End ***/


/*** Pricing Start ***/
.pricing-item {
    transition: .5s;
    
}

.pricing-item:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .5);
    margin: -20px 0 20px 0;
}

.pricing-label {
    border-bottom: 20px solid var(--bs-light);
    border-radius: 0 0 300px 300px;
    transition: .5s;
}

.pricing-item:hover .pricing-label {
    border-color: rgba(0, 0, 0, .5);
}

.pricing-item:hover .pricing-label.pricing-featured {
    border-color: rgba(255, 255, 255, .5);
}


/*** Pricing End ***/


/*** Call To Action start ***/

.call-to-action {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

/*** Call To Action End ***/


/*** Team Start ***/
.team-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.team-item .team-icon {
    position: absolute;
    top: 15px;
    right: -80px;
    rotate: -30deg;
    transition: .5s;
    visibility: hidden;
}

.team-item:hover .team-icon {
    visibility: visible;
    margin-right: 95px;
    rotate: 0deg;
}

.team-item .team-icon .btn {
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
}

.team-item .team-content {
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: 1s;
    
}

.team-item:hover .team-content {
    box-shadow: inset 550px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}
/*** Team End ***/

/*** testimonial Start ***/
.testimonial-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--bs-light);
    z-index: 1;
}

.testimonial-content::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    left: 50px;
    bottom: -15px;
    rotate: 45deg;
    z-index: -5;
    background: var(--bs-light);
}

.testimonial-carousel {
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--bs-primary);
    color: var(--bs-dark);
    font-size: 22px;
    top: 14%;
    left: 0px;
    border-radius: 30px 0 0 30px;
    box-shadow: inset 0 0 0 0 var(--bs-dark);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-nav .owl-next {
    left: auto;
    right: 0px;
    border-radius: 0 30px 30px 0;
}

.testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 200px 0 0 0 var(--bs-dark);
    color: var(--bs-primary) !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-secondary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--bs-primary);
}

/*** testimonial End ***/


/*** Contact Start ***/
.contact-link a i,
.contact-link a h5,
.contact-link a.h5 {
    transition: .5s;
}

.contact-link a i:hover,
.contact-link a h5:hover,
.contact-link a.h5:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    color: rgba(255, 255, 255, .7);
    margin-top: 2rem;
}

.footer-item,
.footer-item a {
    color: rgba(255, 255, 255, .7);
    text-transform: capitalize;
}

/*** Footer End ***/


/*** Copywright Start ***/

.copyright .copyright-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright .copyright-icon {
    width: 44px; 
    height: 44px; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

/*** Copywright End ***/
/* Banner Form - Desktop */
@media (min-width: 992px) {
    .banner-form {
        position: absolute;
        bottom: -40%;             /* only 30% of form height overlaps carousel */
        left: 50%;
        transform: translateX(-50%);
        max-width: 1140px;
        width: 100%;
        z-index: 50;              /* above carousel and indicators */
    }

    /* Carousel Indicators */
    .carousel-indicators {
        z-index: 30;              /* below banner form */
        bottom: 20px;             /* spacing from bottom */
    }

    /* Carousel Captions */
    .carousel-caption {
        z-index: 40;              /* above images but below form */
    }

    /* Ensure Call Now buttons inside captions are visible */
    .carousel-caption .btn {
        z-index: 45;
    }
}


/* Tablet: smaller overlap */
@media (min-width: 768px) and (max-width: 991px) {
    .banner-form {
        position: absolute;
        bottom: -30px;          /* smaller overlap */
        left: 50%;
        transform: translateX(-50%);
        max-width: 100%;
        width: 100%;
        z-index: 20;
    }
}

/* Mobile: normal flow below banner */
@media (max-width: 767px) {
    .banner-form {
        position: relative;    
        bottom: auto;          
        left: auto;            
        transform: none;       
        margin-top: 1.5rem;    
        max-width: 100%;
        width: 100%;
        z-index: 1;            
    }

    /* Carousel height */
    .carousel-inner img,
    .carousel-item {
        min-height: 50vh; /* allow full banner visibility */
        height: auto;
    }

    /* Adjust caption */
    .carousel-caption {
        top: 20%; /* move slightly higher */
        transform: translateX(-50%);
    }

    /* Indicators below caption */
    .carousel-indicators {
        bottom: 2%;
    }
}
/* Large desktops: reduce height */
@media(min-width: 1200px) {
    .carousel-inner img,
    .carousel-item {
        height: 60vh; /* reduced from 80vh */
    }
}

/* Medium desktops / tablets */
@media(min-width: 992px) and (max-width: 1199px) {
    .carousel-inner img,
    .carousel-item {
        height: 55vh; /* optional smaller for large tablets */
    }
}
/* Desktop adjustments: move caption up */
@media(min-width: 992px) {
    .carousel-caption {
        top: 20%; /* move content closer to top */
        transform: translateX(-50%); /* keep horizontal centering */
    }
}
/* Hide Call Now button on desktop (≥992px) */
@media (min-width: 992px) {
    .carousel-caption .btn.btn-primary {
        display: none;
    }
}

/* Show Call Now button on tablet/mobile (<992px) */
@media (max-width: 991px) {
    .carousel-caption .btn.btn-primary {
        display: inline-block; /* or flex if needed */
    }
}
/* Push content below banner form */
@media (min-width: 992px) {
    .after-banner {
        margin-top: 180px; /* adjust so only ~30% of form overlaps banner */
    }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .after-banner {
        margin-top: 120px; /* smaller overlap on tablets */
    }
}

/* Mobile */
@media (max-width: 767px) {
    .after-banner {
        margin-top: 0; /* no extra margin needed */
    }
}
/* About Section Mobile Padding Fix */
@media (max-width: 767px) {
    .container-fluid.py-5,
    .container.py-5 {
        padding-top: 1.5rem !important;  /* reduce top space */
        padding-bottom: 1.5rem !important; /* reduce bottom space */
    }
}
.content {
    padding: 40px 0;
    overflow: hidden; /* 🔥 KEY FIX */
}

.weldiv_inner h1 {
    font-size: 35px;
    font-weight: 700;
    color: #333;
    margin: 0 0 15px 0;
}

.body_text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin-bottom: 0;
}

.body_text > *:last-child {
    margin-bottom: 0 !important;
}
.highlight-text {
    margin-top: 20px;
    font-size: 18px;
    font-style: italic;
    font-weight: 600;
    color: #ED1115;
}

/* Mobile */
@media (max-width: 575px) {
    .content {
        padding: 30px 15px;
    }
}
.body_text h2 {
    font-size: 20px;}

.text-white{
    margin-bottom:10px; color:#fff;
}
.link {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    border-top: 5px solid #fdf001;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* subtle shadow */
    margin-bottom: 20px;
    margin-top: 20px;
}
.link h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}
.link ul {
    list-style: none;
    padding: 0;
}
.link ul li {
    margin-bottom: 10px;
    font-size: 14px;
}
.link ul li a {
    display: block;
    padding: 10px 15px;
    background: #f9f9f9;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}
.link ul li a:hover {
    background: #fdf001;
    color: #000;
}
.footer-item .btn-link {
    font-size: 14px;      /* smaller font size */
    color: #ffffff;       /* keep white text */
    text-decoration: none;
    padding: 5px 0;       /* reduce vertical padding */
}

.footer-item .btn-link i {
    font-size: 12px;      /* slightly smaller icon */
}

.footer-item .btn-link:hover {
    color: #fdf001;       /* yellow on hover */
    text-decoration: none;
}
.phone_icon_main,
.whatsapp_main {
    position: fixed;
    width: 60px;
    height: 60px;
    left: 40px;
    border-radius: 50%;
    background: #000;
    z-index: 100;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.3);

    /* PERFECT CENTERING */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* WhatsApp button */
.whatsapp_main {
    bottom: 120px;
    background-color: #27b36a;
}

/* Phone button */
.phone_icon_main {
    bottom: 40px;
    background-color: #e51024;
}

/* Icons */
.phone_icon,
.whatsapp_icon {
    font-size: 28px;
    color: #fff;
}

/* Make full circle clickable */
.phone_icon_main a,
.whatsapp_main a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Footer links (unchanged but cleaned) */
.copy a {
    color: #06a400;
    padding: 0 5px;
}

.copy a:hover {
    color: #fff;
}

.powered_by a {
    text-decoration: none;
    color: #fff;
    transition: 0.5s;
}

.powered_by a:hover {
    color: #06a400;
}
/* Make modal fade smoothly */
.modal.fade .modal-dialog {
    transform: translateY(-50px);
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.modal.show .modal-dialog {
    transform: translateY(0);
}

/* Rounded shadow popup */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    background-color: #ffffff;
}

/* Modal header */
.modal-header {
    background-color: #fdf001;
    color: #222;
    font-weight: bold;
    font-size: 18px;
    border-bottom: none;
}

/* Close button */
.btn-close {
    filter: invert(1); /* white x icon */
}

/* Form styling inside modal */
.modal-body .form-control {
    border-radius: 12px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    padding: 10px;
    font-size: 14px;
}

.modal-body .form-control:focus {
    border-color: #fdf001;
    box-shadow: 0 0 8px rgba(253,240,1,0.5);
    background-color: #fff;
}

/* Submit button */
.modal-body .btn-warning {
    border-radius: 30px;
    font-weight: 600;
    padding: 12px;
    transition: 0.3s;
}

.modal-body .btn-warning:hover {
    background-color: #e6da00;
}

/* Footer contact */
.modal-body .text-center {
    font-size: 14px;
    color: #444;
}

/* Responsive */
@media (max-width: 767px) {
    .modal-dialog {
        margin: 20px;
    }
    .modal-body .form-control {
        font-size: 13px;
    }
}/* Remove focus outline and box-shadow from close button */
.btn-close:focus,
.btn-close:active {
    outline: none !important;
    box-shadow: none !important;
}
.content h1, .content h2, .content p {
    min-height: 50px; /* adjust based on expected tallest heading/paragraph */
}

.topbar-info {
    min-height: 40px;  /* keeps topbar from jumping */
    display: flex;
    align-items: center;
}

.topbar-info span {
    min-width: 200px; /* or the expected max width of content */
    display: inline-block;
}

@font-face {
    font-family: 'Nunito';
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    font-display: swap;
}

.banner-wrapper {
    width: 100%;
    aspect-ratio: 1600 / 530; /* reserve space */
    background: #f5f5f5;      /* placeholder color while image loads */
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body, h1, h2, p {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Open Sans", "Nunito", sans-serif;
}
.pest-price-table{
    width:100%;
    border-collapse:collapse;
    font-family: Arial, sans-serif;
    margin:20px 0;
}

.pest-price-table th{
    background:#2c7a2c;
    color:#fff;
    padding:12px;
    text-align:left;
    font-size:16px;
}

.pest-price-table td{
    padding:10px;
    border:1px solid #ddd;
    font-size:15px;
}

.pest-price-table tr:nth-child(even){
    background:#f5f5f5;
}

.pest-price-table tr:hover{
    background:#eef7ee;
}