@charset "utf-8";
/* CSS Document */
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    color: #2E2E2E;
}


main {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
}
.dk-diagonal-bg {
    background-color: #2E2E2E;
    color: #fff;
    padding: 5rem 1rem;
    background-image: 
      url('https://dkialpha.com/alpha_img/bg/noise-texture-light.png'),
      repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.07) 0,
        rgba(255, 255, 255, 0.07) 2px,
        transparent 2px,
        transparent 6px
      );
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}

/* ---------------------------------------------------<Typography>--------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: #F7C026; /* Optional: bold yellow for headings */
  letter-spacing: 0.5px;
  text-transform: uppercase; /* optional for that industrial feel */
}
/* ---------------------------------------------------</Typography>--------------------------------------------------- */

/* ---------------------------------------------------<Nav Section>--------------------------------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.65);
  transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.navbar:hover {
  background-color: rgba(255, 255, 255, 0.95);
}

.navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.navbar .navbar-brand img {
  height: 100px;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled .navbar-brand img {
  height: 60px;
}

.navbar .nav-link {
  color: #2E2E2E !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled .nav-link {
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar .nav-link:hover,
.navbar .navbar-brand:hover {
  color: #F7C026 !important;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 5px;
  padding: 10px 20px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar .nav-link.active {
  color: #F7C026 !important;
  font-weight: 700;
  border-bottom: 2px solid #F7C026;
}

/* ---------------------------------------------------</Nav Section>--------------------------------------------------- */

/* ---------------------------------------------------<Navbar Button and Spacing Tweaks>--------------------------------------------------- */
.navbar .btn-phone {
  padding: 10px 20px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
  background-color: #F7C026;
  color: #2E2E2E;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

.navbar .btn-phone:hover {
  background-color: #d6a515;
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(247, 192, 38, 0.7);
}

.navbar .btn-phone:active {
  transform: scale(0.96);
  box-shadow: none;
}

/* ---------------------------------------------------</Navbar Button and Spacing Tweaks>--------------------------------------------------- */

/* ---------------------------------------------------<Dropdown Styling>--------------------------------------------------- */
.navbar .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  transform: translateY(10px);
  background-color: rgba(255, 255, 255, 0.95);
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0.5rem 0;
  position: absolute;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.navbar .dropdown-item {
  color: #2E2E2E;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background-color: rgba(0, 0, 0, 0.7);
  color: #F7C026;
  border-radius: 5px;
}

.navbar .nav-item.dropdown:hover > .nav-link {
  background-color: rgba(0, 0, 0, 0.7);
  color: #F7C026 !important;
  border-radius: 5px;
  padding: 10px 20px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Prevent layout shift between nav-link hover states */
.navbar .nav-link,
.navbar .nav-item.dropdown > .nav-link {
  padding: 10px 20px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
/* ---------------------------------------------------</Dropdown Styling>--------------------------------------------------- */



/* ---------------------------------------------------<Button Glow>--------------------------------------------------- */
.btn-glow {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 12px rgba(247, 192, 38, 0.5);
}

.btn-glow:active {
  transform: scale(0.96);
  box-shadow: none;
}

/* ---------------------------------------------------</Button Glow>--------------------------------------------------- */


/* ---------------------------------------------------<Hero Section>--------------------------------------------------- */

/* Hero Main Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* Slightly darker overlay for better contrast */
    z-index: 5;
    pointer-events: none;
}

/* Secondary Pages Hero */
.hero-section2 {
    position: relative;
    width: 100%;
    min-height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    text-align: left;
}
.hero-section2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 75vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 5;
    pointer-events: none;
}

/* Adjust for 125% scaling screens */
@media (min-width: 1536px) and (max-width: 1600px) and (min-resolution: 120dpi) {
    .hero-section2, .hero-section2::before {
        height: 100vh;
    }
}

/* Camera Slider Settings */
#camera_wrap_1 {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
}
.camera_wrap {
    position: relative;
    height: 100%;
}
.camera_wrap .camera_pag {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
}
.camera_wrap .camera_pag .camera_pag_ul li {
    background: #2E2E2E !important;
    border-radius: 0 !important;
    width: 20px;
    height: 20px;
}
.camera_wrap .camera_pag .camera_pag_ul li > span {
    border-radius: 0 !important;
}
.camera_wrap .camera_pag .camera_pag_ul li.cameracurrent > span {
    background: #F7C026 !important;
    transform: scale(1.2);
    transition: transform 0.3s ease;
}
.camera_overlayer {
    opacity: 0.6;
}
.camera_wrap .cameraSlide img {
    transform: scale(1);
    transition: none;
}
.camera_wrap .cameraSlide.cameracurrent img {
    animation: zoomIn 7s ease-in-out forwards;
}
@keyframes zoomIn {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
@media (max-width: 768px) {
    .camera_wrap .camera_pag .camera_pag_ul li {
        width: 15px;
        height: 15px;
    }
    .camera_wrap .camera_pag .camera_pag_ul li.cameracurrent > span {
        transform: scale(1.1);
    }
}

/* Hero Content Styling */
.hero-content {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 10;
    color: #fff;
    text-align: left;
    width: auto;
    max-width: 725px;
    padding: 0 1rem;
}


/* Text Fade and Slide Animation */
@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero-content .subheading {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.hero-content .hero-heading {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-content .hero-paragraph {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 1s;
}


/* CTA Buttons */
.cta-buttons .btn {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Primary CTA Button - Yellow */
.cta-buttons {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 0.8s ease-out forwards;
    animation-delay: 1.4s;
}

.cta-buttons .btn-primary {
    background-color: #F7C026;
    border: none;
    color: #2E2E2E;
}

/* Secondary CTA Button - Charcoal */
.cta-buttons .btn-secondary {
    background-color: #2E2E2E;
    border: none;
    color: #ffffff;
}

/* Hover Effects on Buttons */
.cta-buttons .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive Buttons on Mobile */
@media (max-width: 768px) {
    .hero-content .hero-heading {
        font-size: 2.5rem;
    }
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }
    .cta-buttons .btn {
        flex: 0 1 auto;
        padding: 0.5rem 1rem;
        font-size: 1.1rem;
        white-space: nowrap;
    }
    .hero-section2 {
        min-height: 80vh;
    }
    .hero-section2::before {
        min-height: 80vh;
    }
    .hero-content {
        max-width: 725px;
        padding: 130px 1rem 0!important;
    }
    
}

/* Hero Service Links */
.hero-service-links {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: auto;
    padding: 1rem 0;
    z-index: 11;
}

.hero-service-links ul {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-service-links ul li a {
    position: relative;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Service Link Border Reveal */
.hero-service-links ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 3px;
    background-color: #F7C026;
    transition: width 0.3s ease;
}

.hero-service-links ul li a:hover::after {
    width: 100%;
}

.hero-service-links ul li a:hover {
    background-color: transparent;
    color: #F7C026;
    transform: translateY(-2px);
}

/* Hide Service Links on Mobile */
@media (max-width: 768px) {
    .hero-service-links {
        display: none;
    }
}
/* ---------------------------------------------------</Hero Section>--------------------------------------------------- */



/* ---------------------------------------------------<Benefits Bar Section>--------------------------------------------------- */
.benefits-bar {
    background-color: #2E2E2E; /* Charcoal background (more industrial feel) */
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
    overflow: hidden;
}

.benefits-slider {
    display: flex;
    gap: 1rem;
    white-space: nowrap;
    justify-content: space-around;
    align-items: center;
}

.benefit-item {
    flex: 0 0 auto;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
    white-space: nowrap;
    animation: pulse 3s infinite;
    color: #ffffff;
}
.benefit-item:hover {
    box-shadow: 0 0 10px rgba(247, 192, 38, 0.7);
    background-color: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}


/* Pulse Animation Updated for Yellow Glow */
@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 5px rgba(247, 192, 38, 0.3);
    }
    50% {
        box-shadow: 0 0 15px rgba(247, 192, 38, 0.6);
    }
}

/* Slide Animation (Mobile Only) */
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .benefits-slider {
        justify-content: flex-start;
        animation: slide 10s linear infinite;
    }

    .benefit-item {
        animation: none;
    }
}
/* ---------------------------------------------------</Benefits Bar Section>--------------------------------------------------- */


/* ---------------------------------------------------<One-Liner Section>--------------------------------------------------- */
.one-liner-section {
    padding: 5rem 1rem;
    background-color: #ffffff; /* White for clean contrast */
    color: #2E2E2E; /* Charcoal for strong readability */
}

.one-liner-section .subheading,
.owner-section .subheading {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    display: inline-block;
    color: #F7C026; /* K&W Yellow for emphasis */
}

.one-liner-section .heading,
.owner-section .heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2E2E2E;
}

.one-liner-section .description,
.owner-section .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #2E2E2E;
}

.one-liner-section .cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.one-liner-section .cta-buttons .btn {
    flex: 0 1 auto;
    padding: 0.75rem 1.5rem;
    min-width: 140px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* K&W Button Colors */
.one-liner-section .btn-primary {
    background-color: #F7C026!important;
    color: #2E2E2E!important;
    border: none!important;
}

.one-liner-section .btn-secondary {
    background-color: #2E2E2E!important;
    color: #ffffff!important;
    border: none!important;
}

.one-liner-section .btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Image styling */
.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.owner-section .img-fluid {
    border-radius: 0;
    box-shadow: none;
}

.owner-section .owner-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2E2E2E;
    margin-top: 0.5rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 1.5s ease-in-out forwards;
    opacity: 0;
}

.animate-slide-in {
    animation: slideIn 1.5s ease-in-out forwards;
    opacity: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .one-liner-section .col-lg-6 {
        text-align: center;
    }

    .one-liner-section .cta-buttons {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .one-liner-section .cta-buttons .btn {
        flex: 0 1 45%;
        max-width: 150px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .one-liner-section .col-lg-6:nth-child(2) {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .one-liner-section .cta-buttons {
        justify-content: center;
    }

    .one-liner-section .cta-buttons .btn {
        flex: 1 1 45%;
    }

    .one-liner-section .col-lg-6:nth-child(2) {
        margin-top: 1.5rem;
    }
}
/* ---------------------------------------------------</One-Liner Section>--------------------------------------------------- */


/* ---------------------------------------------------<Promo Bar Section>--------------------------------------------------- */
.promo-bar {
    color: #2E2E2E; /* Charcoal Text */
    padding: 3rem 1rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.promo-bar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

.promo-image-container {
    position: absolute;
    left: -4rem;
    top: -10rem;
    z-index: 10;
}

.promo-excavator-img {
    width: 600px;
    pointer-events: none;
}

.promo-content {
    flex: 0 0 66.67%;
    position: relative;
    z-index: 2;
    padding-left: 3.5rem;
    margin-left: auto;
    text-align: left;
    padding-right: 1rem;
}

.promo-bar .subheading {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
}

.promo-bar .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F7C026;
}

.promo-bar .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.promo-bar .cta-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.promo-bar .cta-buttons .btn {
    flex: 0 1 auto;
    padding: 0.75rem 1.5rem;
    min-width: 140px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.promo-bar .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.promo-bar .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.promo-bar .btn-primary {
    background-color: #F7C026;
    color: #2E2E2E;
    border: none;
}

.promo-bar .btn-primary:hover {
    background-color: #e5b800;
    color: #2E2E2E;
}

.promo-bar .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.promo-bar .btn-secondary:hover {
    background-color: #fff;
    color: #2E2E2E;
}

@media (max-width: 768px) {
    .promo-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .promo-image-container {
        position: static;
        margin-bottom: 1rem;
    }

    .promo-excavator-img {
        width: 250px;
        transform: none;
    }

    .promo-content {
        flex: 1 1 auto;
        margin-left: 0;
        padding-left: 0;
        text-align: center;
    }

    .promo-bar .cta-buttons {
        justify-content: center;
    }
}
/* ---------------------------------------------------</Promo Bar Section>--------------------------------------------------- */


/* ---------------------------------------------------<Services Section>--------------------------------------------------- */
.services-section {
    position: relative;
    background-image: url('https://dkialpha.com/alpha_img/excavate/1920/ex-007.webp');
    background-size: cover;
    background-position: center;
    padding: 7.5rem 1rem;
    text-align: center;
    color: #2E2E2E;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.section-header .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.section-header .description {
    font-size: 1rem;
    margin-bottom: 3rem;
    color: #555;
}

.service-card {
    display: block;
    background: rgba(255, 255, 255, 0);
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    color: #2E2E2E;
    border: 2px solid transparent;
}

.service-card:hover {
    background: #fff;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #F7C026; /* K&W Yellow */
}

.service-card .service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.service-card .service-description {
    font-size: 1rem;
    color: #555;
}

.section-ctas .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    margin: 0.5rem;
    transition: all 0.3s ease;
    font-weight: 600;
}
.section-ctas .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


.section-ctas .btn-primary {
    background-color: #2E2E2E!important;
    color: #fff!important;
    border: none!important;
}

.section-ctas .btn-primary:hover {
    background-color: #1A1A1A!important;
}

.section-ctas .btn-secondary {
    background-color: transparent!important;
    color: #2E2E2E!important;
    border: 2px solid #2E2E2E!important;
}

.section-ctas .btn-secondary:hover {
    background-color: #2E2E2E!important;
    color: #fff!important;
}
.serve-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap to the next line */
    gap: 1rem; /* Space between items */
    justify-content: flex-start; /* Align items to the left */
}

.serve-list li {
    display: flex; /* Use flexbox for layout */
    align-items: flex-start; /* Align the text to the top of the icon */
    gap: 0.5rem; /* Add space between the icon and text */
    flex: 0 1 calc(33.333% - 1rem); /* Adjust width for responsive wrapping */
    text-align: left; /* Ensure text is left-aligned */
    word-wrap: break-word; /* Ensure text wraps properly */
    font-size: 1.5rem;
}

.serve-list li i {
    font-size: 1.7rem;
    color: #F7C026;
}

.serve-list li span {
    font-weight: 600;
    line-height: 1.7;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .serve-list li {
        flex: 0 1 calc(50% - 1rem); /* Adjust to 50% width for smaller screens */
        max-width: calc(50% - 1rem);
    }
    .serve-list li i {
        font-size: 1.25rem; /* Adjust icon size */
    }
    .serve-list li span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .serve-list li {
        flex: 0 1 calc(100% - 1rem); /* Adjust to full width for very small screens */
        max-width: calc(100% - 1rem);
    }
    .serve-list li i {
        font-size: 1rem; /* Adjust icon size */
    }
    .serve-list li span {
        font-size: 0.9rem;
    }
}

/* *****************************************</Services Section>************************************** */

/* *****************************************<Process Section>************************************** */

.process-section {
    background-color: #f8f9fa; /* Light background */
    padding: 4rem 1rem;
    color: #333;
}

.process-section .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #2E2E2E;
}

.process-section .timeline {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: flex-start; /* Align items to the left */
    gap: 2rem; /* Space between cards */
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1 1 calc(25% - 2rem); /* Four items per row */
    max-width: calc(25% - 2rem); /* Prevent overflow */
    padding: 1rem;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.timeline-step .circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F7C026; /* Green */
    color: #fff;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.timeline-step .step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2E2E2E;
}

.timeline-step .step-description {
    font-size: 1rem;
    font-weight: 400;
    color: #555;
}

.process-note {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 2rem;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .timeline-step {
        flex: 1 1 calc(33.333% - 2rem); /* Three items per row */
        max-width: calc(33.333% - 2rem);
    }
}

@media (max-width: 768px) {
    .process-section .timeline {
        flex-direction: column; /* Stack steps vertically */
        gap: 1.5rem;
        border-left: none; /* Remove the green line on mobile */
        border-right: none; /* In case there is a right border */
    }

    .timeline-step {
        flex: 1 1 100%; /* Full width for mobile */
        max-width: 100%; /* Prevent overflow */
        text-align: left; /* Align text to the left */
    }

    .timeline-step .circle {
        margin: 0 auto 1rem auto; /* Center the circle on mobile */
    }

    .timeline-step:not(:last-child) {
        margin-bottom: 1rem; /* Add spacing between steps */
    }
}

/* *****************************************</Process Section>************************************** */


/* *****************************************<Why Choose Us Section>************************************** */
.why-choose-us {
    background-color: #ffffff;
    padding: 5rem 1rem;
    color: #2E2E2E;
}

.why-choose-us .section-header .heading {
    color: #2E2E2E;
}

.why-choose-us .section-header .description {
    color: #555;
}

/* Benefits List Styles */
.why-choose-us .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.why-choose-us .benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: #2E2E2E; 
}

/* Benefit icon + label */
.why-choose-us .benefit-item i {
    color: #F7C026; /* Yellow icon */
    font-size: 1.5rem;
    padding-right: .5rem;
}

/* Ensure container doesn't overflow */
.why-choose-us .container {
    overflow-x: hidden;
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .why-choose-us .benefits-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .why-choose-us .benefit-item {
        flex: 0 1 calc(50% - 1rem); /* Two items per row on tablets */
    }
}

@media (min-width: 1200px) {
    .why-choose-us .benefit-item {
        flex: 0 1 calc(33.333% - 1rem); /* Three items per row on desktops */
        align-items: center; /* Vertically align icon and bold text */
        gap: 0.5rem; /* Add space between icon and text */
    }

    .why-choose-us .benefit-item strong {
        display: inline-flex; /* Ensure icon and bold text are on the same line */
        align-items: center; /* Vertically align icon and bold text */
        font-size: 1rem; /* Adjust font size */
    }

    .why-choose-us .benefit-item span {
        display: block; /* Place sentence on its own line */
        text-align: left; /* Align sentence to the left */
        margin-top: 0.25rem; /* Add spacing above the sentence */
    }
}

/* Mobile Wrapping Fix */
@media (max-width: 767px) {
    .why-choose-us .benefit-item {
        display: flex;
        flex-direction: column; /* Stack content vertically */
        align-items: flex-start; /* Align everything to the left */
        gap: 0.25rem; /* Add small spacing between rows */
        flex: 0 1 100%; /* Full width on mobile */
    }

    .why-choose-us .benefit-item strong {
        display: inline-flex; /* Keep icon and bold text on the same line */
        align-items: center; /* Vertically align icon and bold text */
        gap: 0.5rem; /* Add spacing between icon and bold text */
        font-size: 1rem; /* Adjust font size */
    }

    .why-choose-us .benefit-item i {
        font-size: 1.5rem; /* Adjust icon size */
        color: #F7C026; /* Green icon */
        padding-right: 0.5rem; /* Ensure spacing with the text */
        align-self: center; /* Center the icon vertically with the text */
    }

    .why-choose-us .benefit-item span {
        display: block; /* Ensure the sentence is on its own line */
        text-align: left; /* Left-align the sentence */
        margin-top: 0.25rem; /* Add small spacing above the sentence */
        font-size: 1rem; /* Adjust text size */
    }
}


/* Very Small Screens */
@media (max-width: 480px) {
    .why-choose-us .benefit-item {
        margin-bottom: 0.5rem; /* Reduce spacing for small screens */
    }
}

/* Image and Alignment */
.why-choose-us img {
    max-width: 100%;
    border-radius: 10px;
}

.why-choose-us .text-content {
    text-align: left;
}

/* Buttons */
.why-choose-us .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}
.why-choose-us .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.why-choose-us .btn-primary {
    background-color: #2E2E2E!important;
    color: #fff!important;
}

.why-choose-us .btn-primary:hover {
    background-color: #1B1B1B!important;
}

.why-choose-us .btn-secondary {
    background-color: transparent!important;
    color: #2E2E2E!important;
    border: 2px solid #2E2E2E!important;
}

.why-choose-us .btn-secondary:hover {
    background-color: #2E2E2E!important;
    color: #fff!important;
}
/* *****************************************</Why Choose Us Section>************************************** */



/* *****************************************<Reviews Section>************************************** */
.reviews-section {
    background-color: #ffffff; /* White background */
    padding: 5rem 1rem;
    color: #2E2E2E;
}

.reviews-section .section-header .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2E2E2E; /* Charcoal */
}

.reviews-section .section-header .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #555;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.review-card .stars {
    font-size: 1.5rem;
    color: #F7C026; /* K&W Yellow for stars */
    margin-bottom: 1rem;
}

.review-card .review-text {
    font-size: 1rem;
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.review-card .reviewer {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2E2E2E;
}

.reviews-section .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    margin: 0.5rem;
    transition: all 0.3s ease;
}
.reviews-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reviews-section .btn-primary {
    background-color: #2E2E2E!important; /* Charcoal */
    color: #ffffff!important;
    border: none!important;
}

.reviews-section .btn-primary:hover {
    background-color: #1B1B1B!important;
    color: #ffffff!important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .reviews-section .row {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.5rem;
    }
}
/* *****************************************</Reviews Section>************************************** */


/* *****************************************<Booking Steps Section>************************************** */
.booking-steps {
    background-color: #2E2E2E;
    color: #fff;
    padding: 5rem 1rem;
    background-image: 
      url('https://dkialpha.com/alpha_img/bg/noise-texture-light.png'),
      repeating-linear-gradient(
        45deg,
        rgba(255, 255, 255, 0.07) 0,
        rgba(255, 255, 255, 0.07) 2px,
        transparent 2px,
        transparent 6px
      );
    background-blend-mode: overlay;
    background-size: cover;
    background-position: center;
}


.booking-steps .section-header .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #F7C026; /* K&W Yellow */
}
.booking-steps .section-header .subheading {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFF; /* K&W Yellow */
}

.booking-steps .section-header .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Timeline Styles */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding: 2rem 0;
    border-left: 2px solid #F7C026;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease-in-out forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #F7C026;
    color: #2E2E2E;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    position: absolute;
    left: -27px;
}

.timeline-content {
    padding-left: 3rem;
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    color: #ccc;
    margin-bottom: 1rem;
}

/* CTA Buttons */
.text-center .btn {
    margin: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.text-center .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.text-center .btn-primary {
    background-color: #F7C026;
    color: #2E2E2E;
    border: none;
}

.text-center .btn-primary:hover {
    background-color: #e5b800;
    color: #2E2E2E;
}

.text-center .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.text-center .btn-secondary:hover {
    background-color: #fff;
    color: #2E2E2E;
}

/* Horizontal layout for large screens */
@media (min-width: 992px) {
    .timeline {
        flex-direction: row;
        justify-content: space-between;
        border-left: none;
        border-top: 2px solid #F7C026;
    }

    .timeline-item {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .timeline-icon {
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
    }
    .timeline-icon::before {
        content: '';
        position: absolute;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(247,192,38,0.25) 0%, rgba(247,192,38,0) 70%);
        animation: pulse-glow 2.5s ease-in-out infinite;
        z-index: -1;
    }


    .timeline-content {
        padding-left: 0;
        margin-top: 3rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse-glow {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 0.4;
    }
}

/* *****************************************</Booking Steps Section>************************************** */



/* *****************************************<Locations Section>************************************** */
.locations {
    background-color: #f9f9f9;
    padding: 5rem 1rem;
    color: #2E2E2E;
}

.locations .section-header .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2E2E2E;
}

.locations .section-header .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #555;
}

.locations .locations-list {
    list-style-type: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.locations .locations-list li {
    font-size: 1.1rem;
    color: #2E2E2E;
    padding-left: 1.5rem!important;
    position: relative;
}

.locations .locations-list li::before {
    content: '⛏️';
    position: absolute;
    left: 0;
    color: #F7C026;
}

@media (min-width: 768px) {
    .locations .locations-list {
        grid-template-columns: 1fr 1fr;
    }
}

.map-container {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.locations .cta {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1.5rem;
}

.locations .btn-container {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    flex-wrap: wrap;
}

.locations .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.locations .btn-primary {
    background-color: #2E2E2E;
    color: #fff;
    border: none;
}

.locations .btn-primary:hover {
    background-color: #1B1B1B;
}

.locations .btn-secondary {
    background-color: #fff;
    color: #2E2E2E;
    border: 2px solid #2E2E2E;
}

.locations .btn-secondary:hover {
    background-color: #2E2E2E;
    color: #f4f4f4;
}
/* *****************************************</Locations Section>************************************** */

/* *****************************************<Promo Bar2 Section>************************************** */
.promo-bar2 {
    position: relative;
    color: #fff; /* White text */
    padding: 2rem 1rem;
    overflow: visible; /* Allow image to extend beyond the promo bar */
}

.promo-bar2 .promo-content {
    flex: 0 0 66.67%; /* Confine content to 2/3 of the promo bar width */
    position: relative;
    z-index: 2; /* Ensure content is above the image */
    padding-right: 3.5rem; /* Add space for the image */
    text-align: left; /* Align text inside the content area to the left */
    padding-left: 1rem; /* Add padding for spacing */
    margin-left: 0; /* Align the content to the left edge */
}



.promo-bar2 .promo-content .heading {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.promo-bar2 .promo-content .description {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.promo-bar2 .cta-buttons {
    display: flex; /* Use flexbox for buttons */
    justify-content: flex-start; /* Align buttons to the left */
    gap: 1rem; /* Add space between buttons */
    margin-top: 1rem; /* Add spacing above the buttons */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.promo-bar2 .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.promo-bar2 .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.promo-bar2 .btn-primary {
    background-color: #F7C026;
    color: #2E2E2E;
    border: none;
}

.promo-bar2 .btn-primary:hover {
    background-color: #e5b800;
    color: #2E2E2E;
}

.promo-bar2 .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.promo-bar2 .btn-secondary:hover {
    background-color: #fff;
    color: #2E2E2E;
}

/* Overlapping Image */
.promo-bar2 .promo-image {
    position: absolute;
    top: -20%; /* Move the image upward */
    bottom: -20%; /* Move the image downward */
    right: calc((100% - 1140px) / 4); /* Align the image to the container's right */
    z-index: 1; /* Keep the image behind the content */
    pointer-events: none; /* Prevent interaction with the image */
}

.promo-bar2 .promo-image img {
    max-height: 150%; /* Extend image height */
    transform: translateY(-10%); /* Vertically center the image */
    pointer-events: none;
}


/* Responsive Adjustments for Promo Bar 2 */
@media (max-width: 768px) {
    .promo-bar2 {
        padding: 2rem 0; /* Adjust padding for mobile */
        text-align: center; /* Center-align everything */
    }

    .promo-bar2 .promo-content {
        flex: 0 0 100%; /* Content takes full width */
        padding: 0 1rem; /* Add padding on both sides */
        margin: 0 auto; /* Center content */
    }

    .promo-bar2 .promo-image {
        position: relative; /* Remove absolute positioning */
        display: block; /* Make sure it’s visible */
        margin: 1.5rem auto 0; /* Center the image horizontally */
        width: 100%; /* Allow image to take full container width */
        max-width: 90%; /* Prevent image from being too wide */
        height: auto; /* Maintain aspect ratio */
        left: auto; /* Reset any unwanted left offsets */
        right: auto; /* Reset any unwanted right offsets */
    }

    .promo-bar2 .promo-image img {
        display: block; /* Ensure proper layout */
        margin: 0 auto; /* Center the image horizontally */
        width: 100%; /* Ensure it scales within the container */
        height: auto; /* Maintain aspect ratio */
    }

    .promo-bar2 .cta-buttons {
        justify-content: center; /* Center-align buttons */
        margin-top: 1rem;
    }
}
/* Detect scaled resolution */
@media (min-width: 1536px) and (max-width: 1600px) and (min-resolution: 120dpi) {
    /* Styles for 1920x1080 screen scaled to 125% */
    /* Overlapping Image */
    .promo-bar2 .promo-image {
       
        top: -20%; /* Move the image upward */
        bottom: -20%; /* Move the image downward */
        right: 5%; /* Align the image to the container's right */
    }
    
    .promo-bar2 .promo-image img {
        max-height: 125%; /* Extend image height */
        transform: translateY(-10%); /* Vertically center the image */
    }
}

/* *****************************************</Promo Bar2 Section>************************************** */

/* *****************************************<FAQ Section>************************************** */
.faq-section {
    background-color: #fff; /* Light gray background */
    padding: 8.5rem 1rem!important;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2E2E2E!important;
}

.section-description {
    font-size: 1rem;
    font-weight: 400;
    color: #2E2E2E!important;
}

.accordion-item {
    border: none; /* Remove default border */
    margin-bottom: 1rem;
    border-radius: 5px; /* Slightly rounded corners */
    overflow: hidden; /* Ensure clean edges */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.accordion-header {
    background-color: #2E2E2E!important;
    color: #fff;
}

.accordion-button {
    font-weight: 600;
    background-color: #2E2E2E; 
    color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #F7C026; /* Yellow when active */
    color: #2E2E2E;
}
.accordion-button::after {
    content: ""; /* Keep the arrow icon */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 1rem 1rem;
    transform: rotate(0deg); /* Default rotation */
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-left: auto; /* Align the arrow to the right */
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg); /* Rotate the arrow when expanded */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%232E2E2E' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

.accordion-body {
    background-color: #fff; /* White background for content */
    color: #333; /* Dark gray for text */
    font-size: 0.95rem;
}
/* *****************************************</FAQ Section>************************************** */

/* *****************************************<Contact Section>************************************** */
.contact-section {
    background-color: #f8f9fa; /* Light gray background */
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2E2E2E; /* Navy blue */
}

.section-description {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.list-unstyled a {
    color: #F7C026; /* Green for links */
    text-decoration: none;
    font-weight: 600;
}

.list-unstyled a:hover {
    text-decoration: underline;
}
form .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600!important;
    border-radius: 5px;
    transition: all 0.3s ease;
}
form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

form .btn-primary {
    background-color: #F7C026;
    color: #2E2E2E;
    border: none;
}

form .btn-primary:hover {
    background-color: #e5b800;
    color: #2E2E2E;
}

#alert {
    color: #F7C026; /* Green color for success messages */
    font-weight: 600;
}
.cta-banner {
    background-color: #f8f9fa; /* Light gray background */
    border: 2px solid #2E2E2E; /* Navy blue border */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.cta-banner h3 {
    font-size: 1.8rem;
    color: #2E2E2E; /* Navy blue */
    margin-bottom: 0.5rem;
}

.cta-banner p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.cta-banner .btn-primary {
    background-color: #F7C026;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.cta-banner .btn-primary:hover {
    background-color: #e5b800; 
}

.cta-banner .btn-secondary {
    background-color: #2E2E2E;
    color: #fff;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.cta-banner .btn-secondary:hover {
    background-color: #1B1B1B;
    color: #fff;
}

/* *****************************************</Contact Section>************************************** */

/* -----------------------------------------<Footer>----------------------------------------- */

footer a {
    color: #F7C026;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #E5B800;
}
/* -----------------------------------------</Footer>----------------------------------------- */

.grecaptcha-badge { visibility: hidden; }