/********** Template CSS **********/
:root {
  --primary: #2878eb;
  --secondary: #f14d5d;
  --light: #ecf4ff;
  --dark: #120f2d;
}
/* Prevent horizontal scrolling */
html, body {
    overflow-x: hidden; /* Disable horizontal scrolling */
    margin: 0; /* Remove default browser margin */
    padding: 0; /* Remove default browser padding */
    color: #212529;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
  font-size: inherit;
  margin-left: 0;
}
/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* removes unwanted spacing */
}
.dropdown-menu{
  padding:5px;
  background-color: white;
  border-radius: 12px;
  z-index: 1000;
}
@media (min-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: block;
    }
}



h1,
h2,
.font-weight-bold {
  font-weight: 700 !important;
}

h3,
h4,
.font-weight-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.font-weight-medium {
  font-weight: 500 !important;
}

.btn {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

 .btn-primary, .btn-secondary {
    /* ❌ REPLACE YOUR CURRENT LIGHT COLOR HERE ❌ */
    background-color: #0077B6; /* Example: Dark blue that passes 4.5:1 with white */
    border-color: #0077B6;
    color: #FFFFFF; /* Ensure text remains white */
}
.btn-primary:hover,
.btn-secondary:hover {
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}
.text-muted {
    /* Current text-muted color (Failing): Could be #6c757d */
    color: #495057; /* New: A darker gray that passes 4.5:1 with your background */
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Jost", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-light .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

/* .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 15, 45, 0.5);
  z-index: 1;
} */

.carousel-item img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15%;
  z-index: 1;
  padding: 0;
}

.caption-content {
  background-color: rgba(0, 0, 0, 0.7);
  max-width: 90%;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.carousel-caption h2 {
  font-size: 2rem;
  line-height: 1.2;
}

.carousel-caption h5 {
  font-size: 0.95rem;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.button-group .btn {
  padding: 0.6rem 1.25rem;
  font-weight: 500;
}

/* Responsive styles */
@media (max-width: 992px) {
  .carousel-caption h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 350px;
  }
  
  .carousel-caption {
    bottom: 10%;
  }
  
  .caption-content {
    padding: 1.25rem;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .carousel-caption h5 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }

  .carousel-caption p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 576px) {
  .carousel-item img {
    height: 300px;
  }
  
  .caption-content {
    max-width: 95%;
    padding: 1rem;
  }

  .carousel-caption h2 {
    font-size: 1.25rem;
  }

  .button-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .button-group .btn {
    width: 100%;
  }
}
/* @media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
} */
/* 
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

.carousel-indicators {
  align-items: flex-end;
}

.carousel-indicators [data-bs-target] {
  width: 5px;
  height: 25px;
}

.carousel-indicators .active {
  height: 45px;
} */

.hero-header {
  background: linear-gradient(rgba(18, 15, 45, 0.5), rgba(18, 15, 45, 0.5)),
    url(../images/background-3.jpg) top right no-repeat;
  background-size: cover;
}

.service-item div {
  z-index: 1;
}

.service-item div::after {
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 2px 2px 0 0;
  transition: 0.5s;
  z-index: -1;
}

.service-item div:hover::after {
  width: 100%;
  background: var(--primary);
}

.service-item * {
  transition: 0.5s;
}

.service-item:hover * {
  color: var(--light) !important;
}

.bg-offer {
  background: linear-gradient(rgba(18, 15, 45, 0.5), rgba(18, 15, 45, 0.5)),
    url(../images/background-4.webp) top right no-repeat;
  background-size: cover;
}

.testimonial-carousel .owl-dots {
  height: 45px;
  margin-top: 5px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 5px;
  height: 25px;
  background: #dddddd;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  height: 45px;
  background: var(--primary);
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item .testimonial-text * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
  background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
  color: #ffffff !important;
}

.blog-date {
  position: absolute;
  width: 90px;
  height: 65px;
  top: 75px;
  left: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--secondary);
}

.blog-date::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -25px;
  left: 0;
  border: 13px solid;
  border-color: transparent #d34351 #d34351 transparent;
  z-index: -1;
}
.questions {
  background-color: #ffffff;
  color:black;
  width: 100%;
  padding: 20px;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.accordion-header button {
  background-color: #000000;
  color: white;
  font-size: 14px;
  border:none;
}
.accordion-body {
  color: white;
  background-color: #012354;
}
/* servicing */

.wrapper {
  display: table;
  height: 100%;
  width: 100%;
}

.container-fostrap {
  display: table-cell;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
}
.fostrap-logo {
  width: 100px;
  margin-bottom: 15px;
}
h1.heading {
  color: #fff;
  font-size: 1.15em;
  font-weight: 900;
  margin: 0 0 0.5em;
  color: #505050;
}
@media (min-width: 450px) {
  h1.heading {
    font-size: 3.55em;
  }
}
@media (min-width: 760px) {
  h1.heading {
    font-size: 3.05em;
  }
}
@media (min-width: 900px) {
  h1.heading {
    font-size: 3.25em;
    margin: 0 0 0.3em;
  }
}
.card {
  display: block;
  margin-bottom: 20px;
  line-height: 1.42857143;
  background-color: #fff;
  border-radius: 2px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.img-card {
  width: 100%;
  height: 200px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  display: block;
  overflow: hidden;
}
.img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: all 0.25s ease;
}
.card-content {
  padding: 15px;
  text-align: left;
}
.card-title {
  margin-top: 0px;
  font-weight: 700;
  font-size: 1.65em;
}
.card-title a {
  color: #000;
  text-decoration: none !important;
}
.card-read-more {
  border-top: 1px solid #d4d4d4;
}
.card-read-more a {
  text-decoration: none !important;
  padding: 10px;
  font-weight: 600;
  text-transform: uppercase;
}
/* end servicing */
.navwrapper {
  /* d-width: 14rem; */
  position: fixed;
  right: 0;
  z-index: 9999;
  top: 30%;
}
.nav {
  width: min-content;
  display: flex;
  flex-direction: column;
  background: #1f1f4c;
  border-radius: 1rem;
  padding: 0.5rem;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
}
.navbutton {
  position: relative;
  display: flex;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  isolation: isolate;
  transition: width 300ms;
}
.nav:has(.navbutton:hover) > .navbutton,
.nav.demoanim > .navbutton {
  width: 14rem;
}
.navbutton:after {
  position: absolute;
  content: "";
  inset: 1rem;
  background: #292960;
  border-radius: 0.5rem;
  z-index: -2;
  opacity: 0;
  transition: inset 300ms, opacity 300ms;
}
.navbutton:hover:after,
.nav.demoanim .navbutton.demoanimhover:after {
  inset: 0;
  opacity: 1;
}
.navicon {
  flex-shrink: 0;
  position: relative;
  width: 3.5rem;
  display: grid;
  place-content: center;
  padding-bottom: 0.125rem;
  font-size: 1.375rem;
  --ionicon-stroke-width: 40px;
  color: #c9c9ff;
}
.navicon:after {
  position: absolute;
  content: "";
  inset: 1rem;
  background: #323276;
  border-radius: 0.5rem 0 0 0.5rem;
  z-index: -1;
  opacity: 0;
  transition: inset 300ms, opacity 300ms, border-radius 300ms ease;
}

.nav:not(:has(.navbutton:hover), .demoanim)
  .navbutton.selected
  > .navicon:after {
  inset: 0;
  opacity: 1;
  border-radius: 0.5rem;
}
.navbutton:hover > .navicon:after,
.nav.demoanim .navbutton.demoanimhover > .navicon:after {
  inset: 0;
  opacity: 1;
}
.navlabel {
  flex-shrink: 0;
  display: grid;
  place-content: center;
  padding-bottom: 0.125rem;
  padding-left: 0.5rem;
  font-size: 1.125rem;
  color: #c9c9ff;
}
.img-thumbnail {
  height: 400px;
  width: 350px;
}
 


.pulsating-circle {
    position: relative;
    width: 12px;
    height: 12px;
    background-color: #00ff4c !important ;
    border-radius: 50%;
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

.pulsating-circle:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #00ff4c !important ;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

.status-text {
    font-size: 16px;
    color: rgb(0, 69, 166) ;
    font-weight: bold !important;
}

/* Keyframes for the pulsating effect */
@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* contact in index  */
 
/* Container Styling */
.container-contact {
    padding: 50px 0;
    background-color: #95c0e2; /* Sky-blue background */
}

/* Center the card horizontally */
.row.justify-content-center {
    display: flex;
    justify-content: center;
}

/* Contact Card Styling */
.contact-card {
    background-color: #ffffff; /* White background for the card */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: center; /* Center-align the heading */
}

/* Heading */
.contact-card h2 {
    font-size: 1.75rem;
    color: #801a25; /* Dark red heading */
    margin-bottom: 20px;
}

/* Form Fields */
.contact-form .form-control {
    background-color: transparent; /* Transparent background */
    border: none; /* Remove border */
    border-bottom: 1px solid #ccc; /* Add bottom border */
    border-radius: 0; /* No rounded corners */
    padding: 10px 0; /* Vertical padding */
    font-size: 1rem; /* Font size */
    color: #61000a; /* Text color */
    transition: border-color 0.3s ease; /* Smooth transition */
    text-align: center;
}

.contact-form .form-control:focus {
    border-bottom-color: #034aad; /* Focus border color */
    box-shadow: none; /* Remove shadow */
}

/* Placeholder Styling */
.contact-form .form-control::placeholder {
    color: #2878EB; /* Placeholder text color */
    opacity: 0.5; /* Ensure full visibility */
    text-align: center;
}

/* Labels */
.contact-form .form-label {
    font-weight: bold; /* Bold labels */
    color: #001560; /* Label text color */
     
}

/* Textarea */
.contact-form textarea.form-control {
    resize: none; /* Disable resizing */
    text-align: center;
}

/* Submit Button */
.contact-form .btn-primary {
    background-color: #2878EB; /* Button background color */
    border: 2px solid #2878EB; /* Button border color */
    border-radius: 5px; /* Rounded corners */
    font-size: 1rem; /* Font size */
    padding: 10px; /* Padding */
    color: white; /* Text color */
    transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
}

.contact-form .btn-primary:hover {
    background-color: transparent; /* Transparent background on hover */
    border-color: #2878EB; /* Keep border color */
    color: #2878EB; /* Text color on hover */
}


/* family section  */

/* Section Styling */
.two_images_one_wysiwyg {
    padding: 3rem 0;
    background: #348FFF; /* Blue background */
    border-radius: 2rem;
}

/* Row Layout */
.two_images_one_wysiwyg_row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem; /* Space between columns */
}

/* Content Styling */
.two_images_one_wysiwyg_content p {
    color: #fff; /* White text */
}

.two_images_one_wysiwyg h1,
.two_images_one_wysiwyg h2,
.two_images_one_wysiwyg h3,
.two_images_one_wysiwyg h4,
.two_images_one_wysiwyg h5,
.two_images_one_wysiwyg h6 {
    margin: 0;
    font-size: 4rem;
    color: #000B1C; /* Dark blue heading */
    font-weight: 700;
    text-align: center;
}

.two_images_one_wysiwyg p {
    font-size: 1rem;
    margin: 0;
    padding: 1rem 0;
    text-align: center;
}

/* Column Width */
.two_images_one_wysiwyg_one_third {
    width: 33%; /* Each column takes up one-third of the row */
}

/* Image Styling */
.two_images_one_wysiwyg_one_third img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Ensure images maintain aspect ratio */
}

/* Advantages Pill Styling */
.advantages_pill {
    background: #000B1C; /* Dark blue background */
    border-radius: 10rem; /* Rounded pill shape */
    color: #fff; /* White text */
    display: flex;
    align-items: center;
    gap: 1rem; /* Space between icon and text */
    padding: 1rem;
    margin-top: -3rem; /* Overlap with image */
    position: relative;
    line-height: 1;
}

.advantages_pill strong {
    font-size: 18px;
}

.advantages_pill p {
    margin: 0;
    padding: 0;
}

/* Responsive Design */
@media (orientation: portrait) {
    .two_images_one_wysiwyg_row {
        flex-direction: column-reverse; /* Stack columns vertically */
    }

    .two_images_one_wysiwyg_one_third {
        width: unset; /* Full width for stacked layout */
    }

    .two_images_one_wysiwyg_half_img {
        width: unset;
        overflow: hidden;
        max-height: 50vh; /* Limit image height */
    }

    .two_images_one_wysiwyg img {
        width: 100%;
        object-fit: cover;
        min-height: unset;
        max-height: unset;
    }

    .two_images_one_wysiwyg p {
        width: 100%;
    }
}


/* quality section  */
/* Section Styling */
.repeater_zigzag {
    padding: 3rem 0;
    background-color: #e3f2fd; /* Light blue background */
}

.repeater_zigzag_container {
    max-width: 1200px;
    margin: 0 auto;
}

.d-flex_newcss {
    display: flex;
    align-items: center;
    gap: 3rem; /* Space between columns */
}

.fd-column-r_mb {
    flex-direction: column-reverse; /* Reverse order on mobile */
}

.vthz-center {
    justify-content: center;
}

.gap_3 {
    gap: 3rem;
}

.order-left {
    flex-direction: row; /* Default horizontal layout */
}

.flex-1 {
    flex: 1; /* Equal width for both columns */
}

/* Content Styling */
.front-zig h2 {
    font-size: 2rem;
    color: #007bff; /* Main color */
    margin-bottom: 1rem;
}

.front-zig p {
    font-size: 1rem;
    color: #333;
    padding: 1rem 0;
    margin: 0;
}

.front-zig strong {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(#007bff, #0056b3);
     
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.cta_button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta_button_terciary {
    background-color: #fff;
    color: #007bff;
    border: 2px solid #007bff;
}

.cta_button_terciary:hover {
    background-color: #007bff;
    color: #fff;
}

.cta_button_secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.cta_button_secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* Image Styling */
.img_wrapper_repeater_zigzag {
    overflow: hidden;
    max-height: 40rem;
    border-radius: 2rem;
}

.img_wrapper_repeater_zigzag_imgtag {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .img_wrapper_repeater_zigzag {
        height: 20rem;
        flex: unset;
    }

    .d-flex_newcss {
        flex-direction: column;
    }

    .order-left {
        flex-direction: column-reverse;
    }
}

/* Section Styling */
.grid_images {
    padding: 2rem 0;
    background-color: #f9f9f9; /* Light background */
}

.grid_images .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.grid_images h2 {
    font-size: 2.5rem;
    color: #3967fd; /* Blue heading */
    text-align: center;
    margin-bottom: 1rem;
}

.grid_images p {
    font-size: 1.2rem;
    color: #333;
    text-align: center;
    margin-bottom: 2rem;
}

/* Grid Layout */
.grid_images .grid_square_images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 1rem;
}

.grid_images .front-images-3 {
    flex: 1 1 calc(33.33% - 2rem); /* Three items per row */
    min-width: 250px; /* Minimum width for smaller screens */
    box-sizing: border-box;
}

/* Image Styling */
.grid_images .front-grid-img-wrap {
    position: relative;
    overflow: hidden;
    height: 25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.grid_images .front-grid-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Gradient Overlay */
.gradient-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(41, 166, 221, 0.1) 39%, rgba(41, 166, 221, 0.1) 75%, rgba(41, 166, 221, 0.7) 100%);
    pointer-events: none;
}

/* Text Styling */
.grid_images .text_grid {
    padding: 1rem 0;
    text-align: center;
}

.grid_images .text_grid h3 {
    font-size: 1.5rem;
    color: #000B1C; /* Dark blue text */
    font-weight: 800;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .grid_images .front-images-3 {
        flex: 1 1 calc(50% - 1rem); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .grid_images .front-images-3 {
        flex: 1 1 100%; /* One item per row */
    }

    .grid_images .front-grid-img-wrap {
        height: auto;
        aspect-ratio: 1 / 1; /* Maintain square aspect ratio */
    }
}

/* Section Styling */
.special_offers {
    padding: 2rem 0;
    background-color: #f9f9f9; /* Light background */
}

/* Title Styling */
.special_offers_title {
    color: #3946fd; /* Blue heading */
    text-align: center;
    padding: 1rem 0 3rem 0;
    font-size: 60px;
    font-weight: bold;
    margin: 0;
}

/* Grid Layout */
.special_offers_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four items per row */
    gap: 1rem;
}

/* Image Wrapper */
.special_offers_img-wrap {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
}

.special_offers_img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Content Overlay */
.special_offers_content_fit {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;
    line-height: 1;
    text-align: center;
}

.special_offers_content_fit p {
    font-size: 34px;
    color: #07397A; /* Dark blue text */
    font-weight: 700;
    margin: 0;
}

/* Padding Adjustments */
.special_offer_padding_left {
    padding-left: 9rem;
    padding-right: 1rem;
    text-align: left;
}

.special_offer_padding_right {
    padding-right: 4rem;
    padding-left: 1rem;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 992px) {
    .special_offers_grid {
        grid-template-columns: repeat(2, 1fr); /* Two items per row */
    }
}

@media (max-width: 768px) {
    .special_offers_grid {
        grid-template-columns: 1fr; /* One item per row */
    }

    .special_offers_img-wrap {
        height: auto;
        aspect-ratio: 2 / 1; /* Maintain aspect ratio */
    }

    .special_offers_title {
        font-size: 40px; /* Reduce font size for smaller screens */
    }

    .special_offers_content_fit p {
        font-size: 24px; /* Reduce font size for smaller screens */
    }
}

@media (orientation: portrait) {
    .special_offers {
        display: none; /* Hide section on portrait orientation */
    }
}


/* Section 1: Stylized Zigzag */
.stylized_zigzag {
    padding: 3rem 0;
    background-color: #f9f9f9; /* Light background */
}

.flex_stylized_zigzag {
    display: flex;
    align-items: center;
    gap: 3rem; /* Space between columns */
}

.stylized_zigzag_content {
    flex: 1;
    padding: 0 10rem;
}

.stylized_zigzag_content h2 {
    font-size: 4rem;
    color: #3679ff; /* Blue heading */
    font-weight: 700;
    margin-bottom: 1rem;
}

.stylized_zigzag p {
    font-size: 1rem;
    margin: 0;
    padding: 1rem 0;
    color: #333;
}

.stylized_zigzag ul {
    list-style-type: disc;
    padding-left: 20px;
}

.stylized_zigzag_img_div {
    flex: 1;
    display: flex;
}

.stylized_zigzag_img {
    max-height: 70vh;
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

/* Responsive Design for Section 1 */
@media (max-width: 1100px) {
    .flex_stylized_zigzag {
        flex-direction: column;
        gap: 0;
    }

    .stylized_zigzag_content {
        padding: 1rem 25px;
    }

    .stylized_zigzag_content h2 {
        font-size: 2rem;
    }
}

/* Section 2: Text-Centered Block */
.text_centered {
    padding: 3rem 0;
    background-color: #fff; /* White background */
}

.front-card_no-padding {
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    background-color: #f9f9f9;
}

.text_centered h2 {
    font-size: 3rem;
    color: #395dfd; /* Blue heading */
    text-align: center;
    margin-bottom: 2rem;
}

.text_centered h3 {
    font-size: 1.5rem;
    color: #000B1C; /* Dark blue subheading */
    margin-top: 1.5rem;
}

.text_centered p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.text_centered ul {
    list-style-type: disc;
    padding-left: 20px;
}

.blocknote {
    border-left: 4px solid #D42127; /* Red border */
    margin: 10px 0 25px 35px;
    padding: 15px 0 15px 20px;
    color: #333;
}

/* Responsive Design for Section 2 */
@media (max-width: 768px) {
    .text_centered h2 {
        font-size: 2rem;
    }

    .text_centered h3 {
        font-size: 1.2rem;
    }

    .blocknote {
        margin: 10px 0 15px 15px;
        padding: 10px 0 10px 10px;
    }
}


 .grid_images{
        padding: 2rem 0;
    }
    .grid_images .front-grid-img-wrap{
        position: relative;
        overflow: hidden;
        height: 25rem;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 1rem;
    }
    .gradient-overlay {
        position: relative;
        display: inline-block;
    }
    .gradient-overlay::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(41, 166, 221, 0.1) 39%, rgba(41, 166, 221, 0.1) 75%, rgba(41, 166, 221, 0.7) 100%);
        pointer-events: none;
    }
    .grid_images .grid_square_images {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: stretch;
        align-content: flex-start;
        gap: 1rem;
    }
    .grid_images .text_grid{
        padding: 1rem 0;
    }
    .grid_images .text_grid h1,
    .grid_images .text_grid h1 ~ h6{
        color: #000B1C;
        font-weight: 800;
        font-size: 2rem;
        text-align:center;
    }
    .grid_images .text_grid p{
        font-size: 1.2rem;
        padding: 0;
        margin:0;
    }
    @media(orientation: portrait){
        .grid_images .front-grid-img-wrap{
            position: relative;
            overflow: hidden;
            height: auto;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
    }


 #search-section-page {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
        box-sizing: border-box;
    }
    .grid_footer1 .widget-title-1{
        border:none;
    }
    .follow-us-outerblock{
       display: block !important; 
    }
	.hidden {
		display: none;
	}
    #search-section-page h2 {
        font-size: 26px;
        text-align: center;
        font-weight: 500;
        margin-bottom: 20px;
        color: #333;
        width: 100%;
    }

    #search-section-page .search-filter {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 20px;
    }

    #search-section-page .form-container {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .contact-form-line- {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    #search-section-page .contact-form-label {
        font-size: 16px;
        color: #666;
        font-weight: 600;
        border-bottom: 2px solid #f1592a;
        padding-bottom: 8px;
        margin-bottom: 10px;
        align-self: flex-start;
    }

    #search-section-page .contact-form-control {
        margin-top: 10px;
        max-width: 100%; /* Ensures it stays within parent container */
        width: 400px;
        border-radius: 30px;
        font-weight: 500;
        padding: 12px 30px; /* Slightly increased padding for comfort */
        font-size: 18px;
        border: 2px solid rgba(41, 35, 42, 0.20);
        outline: none;
        color: #666;
        box-sizing: border-box;
        transition: border 0.3s ease; /* Enhanced transition effect */
        margin-left: auto;
        margin-right: auto;
        background-repeat: no-repeat;
        background-position: center right 18px;
        background-image: url("https://5jx.6cf.myftpupload.com/wp-content/uploads/2025/01/search-icon.png");
    }

    #search-section-page .contact-form-control:focus {
        border: 2px solid #aaa; /* Unified border effect */
    }

    #search-section-page .contact-form-control::placeholder {
        color: #aaa;
    }

    /* Large screens (desktops) */
    @media (min-width: 992px) {
        #search-section-page {
            padding: 80px 20px; /* Added horizontal padding for better spacing */
        }

        #search-section-page h2 {
            color: #348fff;
            text-align: center;
            margin: 0 auto;
            font-size: 3rem;
            font-weight: 800;
            max-width: 80%; /* Prevents text overflow */
            padding: 0 40px; /* Reduced padding for better readability */
            box-sizing: border-box;
        }

        #search-section-page .contact-form-label {
            padding-bottom: 10px;
        }

        #search-section-page .contact-form-control {
            font-size: 20px;
            width: 60%; /* More adaptive width for larger screens */
        }
    }

    /* Tablets and medium-sized screens */
    @media (max-width: 991px) {
        #search-section-page h2 {
            font-size: 40px; /* Scales down header */
            padding: 0 20px;
        }

        #search-section-page .contact-form-control {
            width: 80%; /* Ensures form control stays centered */
        }
    }

    /* Small screens (phones) */
    @media (max-width: 768px) {
        #search-section-page h2 {
            font-size: 28px;
            padding: 0;
        }

        #search-section-page .contact-form-label {
            font-size: 14px;
        }

        #search-section-page .contact-form-control {
            font-size: 16px;
            width: 90%; /* Adapts to small screen widths */
            padding: 10px 20px; /* Reduces padding for smaller screens */
        }
    }

    /* Extra-small screens (very narrow phones) */
    @media (max-width: 576px) {
        #search-section-page h2 {
            font-size: 22px; /* Slight adjustment for readability */
        }

        #search-section-page .contact-form-control {
            font-size: 14px;
            width: 95%; /* Utilizes most screen space */
            padding: 8px 15px;
        }
    }


    #alphabetical-order {
        padding: 80px 0;
        background-color: #f4f0ee;
    }

    #alphabetical-order .container {
        display: flex;
        flex-direction: column;
    }

    #alphabetical-order .filter-title {
        font-size: 18px;
        color: #7b7777;
        font-weight: 500;
        margin-bottom: 30px;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    #alphabetical-order .filter-title svg {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    #alphabetical-order .filter-title:hover svg {
        transform: translateX(5px);
    }

    #alphabetical-order .all_suburb {
        display: flex;
        flex-wrap: wrap;
        justify-content: left;
        margin-top: 20px;
    }

    #alphabetical-order .all_suburb {
        display: flex;
        flex-wrap: wrap;
       
        gap: 20px;
    }

    #alphabetical-order .suburbs {
        flex: 1 1 calc(25% - 20px);
        max-width: calc(25% - 20px);
        margin: 0;
    }

    @media (max-width: 1200px) {
        #alphabetical-order .suburbs {
            flex: 1 1 30%;
            max-width: 30%;
        }
    }

    @media (max-width: 992px) {
        #alphabetical-order .suburbs {
            flex: 1 1 45%;
            max-width: 45%;
        }
    }

    @media (max-width: 768px) {
        #alphabetical-order{
            padding: 30px 0;
        }
        #alphabetical-order .suburbs {
            flex: 1 1 47%;
        }
    }

    #alphabetical-order .order-box {
        display: block;
        background: #348fff26;
        padding: 20px 20px 20px 20px;
        position: relative;
        border-radius: 20px;
        transition: background-color 0.3s ease, color 0.3s ease;
        overflow: hidden;
        cursor: pointer;
        text-decoration: none;
        color: #348fff;
        font-weight: 600;
        font-size: 20px;
        text-align: center;
        box-sizing: border-box;
    }

    #alphabetical-order .order-box:hover,
    #alphabetical-order .order-box.active {
        background-color: #348fff;
        color: #fff;
    }

   

    #alphabetical-order .order-box::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 0;
        border-right: 35px solid transparent;
        z-index: 1;
    }

    .alphabet-buttons {
        display: flex;
        justify-content: space-between;
        gap: 0;
        flex-wrap: wrap;
    }

    .alphabet-filter {
        background-color: #fff;
        border: none;
        padding: 10px 15px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        min-width: 40px;
        text-align: center;
        transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .alphabet-filter:hover {
        background-color: #f4f0ee;
        color: #1C1918;
        border-color: #f4f0ee;
    }

    .alphabet-filter.active {
        background-color: #f4f0ee;
        color: #1C1918;
        font-weight: 600;
        border-color: #f4f0ee;
    }

    @media (max-width: 768px) {
        .alphabet-buttons {
            gap: 8px;
        }
    }

    @media (min-width: 992px) {
        #alphabet-buttons-section {
            display: block;
        }

        .alphabet-select {
            display: none;
        }
    }

    @media (max-width: 991px) {
        #alphabet-buttons-section {
            display: none;
        }

        .alphabet-select {
            display: block;
        }
    }

    .alphabet-select {
        width: 100%;
        max-width: 400px;
        margin: 20px auto;
        position: relative;
        font-family: 'Arial', sans-serif;
    }

    #alphabet-select {
        width: 100%;
        padding: 12px 20px;
        border-radius: 5px;
        border: 2px solid #ccc;
        background-color: #f9f9f9;
        font-size: 18px;
        font-weight: 500;
        color: #333;
        appearance: none; 
        -webkit-appearance: none;
        -moz-appearance: none;
        outline: none;
        transition: border-color 0.3s ease;
        cursor: pointer;
        box-sizing: border-box;
        padding-right: 50px;
    }

    .alphabet-select::after {
        content: "▼";
        font-size: 18px;
        color: #666;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        pointer-events: none;
    }

    #alphabet-select:focus {
        border-color: #2a31f1;
    }


    
/* Section Styling */
.faq-section {
    background-color: #f9f9f9; /* Light background */
    padding: 3rem 0;
}

.faq-section h2 {
    font-size: 2.5rem;
    color: #0300a4; /* Blue heading */
    margin-bottom: 5px;
}

/* Accordion Styling */
.accordion-item {
    border: none;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-5px); /* Slight hover effect */
}

.accordion-button {
    font-size: 1.2rem;
    font-weight: bold;
    color: #000B1C; /* Dark blue text */
    background-color: #fff; /* White background */
    border: none;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
}

.accordion-button:not(.collapsed) {
    background-color: #e3f2fd; /* Light blue when active */
    color: #0300a4; /* Highlighted text */
}

.accordion-button:focus {
    box-shadow: none; /* Remove default focus outline */
}

.accordion-body {
    font-size: 1rem;
    color: #333;
    padding: 1rem 1.5rem;
    background-color: #f9f9f9; /* Light background for content */
    border-top: 1px solid #ddd; /* Separator line */
}
 




.why_choose_us {
  background-color: #000;
  padding: 4rem 1rem;
  color: #fff;
}

.why_choose_us h2 {
  color: #ffffff;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.why_choose_us .why_choose_card {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 10px;
}

.why_choose_us .why_choose_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-overlay {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  width: 90%;
  max-width: 280px;
}

.card-overlay h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.4;
  color:white;
}

@media (max-width: 768px) {
  .why_choose_us .why_choose_card {
    height: 250px;
  }

  .card-overlay h3 {
    font-size: 1.1rem;
  }
}

.repeater_zigzag {
  padding: 3rem 1rem;
}

.zig_content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.zig_content ul {
  padding-left: 1.2rem;
}

.zig_content li {
  margin-bottom: 0.75rem;
}

.cta_button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta_button_primary {
  background-color: #29a6dd;
  color: white;
}

.cta_button_primary:hover {
  background-color: #1f8fc7;
}

.cta_button_secondary {
  background-color: #6c757d;
  color: white;
}

.cta_button_secondary:hover {
  background-color: #5a6268;
}

blocknote{
        border-color: #D42127;
        margin: 10px 0px 25px 35px;
        padding: 15px 0 15px 20px;
    }
    .flex_stylized_zigzag{
        gap: 3rem;
    }
    .stylized_zigzag p {
        font-size: 1rem;
        margin: 0;
        padding: 1rem 0;
    }
    .stylized_zigzag_img{
        max-height: 70vh;
        object-fit: cover;
    }
    .stylized_zigzag_img_div{
        flex:1;
        display: flex;
    }
    .stylized_zigzag_video_div{
        flex: unset;
    }
    .stylized_zigzag_video_div video{
        flex: unset;
        max-height: 60vh;
    }
    .stylized_zigzag_content{
        flex: 1;
        padding: 0 10rem;
    }
    .stylized_zigzag_content h1,.stylized_zigzag_content h2,.stylized_zigzag_content h3,.stylized_zigzag_content h4,.stylized_zigzag_content h5, .stylized_zigzag_content h6{
        margin: 0;
        font-size: 4rem;
        color: #3953fd;
        font-weight: 700;
    }
    @media(max-width:1100px){
		.stylized_zigzag_content h1,.stylized_zigzag_content h2,.stylized_zigzag_content h3,.stylized_zigzag_content h4,.stylized_zigzag_content h5, .stylized_zigzag_content h6{
			font-size: 2rem;
		}
        .flex_stylized_zigzag{
            gap: 0rem;
        }
        .stylized_zigzag_content{
			padding: 1rem 25px;
        }
    }