.hero {
        background-color: #ffffff;
        color: white;
        padding: 60px 20px;
        text-align: center;
    }

    .hero h1 {
        color: #F25A29; /* Logo color */
       
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 40px;
    }

 .service-panels {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.panel {
    background-color: #383b3f; /* Dark background color */
    color: white; /* Text color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(33.33% - 20px); /* Ensures 3 panels per row */
    min-width: 280px; /* Minimum width for responsiveness */
    margin: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20vh;/* height: 250px; Equal height for panels */
}

.panel h3 {
    margin-bottom: 15px;
    color: #F25A29; /* Header color */
    font-size: 24px;
}

.panel p {
    font-size: 16px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .panel {
        flex: 1 1 100%; /* Stacks panels vertically on mobile */
        height: auto; /* Adjusts height for smaller screens */
        margin: 10px 0; /* Add some margin for spacing on mobile */
    }
}






    .cta-button {
        margin-top: 30px;
        display: inline-block;
        padding: 15px 30px;
        background-color: #F25A29;
        color: white;
        font-size: 18px;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #d94e23;
    }

    /* Responsive adjustments for smaller screens */
    @media (max-width: 1024px) {
        .panel {
            width: 48%; /* Stack two panels per row */
            margin-bottom: 20px;
        }
    }

    @media (max-width: 768px) {
        .panel {
            width: 100%; /* Stack one panel per row on small screens */
        }
    }
 .section-dark {
        background-color: #212529;
        height: 10px;
        color: white;
       
    }

    .triangle-divider {
        width: 100%;
        height: 100px;
        background-color: #F25A29;
        clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    }

.about-us {
    
    padding: 60px 20px; /* Padding for spacing */
    color: black; /* Text color */
    text-align: center; /* Centered text */
   background-color: #ffffff;
}

.about-us::before {
   
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
   
}

.about-content {
 

    margin: auto; /* Center the content */
    padding: 20px; /* Padding for content spacing */
    background-color: #ffffff; /* Panel background color */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); /* Shadow for depth */
}

.about-content h2 {
    color: #F25A29; /* Header color */
    font-size: 36px; /* Font size */
    margin-bottom: 20px; /* Space below header */
}

.about-content p {
    font-size: 18px; /* Font size for paragraph */
    margin-bottom: 15px; /* Space below paragraph */
}

strong {
    color: #F25A29; /* Emphasized text color */
}

 

  .contact-info {
        background-color: #ffffff; /* Dark background to match About Us section */
        padding: 60px 20px;
        color: white;
        text-align: center;
    }

    .contact-content {
        
        margin: 0 auto;
        padding: 20px;
        background: #383b3f;
        border-radius: 10px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

   

    .phone-container {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 20px 0;
    }

    .phone-container i {
         /* Adjust icon size */
        color: #212529; /* Icon color matching the brand */
        margin-right: 10px; /* Space between icon and phone number */
    }

    .phone-number {
       
        font-weight: bold;
        margin: 0; /* Remove margin for better alignment */
        color: #212529; /* Logo color for phone number */
    }

.work-gallery {
    padding: 60px 20px;
    text-align: center;
    background-color: #212529; /* Dark background */
    color: white;
}

.work-gallery h2 {
    color: #F25A29; /* Brand color for the heading */
    font-size: 36px;
    margin-bottom: 40px;
}

.gallery-row {
    display: flex;
    flex-wrap: wrap; /* Ensures wrapping on smaller screens */
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-item {
    flex: 1 1 22%; /* Flex item with 22% width on desktop */
    margin: 10px;
    max-width: 22%; /* Ensures 4 items fit across the row */
    text-align: center;
}

.gallery-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05); /* Subtle zoom effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.7);
}

.gallery-item p {
    margin-top: 10px;
    color: #F25A29; /* Brand color for text under images */
    font-size: 16px;
}

/* Make it responsive for tablets */
@media (max-width: 1024px) {
    .gallery-item {
        flex: 1 1 45%; /* 2 items per row for tablet view */
        max-width: 45%; /* Adjusts the size of each image */
    }
}

/* For mobile phones */
@media (max-width: 768px) {
    .gallery-item {
        flex: 1 1 100%; /* Ensures 1 item per row on mobile */
        max-width: 100%; /* Full width for small screens */
        margin: 10px 0; /* Adjust the vertical margin */
    }
}
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-text {
    color: #f25a29;
    font-weight: bold;
    font-size: 24px; /* Adjust size if needed */
}
.txtred{
color: #f25a29;
}
 .btn-danger {
            background-color: #f25a29; /* Set the button's background color to #f25a29 */
         
        }

        .btn-ourred:hover {
            background-color: #d14423; /* Darker shade of red on hover */
        }

.contact {
    padding: 60px 20px;
    text-align: center;
    background-color: #f25a29; /* red background */
    color: white;
}
.bg-dang {
            background-color: #f25a29; /* Set the button's background color to #f25a29 */
         
        }

.footer a {
	text-decoration: none;
	color: #ffffff;
}