/* ----- RESET & GLOBAL REFINEMENTS ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #FDFCF8;
    color: #111217;
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* premium subtle grain texture overlay */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

section, .hero-section, .stats-section, .capabilities-section, .why-section, .brand-section {
    position: relative;
    z-index: 1;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #0A1128, #1e2a4a);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
}

.section-subhead {
    font-size: 15px;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
}

/* premium container */
.container-premium {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ----- BUTTONS ----- */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    cursor: pointer;
    border: none;
    background: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: #bc004b;
    color: white;
    box-shadow: 0 8px 18px -6px rgba(188, 0, 75, 0.3);
}

.btn-primary:hover {
    background: #9a003c;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -10px rgba(188, 0, 75, 0.4);
}

.btn-outline {
    border: 1.5px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(2px);
    color: white;
}

.btn-outline:hover {
    border-color: #bc004b;
    background: rgba(188, 0, 75, 0.15);
    transform: translateY(-2px);
}

/* ----- HERO SECTION - SMALLER BANNER ----- */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: radial-gradient(ellipse at 30% 40%, #0A1128, #030617);
    color: #fff;
    padding: 50px 40px;
    border-radius: 0 0 40px 40px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.06"><path fill="none" d="M0 0 L800 0 L800 800 L0 800 Z" stroke="white" stroke-width="0.5"/><circle cx="400" cy="400" r="250" stroke="white" stroke-width="0.7" fill="none"/><circle cx="400" cy="400" r="180" stroke="white" stroke-width="0.5" fill="none"/><path d="M400 150 L400 650 M150 400 L650 400" stroke="white" stroke-width="0.4"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: #ff2a6e;
    background: linear-gradient(120deg, #ff2a6e, #ff8c42);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-content p {
    margin: 20px 0 24px;
    font-size: 1rem;
    color: #e2e8f0;
    border-left: 3px solid #bc004b;
    padding-left: 20px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    filter: drop-shadow(0 20px 22px rgba(0,0,0,0.25));
    transition: transform 0.4s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    transition: 0.4s;
    max-height: 320px;
    object-fit: cover;
}

.hero-image:hover img {
    transform: scale(1.02);
}

/* Stats premium cards */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 40px;
    background: transparent;
    flex-wrap: wrap;
    margin: 30px auto 20px;
    max-width: 1200px;
    padding: 20px 20px;
}

.stat-box {
    flex: 1;
    min-width: 180px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(8px);
    border-radius: 48px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 20px 35px -15px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.7);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-6px);
    background: white;
    box-shadow: 0 30px 40px -20px rgba(0,0,0,0.2);
    border-color: #bc004b20;
}

.stat-box h3 {
    font-size: 2.2rem;
    font-weight: 800;
    /*background: linear-gradient(145deg, #0A1128, #bc004b);*/
     background: linear-gradient(145deg, #E61A72, #4C81C2);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 8px;
}

.stat-box p {
    color: #2d3e6e;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-size: 0.9rem;
}

/* Capabilities section premium */
.capabilities-section {
    background: #FDFCF8;
    text-align: center;
    padding: 70px 20px;
}

.section-title h2 {
    font-size: 30px;
    color:#95508F;
}

.capabilities-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.card {
    width: 320px;
    background: #ffffff;
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 15px 35px -12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 32px;
    padding: 1.5px;
    background: linear-gradient(125deg, rgba(188,0,75,0.3), rgba(0,0,0,0));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: 0.3s;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 48px -20px rgba(0,0,0,0.2);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s;
}

.card:hover img {
    transform: scale(1.05);
}

.card h4 {
   font-size: 15px;
    font-weight: 600;
    background: linear-gradient(145deg, #E61A72, #4C81C2);
    margin-bottom: 15px;
    border-radius: 30px;
    padding: 13px;
    text-align: center;
    color: #fff;
    margin-top:25px;
}

.card p {
    font-size: 13px;
    color: #4a5568;
    margin: 0 20px 24px;
    line-height: 25px;
    text-align: justify;
}

/* why choose us - premium glassmorphism */
.why-section {
    display: flex;
    gap: 35px;
    /*background: linear-gradient(125deg, #0e1a2b, #07111f);*/
    background: linear-gradient(145deg, #4C81C2, #2E517A);
    color: white;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 20px;
    margin: 40px 0;
    margin-left: auto;
    margin-right: auto;
    box-shadow: inset 0 1px 1px rgba(255,255,255,0.08), 0 20px 35px -10px rgba(0,0,0,0.2);
}

.why-box {
    flex: 1;
    min-width: 220px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    padding: 30px 20px;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
    background-color: #0B1E3C;
}

.why-box:hover {
    background: rgba(188,0,75,0.12);
    border-color: rgba(188,0,75,0.5);
    transform: scale(1.02);
    background-color: #0B1E3C;
}

.why-box i {
    font-size: 2.5rem;
    color: #ff2a6e;
    margin-bottom: 16px;
    display: inline-block;
}

.why-box h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.why-box p {
    color: #cbd5e6;
    font-size: 0.95rem;
}

/* brand section premium */
.brand-section {
    text-align: center;
    background: #ffffff;
    padding: 60px 20px 70px;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.brand-section h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #111, #bc004b);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

.brand-logos span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #7c7f8c;
    letter-spacing: -0.3px;
    transition: all 0.2s;
    padding: 6px 16px;
    background: #f9f9fc;
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
}

.brand-logos span:hover {
    color: #bc004b;
    background: #fff0f3;
    transform: scale(1.05);
    box-shadow: 0 5px 12px rgba(0,0,0,0.05);
}

/* custom responsive refinement */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 36px;
    }
    h2 {
        font-size: 2rem;
    }
    .hero-section {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        border-radius: 0 0 32px 32px;
        gap: 25px;
    }
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        border-left: none;
        padding-left: 0;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-image img {
        max-height: 240px;
    }
    .stats-section {
        gap: 20px;
    }
    .capabilities-grid {
        flex-direction: column;
        align-items: center;
    }
    .why-section {
        flex-direction: column;
        margin: 20px;
        border-radius: 48px;
        padding: 40px 20px;
    }
    .brand-logos {
        gap: 16px;
    }
    .brand-logos span {
        font-size: 1rem;
        padding: 5px 14px;
    }
    .card {
        width: 90%;
        max-width: 340px;
    }
}

/* =========================
   BANNER SECTION
========================= */
.asti-client-banner {
    background: url("https://astigujarat.com/wp-content/themes/astiindiaprivatelimited/assets/images/banner/inner-bnr10.png") no-repeat center center/cover;
    height: 320px;
    position: relative;
}

.asti-client-banner-overlay {
    /*background: rgba(12, 30, 60, 0.75);*/
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.asti-client-banner-content {
    max-width: 1200px;
    /*margin: auto;*/
    color: #fff;
    padding: 0 20px;
}

.asti-client-banner-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.asti-client-banner-content p {
    font-size: 16px;
    opacity: 0.9;
}
