/* General Reset */
body, h1, p, a, ul, li {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  color: #1d2d3c;
  font-weight: 100;
}

.display-5 { font-size: 2em; }

/* General Header Styling */
.header-wrapper {
    background-color: #1d2d3c;
    padding: 10px 0;
}

/* Logo */
.logo {
    width: 120px;
}

/* Desktop Navigation */
.desktop-nav .nav {
    display: flex;
    gap: 20px;
}

.desktop-nav .nav-link {
    font-weight: 100;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav .nav-link:hover {
    color: #009245;
}

/* Call Now Button */
.call-now {
    font-weight: 600;
    padding: 8px 16px;
    font-size: 16px;
    background: #009245;
    border: none;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.call-now:hover {
    background: #007a34;
}

/* Mobile Menu Button */
.menu-btn {
    background: none;
    border: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* Wrapper to hide overflow */
.logos-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    background: #f9f9f9;
    padding: 20px 0;
}

/* Scrolling container */
.logos {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 40px; /* Adjust space between logos */
    flex-wrap: nowrap;
    animation: scroll 12s linear infinite;
    min-width: 200%; /* Ensures full space for duplicated logos */
}

/* Logo images */
.logos img {
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

/* Continuous scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Style for the list */
.tick-list {
    list-style-type: none; /* Remove default bullets */
    margin-top: 20px;
    margin-bottom: 20px;
}

.tick-list li {
    position: relative;
    padding-left: 25px; /* Space for the tick */
    margin-bottom: 5px; /* Add some space between list items */
}

.tick-list li::before {
    content: '✔'; /* Adds a tick mark before each list item */
    position: absolute;
    left: 0;
    top: 0;
    color: green; /* Green color for the ticks */
}



@media (max-width: 1795px) {
    /* Ensure all service cards have equal height */
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* Make all cards the same height */
    min-height: 100%; /* Prevent shrinking */
    padding: 20px;
}

/* Make the text container flexible */
.service-card p {
    flex-grow: 1; /* Expands to fill available space */
}

/* Keep the "Read More" button aligned at the bottom */
.service-card .read-more {
    align-self: flex-start;
    margin-top: auto; /* Push to bottom */
}
}

/* Mobile: Hide Desktop Nav, Show Mobile Menu Button & Call Button */
@media (max-width: 1180px) {
    /* Hide Desktop Navigation */
    .desktop-nav {
        display: none !important;
    }
    
    /* Ensure entire nav wrapper disappears */
    .d-md-flex {
        display: none !important;
    }

    /* Show menu button */
    .menu-btn {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }

    /* Sticky Call Button */
    .sticky-cta {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: #009245; /* Green */
        color: white;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: bold;
        text-decoration: none;
        border-radius: 5px;
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 999;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
        transition: background 0.3s ease, transform 0.3s ease;
    }

    /* Hover Effect */
    .sticky-cta:hover {
        background: #007a34;
        transform: scale(1.05);
    }

    /* Phone Icon */
    .sticky-cta i {
        font-size: 18px;
    }

    /* Ensure it appears at 1180px and below */
    .sticky-cta.d-none {
        display: flex !important;
    }



}



/* Fullscreen Mobile Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #1d2d3c;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
    transform: translateX(100%);
    z-index: 1000;
}

/* Show Fullscreen Menu */
.fullscreen-menu.show {
    transform: translateX(0);
}

/* Close Button */
.menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

/* Menu Container */
.menu-container {
    width: 90%;
    max-width: 400px;
}

/* Menu Items */
.menu-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.menu-nav .nav-item {
    position: relative;
    margin: 0; /* No extra spacing */
    opacity: 0;
    transform: translateY(20px);
    border-bottom: 2px solid #283d51; /* Initial underline */
    transition: border-bottom 0.3s ease, opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* Menu Links */
.menu-nav .nav-link {
    font-size: 24px;
    font-weight: 100;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    justify-content: space-between; /* Push text left and arrow right */
    align-items: center;
    width: 100%;
    padding: 15px 20px; /* Adjust padding for correct spacing */
    transition: color 0.3s ease;
}

/* Menu Text (Left) */
.menu-text {
    flex: 1;
    text-align: left;
}

/* Right Arrow */
.arrow {
    font-size: 22px;
    color: #ffffff;
    transition: color 0.3s ease;
}

/* Hover Effect */
.menu-nav .nav-item:hover {
    border-bottom: 2px solid #009245; /* Green underline on hover */
}

.menu-nav .nav-item:hover .arrow {
    color: #009245;
}

/* Show Fullscreen Menu with Animation */
.fullscreen-menu.show .menu-nav .nav-item {
    opacity: 1;
    transform: translateY(0);
}

/* Ladder Animation */
@keyframes ladderEffect {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}



header {
  background-color: transparent;
  z-index: 2;
  position: relative;
}

.header-underline {
  content: "";
  width: 100%;
  height: 1px;
  background: #ddd;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.nav-link {
  color: #fff;
  margin: 0 10px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #fff;
}

.highlight { color: #019246; }

.read-more-btn { border: 1px solid; border-color: #fff !important; }

.btn-primary {
  background-color: #1d2d3c;
  color: #fff;
  padding: 10px 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s;
      border-color: #1d2d3c;
      border-radius: 5px;
}

.btn-primary:hover {
  background-color: #1d2d3c;
  color: #fff;
      border-color: #1d2d3c;
}

.btn-primary:active {
  background-color: #1d2d3c !important;
  color: #fff !important;
      border-color: #fff !important;
}

.btn-secondary {
  background-color: #019246; 
  color: #fff;
  padding: 10px 30px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  border-color: #019246; 
  transition: background-color 0.3s, color 0.3s;
}

.btn-secondary:hover {
  background-color: #019246;
  color: #fff;
  border-color: #019246; 
}

.btn-secondary:active {
  background-color: #019246 !important;
  color: #fff !important;
}

/* Split Section */
.split-section {
    background-color: #1d2d3c;
    color: #fff;
}

/* Ensures both sections (left content & video) are centered */
.split-section .row {
    display: flex;
    align-items: center; /* Aligns both sections vertically */
    min-height: 100%; /* Ensures it takes full height */
}

/* Video Container */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}

/* Video Element */
.video-container video {
    border-radius: 12px; /* Match container */
    width: 100%;
    height: 600px;
    object-fit: cover;
    max-height: 600px;
}

/* Video Overlay */
.video-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(29, 45, 60, 0.6); /* Dark Blue Transparent Overlay */
    border-radius: 12px;
    z-index: 2;
    pointer-events: none;
}

/* Play/Pause Button Wrapper */
.video-control {
    position: absolute;
    bottom: 15px;
    left: 30px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s ease;
}

/* SVG Button Styling */
.pb_svg {
    width: 50px;
    height: 50px;
}

/* Video Control Text */
.video-text {
    color: white;
    font-family: 'Poppins', sans-serif;
}

.video-title {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.video-subtitle {
    font-size: 14px;
    opacity: 0.8;
}

/* Fade effect for smooth video transitions */
.fade-out {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Underline effect for active service card */
.service-card {
    border-bottom: 3px solid transparent;
    transition: border-bottom 0.3s ease-in-out;
}

/* Initially highlight first card */
.service-card:first-child {
    border-bottom: 3px solid white;
}


/* Service Cards */
.service-card {
    background: #273c50;
    color: white;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 16px;
    opacity: 0.9;
}

.service-card .read-more {
    font-size: 14px;
    font-weight: bold;
    color: #009245;
    text-decoration: none;
    position: absolute;
    bottom: 10px;
    left: 15px;
    transition: color 0.3s ease;
}

.service-card:hover {
    transform: scale(1.02);
    background: #283d51;
}

.service-card:hover .read-more {
    color: #ffffff;
}

.services-card {
    background: #fff;
    color: #1d2d3c;
    padding: 20px;
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    text-align: left;
    position: relative;
}

.services-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.services-card p {
    font-size: 16px;
    opacity: 0.9;
}

.services-card .read-more {
    font-size: 14px;
    font-weight: bold;
    color: #009245;
    text-decoration: none;
    transition: color 0.3s ease;
}

.services-card:hover {
    transform: scale(1.02);
}

.services-card:hover .read-more {
    color: #ffffff;
}



/* Four Boxes Section */
.four-boxes-section {
  background-color: #fff;
}

.box {
  border-radius: 10px;
  overflow: hidden;
}

.box:hover {
  transform: translateY(-5px);
}

.box-image img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
}

.box-gray .box-text {
  background-color: #f0f0f0; /* Light gray */
  color: #1d2d3c;
  padding: 30px;
}

.box-green .box-text {
  background-color: #009245; /* Green */
  color: #fff;
  padding: 30px;
}

.box-text h5 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.box-text p {
  font-size: 0.9rem;
  margin: 0;
}



.green-dash {
  display: inline-block;
  width: 40px; /* Length of the dash */
  height: 4px; /* Thickness of the dash */
  background-color: #009245; /* Green color */
  border-radius: 2px; /* Optional: for rounded edges */
}


/* CTA Banner */
.cta-banner {
    background-color: #019246; /* Green background */
    padding: 40px 0;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Flex container to keep text and button inline */
.cta-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CTA Text */
.cta-text h3 {
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-align: right;
}

.cta-text p {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-align: right;
}

/* Call Button */
.call-now {
    color: #019246;
    background-color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button Hover */
.call-now:hover {
    background-color: #007a37;
    color: #fff;
}

/* Phone Icon */
.call-now i {
    font-size: 18px;
}

/* Flipped Phone Icon (Rotate 180 degrees) */
.flipped-icon {
    font-size: 18px;
    transform: scaleX(-1);
}


.btn-link { color: #009245 !important; }

/* Container for tagline and line to keep them aligned */
.separator-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align text and line to the left */
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding-top: 10px; /* Adds slight space above the line */
}

/* Tagline Styling */
.separator-tagline {
    font-size: 16px;
    font-weight: 600;
    color: #273c50; /* Matches the line */
    opacity: 0;
    transform: translateY(10px);
    transition: bottom 0.8s ease-in-out 3s, opacity 0.8s ease-in-out 3s; /* Delayed after separator */
}

/* Animated Line Separator */
.header-separator {
    width: 0%; /* Start with zero width */
    height: 2px; /* Thin and subtle */
    background: #273c50; /* Always this colour */
    transition: width 2.5s ease-in-out 1.5s;
    margin-top: 5px; /* Space between tagline and line */
}

/* Expand the line when page loads */
.header-separator.active {
    width: 100%; /* Expands to full width of container-fluid */
}

/* Reveal tagline after line animation */
.header-separator.active + .separator-tagline {
    opacity: 1;
    transform: translateY(0);
}



.remove-bg { background: #1d2d3c; }


/* Top Bar Styling */
.top-bar {
    display: none;
    background: #273c50; /* Faint blue-grey */
    color: white;
    font-size: 14px;
    padding: 8px 0;
}

.top-bar .social-icons {
    display: flex;
    gap: 15px;
}

.top-bar .social-icons a {
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.top-bar .social-icons a:hover {
    color: #009245; /* Green hover effect */
}

.max-len { max-width: 830px; }

.clients-section {
    background: #f9f9f9; /* Light background to contrast */
}

.client-logo img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(15%) saturate(519%) hue-rotate(162deg) brightness(94%) contrast(87%); 
    max-width: 150px; /* Adjust logo size */
    opacity: 0.8; /* Slightly faded */
    transition: opacity 0.3s ease-in-out;
}

.client-logo img:hover {
    opacity: 1; /* Brighten on hover */
}

.client-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}


/* WHO WE ARE SECTION */
.who-we-are {
    background: #1d2d3c; /* Dark industrial tone */
    color: white;
}

/* Headline */
.who-we-are h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
}

.who-we-are-span {
    font-weight: 300; /* Lighter font weight for contrast */
}

/* Paragraph Text */
.who-we-are p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: #273c50;
    color: white;
    padding: 25px;
    text-align: left;
    border-left: 4px solid #009245;
    transition: transform 0.3s ease-in-out;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

/* Slight hover effect for stats */
.stat-box:hover {
    transform: translateY(-5px);
}

/* CTA Button */
.who-we-are .btn-primary {
    background: #009245;
    color: white;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    transition: background 0.3s ease-in-out;
}

.who-we-are .btn-primary:hover {
    background: #007a34;
    color: white;
}


/* New "Why Choose Us" Section Styles */
.why-choose-us-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;  /* Vertically align left and right sections */
    height: 100%;  /* Ensure the section takes full height of its parent */
}

.why-choose-us-left {
    flex: 1;
    max-width: 50%;
    padding-right: 30px;
    display: flex;
    flex-direction: column; /* Ensure content is stacked vertically */
    justify-content: center; /* Vertically center the content */
}

.why-choose-us-right {
    flex: 1;
    display: flex;
    justify-content: center;  /* Horizontally center the image */
    align-items: center;  /* Vertically center the image */
    height: 100%;  /* Ensures the parent div takes full height */
}

.why-choose-us-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}


.why-choose-us-left .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 400;
        color: #109246;
}

.why-choose-us-left .additional-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.reasons-container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.reasons-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.reasons-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    min-width: 250px; /* Ensure minimum width for readability */
    width: auto;
}

.tick-icon {
    font-size: 1.5rem;
    color: #5cb85c; /* Green tick */
}

.transition-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-top: 30px;
}



/* 9.0 - Steps: */
.steps-carousel-container { margin-top: 60px; }



.steps-carousel {
    overflow: hidden;
}

.steps-carousel .owl-item {
    float: left;
}

.steps-carousel .item-step {
    position: relative;
    text-align: center;
    padding: 0 30px;
}

.steps-carousel .item-step:before {
     position: absolute;
     width: 50%;
     margin-left:-55px;
     height: 2px;
     content: "";
     top: 40px;
     left: 0;
     border-bottom: 2px solid #f2f2f2;
     z-index: -1;
 }

.steps-carousel .item-step:after {
    position: absolute;
    width: 50%;
    margin-right:-55px;
    height: 2px;
    content: "";
    top: 40px;
    right: 0;
    border-bottom: 2px solid #f2f2f2;
    z-index: -1;
}

.steps-carousel .number-step {
    position:relative;
    z-index:2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    font-weight: 500;
    line-height: 80px;
    text-align: center;
    font-size: 30px;
    margin: 0 auto;
}

.steps-carousel .item-step-container{
    position: absolute;
    top:0;
    left:50%;
    width: 62px;
    height: 80px;
    border-radius: 26%;
    text-align: center;
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    margin:0 -31px;
}
.steps-carousel .item-step-container:before, .steps-carousel .item-step-container:after {
    position: absolute;
    width: inherit; height: inherit;
    border-radius: inherit;
    background: inherit;
    top:0px;
    left:0px;
    content: '';
}

.steps-carousel .item-step-container:before {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
}
.steps-carousel .item-step-container:after {
    -webkit-transform: rotate(-60deg);
    transform: rotate(-60deg);
}

.steps-carousel .item-step .title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.steps-carousel .owl-nav.disabled {
    display: none;
}

.steps-carousel .owl-nav {
     width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
}

.steps-carousel .owl-next, .steps-carousel .owl-prev {
    width: auto;
}

.steps-carousel .owl-prev, .steps-carousel .owl-next {
     padding: 7px 10px;
    border-radius: 3px;
    font-size: 12px;
    line-height: 16px;
    transition: all .2s ease-in-out;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    margin: 0 4px;
    min-width: 60px;
}

.steps-carousel .owl-prev {
   border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    text-align: center;
}

.steps-carousel .owl-next {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    text-align: center;
}


.steps-carousel .owl-prev.disabled, .steps-carousel .owl-next.disabled {
    opacity: 0.5; /* Make disabled buttons visually inactive */
    pointer-events: none; /* Disable clicks on disabled buttons */
}

.steps-carousel .owl-prev, .steps-carousel .owl-next {
    background-color: #109246;
    color: white;
    border: none;
}

.steps-carousel .owl-prev:hover, .steps-carousel .owl-next:hover {
    background-color: #1e2d3c;
}





/* Responsive Adjustments */
@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* OUR WORK SECTION */
.our-work-section {
    padding: 5rem 0;
}

.work-header h2 {
    font-weight: bold;
}

.projects-wrapper {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
}

/* Scrolling container */
.projects {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjusts space between images */
    flex-wrap: nowrap;
    animation: scroll 10s linear infinite;
}

/* Images */
.projects img {
    width: auto;
    max-width: 280px;  /* Ensures proper size */
    object-fit: cover;
    flex-shrink: 0;
    max-height: 190px;
}

.proj-m { margin-left: 20px; }




.talk-to-us-section {
    background: #f2f2f2;
    color: #1d2d3c;
}

.small-heading {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.contact-btn {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.contact-btn i {
    font-size: 20px;
}

.btn-light {
    background-color: white;
    color: #009245;
    border: 2px solid white;
}

.btn-light:hover {
    background-color: transparent;
    color: white;
    border-color: #fff !important;
}

.btn-dark {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-dark:hover {
    background-color: white;
    color: #009245;
    border-color: #fff;
}



@media (max-width: 991px) {
    .talk-to-us-section .row {
        text-align: center;
        flex-direction: column;
    }
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
}


/* FOOTER SECTION */
.footer-section {
    background: #1d2d3c; /* Dark background */
    color: white;
    padding: 50px 0;
}

/* Footer Content Wrapper */
.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Footer Logo */
.footer-logo img {
    width: 180px;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    align-items: end;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 25px;
}

.footer-links ul li {
    display: inline;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
    color: #009245;
}

.footer-copyright a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

/* Footer Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 10px auto;
}

/* Copyright */
.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 20px;
    display: none;
}

.footer-social a {
    font-size: 22px; /* Bigger size */
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease-in-out;
}

.footer-social a:hover {
    color: #009245;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        margin-top: 10px;
    }

    .footer-social {
        margin-top: 20px;
    }
}


 /* Modal Styling */
    .modal-content {
        background: #ffffff;
        border-radius: 6px;
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
        padding: 20px;
        text-align: center;
    }

    .modal-header {
        padding-bottom: 0;
        border-bottom: none;
    }

    .modal-title {
        font-size: 24px;
        color: #1d2d3c;
        width: 100%;
        text-align: center;
    }

    .btn-close {
        opacity: 1;
        filter: invert(1);
    }

    /* Image Container */
    .modal-image-container {
        width: 100%;
        max-width: 500px;
        height: 300px; /* Adjusted for better aspect ratio */
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    }

    .modal-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Description Text */
    #modal-description {
        font-size: 16px;
        line-height: 1.6;
        text-align: center;
        max-width: 600px;
    }

 

    /* Cookie Banner */
    .cookie-banner {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #1d2d3c;
        color: white;
        padding: 15px 30px;
        border-radius: 5px;
        box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        z-index: 9999;
        max-width: 600px;
        width: 90%;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    }

    /* Show when active */
    .cookie-banner.active {
        opacity: 1;
        visibility: visible;
    }

    .cookie-banner p {
        margin: 0;
        font-size: 14px;
    }

    .cookie-link {
        color: #009245;
        text-decoration: underline;
    }

    /* Button Container */
    .cookie-buttons {
        display: flex;
        gap: 10px;
    }


    /* Responsive Split Section Adjustments */
@media (max-width: 991px) {
    .split-section {
        display: flex;
        flex-direction: column;
        text-align: center; /* Center align text */
        border: none;
    }

    .split-section .row {
        flex-direction: column-reverse; /* Show video first, then text */
        align-items: center;
        text-align: center;
    }

    /* Video Adjustments */
    .video-container {
        max-width: 100vw;
        height: auto;
    }

    .video-container video {
        max-height: 250px; /* Reduce height on mobile */
        object-fit: cover;
        border-radius: 0px;
    }

    .video-control { display: none !important; }

    .video-container::before { border-radius: 0px; clip-path: inset(0px 0px 0px 0px round 12px); /* Adjusts overlay bounds */
}


    /* Text Adjustments */
    .split-section .col-lg-6 {
        width: 100%;
        text-align: center;
    }

    .split-section h1 {
        font-size: 28px;
        line-height: 1.4;
    }

    .split-section p {
        font-size: 16px;
    }

    /* Buttons */
    .split-section .d-flex {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .read-more-btn, .get-quote {
        width: 100%;
        text-align: center;
    }

    .mob-padding-none { padding: 0px !important; }

    .remove-bg { display: none!important; }

    .mob-none { display: none!important; }

    .max-len { max-width: 100%; }

    .mob-spacing { margin-top: 3rem!important; margin-bottom: 3rem!important; padding-right: 3rem !important; padding-left: 3rem !important; }

    .split-section .d-flex { flex-wrap: nowrap; margin-left: 20px; margin-right: 20px; }

    video {
    object-fit: cover;
    max-width: 100%;
    height: auto;
    pointer-events: none; /* Prevent accidental taps triggering fullscreen */
}

  .top-bar { display: none; }

    .clients-section { padding-right: 3rem !important; padding-left: 3rem !important; }

  .clients-section .mb-4 { margin-bottom: 0px !important; }

  .call-now { display: block; margin-top: 20px; }

  .cta-banner .d-flex { display: inline-block !important; }

  .services-card { text-align: center; }

  .who-we-are { text-align: center; }

  .split-section h1 { font-size: calc(1.325rem + .9vw); }

  .who-we-are h2 { font-size: calc(1.325rem + .9vw); }

  .who-we-are .btn-primary { margin-bottom: 3rem!important; }

  .stat-box { text-align: center; }\

  .display-5 { font-size: calc(1.325rem + .9vw); }


/* Ensure full width per slide */
    .projects-wrapper {
        display: flex;
        gap: 10px;
        transition: transform 0.5s ease-in-out;
    }

    .project-item {
        flex: 0 0 100%;
        min-width: 100%;
        text-align: center;
    }

    .work-slide {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }

    .work-image {
        width: 100%;
        height: auto;
    }

    .work-image img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: cover;
    }

    .work-text {
        width: 100%;
        text-align: center;
    }

    .view-project {
        display: inline-block;
        margin-top: 10px;
    }

     .contact-btn-container {
        flex-direction: column !important; /* Stack buttons in a column */
        align-items: stretch !important; /* Ensure full width */
        gap: 10px !important; /* Add spacing between buttons */
    }

    .contact-btn {
        width: 100% !important; /* Make buttons full width */
        text-align: center !important;
    }

}


/* "Why Choose Us" Section Styles */
.why-choose-us-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.why-choose-us-left {
    flex: 1;
    max-width: 50%;
    padding-right: 30px;
}

.why-choose-us-right {
    flex: 1;
    display: flex;
    justify-content: center;  /* Horizontally center the image */
    align-items: center;  /* Vertically center the image */
    height: 100%;  /* Ensures the parent div takes full height */
}

.why-choose-us-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.why-choose-us-left .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: #109246;
}

.why-choose-us-left .additional-text {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}

.reasons-container {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.reasons-list {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.reasons-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    min-width: 250px; /* Ensure minimum width for readability */
    width: auto;
}

.tick-icon {
    font-size: 1.5rem;
    color: #5cb85c; /* Green tick */
}

.transition-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-top: 30px;
}

/* Media Query for Mobile and Tablet (max-width: 991px) */
@media (max-width: 991px) {
    .why-choose-us-section {
        flex-direction: column;
        align-items: center; /* Center all content in the section */
    }

    .why-choose-us-left {
        max-width: 100%; /* Take full width on smaller screens */
        padding-right: 0; /* Remove padding on smaller screens */
        text-align: center; /* Center align the text */
    }

    .why-choose-us-right {
        max-width: 100%; /* Take full width on smaller screens */
        padding-top: 20px; /* Space above image */
    }

    .why-choose-us-right img {
        max-width: 80%; /* Limit image width on small screens */
    }

    .reasons-list {
        flex-direction: column; /* Stack the list items vertically */
        align-items: center; /* Center the items */
    }

    .transition-text {
        text-align: center; /* Center align the text */
    }
}


/* Service Cards - Mobile Adjustments */
@media (max-width: 768px) {
    .service-card {
        text-align: center;
        padding: 20px;
    }

    .service-card h4 {
        font-size: 18px;
    }

    .service-card p {
        font-size: 15px;
    }




}


@media (min-width: 200px) and (max-width: 768px) {

   .cta-text h3 { text-align: center; }

    .cta-text p { text-align: center; }

    .footer-links ul { display: inline-block; }

    .footer-links li { display: inline-block !important; width: 100%; margin-bottom: 10px; }

    .footer-links { align-items: center; }
}
