/* ===== DASHBOARD SECTIONS STYLES ===== */

/* ----- Hero Section ----- */
.hero {
    padding: 40px 0 60px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content .badge {
    background: rgba(0,174,239,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    border: 1px solid rgba(0,174,239,0.3);
    margin-bottom: 24px;
    display: inline-block;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin: 20px 0 30px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    margin-top: 30px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}
.trust-badge span i {
    color: var(--green-grad);
    margin-right: 6px;
}

.hero-visual {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-blob {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(0,174,239,0.15), transparent 70%);
    border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
    animation: morph 12s infinite alternate;
}
@keyframes morph {
    0% { border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%; }
    100% { border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%; }
}
.hero-card {
    position: relative;
    z-index: 2;
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 20px 28px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.hero-card i {
    font-size: 2rem;
    color: var(--blue-grad);
}

/* Hero Image Wrapper */
.hero-image-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.3));
    animation: subtle-float 6s ease-in-out infinite;
}

@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Floating Card Overlay */
.hero-card {
    position: absolute;
    bottom: 20px;
    right: 10px;
    z-index: 20;
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 24px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-card i {
    font-size: 1.8rem;
    color: var(--blue-grad);
}

.hero-card span {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-light);
}

/* ===== Hero Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-visual {
        order: -1;
        min-height: 350px;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-badge {
        justify-content: center;
    }
    
    .hero-card {
        bottom: 10px;
        right: 0;
        left: 50%;
        transform: translateX(-50%);
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px 0 40px;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .hero-image {
        max-width: 320px;
    }
    
    .hero-content .badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-card {
        padding: 12px 18px;
        bottom: 0;
    }
    
    .hero-card i {
        font-size: 1.5rem;
    }
    
    .hero-card span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        min-height: 250px;
    }
    
    .hero-image {
        max-width: 260px;
    }
    
    .hero-card {
        padding: 10px 16px;
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        transform: none;
        margin-top: 15px;
    }
    
    .trust-badge {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero-image {
        max-width: 220px;
    }
    
    .hero-visual {
        min-height: 220px;
    }
}

/* ----- Services Section ----- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 28px;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--blue-grad);
}
.service-icon {
    font-size: 2.2rem;
    color: var(--blue-grad);
    margin-bottom: 18px;
}
.service-features {
    list-style: none;
    margin-top: 20px;
}
.service-features li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features i {
    color: var(--green-grad);
    font-size: 0.9rem;
}

/* ----- Trusted By Section ----- */
.trusted-logos {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px 50px;
    margin: 40px 0 20px;
}
.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 500;
    opacity: 0.8;
}
.logo-item i {
    font-size: 2rem;
    color: var(--text-muted);
}
.trusted-note {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ----- Why Choose Us (Split Layout) ----- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.feature-list {
    list-style: none;
    margin: 30px 0;
}
.feature-list li {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.feature-list i {
    color: var(--green-grad);
    font-size: 1.4rem;
    margin-top: 4px;
}
.stats-card {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 35px;
    border: 1px solid var(--border-light);
    display: grid;
    gap: 25px;
}
.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--blue-grad);
    display: block;
}

/* ===== PROJECTS SECTION (Enhanced) ===== */
.projects {
    position: relative;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 20px 0;
}

.project-card {
    background: var(--card-bg);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-8px);
    border-color: var(--blue-grad);
    box-shadow: 0 20px 40px -15px rgba(0, 174, 239, 0.2);
}

/* Project Image Wrapper */
.project-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #0f2440, #07152b);
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-img {
    transform: scale(1.05);
}

/* Overlay with Live Button */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(8, 20, 43, 0.95), rgba(8, 20, 43, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-live-btn {
    background: var(--blue-grad);
    color: #fff;
    padding: 12px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
    border: none;
    cursor: pointer;
}

.project-card:hover .project-live-btn {
    transform: translateY(0);
}

.project-live-btn:hover {
    background: var(--green-grad);
    color: var(--bg-dark);
    transform: scale(1.05) !important;
    box-shadow: 0 12px 24px rgba(124, 255, 79, 0.3);
}

.project-live-btn i {
    font-size: 0.9rem;
}

/* Project Info */
.project-info {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-category {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-grad);
    margin-bottom: 8px;
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #fff;
}

.project-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

/* Project Stats Tags */
.project-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(124, 255, 79, 0.08);
    color: var(--green-grad);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(124, 255, 79, 0.15);
}

.project-tag i {
    font-size: 0.8rem;
}

/* Project Link */
.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-grad);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s ease;
    margin-top: auto;
    width: fit-content;
}

.project-link:hover {
    gap: 12px;
    color: var(--green-grad);
}

.project-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.project-link:hover i {
    transform: translateX(4px);
}

/* Projects Footer Button */
.projects-footer {
    margin-top: 20px;
}

.projects-footer .btn {
    min-width: 200px;
}

/* Fallback for missing images */
.project-img-wrapper:has(img[src=""]) .project-img,
.project-img-wrapper:has(img:not([src])) .project-img,
.project-img-wrapper:has(img[src="#"]) .project-img {
    display: none;
}

.project-img-wrapper:has(img[src=""]),
.project-img-wrapper:has(img:not([src])),
.project-img-wrapper:has(img[src="#"]) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-img-wrapper:has(img[src=""]):before,
.project-img-wrapper:has(img:not([src])):before,
.project-img-wrapper:has(img[src="#"]):before {
    content: '\f108';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--blue-grad);
    opacity: 0.5;
}

/* ===== Projects Responsive ===== */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .project-img-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        gap: 20px;
    }
    
    .project-info {
        padding: 20px;
    }
    
    .project-info h3 {
        font-size: 1.3rem;
    }
    
    .project-live-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-img-wrapper {
        height: 200px;
    }
    
    .project-stats {
        gap: 8px;
    }
    
    .project-tag {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
    
    .projects-footer .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Touch device optimization */
@media (hover: none) {
    .project-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(8, 20, 43, 0.9), rgba(8, 20, 43, 0.3));
    }
    
    .project-live-btn {
        transform: translateY(0);
        opacity: 0.9;
    }
}

/* ----- Testimonials Section ----- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 28px;
    border: 1px solid var(--border-light);
}
.quote-icon {
    color: var(--blue-grad);
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.client {
    margin-top: 24px;
}
.client strong {
    display: block;
}
.client span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===== PRICING SECTION (Enhanced with INR & Offers) ===== */
.pricing {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 30px;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 28px;
    padding: 36px 28px;
    border: 1px solid var(--border-light);
    position: relative;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 174, 239, 0.3);
    box-shadow: 0 20px 40px -15px rgba(0, 174, 239, 0.15);
}

.pricing-card.popular {
    border-color: var(--blue-grad);
    background: linear-gradient(145deg, rgba(0, 174, 239, 0.08), var(--card-bg));
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Price Wrapper */
.price-wrapper {
    margin-bottom: 15px;
}

.original-price {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 5px;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.package-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

/* Offer Badge */
.offer-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--green-grad), #5ce030);
    color: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(124, 255, 79, 0.3);
    white-space: nowrap;
    z-index: 5;
}

.offer-badge i {
    font-size: 0.9rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--blue-grad), #0099cc);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
    white-space: nowrap;
    z-index: 5;
}

/* Offer Note */
.offer-note {
    background: rgba(124, 255, 79, 0.1);
    border: 1px dashed rgba(124, 255, 79, 0.3);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.85rem;
    color: var(--green-grad);
    margin: 15px 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-note i {
    font-size: 1rem;
}

.offer-expires {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.offer-expires i {
    color: var(--blue-grad);
}

/* Offer Card Special Styling */
.pricing-card.offer-card {
    border-color: var(--green-grad);
    background: linear-gradient(145deg, rgba(124, 255, 79, 0.05), var(--card-bg));
    position: relative;
    /* overflow: hidden; */
}

/* .pricing-card.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-grad), var(--blue-grad), var(--green-grad));
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
} */

@keyframes shimmer {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

.btn-offer {
    background: linear-gradient(135deg, var(--green-grad), #5ce030);
    color: var(--bg-dark) !important;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(124, 255, 79, 0.25);
}

.btn-offer:hover {
    background: linear-gradient(135deg, #8cff5f, var(--green-grad));
    box-shadow: 0 12px 24px rgba(124, 255, 79, 0.4);
    transform: translateY(-3px);
}

/* Pricing Features List */
.pricing-card ul {
    list-style: none;
    margin: 10px 0 30px;
    flex: 1;
}

.pricing-card li {
    margin: 14px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.pricing-card li i.fa-check {
    color: var(--green-grad);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Pricing Trust Section */
.pricing-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-item i {
    color: var(--blue-grad);
    font-size: 1.2rem;
}

/* ===== Pricing Responsive ===== */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }
    
    .pricing-card {
        padding: 30px 24px;
    }
    
    .price {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        gap: 45px 20px;
    }
    
    .pricing-card h3 {
        font-size: 1.5rem;
    }
    
    .offer-badge,
    .popular-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }
    
    .pricing-trust {
        gap: 20px;
    }
    
    .trust-item {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-card {
        padding: 36px 24px;
    }
    
    .pricing-card.offer-card {
        order: -1;
    }
    
    .price {
        font-size: 2.8rem;
    }
    
    .offer-note {
        justify-content: center;
        text-align: center;
    }
    
    .pricing-trust {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Touch device optimization */
@media (hover: none) {
    .pricing-card:hover {
        transform: none;
    }
}

/* ----- Order Section ----- */
.order-card {
    background: linear-gradient(145deg, #102a4a, #07152b);
    border-radius: 30px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    border: 1px solid var(--border-light);
}
.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-light);
    border-radius: 30px;
    color: #999;
    font-family: inherit;
    font-size: 1rem;
}
.order-form textarea {
    min-height: 120px;
    border-radius: 20px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}
.form-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.select-dropdown{
    background-color: #102a4a !important;
}

.contact-bubble {
    background: rgba(0,174,239,0.1);
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-bubble i {
    font-size: 2.5rem;
    color: var(--blue-grad);
    margin-bottom: 16px;
}
.contact-bubble strong {
    display: block;
    font-size: 1.2rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 992px) {
    .hero-container,
    .split-layout,
    .order-card {
        grid-template-columns: 1fr;
    }
    .hero-visual {
        height: 300px;
        order: -1;
    }
    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .stats-card {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    .trust-badge {
        justify-content: center;
    }
    .hero-content {
        text-align: center;
    }
    .trusted-logos {
        gap: 20px;
    }
    .logo-item {
        font-size: 1rem;
    }
    .logo-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .projects-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .order-card {
        padding: 24px;
    }
    .hero-visual {
        height: 250px;
    }
    .hero-card {
        padding: 16px 20px;
    }
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 1.8rem;
    }
}