
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e1e1e;
  margin-top: 0px;
  margin-bottom: 0px;
  font-weight: 700;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 28px;
  color: #4a4a4a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
Global Styles
--------------------------------------------- 
*/
html,
body {
  font-family: 'Poppins', sans-serif;
}

::selection {
  background: #0071f8;
  color: #fff;
}

::-moz-selection {
  background: #0071f8;
  color: #fff;
}

.section {
  margin-top: 120px;
}

.section-heading {
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  text-transform: capitalize;
  margin-top: 20px;
  line-height: 56px;
}

.section-heading h2 em {
  font-style: normal;
  color: #0071f8;
}

.section-heading h6 {
  color: #ee626b;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.icon-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  height: 50px;
  line-height: 50px;
  padding: 0px 30px 0px 0px;
  border-radius: 25px;
  transition: all .3s;
}

.icon-button a i {
  background-color: #FFFF00;
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  line-height: 50px;
  display: inline-block;
  margin-right: 15px;
  margin-left: -1px;
}

.icon-button a:hover {
  color: #FFFF00;
}

.icon-button a:hover i {
  color: #fff;
}

.main-button a {
  display: inline-block;
  background-color: #1e1e1e;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  padding: 0px 30px;
  border-radius: 25px;
  transition: all .3s;
}

.main-button a:hover {
  background-color: #FFFF00;
  color: #fff;
}

/* ---------------------------------------------
Preloader
--------------------------------------------- */
.js-preloader {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: #0A140A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.preloader-spinner-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
}

.preloader-svg {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}

.preloader-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}

.preloader-spinner {
  fill: none;
  stroke: #28a745; 
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: spin 1s linear infinite;
}

.pest-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px; 
  left: 20px; 
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.preloader-text {
  margin-top: 15px;
  color: #cccccc;
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif;
  letter-spacing: 1px;
  opacity: 0.8;
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(3deg); }
  30% { transform: rotate(-3deg); }
  45% { transform: rotate(2deg); }
  60% { transform: rotate(-2deg); }
  75% { transform: rotate(1deg); }
  90% { transform: rotate(-1deg); }
}

.preloader-text {
  margin-top: 15px;
  color: #ffcc00;
  font-size: 14px;
  font-family: 'Helvetica Neue', sans-serif;
  letter-spacing: 1px;
  opacity: 0.8;
  animation: wobble 1.5s infinite;
}



/* Header Styling */
.header-area {
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: box-shadow 0.3s ease-in-out;
}

.header-sticky {
    background-color: #fff; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); 
}


.header-sticky.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.logo img {
    max-height: 50px; 
    width: auto;
}

/* Navbar Styling */
.main-nav .nav {
    display: flex;
    justify-content: center; 
    align-items: center;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.main-nav .nav li {
    margin-left: 40px;
}

.main-nav .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    padding: 14px 20px;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav .nav-link:hover {
    color: #ffcc00; 
    transform: translateY(-3px); 
}

.main-nav .nav-link.active {
    color: #ffcc00;
    border-bottom: 2px solid #ffcc00;
}

/* Schedule Link */
.main-nav .nav-link.schedule {
    background-color: #02245b;
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.main-nav .nav-link.schedule:hover {
    background-color: #ffcc00;
}

/* Mobile Menu Styles */
.menu-trigger {
    display: none;
    background-color: #02245b;
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.menu-trigger:hover {
    background-color: #ffcc00;
}


@media (max-width: 768px) {
    .main-nav .nav {
        display: none;
        flex-direction: column;
        align-items: center;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 80px;
        left: 0;
        padding-top: 30px;
        border-radius: 10px; 
    }

    .main-nav .nav li {
        margin: 12px 0;
        padding: 0 20px;
        width: 100%; 
    }

    .main-nav .nav-link {
        font-size: 18px; 
        color: #fff;
        text-transform: none; 
        padding: 15px 20px;
        transition: color 0.3s, background-color 0.3s;
        border-bottom: 2px solid transparent; 
    }

    /* Hover Effect  Links */
    .main-nav .nav-link:hover {
        color: #ffcc00;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .menu-trigger {
        display: block;
    }

    .main-nav.active .nav {
        display: flex;
    }
}





/* 
---------------------------------------------
Banner Style
--------------------------------------------- 
*/

.main-banner .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 220px 20% 320px 20%;
  margin-top: 0px;
}

.main-banner .item-1 {
  background-image: url(../images/banner-01.jpg);
}

.main-banner .item-2 {
  background-image: url(../images/banner-02.jpg);
}

.main-banner .item-3 {
  background-image: url(../images/banner-03.jpg);
}

.main-banner .item span.category {
  background-color: #fff;
  color: #1e1e1e;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 6px 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.main-banner .item span.category em {
  font-style: normal;
  color: #f35525;
}

.main-banner .item h2 {
  font-size: 62px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 72px;
  width: 50%;
  margin-bottom: 0px;
}

.main-banner .owl-dots {
  position: absolute;
  bottom: 60px;
  left: 20%;
}

.main-banner .owl-dots .owl-dot {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  transition: all .5s;
}

.main-banner .owl-dots .active {
  background-color: #f35525;
}

.main-banner .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50px);
}

.main-banner .owl-nav .owl-prev i,
.main-banner .owl-nav .owl-next i {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  display: inline-block;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 1;
  transition: all .3s;
}

.main-banner .owl-nav .owl-prev i {
  position: absolute;
  left: 45px;
}

.main-banner .owl-nav .owl-next i {
  position: absolute;
  right: 45px;
}

.main-banner .owl-nav .owl-prev i:hover,
.main-banner .owl-nav .owl-next i:hover {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.5);
}



/* About Section Styling */
.about-section {
    margin-top: 40px !important;
    padding-top: 20px;
    padding-bottom: 40px;
}

.about-section .row {
    display: flex;
    align-items: center;
}

/* Image Grid Styling */
.about-section .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 615px;
    height: 615px;
}

.about-section .image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}


.about-section .about-content {
    padding-left: 40px;
}


.about-section h6 {
    color: #ffcc00; 
    font-size: 16px;
    text-transform: uppercase;
}


.about-section h2 {
    color: #004d00; 
    font-size: 32px;
    margin-bottom: 20px;
}

.ratings {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #333;
}

.rating-item i {
    color: #28a745; 
    font-size: 20px;
}


/* Media Queries for Responsiveness */

/* Tablet View (768px and below) */
@media (max-width: 768px) {
    .about-section .image-grid {
        grid-template-columns: 1fr; 
        width: 100%; 
        height: auto; 
        margin-bottom: 20px; 
    }
    .about-section .image-grid img:nth-child(n+2) {
        display: none; 
    }

    .about-section .about-content {
        padding-left: 40px;
        padding-top: 20px;
    }
}


@media (max-width: 480px) {
    .about-section .image-grid {
        grid-template-columns: 1fr; 
        width: 100%; 
        height: auto; 
        margin-bottom: 20px; 
    }

    .about-section .image-grid img:nth-child(n+2) {
        display: none; 
    }

    .about-section .about-content {
        padding-left: 40px;
        padding-top: 20px; 
    }
}




/* 
---------------------------------------------
Contact Style
--------------------------------------------- 
*/

/* Contact Section */
.contact-section {
    width: 100%;
    max-width: 1200px;
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
}

.contact-section .contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.contact-section .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40%;
    gap: 20px;
}

.contact-section .info-box {
    width: 100%;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-section .icon {
    width: 75px;
    height: 75px;
    margin-bottom: 8px;
}

.contact-section .contact-form {
    flex: 1;
}

.contact-section .contact-form h2 {
    font-size: 28px; 
    color: #006600;  
    margin-bottom: 10px;
}


.contact-section .contact-info h4 {
    font-size: 20px; 
    color: #333333;  
    margin-bottom: 8px;
}


.contact-section .contact-form p {
    font-size: 14px;
    margin-bottom: 12px;
}

.contact-section .contact-form .form-group {
    margin-bottom: 12px;
}

.contact-section .contact-form .form-group input,
.contact-section .contact-form .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-section .contact-form .btn-submit {
    padding: 10px;
    font-size: 15px;
    background-color: #00a651; 
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.contact-section .contact-form .btn-submit:hover {
    background-color: #ffcc00; 
}


@media (max-width: 768px) {
    .contact-section .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-section .contact-info {
        width: 100%;
    }

    .contact-section .icon {
        width: 65px;
        height: 65px;
    }
}
ocus,
.input-field textarea:focus {
    border-color: #2980b9;
}

/* Submit Button */
.contact-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #2980b9;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #1e679f;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-cards {
        flex-direction: column;
        width: 100%;
    }

    .contact-card {
        width: 100%;
    }
}




/*  Header Section */
.section-header {
  position: relative;
  background-image: url('../images/modern-bg.jpg');
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

.section-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); 
  z-index: 1;
}

.section-header .container {
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  font-size: 14px;
  margin-bottom: 10px;
  color: #ffcc00;
}

.breadcrumb-nav a {
  color: #f0f0f0;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav a:hover {
  color: #ef571b; 
}

.section-header h1 {
  font-size: 42px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  line-height: 1.2;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .section-header {
    height: 200px;
  }

  .section-header h1 {
    font-size: 32px;
  }
}

/* Add this animation */
@keyframes zoomFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}


.section-header .breadcrumb-nav,
.section-header h1 {
  opacity: 0;
  animation: zoomFadeIn 0.8s ease forwards;
}


.section-header .breadcrumb-nav {
  animation-delay: 0.2s;
}

.section-header h1 {
  animation-delay: 0.4s;
}

.section-header h1 {
  animation-delay: 0.4s;
  color: #ffffff; 
}




/* ---------------------------------------------
   Contact Page Style
--------------------------------------------- */

.contact-page #map {
    margin-top: 100px;
}

.contact-page .section-heading {
    margin-bottom: 40px;
    margin-right: 280px;
}

/* Contact Us Heading */
.contact-page .section-heading h6 {
    color: #f1c40f;
}

.contact-page p {
    margin-bottom: 50px;
}

/* Contact Info Box */
.contact-page .item {
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
    padding: 35px 30px;
    background-color: #fff;
    display: flex; 
    align-items: center; 
    gap: 15px; 
    min-width: 360px; 
    max-width: 100%; 
}

.contact-page .phone,
.contact-page .email {
    width: 360px; 
    margin-bottom: 30px;
}

/* Icon Styling */
.contact-page .item img {
    width: 52px; 
    height: auto;
}

.contact-page .item h6 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4; 
}

.contact-page .item h6 span {
    display: block; 
    font-size: 15px;
    color: #aaaaaa;
    font-weight: 400;
}

/* ---------------------------------------------
   Contact Form Styling
--------------------------------------------- */
.contact-page #contact-form {
    margin-left: 0;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
    background: linear-gradient(90deg, #004d00, #006400);
    color: #fff;
    text-align: left;
}

.contact-page #contact-form label {
    font-size: 15px;
    color: #fff;
    margin-bottom: 10px;
    display: block;
}

/* Contact Form Inputs &  Dropdown */
.contact-page #contact-form input,
.contact-page #contact-form textarea,
.contact-page #contact-form select {
    width: 100%;
    height: 44px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    margin-bottom: 20px;
    font-size: 14px;
    padding: 10px 15px;
    color: #333;
}

.contact-page #contact-form textarea {
    height: 120px; 
}

.contact-page #contact-form select {
    color: #333;
    cursor: pointer;
}

.contact-page #contact-form input::placeholder,
.contact-page #contact-form textarea::placeholder {
    color: #666;
}

.contact-page #contact-form input:focus,
.contact-page #contact-form textarea:focus,
.contact-page #contact-form select:focus {
    outline: none;
    border: 2px solid #fff;
}

/* Send Message Button */
.contact-page #contact-form button {
    width: 100%;
    background-color: #00a651;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

.contact-page #contact-form button:hover {
    background-color: #ffcc00;
    color: #fff;
}




/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

body {
  overflow-x: hidden;
}

@media (max-width: 767px) {
  .header-area .main-nav .logo h1 {
    line-height: 80px !important;
  }
  .best-deal .tabs-content .nav-link {
    font-size: 14px;
    padding: 0px 15px;
    height: 44px;
    line-height: 44px;
  }
  .best-deal .tabs-content ul.nav-tabs li {
    margin: 0px 5px;
  }
  .properties ul.properties-filter li a {
    font-size: 14px;
    padding: 10px 15px;
  }
  .properties ul.properties-filter li {
    margin: 5px;
  }
  .header-area .main-nav .nav li:last-child {
    display: none;
  }
}

@media (max-width: 992px) {
  .sub-header {
    display: none;
  }
  .header-area .main-nav .logo h1 {
    line-height: 100px;
  }
  .background-header .main-nav .logo h1 {
    line-height: 80px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 3px;
    padding-right: 3px;
  }
  .header-area .main-nav .nav li:last-child a {
    padding-right: 15px;
  }
  .main-banner .item h2 {
    width: 100%;
  }
  .featured .section-heading {
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 100px;
  }
  .featured .accordion {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured .info-table {
    margin-top: 45px;
  }
  .fun-facts .counter {
    margin-bottom: 45px;
  }
  .best-deal .section-heading {
    text-align: center;
  }
  .best-deal .tabs-content ul.nav-tabs {
    margin-top: 0px;
    justify-content: center;
  }
  .best-deal .info-table {
    margin-bottom: 45px;
  }
  .best-deal .tab-content img {
    padding: 0px;
  }
  .best-deal .tabs-content h4 {
    margin-top: 45px;
  }
  .properties .item h6 {
    text-align: center;
    margin-bottom: 15px;
  }
  .properties .item .main-button {
    text-align: center;
  }
  .properties .item ul li {
    margin-right: 10px;
    font-size: 13px;
  }
  .contact-content .phone {
    margin-right: 0px;
    margin-bottom: 20px;
  }
  .contact-content .email {
    margin-left: 0px;
    margin-bottom: 45px;
  }
  .contact-content #contact-form {
    margin-left: 0px;
  }
  .single-property .info-table {
    margin-left: 0px;
    margin-top: 45px;
  }
  .contact-page .section-heading {
    margin-right: 0px !important;
  }
  .contact-page #contact-form {
    margin-left: 0px;
    margin-top: 60px;
  }
  .best-deal .info-table ul li span {
    float: right !important;
    width: auto !important;
  }
}

@media (max-width: 1200px) {
  .best-deal .info-table ul li span {
    float: none;
    width: 100%;
  }
  .contact-page .section-heading {
    margin-right: 100px;
  }
}

.sub-header {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Free Quote Box Styling - Right Side & Portrait (PC & Tablet) */
.quote-box {
    position: absolute;
    top: 50%;
    right: -13px; 
    transform: translateY(-50%);
    background: #ffcc00;
    padding: 50px 20px;
    border-radius: 15px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; 
    height: 200px; 
}

.quote-button {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    transform: rotate(-90deg); 
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

/* Hover Effect */
.quote-box:hover {
    background: #00a651;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive for Mobile */
@media (max-width: 991px) {
    .quote-box {
        position: relative;
        right: 0; 
        margin: 40px auto 20px; 
        width: auto;
        height: auto;
        padding: 15px 30px;
        background: #28a745; 
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease-in-out;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Mobile Button - Call Style */
    .quote-button {
        transform: rotate(0deg); 
        font-size: 20px;
        font-weight: 700;
        color: white;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: all 0.3s ease-in-out;
    }

    
    .quote-button i {
        font-size: 22px;
        margin-right: 10px;
    }

    .quote-box:hover {
        background: #218838;
        box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4);
        transform: scale(1.05);
    }
}

/* Sidebar Styling */
.quote-sidebar {
    position: fixed;
    right: -350px;
    top: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: -4px 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    padding: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

/* Sidebar Open */
.quote-sidebar.open {
    right: 0;
}

/* Close Button */
.close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #333;
    float: right;
    margin-bottom: 10px;
}

/* Sidebar Logo */
.sidebar-logo {
    text-align: center;
    margin-bottom: 15px;
}

.sidebar-logo img {
    width: 150px;
}

/* Sidebar Content */
.sidebar-content h1 {
    color: #1e1e1e !important; 
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
}

.sidebar-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    text-align: center;
}

/* Form Section Styling */
.form-container {
    background: linear-gradient(90deg, #004d00, #006400); 
    padding: 20px;
    border-radius: 8px;
    color: #fff; 
}

/* Form Inputs */
#quote-form label {
    font-size: 14px;
    color: #fff; 
    margin-bottom: 5px;
}

#quote-form input,
#quote-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

#quote-form input::placeholder,
#quote-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

#quote-form input:focus,
#quote-form textarea:focus {
    outline: none;
    border: 2px solid #fff;
}

/* Submit Button */
.submit-btn {
    background: #00a651;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    width: 100%;
    display: block;
    text-align: center;
    transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
}

.submit-btn:hover {
    background: #ffcc00;
    color: #000;
}

/* Social Media Section */
.social-media {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    margin-top: 15px;
    text-align: center;
}

/* Social Media Icons (Circular Borders) */
.social-icon {
    font-size: 24px;
    color: #2e3192; 
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, 0.2); 
    border-radius: 50%; 
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

/* Hover Effect */
.social-icon:hover {
    transform: scale(1.2);
    color: #ffcc00; 
    border-color: #ffcc00; 
}


/* Fun Facts Section */
.fun-facts {
    background: #ffffff; 
    color: #222; 
    padding: 60px 0; 
    margin: 60px 0; 
    overflow: visible; 
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-box {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.counter-box:hover {
    background: #f5f5f5; 
    transition: background 0.3s ease-in-out; 
}

.count-title {
    font-size: 32px; 
    font-weight: bold;
    color: #2e3192; 
}

.count-text {
    font-size: 16px; 
    font-weight: 500;
    text-transform: uppercase; 
    color: #555; 
}

.counter-box::before,
.fun-facts::before,
.fun-facts::after {
    content: "";
    position: absolute;
    width: 2px; 
    background-color: #00a651;
}

.counter-box::before {
    height: 100%;
    left: -10px; 
    top: 0;
}

.fun-facts::before {
    height: 50px; /* line height */
    left: -15px; 
    top: 50%;
    transform: translateY(-50%);
}

.fun-facts::after {
    height: 50px; /*line height */
    right: -15px; 
    top: 50%;
    transform: translateY(-50%);
}

.counter-box::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: #00a651; 
    right: -10px; 
    top: 0;
}


@media (max-width: 768px) {
    .counter-box::before {
        left: -5px; 
    }

    .counter-box::after {
        right: -5px;
    }

    .fun-facts::before {
        left: -10px; 
        height: 40px; 
    }

    .fun-facts::after {
        right: -10px; 
        height: 40px;
    }
}




.why-choose-section {
    position: relative;
    padding: 80px 0;
    background-position: center;
    background-size: cover;
    color: white;
}

.auto-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.blocks-column {
    width: 65%;
}

.feature-block {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-left: 40px; 
    position: relative;
}

.feature-block .inner-box {
    display: flex;
    align-items: center;
    width: 100%;
}

.icon-outer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: 20px; 
    min-width: 80px; 
}

.icon-box {
    width: 60px;
    height: 60px;
    background: #2e3192;
    color: #ffffff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.block-number {
    font-size: 40px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 75px;
    left: 15px; 
}

.content {
    flex: 1;
    text-align: left;
}

.content h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #ffffff;
}

.content p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.8;
}

/* Right Side: Contact Box */
.content-column {
    width: 35%;
    display: flex;
    justify-content: flex-end;
}

.content-column .inner-column {
    width: 100%;
    max-width: 380px;
    background: #ffffff;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.content-column .inner-column:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
}

/* Contact Box Title */
.content-column .title {
    color: #ffcc00;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Main Heading */
.content-column h2 {
    font-size: 22px;
    font-weight: 700;
    color: #1e1e1e;
    margin-top: 10px;
}

/* Description Text */
.content-column .text {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact Information */
.contact-info {
    text-align: left;
    font-size: 15px;
    color: #333;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.contact-info i {
    font-size: 18px;
    color: #2e3192;
    margin-right: 10px;
}

/* Call to Action Button */
.contact-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    background: #00a651;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 15px;
}

.contact-btn:hover {
    background: #ffcc00;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .row {
        flex-direction: column;
        align-items: center;
    }
    .blocks-column, .content-column {
        width: 100%;
        text-align: center;
    }
    .content-column {
        justify-content: center;
        margin-top: 20px;
    }
    .content-column .inner-column {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .feature-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }

    .icon-outer {
        margin-bottom: 15px;
        margin-right: 0;
        min-width: auto;
    }

    .block-number {
        position: static;
        font-size: 35px;
        margin-bottom: 5px;
    }

    .icon-box {
        width: 70px;
        height: 70px;
        font-size: 30px;
    }

    .content h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .content p {
        font-size: 14px;
        line-height: 1.6;
    }
}


/* Swipe Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 50px !important;  
    height: 50px !important;
    background: #28a745 !important; 
    color: #ffffff !important;
    border-radius: 50% !important; 
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    font-size: 18px !important; 
    transition: all 0.3s ease-in-out !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important; 
    padding: 0 !important;
    line-height: normal !important;
    z-index: 9999 !important;
    position: absolute !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.swiper-button-prev {
    left: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.swiper-button-next {
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #ffcc00 !important;
    transform: translateY(-50%) scale(1.1) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
    .swiper-button-prev {
        left: 10px !important;
    }
    .swiper-button-next {
        right: 10px !important;
    }
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px !important;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}



/*** Footer ***/
.footer {
    background-color: #114f04 !important;
    padding: 60px 0;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo Styling */
.footer-logo {
    width: 150px;
    display: block;
}

.footer .row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

/* Description Text */
.footer p {
    font-size: 16px;
    color: #FFFFFF;
    margin: 5px 0;
}

.footer h5 {
    font-size: 22px;
    font-weight: bold;
    color: #ffcf00 !important;
    margin-bottom: 20px;
}

/* Social Icons */
.footer .d-flex {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.footer .btn-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    border: 1px solid #FFFFFF;
    transition: 0.3s;
}

.footer .btn-social:hover {
    background-color: #ffcf00 !important;
    color: #114f04 !important;
}

/* Footer Links */
.footer .btn-link {
    display: block;
    color: #FFFFFF !important;
    text-align: left;
    padding: 5px 0;
    font-size: 16px;
    transition: 0.3s;
}

.footer .btn-link:hover {
    color: #ffcf00 !important;
    letter-spacing: 1px;
}

/* Newsletter Section */
.footer .position-relative {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    border: 2px solid #fff;
    border-radius: 5px;
    overflow: hidden;
}

/* Input Field */
.footer .form-control {
    height: 50px;
    font-size: 16px;
    padding: 10px 15px;
    border-radius: 5px 0 0 5px;
    flex: 1;
    border: none;
    outline: none;
}

/* Sign Up Button */
.footer .btn.btn-primary {
    height: 50px;
    background-color: #114f04 !important;
    color: #FFFFFF !important;
    border-radius: 0 5px 5px 0;
    border: none;
    padding: 10px 20px;
    transition: 0.3s;
}

.footer .btn.btn-primary:hover {
    background-color: #ffcf00 !important;
    color: #114f04 !important;
}

/* Copyright Section */
.footer .copyright {
    padding: 20px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .footer .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer .position-relative {
        flex-direction: column;
        align-items: center;
    }

    .footer .btn.btn-primary {
        width: 100%;
        margin-top: 10px;
    }

    .footer .btn-social {
        margin: 5px auto;
    }
}


.footer .btn-link i {
    color: #ffcf00; 
    transition: transform 0.3s ease-in-out;
}

.footer .btn-link:hover i {
    transform: translateX(5px); 
    color: #ffcf00;
}

.footer-upper-box {
    background: url('assets/images/footer-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 10px 0 20px 0; 
}

.footer-feature {
    text-align: center;
    transition: transform 0.3s ease-in-out;
    margin-top: -20px; 
}

.footer-feature a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; 
}

.footer-feature img {
    width: 60px; 
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
    filter: drop-shadow(2px 2px 5px rgba(255, 255, 255, 0.2));
    margin-top: -15px; 
}



.footer-feature h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
}

/* Hover Effects */
.footer-feature:hover {
    transform: translateY(-5px);
}

.footer-feature img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}


@media (max-width: 768px) {
    .footer-upper-box .row {
        flex-direction: column; 
    }

    .footer-feature {
        width: 100%; 
        margin-top: 0px; 
    }

    .footer-feature img {
        width: 55px; 
        height: 55px;
        margin-top: 0; 
    }
}
@media (min-width: 992px) { 
    .footer-feature img {
        width: 70px; 
        height: 100px;
    }
}

@media (max-width: 768px) {
  .footer-logo {
    margin: 0 auto;
  }

  .footer .btn-link {
    display: inline-block; /* so links center in text-align: center */
  }

  .footer .footer-links {
    text-align: center;
  }
}




