/* 
 * SkyDreamix Tech Solution - Main Component Styles
 * Consolidation of all section and element designs
 */

/* ==========================================================================
   Header & Navigation
   ========================================================================== */


/* ==========================================================================
   Hero Banner
   ========================================================================== */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0 100px;
    background: url("../images/hero-bg.webp") center/cover fixed;
}

.banner-headeing h1 {
    font-size: 5rem;
    font-weight: 680;
    line-height: 1.1;
    margin-bottom: 30px;
}

.banner-headeing h1 span {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--highlight-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-logo-flex {
    backdrop-filter: blur(10px);
    padding: 20px 45px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.servises-section {
    padding: var(--section-padding);
}

.services-heading h2 {
    color: var(--primary-color);
    font-size: 45px;
    font-weight: 680;
    margin-bottom: 15px;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-section {
    background: #0f172a;
    padding: var(--section-padding);
    color: #fff;
}

.why-section .section-title h2 {
    font-size: 3.5rem;
    font-weight: 680;
}

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

.why-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition-smooth);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-section {
    padding: 0px;
    background: #f1f5f9;
}

.testimonial-heading h2 {
    font-size: 2.8rem;
    font-weight: 680;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.cta-box {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 680;
    color: #fff;
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */
.blog-hero {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/Businesses Trust SDH.webp') center/cover fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: #020617;
    padding: 120px 0 0;
    color: #94a3b8;
}

.footer h4 {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-bottom {
    padding: 35px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 576px) {
    body {
        overflow-x: hidden;
    }

    .banner-logo-flex {
        margin-bottom: 25px !important;
    }
}

@media(max-width:450px) {
    .banner-headeing h1 {
        font-size: 36px !important;
        font-weight: 680;
        line-height: 40px;
        margin-bottom: 30px;
    }



}