﻿  body {
            margin: 0;
            padding: 0;
            font-family:Calibri;
            /*overflow-x: hidden;*/
            /*background-image:url('../Images/outline-chennai-india-city-skyline-260nw-1204155598 1_enhanced 1.png');*/
            
        }
       
        
         ::-webkit-scrollbar {
            width: 2px;
        }
        ::-webkit-scrollbar-thumb {
            background: #66bb6a;
            border-radius: 10px;
        }
         .navbar {
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 20px;
            color: white;
            position: sticky;
            top: 0;
            width: 100%;
            background-color: rgb(255 255 255); /* Fully transparent initially */
            backdrop-filter: blur(10px);
            z-index: 9999;
        }
        .nav-links {
            list-style: none;
            display: flex;
            gap: 30px;
            z-index:9999;
        }
        .nav-links li a {
            color: green;
            text-decoration: none;
            font-size: 25px;
            transition: color 0.3s ease-in-out;
        }
        .nav-links li a:hover {
            color: #ef1c1c;
        }
        .logo img {
            width: 120px;
	height: 120px;
        }
        .menu-toggle {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
    .landing-page {
    background-image: url('Images/outline-chennai-india-city-skyline-260nw-1204155598 1_enhanced 1.png'); /* Add your desired background image */
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    color: #fff; /* White text for contrast */
    padding: 100px 20px;  /*Adds space for better readability*/ 
    height:200px;
    width:auto;
}

.animated-text {
  font-size: 3rem;
  font-weight: bold;
  opacity: 0;
  animation: popFadeIn 2s ease-out forwards, glow 2s ease-in-out 2s infinite alternate;
  animation-fill-mode: forwards;
}


@keyframes popFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1.3);
  }
}


/* Glow effect (optional but looks nice) */
@keyframes glow {
  from {
    text-shadow: 0 0 10px #fff, 0 0 20px #00f6ff, 0 0 30px #00f6ff;
  }
  to {
    text-shadow: 0 0 20px #fff, 0 0 40px #00f6ff, 0 0 60px #00f6ff;
  }
}


       .animation-container {
    position: absolute;
    bottom: 0;
    left: 0;
    top:545px;
    width: 100%;
    height: 60px; /* Road height */
    background-color: #2c2c2c; /* Dark grey for road */
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
}

.road {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 4px;
    background: repeating-linear-gradient(
        90deg,
        #fff 0,
        #fff 30px,
        transparent 30px,
        transparent 60px
    ); /* White dashed road lines */
    animation: roadMove 5s linear infinite;
}

/* Delivery Boy Animation */
.delivery-boy {
    position: absolute;
    bottom: 10px;
    left: -100px; /* Start off-screen */
    width: 150px;
    animation: deliveryMove 8s linear infinite;
}

/* Road Moving Animation */
@keyframes roadMove {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Delivery Boy Moving Animation */
@keyframes deliveryMove {
    from {
        transform: translateX(-100px);
    }
    to {
        transform: translateX(100vw);
    }
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .landing-page {
        height: 250px;
        padding: 60px 15px;
    }

    .delivery-boy {
        width: 70px; /* Smaller size for mobile */
        bottom: 5px;
    }

    .animation-container {
        height: 40px; /* Smaller road size for mobile */
    }
    .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 10px;
}
    .animation-container {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 545px;
    width: 100%;
    height: 60px;
    background-color: #2c2c2c;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
}
}

       @media (max-width: 768px) {
    .landing-page {
        background-size: contain; /* Ensures the full image is visible */
        height: 250px; /* Adjusts height for smaller screens */
        padding: 25px 15px; /* Reduces padding for better content spacing */
    }
    .grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding: 10px;
}
    .animation-container {
    position: absolute;
    bottom: 0;
    left: 0;
    top: 385px;
    width: 100%;
    height: 30px;
    background-color: #2c2c2c;
    box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.5);
}
    .heading h1 {
        font-size: 2rem; /* Scales heading for mobile readability */
        line-height: 1.4; /* Improved line spacing */
    }

    .heading p {
        font-size: 1rem; /* Smaller text size for mobile */
        max-width: 100%; /* Uses full width for better layout */
    }

    .land-img {
        max-width: 80%; /* Scales image proportionally */
        margin-top: 15px;
    }
}
        .heading {
            width: 50%;
            animation: fadeInLeft 1.5s ease-in-out;
        }
        .land-img {
            width: 40%;
            animation: fadeInRight 1.5s ease-in-out;
        }
       .land-img:hover {
            transform:scale(1.2);
            transition:step-end;
        }
        @keyframes fadeInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
       
      
        h1 {
        font-size:55px;
        color:green;
        }
p {
color:green;
}
        .land-img {
  width: 320px; /* Adjust to the size of your image */
  height: auto;
  animation: bounce 2s ease-in-out infinite;
  display: block;
  margin: 0 auto;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0); /* Start and end at the normal position */
  }
  50% {
    transform: translateY(-30px); /* Move 30px up */
  }
}
@keyframes waveMotion {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animated-background {
    position: relative;
    height: 100vh;
    /*background: linear-gradient(135deg, #0a3320, #0b3d22, #145a32);*/
    background-size: 1200% 1200%;
   
    animation: waveMotion 10s ease-in-out infinite;
    overflow-y: scroll;
    overflow-x: hidden;
}

/* Ensure canvas stays behind the content */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.header-image {
    position: relative;
    height: 100px;
    background-image: url('Images/header.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.buttons-container {
    display: flex;
    gap: 20px;
}

.home-button,
.current-link-button {
    padding: 10px 20px;
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.home-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.current-link-button {
    background-color: #28a745; /* Active/current button */
    border-color: #28a745;
}

.current-link-button:hover {
    background-color: #45b85b;
    transform: scale(1.1);
}

.home-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

  .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            /*background: linear-gradient(-45deg, #1b5e20, #388e3c, #66bb6a, #2e7d32);*/
            background-size: 1000% 1000%;
            animation: bgAnimation 6s infinite alternate ease-in-out;
            z-index: -1;
        }
        @keyframes bgAnimation {
            0% { background-position: 0% 50%; }
            100% { background-position: 100% 50%; }
        }
        .container {
            width: 70%;
            background-color: transparent;
            margin: 30px auto;
            padding: 40px;
           
            position: relative;
            border-radius: 10px;
        }
        .header {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #e6e6e6 45%, #ffffff00 31%);
            padding: 20px;
            margin-bottom: 20px;
        }
        .header h1 {
            font-size: 50px;
            font-weight: bold;
            margin: 0;
            text-align:left;
        }
        .intro {
            font-weight: bold;
            font-size: 18px;
             color:white;
        }
        .content {
            font-size: 16px;
            color:white;
            line-height: 1.6;
        }
        .image-container {
            text-align: center;
            margin: 20px 0;
        }
        .image-container img {
            width: 100%;
            max-width: 725px;
            border-radius: 5px;
        }
   

.stat-item strong {
    font-size: 24px;
    color: #6a0dad;
}



        .graphic {
            position: absolute;
            bottom: 10px;
            right: 20px;
        }
        .graphic img {
            width: 600px;
        }

         .about-section {
            background-color: #f4f4f4;
            padding: 50px 20px;
        }
        .about-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 20px;
        }
        .icon-box {
            text-align: center;
            transition: transform 0.3s ease-in-out;
        }
        .icon-box:hover {
            transform: scale(1.1);
        }
        .image-section {
            padding: 30px;
        }
        .image-section img {
            max-width: 100%;
            height: auto;
            animation: floatAnimation 3s infinite alternate;
        }
        @keyframes floatAnimation {
            from {
                transform: translateY(0px);
            }
            to {
                transform: translateY(-10px);
            }
        }
        @media (max-width: 768px) {
            .about-icons {
                flex-direction: column;
                align-items: center;
            }
        }
        .container {
  width: 80%; /* or any specific width */
  margin: 0 auto; /* This centers the container horizontally */
  text-align: center;
  height:auto; /* Optional: Center text inside the container */
}
        .whathead {
        text-align:center;
        color:green;
        font-size:30px;
        }
        .points4 {
        text-align:left;
        color:white;
        font-size:22px;
        font-family:'Zoho Puvi';
        
        padding:10px;
       
        width:auto;
        }
        /* Basic styles for the list */
.services-list {
   list-style-type: none;  /* Removes default bullet points */
   padding: 0;  /* Removes padding */
   margin: 0;  /* Removes margin */
   font-family: Arial, sans-serif;
   color: green;  /* Font style */
}

.services-list li {
   display: flex;  /* Flexbox layout for alignment */
   align-items: center;  /* Align items vertically */
   margin-bottom: 15px;  /* Space between list items */
   font-size: 20px;  /* Set text size */
   line-height: 1.6;  /* Line height for better readability */
}

.services-list li i {
   font-size: 30px;  /* Size of the icon */
   color: red;  /* Icon color */
   margin-right: 15px;  /* Space between icon and text */
}

.services-list li:last-child {
   margin-bottom: 0;  /* Removes bottom margin for the last item */
}

/* Responsive styling */
@media (max-width: 600px) {
   .services-list li {
      font-size: 14px;  /* Smaller text size on small screens */
   }

   .services-list li i {
      font-size: 18px;  /* Smaller icon size on small screens */
   }
}
/* Container for the boxes */
/* Container for the boxes */
.box3 {
   display: flex;  /* Align the boxes horizontally */
   justify-content: space-between;  /* Distribute the boxes evenly */
   gap: 15px;  /* Space between boxes */
   margin: 20px 0;
     padding-top:0;
        padding-left:100px;
        padding-right:100px;
        padding-bottom:0px;  /* Margin around the container */
}

/* Common style for all boxes */
.box {
   flex: 1;  /* Make each box take equal space */
   padding: 20px;  /* Add padding inside the boxes */
   text-align: center;  /* Center the text inside each box */
   font-size: 18px;  /* Set font size */
   font-weight: bold;  /* Make text bold */
   border-radius: 10px;  /* Rounded corners */
   color: white;  /* Text color */
   display: flex;
   flex-direction: column;  /* Align the icon and text vertically */
   justify-content: center;
   align-items: center;
   height: 120px;  /* Set fixed height */
   box-sizing: border-box;  /* Ensure padding is included in the box size */
}

/* On Time box - green gradient */
.ontime {
   background: linear-gradient(145deg, #4CAF50, #388E3C);  /* Green gradient */
}

/* Good Reputation box - slightly different green gradient */
.good {
   background: linear-gradient(145deg, #66BB6A, #388E3C);  /* Lighter green gradient */
}

/* Order Consistency box - darker green gradient */
.order {
   background: linear-gradient(145deg, #81C784, #388E3C);  /* Darker green gradient */
}

/* Icon styles */
.box i {
   font-size: 30px;  /* Set icon size */
   margin-bottom: 10px;  /* Space between icon and text */
}

/* Text styles for better alignment */
.box p {
   margin: 0;  /* Remove default margin for p */
   font-size: 16px;  /* Adjust font size */
}
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}


 .footer {
            background: linear-gradient(135deg, #004526, #1B4D3E);
            color: white;
            padding: 50px 20px;
            position: relative;
            overflow: hidden;
        }
        .footer-container {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            max-width: 1100px;
            margin: auto;
            flex-wrap: wrap;
        }
        .footer-column {
            flex: 1;
            padding: 0 20px;
            min-width: 250px;
        }
        .footer h3 {
            margin-bottom: 15px;
            border-bottom: 2px solid white;
            display: inline-block;
            padding-bottom: 5px;
        }
        .contact-item {
            display: flex;
            align-items: center;
            margin: 10px 0;
            color:white !important;
        }
.contact p {
color:white;
}
        .icon {
            width: 40px;
            height: 40px;
            background: rgb(255 255 255);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
        }
        .icon i {
            color: white;
            font-size: 18px;
        }
        .quick-links a {
            color: white;
            text-decoration: none;
            display: block;
            margin: 8px 0;
            transition: 0.3s;
            font-size:25px;
            text-align: left;
        }
        .quick-links a:hover {
            color: #f1c40f;
        }
        .company {
            text-align: center;
            margin-top: 30px;
            font-size: 14px;
            opacity: 0.8;
        }
        /* Map Styling */
        .map-container {
            width: 100%;
            max-width: 400px;
            height: 250px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        }
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        /* Background Animation */
        .footer::before, .footer::after {
            content: "";
            position: absolute;
            width: 100px;
            height: 100px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: moveCircles 8s infinite linear alternate;
        }
        .footer::before {
            top: -30px;
            left: -30px;
        }
        .footer::after {
            bottom: -30px;
            right: -30px;
        }
        @keyframes moveCircles {
            0% { transform: translate(0, 0); }
            100% { transform: translate(20px, 20px); }
        }
        

        .whywe {
    padding: 50px 0;
    text-align: center;
    /*background: linear-gradient(135deg, #0a3320, #0b3d22, #145a32);*/
    animation: waveMotion 10s ease-in-out infinite;
    animation: bgAnimation 6s infinite alternate ease-in-out;
    color:#057f4a;
}
.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: justify;
}
.left-content, .right-content {
    flex: 1;
    max-width: 100%;
}
.item {
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.item i {
    font-size: 30px;
    margin-right: 15px;
    color: #007bff;
}
.item p {
    font-size: 18px;
    color: #057f4a;
}
.image-wrapper {
    flex: 1;
    text-align: center;
}
.image-wrapper img {
    max-width: 80%;
    height: auto;
    border-radius: 10px;
}
/* RESPONSIVE DESIGN */
@media (min-width: 380px) and (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .left-content, .right-content {
        max-width: 100%;
        text-align: center;
        padding: 10px;
    }

    .image-wrapper {
        order: -1; /* Moves image above text */
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .image-wrapper img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .item {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        padding: 10px;
    }

    .item i {
        font-size: 24px;
        margin-right: 10px;
        color: #007bff;
    }

    .item p {
        font-size: 16px;
        margin: 0;
        flex: 1;
    }
}


.why-we-do {
    
    padding: 50px 20px;
    text-align: center;
    position: relative;
}

/* Green Angles */
.why-we-do::before, .why-we-do::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background: #4caf50;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.why-we-do::before {
    top: 0;
    left: 0;
}

.why-we-do::after {
    bottom: 0;
    right: 0;
}

/* Title */
.section-title {
    font-size: 28px;
    font-weight: bold;
    color: green;
    margin-bottom: 20px;
}

/* Content Layout */
.content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.image-box {
    flex: 1;
    max-width: 40%;
    padding: 10px;
}

.image-box img {
    width: 100%;
    border-radius: 10px;
    
}

.text-box {
    flex: 1;
    max-width: 55%;
    text-align: left;
}

.text-box p {
    font-size: 18px;
    color: green;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Founder Section */
.founder-title {
    font-size: 24px;
    font-weight: bold;
    color: green;
    margin-bottom: 15px;
}

.founder-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.founder-text {
    flex: 1;
    max-width: 60%;
    text-align: left;
}

.founder-text p {
    font-size: 18px;
    color: green;
    line-height: 1.6;
}

/* Green Highlight Box */
.highlight-box {
    flex: 1;
    max-width: 35%;
    background: #4caf50;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.highlight-box h4 {
    font-size: 24px;
    font-weight: bold;
}

.highlight-box p {
    font-size: 16px;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }

    .image-box, .text-box {
        max-width: 100%;
    }

    .text-box {
        text-align: center;
    }

    .founder-section {
        flex-direction: column;
        text-align: center;
    }

    .founder-text {
        max-width: 100%;
    }

    .highlight-box {
        max-width: 80%;
        margin-top: 20px;
    }
}

.section-did {
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

       

       .content-did {
            width: 50%;
            color: green;
            font-size: 16px;
            font-weight: 600;
            padding-left: 20px;
            animation: slideIn 1s ease-out forwards;

        }
        @keyframes slideIn {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }
            100% {
                transform: translateX(0);
                opacity: 1;
            }
        }
        .heading {
             
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    /* margin-bottom: 30px; */
    width: auto;
    margin-top: 131px;
    text-align: center;
}
            
        }

        .avatar {
               width: 500px;
    height: 400px;
    /* border-radius: 50%; */
    display: block;
    margin-right: 20px;
    object-fit: cover;
   /* Fallback background */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container-did {
                flex-direction: column;
                align-items: center;
                padding: 20px;
            }

            .content {
                width: 90%;
                text-align: center;
                padding-left: 0;
            }

            .avatar {
                width: 300px;
                height: 300px;
                margin-right: 0;
                margin-bottom: 20px;
            }
            .section-did {
            width: 10%;
            height: 10%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }
        }

         
@media (min-width: 768px) and (max-width: 992px){
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 105px;
        left: 0;
        background: rgb(255 255 255);
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .landing-page {
                flex-direction: column;
                text-align: center;
            }
            .heading, .land-img {
                width: 100%;
            }

             .section-did {
            width: 100%;
            height: 40%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

                .box3 {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        margin: 20px 0;
        padding-top: 0;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 80px;
        flex-direction: column;
    }
                .contact-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-direction: column;
}
    .container-did {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-radius: 10px;
        padding: 30px;
        box-sizing: border-box;
        flex-direction: column;
    }
    .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: justify;
    flex-direction: column;
}
    .stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    text-align: center;
    opacity: 0;
    flex-direction: column;
}
     .footer-container {
                flex-direction: column;
                text-align: left;
                align-items: center;
            }
               .footer-column {
        width: 100%;
        margin-bottom: 20px;
        text-align: left;
        font-size: 35px;
    }
                .contact-item {
        justify-content: left;
        font-size: 25px;
    }
            .map-container {
                margin: auto;
            }
            .quick-links a {
    color: white;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: 0.3s;
    font-size: 40px;
    text-align: left;
}

}
@media (min-width: 375px) and (max-width: 767px) {
       .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100px;
        left: -15px;
        background: rgb(255 255 255);
        width: 100%;
        text-align: center;
        padding: 10px 0px;
    }

        .nav-links.active {
            display: flex;
        }

    .menu-toggle {
        display: block;
    }

    .landing-page {
        flex-direction: column;
        text-align: center;
    }

    .heading, .land-img {
        width: 100%;
    }

    .box3 {
        display: flex;
        justify-content: space-between;
        gap: 15px;
        margin: 20px 0;
        padding: 20px;
        
        flex-direction: column;
    }

    .container-did {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        border-radius: 10px;
        padding: 30px;
        box-sizing: border-box;
        flex-direction: column;
    }
    .container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding:0;
    text-align: justify;
    flex-direction: column;
}
    .contact-wrapper {
    display: flex;
    max-width: 1100px;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    flex-direction: column;
}
    .stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    text-align: center;
    opacity: 0;
    flex-direction: column;
}
     .footer-container {
                flex-direction: column;
                text-align: left;
                align-items: center;
            }
            .footer-column {
                width: 90%;
                margin-bottom: 20px;
                text-align: left;
            }
            .contact-item {
                justify-content: left;
            }
            .map-container {
                margin: auto;
            }
}


