/**
 * CIREF - Home Page Styles
 * Hero section, services, partners, about, projects, testimonials, contact sections
 */

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, #40528f 0%, #313746 100%);
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 50px 100px;
    gap: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(39, 174, 96, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(39, 174, 96, 0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.1); }
}

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

.hero-content h1 {
    font-size: 56px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content .highlight {
    color: #27ae60;
}

.hero-content p {
    color: #cbd5e0;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-button {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

.hero-button i {
    transition: transform 0.3s;
}

.hero-button:hover i {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.worker-circle {
    margin-top: 200px;
    margin-bottom: 10px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 2px solid rgba(39, 174, 96, 0.3);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.worker-circle .worker-image img {
    width: 100%;
    height: auto;
    border-radius: 39%;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.worker-circle::before,
.worker-circle::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(39, 174, 96, 0.2);
}

.worker-circle::before {
    width: 500px;
    height: 500px;
    border: 2px solid #6a80aaf1;
}

.worker-circle::after {
    width: 550px;
    height: 550px;
    border: 2px solid rgba(165, 114, 72, 0.863);
}

.worker-image {
    width: 380px;
    height: 450px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 80px;
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(39, 174, 96, 0.4);
}

.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot-pattern {
    position: absolute;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(39, 174, 96, 0.3) 2px, transparent 2px);
    background-size: 15px 15px;
}

.dot-pattern:nth-child(1) {
    top: 20%;
    left: 60%;
}

.dot-pattern:nth-child(2) {
    bottom: 30%;
    left: 55%;
}

.arrow-decoration {
    position: absolute;
    top: 25%;
    left: 45%;
    width: 120px;
    height: 80px;
}

.arrow-path {
    stroke: rgba(255, 255, 255, 0.3);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
}

.nav-arrows {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-arrow:hover {
    background-color: rgba(39, 174, 96, 0.8);
    border-color: #27ae60;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 10;
}

.scroll-indicator::before {
    content: "\f0ab";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    font-size: 24px;
    color: #27ae60;
}

.scroll-text {
    font-size: 10px;
    color: #2c3e50;
    text-align: center;
    margin-top: 5px;
    font-weight: bold;
}

/* ===== PARTNERS SECTION ===== */
.partners {
    background-color: #f8f9fa;
    padding: 40px 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #2c3e50;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.partner-logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.partner-logo:hover {
    opacity: 1;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
    gap: 40px;
    align-items: center;
}

.marquee-content:hover {
    animation-play-state: paused;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 80px 50px;
    background: #f8fafc;
}

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

.section-title {
    text-align: center;
    font-size: 48px;
    margin-bottom: 60px;
    color: #1e293b;
}

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

.service-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-icon {
    font-size: 60px;
    color: #27ae60;
    margin-bottom: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-link {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.service-link:hover {
    color: #229954;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 100px 50px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-content .highlight {
    color: #27ae60;
}

.about-content p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 5px;
}

.stat-label {
    color: #64748b;
    font-size: 14px;
}

.about-image {
    position: relative;
}

.about-main-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-floating-cards {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 200px;
}

.floating-card h4 {
    color: #1e293b;
    margin-bottom: 5px;
    font-size: 16px;
}

.floating-card p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

/* ===== RECENT PROJECTS SECTION ===== */
.recent-projects {
    padding: 100px 50px;
    background: #f8fafc;
}

.recent-projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.header-left {
    flex: 1;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #27ae60;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-label i {
    font-size: 16px;
}

.recent-projects-header h2 {
    font-size: 42px;
    color: #1e293b;
    margin: 0;
}

.view-all-btn {
    background: #1e293b;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.view-all-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.recent-projects-wrapper {
    position: relative;
}

.recent-projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Carousel Dots */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #27ae60;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #27ae60;
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: rgba(39, 174, 96, 0.5);
}

.recent-project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.recent-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.recent-project-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 60px;
    position: relative;
    overflow: hidden;
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.recent-project-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.recent-project-card:hover .recent-project-content {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-5px);
}

.recent-project-content h3 {
    font-size: 18px;
    color: #1e293b;
    margin: 0;
    flex: 1;
    font-weight: 600;
    line-height: 1.3;
}

.project-arrow {
    width: 42px;
    height: 42px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
}

.recent-project-card:hover .project-arrow {
    background: #229954;
    transform: scale(1.1);
}

.project-arrow i {
    transition: transform 0.3s ease;
}

.recent-project-card:hover .project-arrow i {
    transform: translateX(3px);
}

/* ===== BLOG PREVIEW SECTION ===== */
.blog-preview {
    padding: 100px 50px;
    background: white;
}

.blog-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.blog-preview-header h2 {
    font-size: 42px;
    color: #1e293b;
    margin: 0;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-preview-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.blog-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.blog-preview-image {
    height: 200px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
    position: relative;
    overflow: hidden;
}

.blog-preview-content {
    padding: 30px;
}

.blog-preview-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #94a3b8;
}

.blog-preview-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-preview-meta i {
    color: #27ae60;
}

.blog-preview-content h3 {
    font-size: 20px;
    color: #1e293b;
    margin-bottom: 12px;
    font-weight: 600;
    line-height: 1.4;
}

.blog-preview-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 15px;
}

.read-more {
    color: #27ae60;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: #229954;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 100px 50px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.testimonials-header p {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-text {
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.author-info h4 {
    margin-bottom: 5px;
}

.author-info p {
    color: #cbd5e1;
    font-size: 14px;
    margin: 0;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 50px;
    background: #f8fafc;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    color: #1e293b;
    margin-bottom: 20px;
}

.contact-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-icon {
    padding: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.contact-text h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-text p {
    color: #64748b;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

/* ===== CHAT BUTTON ===== */
.chat-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
    text-decoration: none;
}

.chat-button:hover {
    transform: scale(1.1);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .hero {
        padding: 50px 50px;
        gap: 50px;
    }

    .worker-circle {
        width: 350px;
        height: 350px;
    }

    .worker-circle::before {
        width: 400px;
        height: 400px;
    }

    .worker-circle::after {
        width: 450px;
        height: 450px;
    }

    .worker-image {
        width: 280px;
        height: 280px;
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 60px;
        min-height: 100vh;
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 40px;
    }

    .hero-content {
        margin-top: 0;
        order: 2;
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 0;
        order: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .worker-circle {
        width: 280px;
        height: 280px;
    }

    .worker-circle::before {
        width: 320px;
        height: 320px;
    }

    .worker-circle::after {
        width: 360px;
        height: 360px;
    }

    .worker-image {
        width: 220px;
        height: 220px;
        font-size: 60px;
    }

    .decorative-elements {
        display: none;
    }

    .nav-arrows {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
        width: 80px;
        height: 80px;
    }

    .scroll-indicator::before {
        font-size: 18px;
    }

    .scroll-text {
        font-size: 8px;
    }

    .services {
        padding: 50px 20px;
    }

    .section-title {
        font-size: 32px;
    }

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

    .partners {
        padding: 40px 0;
        overflow: hidden;
    }

    .partners .marquee-content {
        gap: 25px;
    }

    .partner-logo {
        flex-shrink: 0;
        min-width: auto;
        background: white;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
        text-align: center;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        white-space: normal;
    }


    .partner-logo img {
        height: 60px;
        width: auto;
        object-fit: contain;
    }

    .partner-logo:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .partner-logo i {
        font-size: 32px;
        color: #27ae60;
    }

    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about, .testimonials, .contact {
        padding: 60px 20px;
    }

    .recent-projects, .blog-preview {
        padding: 60px 20px;
    }

    .recent-projects-header,
    .blog-preview-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }

    .recent-projects-header h2,
    .blog-preview-header h2 {
        font-size: 32px;
    }

    .view-all-btn {
        width: 100%;
        justify-content: center;
    }

    .recent-projects-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 15px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .recent-projects-grid::-webkit-scrollbar {
        display: none;
    }

    .recent-project-card {
        flex: 0 0 calc(100% - 40px);
        scroll-snap-align: center;
        margin: 0 20px;
    }

    .recent-project-content {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 15px 18px;
    }

    .recent-project-content h3 {
        font-size: 16px;
    }

    .project-arrow {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }

    /* Show carousel dots on mobile */
    .carousel-dots {
        display: flex;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .contact-icon {
        padding: 20px;
        background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
    }
}

/* Additional responsive breakpoints */
@media (max-width: 480px) {
    .hero {
        padding: 60px 15px 40px;
        min-height: 90vh;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.1;
    }

    .hero-content p {
        font-size: 15px;
        padding: 0 5px;
    }

    .worker-circle {
        margin-top: 100px;
        width: 240px;
        height: 240px;
    }

    .worker-circle::before {
        width: 280px;
        height: 280px;
    }

    .worker-circle::after {
        width: 320px;
        height: 320px;
    }

    .worker-image {
        width: 180px;
        height: 180px;
        font-size: 50px;
    }


    .partners .marquee-content {
        gap: 20px;
    }

    .partner-logo {
        gap: 10px;
    }

    .partner-logo i {
        font-size: 26px;
    }

    .scroll-indicator {
        width: 70px;
        height: 70px;
        bottom: 15px;
    }

    .scroll-indicator::before {
        font-size: 16px;
    }

    .scroll-text {
        font-size: 7px;
    }

    .recent-projects-grid {
        gap: 12px;
    }

    .recent-project-content {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 12px 15px;
    }

    .recent-project-content h3 {
        font-size: 14px;
    }

    .project-arrow {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .recent-project-image {
        font-size: 50px;
    }
}

@media (max-width: 380px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .worker-circle {
        width: 200px;
        height: 200px;
    }

    .worker-circle::before {
        width: 240px;
        height: 240px;
    }

    .worker-circle::after {
        width: 280px;
        height: 280px;
    }

    .worker-image {
        width: 150px;
        height: 150px;
        font-size: 40px;
    }
}
