/* Home Page Premium Styles */

.section-padding {
    padding: 6rem 0;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.col-lg-4,
.col-lg-6,
.col-lg-8 {
    padding: 15px;
    width: 100%;
}

@media (min-width: 992px) {
    .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .col-lg-8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }
}

.align-center {
    align-items: center;
}

.text-right {
    text-align: right;
}

.ml-2 {
    margin-left: 0.5rem;
}

/* Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-header .sub-heading {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.15rem;
    max-width: 600px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 7rem 0 5rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.shape-1 {
    top: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(2, 132, 199, 0.15);
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: rgba(56, 189, 248, 0.1);
}

.hero-container {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-text-area h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-outline-light {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.btn-outline-light:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Image Area */
.hero-image-wrapper {
    position: relative;
}

.hero-img {
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
}

.floating-card h5 {
    font-size: 1rem;
    margin-bottom: 0;
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: 3s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Services Highlights */
.bg-blue-light {
    background-color: var(--primary-light);
}

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

.glass-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.glass-card:hover .service-icon-wrap {
    background-color: var(--primary-color);
}

.glass-card:hover .service-icon-wrap i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.service-card:hover .read-more-link i {
    transform: translateX(5px);
}

/* CTA Section */
.cta-box {
    background: linear-gradient(135deg, var(--text-dark), #1e293b);
    padding: 4rem;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    right: -5%;
    top: -50%;
    width: 300px;
    height: 300px;
    background: rgba(56, 189, 248, 0.2);
    border-radius: 50%;
    filter: blur(50px);
}

.cta-box h2 {
    color: #fff;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta-box p {
    color: #cbd5e1;
    font-size: 1.15rem;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .hero-text-area h1 {
        font-size: 3rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .card-1 {
        left: 0;
    }

    .card-2 {
        right: 0;
    }

    .cta-box {
        text-align: center;
    }

    .cta-box .text-right {
        text-align: center;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-text-area h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .floating-card {
        display: none;
    }
}