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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #d35400;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Back to Top Button */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #d35400;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    transition: background-color 0.3s;
}

#backToTop:hover {
    background-color: #e67e22;
}

/* Navbar */
header {
    background-color: rgba(51, 51, 51, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: #d35400;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d35400;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/images/hero-image.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.5s;
}

.cta-button {
    background-color: #d35400;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about {
    padding: 100px 30px;
    background-color: #fff;
}

.about .container {
    max-width: 1200px;
    margin: auto;
}

.about h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-content img {
    flex: 1;
    min-width: 300px; /* Ensures a minimum width for smaller images */
    max-width: 100%; /* Ensures the image does not exceed the container's width */
    height: auto; /* Maintains the aspect ratio of the image */
    border-radius: 10px; /* Keeps the rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a shadow for depth */
    animation: fadeInLeft 1s ease-out; /* Keeps the fade-in animation */
}


.about-text {
    flex: 2;
    animation: fadeInRight 1s ease-out;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.core-values {
    margin-top: 40px;
    
}

.core-values h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.core-values ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.core-values li {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.core-values i {
    color: #d35400;
    margin-right: 10px;
}

@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); }
}

/* Services Section */
.services {
    background-color: #f9f9f9;
    background: url('../assets/images/testimonial.jpg') center/cover no-repeat;

}

.services .container {
    max-width: 1200px;
    margin: auto;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1s ease-out;
}

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

.service-card i {
    font-size: 3rem;
    color: #d35400;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Projects Section */
.projects {
    padding: 100px 30px;
    background-color: #fff;
}

.projects .container {
    max-width: 1200px;
    margin: auto;
}

.projects h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.filters {
    text-align: center;
    margin-bottom: 30px;
}

.filter-btn {
    background-color: #ddd;
    border: none;
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 50px;
    transition: background-color 0.3s, color 0.3s;
    font-size: 1rem;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #d35400;
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.project-info {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    color: #fff;
    padding: 15px;
    text-align: left;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.project-item:hover .project-info {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    background: url('../assets/images/testimonial.jpg') center/cover no-repeat;
    padding: 100px 30px;
}

.testimonials .container {
    max-width: 800px;
    margin: auto;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.testimonials-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
}

.testimonial-item {
    min-width: 100%;
    opacity: 0;
    transition: opacity 1s;
    text-align: center;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-item p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-item h4 {
    font-size: 1rem;
    color: #d35400;
}

/* Contact Section */
.contact {
    padding: 100px 30px;
    background-color: #fff;
}

.contact .container {
    max-width: 1200px;
    margin: auto;
}

.contact h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.contact-info address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
}

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

.social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d35400;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-group span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d35400;
    outline: none;
}

.error {
    color: red;
    font-size: 0.9rem;
    display: none;
    position: absolute;
    bottom: -18px;
    left: 0;
}

.form-message {
    margin-top: 10px;
    font-size: 1rem;
    color: green;
}

.contact button {
    background-color: #d35400;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.contact button:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
    }

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

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

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

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


















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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #d35400;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Back to Top Button */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #d35400;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    transition: background-color 0.3s;
}

#backToTop:hover {
    background-color: #e67e22;
}

/* Navbar */
header {
    background-color: rgba(51, 51, 51, 0.9);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

.logo span {
    color: #d35400;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d35400;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 5px;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('../assets/images/hero-image.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: slideInDown 1s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.5s;
}

.cta-button {
    background-color: #d35400;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* About Section */
.about, .services-page, .projects-page, .contact-page {
    padding: 100px 30px;
}

.about .container, .services-page .container, .projects-page .container, .contact-page .container {
    max-width: 1200px;
    margin: auto;
}

.about h2, .services-page h2, .projects-page h2, .contact-page h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.about-content, .services-detail, .projects-detail, .contact-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.about-content img, .project-detail-item img, .services-detail .service-category img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInLeft 1s ease-out;
}

.about-text, .project-detail-info, .services-detail .service-category {
    flex: 2;
    animation: fadeInRight 1s ease-out;
}

.about-text p, .project-detail-info p, .services-detail .service-category p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.core-values, .certifications {
    margin-top: 40px;
}

.core-values h3, .certifications h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
}

.core-values ul, .certifications-grid {
    list-style: none;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.core-values li, .certification-item {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
}

.core-values i, .certification-item i {
    color: #d35400;
    margin-right: 10px;
}

.certification-item {
    text-align: center;
    margin-bottom: 20px;
}

.certification-item img {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px;
}

.service-category {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s;
}

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

.service-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.service-category p {
    font-size: 1rem;
    color: #555;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.certification-item p {
    font-size: 1rem;
    color: #555;
}

/* Projects Section */
.projects-grid, .projects-detail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.project-detail-item img {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-detail-info {
    flex: 2;
    animation: fadeInRight 1s ease-out;
}

.project-detail-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.project-detail-info p {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

/* Adjusted Testimonials Section */
.testimonials {
    padding: 100px 30px;
    background-color: #f9f9f9;
}

.testimonials .container {
    max-width: 800px;
    margin: auto;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-item {
    position: absolute; /* Ensure testimonials stack on top of each other */
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
    padding: 20px;
    width: 100%; /* Ensure all items take full width */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Ensure text and heading align properly */
}

.testimonial-item.active {
    opacity: 1; /* Only the active testimonial is visible */
    position: relative; /* Adjust positioning when active */
}

.testimonial-item p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-item h4 {
    font-size: 1rem;
    color: #d35400;
}

/* Contact Section */
.contact-page .contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.contact-info address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
}

.social-links a {
    color: #333;
    margin-right: 15px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #d35400;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

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

.form-group label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}

.form-group span {
    color: red;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #d35400;
    outline: none;
}

.error {
    color: red;
    font-size: 0.9rem;
    display: none;
    position: absolute;
    bottom: -18px;
    left: 0;
}

.form-message {
    margin-top: 10px;
    font-size: 1rem;
    color: green;
}

.contact button {
    background-color: #d35400;
    color: #fff;
    padding: 15px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.3s;
}

.contact button:hover {
    background-color: #e67e22;
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        display: none;
    }

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

    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }

    .hamburger {
        display: flex;
    }

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

    .about-content, .project-detail-item {
        flex-direction: column;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

@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); }
}

































/* General styles for the projects section */
.projects-page {
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.projects-page h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.projects-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.project-detail-item {
    flex: 1 1 calc(33.33% - 20px); /* Three items per row on larger screens */
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.project-detail-item:hover {
    transform: translateY(-5px);
}

.project-detail-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-detail-info {
    padding: 15px;
}

.project-detail-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #222;
}

.project-detail-info p {
    margin-bottom: 8px;
    color: #555;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .project-detail-item {
        flex: 1 1 calc(50% - 20px); /* Two items per row on medium screens */
    }
}

@media (max-width: 768px) {
    .project-detail-item {
        flex: 1 1 100%; /* One item per row on smaller screens */
    }

    .projects-page h2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .project-detail-info {
        padding: 10px;
    }

    .project-detail-info h3 {
        font-size: 1rem;
    }

    .project-detail-info p {
        font-size: 0.9rem;
    }
}