/* Hero Section Styles (unchanged from your provided CSS) */
.hero-section {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url('/assests/images/construction-field.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section nav {
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.hero-section nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-section nav a:hover {
    color: #ffc107;
    text-decoration: underline;
}

.hero-section nav span {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0.25rem;
}

.hero-section nav span:last-child {
    color: #ffc107;
    font-weight: 600;
}

/* About Content Section Styles */
.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.col-left,
.col-right {
    flex: 1;
    min-width: 300px;
}

/* Left Column - Image Section */
.image-container {
    position: relative;
    overflow: hidden;
    padding: 40px 0 0 40px;
    min-height: 400px;
}

.main-image {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 0;
    bottom: 0;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    padding: 12px 12px 12px 0;
    z-index: 2;
}

.experience-content {
    background: var(--primary-color);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.experience-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 5px;
    line-height: 1;
}

.experience-years {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-text {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1;
}

/* Right Column - Content Section */
.content-section {
    height: 100%;
}

.section-header {
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
    margin-bottom: 30px;
}

.section-subtitle {
    color: #6c757d;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.content-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.features-section {
    border-top: 2px solid #e9ecef;
    margin-top: 30px;
    padding-top: 30px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-text {
    font-weight: 600;
    color: #333;
    margin: 0;
    font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-up.delay-1 {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.fade-in-up.delay-5 {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

.fade-in.delay-1 {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.fade-in.delay-3 {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

.fade-in.delay-5 {
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .row {
        flex-direction: column;
    }

    .image-container {
        padding: 30px 0 0 30px;
        min-height: 300px;
    }

    .main-image {
        top: 30px;
        left: 30px;
        width: calc(100% - 30px);
        height: calc(100% - 30px);
    }

    .experience-badge {
        width: 150px;
        height: 150px;
    }

    .experience-number {
        font-size: 2.5rem;
    }

    .experience-years {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .experience-badge {
        width: 120px;
        height: 120px;
    }

    .experience-number {
        font-size: 2rem;
    }

    .experience-years {
        font-size: 1.1rem;
    }
}

/* Team Section Styles (updated for Remix Icons) */
.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.team-section .team-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.team-section .team-intro {
    position: relative;
    border-left: 5px solid var(--primary-color);
    padding-left: 20px;
}

.team-section .team-label {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding-left: 20px;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin: 0;
    padding-left: 20px;
}

.team-section .team-description p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

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

.team-section .team-member {
    background: #f8f9ff;
    border-radius: 20px;
    padding: 40px 25px 35px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-section .team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-section .member-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.team-section .member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.team-section .member-info {
    padding: 0;
    background: transparent;
}

.team-section .member-info .member-role {
    display: block;
    color: #8b7ed8;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-section .member-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.team-section .social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-section .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-section .social-link.facebook {
    background-color: #3b5998;
    color: white;
}

.team-section .social-link.twitter {
    background-color: #1da1f2;
    color: white;
}

.team-section .social-link.linkedin {
    background-color: #0077b5;
    color: white;
}

.team-section .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        height: 300px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section nav {
        font-size: 1rem;
        flex-wrap: wrap;
    }

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

    .about-content .col-lg-6 {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .about-content .image-wrapper {
        min-height: 300px;
    }

    .about-content .experience-box {
        width: 150px;
        height: 150px;
    }

    .about-content .experience-content h1 {
        font-size: 2rem;
    }

    .about-content .experience-content h2 {
        font-size: 1.2rem;
    }

    .about-content .experience-content h5 {
        font-size: 0.9rem;
    }

    .about-content .section-title h1 {
        font-size: 2rem;
    }

    .about-content .feature-item {
        flex: 1 1 100%;
    }

    .team-section .team-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-section .team-intro::before {
        display: none;
    }

    .team-section .team-label,
    .team-section h2 {
        padding-left: 0;
    }

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

    .team-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section nav {
        font-size: 0.9rem;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-content .section-title h1 {
        font-size: 1.8rem;
    }

    .team-section {
        padding: 60px 0;
    }

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

    .team-section .team-member {
        padding: 25px 15px 20px;
    }

    .team-section .member-image {
        width: 100px;
        height: 100px;
    }
}