/* Construction Division Specific Styles */

/* Global Styles */
:root {
    --primary-color: #CF5300;
    --secondary-color: #FFFFFF;
    --accent-color: #046B76;
    --dark-color: #222222;
    --light-color: #F8F9FA;
    --gray-color: #6C757D;
    --light-gray: #E9ECEF;
    --dark-gray: #343A40;
    --font-primary: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
    background-color: var(--light-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 100px 0;
    position: relative;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-color);
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
    margin-bottom: 20px;
}

.section-header.light .section-title {
    color: var(--secondary-color);
}

.section-header.light .section-subtitle {
    color: var(--light-gray);
}

.separator {
    height: 4px;
    width: 70px;
    background: var(--primary-color);
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #B94800;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 12px;
}

/* Header Styles */
#header {
    background-color: var(--secondary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo h1 {
    font-size: 24px;
    margin: 0;
    color: #dd221f;
    font-weight: 800;
}

.logo h1 span {
    color: black
}

.nav-menu {
    display: flex;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu li a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    background: url('/assets/construction_banner_image.jpg') no-repeat center center/cover;
    height: 100vh;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    opacity: 0.9;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-buttons .btn {
    margin: 0 10px;
}

/* About The Firm Section */
#about-the-firm {
    background-color: var(--light-color);
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text .lead {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 600px;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    width: 160px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge .years {
    font-size: 36px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.experience-badge .text {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

/* Our Approach Section */
#our-approach {
    background-color: var(--secondary-color);
}

.approach-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.approach-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background-color: var(--light-color);
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    background-color: rgba(207, 83, 0, 0.1);
    color: var(--primary-color);
    font-size: 30px;
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.approach-item:hover .approach-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.approach-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Services Section */
#services {
    background: linear-gradient(rgba(4, 107, 118, 0.95), rgba(4, 107, 118, 0.95)), url('/api/placeholder/1920/1080') no-repeat center center/cover;
    color: var(--secondary-color);
}

.services-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-features {
    margin-top: 20px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 4px;
}

/* Projects Section */
#projects {
    background-color: var(--light-color);
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: rgba(207, 83, 0, 0.9);
    color: var(--secondary-color);
    transition: bottom 0.5s ease;
    text-align: center;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-item:hover .project-overlay {
    bottom: 0;
}

.project-category {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.project-overlay h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.projects-cta {
    text-align: center;
    margin-top: 50px;
}

/* Team Section */
#team {
    background-color: var(--secondary-color);
}

.team-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--light-color);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    position: relative;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.member-social {
    position: absolute;
    bottom: -60px;
    left: 0;
    width: 100%;
    background-color: rgba(207, 83, 0, 0.9);
    padding: 15px 0;
    transition: bottom 0.5s ease;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member:hover .member-social {
    bottom: 0;
}

.member-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.member-info {
    padding: 25px 20px;
}

.member-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.member-position {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 14px;
}

#testimonials {
  background: linear-gradient(rgba(34, 34, 34, 0.95), rgba(34, 34, 34, 0.95)), url('/api/placeholder/1920/1080') no-repeat center center/cover;
  color: var(--secondary-color);
  padding: 80px 0;
}

.carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.carousel-item {
  min-width: calc(25% - 15px); /* Show 4 items at once on desktop */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  height: 100px;
  background-color: white;
}

.carousel-item:hover {
  transform: translateY(-10px);
}

.carousel-item img {
  width: 100%;
  height: 80px; /* Fixed height for all images */
  object-fit: contain;
  display: block;
}

/* Navigation Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background-color: #B94800;
}

.carousel-arrow-prev {
  left: 5px;
}

.carousel-arrow-next {
  right: 5px;
}

/* Dots Navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .carousel-item {
    min-width: calc(33.333% - 14px); /* Show 3 items at once */
  }
}

@media screen and (max-width: 992px) {
  .carousel-item {
    min-width: calc(50% - 10px); /* Show 2 items at once */
  }
  
  .carousel-item img {
    height: 100px;
    object-fit: contain;
  }
}

@media screen and (max-width: 576px) {
  .carousel-wrapper {
    padding: 0 40px;
  }
  
  .carousel-item {
    min-width: 100%; /* Show 1 item at once */
  }
  
  .carousel-item img {
    height: 100px;
  }
  
  .carousel-arrow {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .dot {
    width: 10px;
    height: 10px;
  }
}

/* Contact Section */
#contact {
    background-color: var(--light-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.info-content p {
    margin-bottom: 5px;
    color: var(--gray-color);
}

.cta-box {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 40px 30px;
    border-radius: 8px;
    margin-top: 50px;
    text-align: center;
}

.cta-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.cta-box p {
    margin-bottom: 25px;
}

.cta-box .btn {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-box .btn:hover {
    background-color: var(--dark-color);
    color: var(--secondary-color);
}

.contact-form {
    background-color: var(--secondary-color);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(207, 83, 0, 0.1);
}

.form-group button {
    width: 100%;
}

/* Footer Styles */
#footer {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #dd221f;
}

.footer-logo h3 span {
    color: white;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-links h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 12px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-primary);
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #B94800;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: none;
}

#back-to-top:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .approach-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 992px) {
    .section-title {
        font-size: 32px;
    }

    #hero {
        height: auto;
        padding: 150px 0 100px;
    }

    .hero-content h1 {
        font-size: 42px;
    }
    .banner-text{
        color: #B47D32;
    }

    .about-content {
        flex-direction: column;
    }

    .about-image {
        margin-top: 40px;
    }

    .about-image img {
        height: auto;
    }

    .experience-badge {
        right: 0;
    }

    .projects-showcase {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    section {
        padding: 70px 0;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid var(--light-gray);
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-buttons .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .team-container {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links h4::after,
    .footer-services h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links,
    .footer-services,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links ul li a:hover,
    .footer-services ul li a:hover {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 28px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        padding: 30px 20px;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-author img {
        margin: 0 auto 15px;
    }

    .info-item {
        flex-direction: column;
        text-align: center;
    }

    .info-icon {
        margin: 0 auto 15px;
    }
}



.stats-section {
  width: 100%;
  padding: 50px 0;
  background-color: #1a1a1a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://source.unsplash.com/random/1920x600/?construction');
  background-size: cover;
  background-position: center;
  position: relative;
}

.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border: 2px solid #333;
  background-color: #1a1a1a;
  overflow: hidden;
}

.stat-item {
  flex: 1;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-content {
  padding: 20px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Default state (dark) */
.stat-item {
  background-color: #1a1a1a;
}

/* First item hover and active state (gold/brown) */
.stat-item:nth-child(1):hover,
.stat-item.active:nth-child(1) {
  background-color: #a67c3d;
}

/* Second item hover and active state (dark gray) */
.stat-item:nth-child(2):hover,
.stat-item.active:nth-child(2) {
  background-color: #2a2a2a;
}

/* Third item hover and active state (darker gray) */
.stat-item:nth-child(3):hover,
.stat-item.active:nth-child(3) {
  background-color: #202020;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1;
}

.suffix {
  font-size: 2.5rem;
}

.stat-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  opacity: 0.5;
}

.stat-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: capitalize;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .stat-number {
    font-size: 3rem;
  }
  
  .suffix {
    font-size: 2rem;
  }
  
  .stat-icon {
    font-size: 2.5rem;
  }
  
  .stat-title {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 768px) {
  .stats-container {
    flex-direction: column;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-top:20px;

  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-content {
    padding: 30px 20px;
  }
  
  .stat-number {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 480px) {
  .stat-content {
    padding: 25px 15px;
  }
  
  .stat-number {
    font-size: 2.8rem;
  }
  
  .suffix {
    font-size: 1.8rem;
  }
  
  .stat-icon {
    font-size: 2.2rem;
  }
  
  .stat-title {
    font-size: 1rem;
  }
}


.map-wrapper {
  width: 100vw;
  height: 500px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0, 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



/* Home Banner Styles with unique class names */
.home-banner {
  position: relative;
  height: 100vh;
  width: 100%;
  background-image: url('/assets/building.jpeg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent overlay */
  z-index: 1;
}

.banner-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.banner-tagline {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 20px;
  color: #CF5300; /* Or your brand color */
  text-transform: uppercase;
}

.banner-headline {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  text-transform: capitalize;
  color: #ffffff;
}

.banner-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 60px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background-color: #CF5300; /* Or your brand color */
  transform: translateY(-5px);
}

/* Responsive Styles */
@media screen and (max-width: 1200px) {
  .banner-headline {
    font-size: 3rem;
  }

  .social-btn {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media screen and (max-width: 992px) {
  .banner-headline {
    font-size: 2.5rem;
  }

  .banner-tagline {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .home-banner {
    height: 90vh;
  }

  .banner-headline {
    font-size: 2rem;
  }

  .banner-social {
    margin-top: 40px;
    gap: 15px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }
}

@media screen and (max-width: 576px) {
  .home-banner {
    height: 80vh;
  }

  .banner-headline {
    font-size: 1.8rem;
  }

  .banner-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  .banner-social {
    margin-top: 30px;
    gap: 10px;
  }

  .social-btn {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .banner-headline {
    font-size: 1.5rem;
  }
}