/* ========================================
   FIXED RESPONSIVE & IMPROVED DESIGN
   Shreeinfra Architecture Website
   ======================================== */

/* ===== HERO/BANNER SECTION WITH BACKDROP ===== */
.slider-area {
    position: relative;
    overflow: hidden;
}



.slider-content {
    position: relative;
    z-index: 2;
}

/* White Text for Banner */
.slider-content h5 {
    color: #f39c12 !important;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.slider-content h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff !important;
}

.btn-blue {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #ffffff !important;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(243, 156, 18, 0.4);
    border: none;
}

.btn-blue:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 35px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, #f39c12);
}

/* ===== IMPROVED HOVER EFFECTS ===== */

/* Feature Boxes - Clean Minimal Design */
.slider-feature .box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #f39c12;
}

.slider-feature .box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.slider-feature .box .number {
    display: none;
    /* Remove numbers for cleaner look */
}

.slider-feature .box .text h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.slider-feature .box .text p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Services Cards - Clean Minimal Design */
.services-08-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 45px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #f39c12;
}

.services-08-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-08-icon .no {
    display: none;
    /* Remove large numbers */
}

.services-08-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.services-08-content h3 a {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.services-08-item:hover .services-08-content h3 a {
    color: #f39c12;
}

.services-08-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* About Section */
.about-count {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    transition: all 0.3s ease;
}

.about-count:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.about-count h3 {
    font-size: 42px;
    font-weight: 800;
    color: #f39c12;
    margin-bottom: 8px;
}

.about-count p {
    color: #666;
    font-size: 15px;
    margin: 0;
}

/* Brand Logos - Minimal */
.single-brand {
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.single-brand:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

/* Projects - Clean Image Cards */
.case-study-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.case-study-img img {
    transition: transform 0.4s ease;
}

.case-study-img:hover img {
    transform: scale(1.05);
}

/* Testimonials - Clean Minimal Cards */
.single-testimonial {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #f39c12;
    position: relative;
}

.single-testimonial::before {
    display: none;
    /* Remove large quotation mark */
}

.single-testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.single-testimonial p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.testi-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.testi-author .ta-info h6 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.testi-author .ta-info span {
    color: #f39c12;
    font-size: 14px;
    font-weight: 600;
}

.user-img img {
    border-radius: 50%;
    border: 3px solid #f39c12;
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.single-testimonial-yellow {
    background: #ffffff;
    border-left-color: #f39c12;
}

.single-testimonial-gray {
    background: #ffffff;
    border-left-color: #e0e0e0;
}

/* Process Cards - Clean Minimal */
.how-it-work-item {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #f39c12;
}

.how-it-work-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.how-it-work-thumb {
    width: 70px;
    height: 70px;
    background: #f39c12;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.how-it-work-item:hover .how-it-work-thumb {
    transform: scale(1.05);
}

.how-it-work-thumb i {
    font-size: 32px;
    color: #ffffff;
}

.how-it-work-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.how-it-work-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.schedule-hours {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    border-left: 4px solid #f39c12;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.schedule-hours h3 {
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.schedule-hours p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.schedule-hours ul li {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #444;
}

.schedule-hours ul li:last-child {
    border-bottom: none;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
}

.schedule-hours .day {
    font-weight: 600;
    color: #1a1a1a;
}

.schedule-hours .time {
    color: #666;
}

.schedule-hours .time strong {
    color: #f39c12;
    font-size: 16px;
}

/* Blog Cards - Clean Minimal */
.single-post2 {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #f39c12;
}

.single-post2:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ===== MINIMAL WHITE FOOTER (LIKE HEADER) ===== */

.footer-bg {
    background: #ffffff !important;
    color: #666 !important;
    border-top: 1px solid #e0e0e0;
}

.footer-bg::before,
.footer-bg::after {
    display: none;
}

.footer-top {
    padding: 80px 0 50px;
}

/* Footer Widget Modern Minimal */
.footer-widget {
    margin-bottom: 40px;
}

.f-widget-title img {
    max-width: 100px;
    margin-bottom: 20px;
}

.f-widget-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a !important;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.f-widget-title h2::after {
    display: none;
}

.footer-widget p {
    color: #666 !important;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 15px;
}

/* Modern Info Box - White Style */
.info-box {
    background: #f9f9f9 !important;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e0e0e0 !important;
    border-left: 4px solid #f39c12 !important;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.info-box:hover {
    background: #ffffff !important;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.1);
}

.info-box .text {
    color: #333 !important;
    line-height: 2;
    font-size: 14px;
}

/* Footer Links - Clean Style */
.footer-link ul,
.footer-link-two ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link ul li,
.footer-link-two ul li {
    margin-bottom: 12px;
}

.footer-link ul li a,
.footer-link-two ul li a {
    color: #666 !important;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    padding-left: 0 !important;
}

.footer-link ul li a::before,
.footer-link-two ul li a::before {
    display: none;
}

.footer-link ul li a:hover,
.footer-link-two ul li a:hover {
    color: #f39c12 !important;
    transform: translateX(5px);
}

/* Modern Newsletter - White Style */
.newslater {
    background: #f9f9f9 !important;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
}

.newslater p {
    color: #666 !important;
    margin-bottom: 20px;
}

.newslater .form-control {
    background: #ffffff !important;
    border: 2px solid #e0e0e0 !important;
    color: #1a1a1a !important;
    padding: 14px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.newslater .form-control:focus {
    border-color: #f39c12 !important;
    box-shadow: 0 0 0 4px rgba(243, 156, 18, 0.1);
}

.newslater .form-control::placeholder {
    color: #999 !important;
}

.newslater .yellow-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.newslater .yellow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    padding: 50px 0;
    margin-bottom: 60px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.footer-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.footer-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.footer-cta-btn {
    background: #ffffff;
    color: #f39c12 !important;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #1a1a1a;
    color: #ffffff !important;
}

/* Copyright - Clean White */
.copyright-wrap {
    background: #f9f9f9 !important;
    padding: 25px 0;
    border-top: 1px solid #e0e0e0 !important;
}

.copyright-wrap .col-lg-6,
.copyright-wrap .col-md-6 {
    color: #666 !important;
    font-size: 14px;
}

.copyright-wrap a {
    color: #f39c12 !important;
    font-weight: 600;
}

.copyright-wrap a:hover {
    color: #e67e22 !important;
}

/* Footer Social - Modern Minimal */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f5f5 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #666 !important;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social a::before {
    display: none;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f39c12, #e67e22) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* ===== COMPREHENSIVE RESPONSIVE FIXES ===== */

/* Large Tablets */
@media (max-width: 1199px) {
    .slider-content h2 {
        font-size: 48px;
    }

    .section-title h2 {
        font-size: 38px;
    }
}

/* Tablets */
@media (max-width: 991px) {
    .slider-content h2 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .footer-top {
        padding: 60px 0 30px;
    }

    .footer-cta {
        margin-bottom: 40px;
    }

    .footer-cta h2 {
        font-size: 28px;
    }

    .footer-cta p {
        font-size: 16px;
    }

    /* Stack footer columns properly */
    .footer-bg .row>div {
        margin-bottom: 30px;
    }
}

/* Mobile Phones */
@media (max-width: 767px) {
    .slider-content h2 {
        font-size: 32px;
    }

    .slider-content h5 {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .section-title h5 {
        font-size: 12px;
    }

    /* Feature boxes */
    .slider-feature .box {
        margin-bottom: 20px;
        padding: 25px 20px;
    }

    .slider-feature .box .number {
        font-size: 36px;
    }

    /* Services */
    .services-08-item {
        margin-bottom: 25px;
        padding: 30px 25px;
    }

    .services-08-icon .no {
        font-size: 56px;
    }

    /* Process cards */
    .how-it-work-item {
        margin-bottom: 25px;
        padding: 30px 25px;
    }

    /* Testimonials */
    .single-testimonial {
        margin-bottom: 25px;
        padding: 30px 25px;
    }

    /* Blog cards */
    .single-post2 {
        margin-bottom: 25px;
    }

    /* Footer */
    .footer-top {
        padding: 50px 0 20px;
    }

    .footer-cta {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

    .footer-cta h2 {
        font-size: 24px;
    }

    .footer-cta p {
        font-size: 15px;
    }

    .footer-widget {
        text-align: center;
        margin-bottom: 35px;
    }

    .f-widget-title img {
        margin: 0 auto 20px;
        display: block;
    }

    .copyright-wrap {
        padding: 20px 0;
        text-align: center;
    }

    .copyright-wrap .col-lg-6,
    .copyright-wrap .col-md-6 {
        text-align: center !important;
        margin-bottom: 15px;
    }

    .footer-social {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 575px) {
    .slider-content h2 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .footer-cta h2 {
        font-size: 20px;
    }

    .footer-cta p {
        font-size: 14px;
    }

    .footer-cta-btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

/* Prevent horizontal scroll */
body {
    overflow-x: hidden;
}

.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

/* Fix any overflowing content */
img {
    max-width: 100%;
    height: auto;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
}