/* SECTION BACKGROUND */
.approach-section {
    background: linear-gradient(to right, #3a1c71, #0f2027);
    padding: 80px 20px;
    color: #fff;
}

/* TITLE */
.main-title {
    font-size: 38px;
    color: #d4a84f;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* BOX CONTAINER */
.approach-box {
    max-width: 700px;
    margin: auto;
}

/* CARD ITEM */
.item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.08);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    transition: 0.3s;
}

/* HOVER EFFECT */
.item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* ICON */
.icon {
    color: #d4a84f;
    font-size: 20px;
    margin-top: 5px;
}

/* HEADING */
.item h4 {
    margin: 0;
    color: #d4a84f;
    font-size: 20px;
}

/* TEXT */
.item p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #ddd;
}

/* SECTION BACKGROUND */
.alignment-section {
    background: #f3efe9;
    padding: 80px 20px;
}

/* TITLE */
.title {
    font-size: 34px;
    color: #2c1a4d;
    font-weight: 600;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 14px;
    color: #777;
    margin-bottom: 50px;
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

/* CARD */
.card {
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* HOVER */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* CARD TITLE */
.card h4 {
    color: #2c1a4d;
    font-size: 16px;
    margin-bottom: 8px;
}

/* CARD TEXT */
.card p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* SECTION */
.process-section {
    background: #ebd2ac;
    padding: 80px 20px;
}

/* TITLE */
.process-title {
    font-size: 34px;
    color: #2c1a4d;
    font-weight: 600;
    margin-bottom: 50px;
}

/* WRAPPER */
.process-wrapper {
    max-width: 750px;
    margin: auto;
}

/* ITEM CARD */
.process-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: #e9e2d8;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
    transition: 0.3s;
}

/* HOVER */
.process-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* NUMBER CIRCLE */
.number {
    width: 45px;
    height: 45px;
    background: #d4a84f;
    color: #2c1a4d;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* CONTENT */
.content h4 {
    margin: 0;
    color: #2c1a4d;
    font-size: 18px;
}

.content p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #555;
}

@media (max-width: 576px) {
    .process-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .number {
        margin-bottom: 10px;
    }
}

/* CURSIVE TEXT STYLE */
.card h4 {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #2c1a4d;
    font-size: 17px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

/* HOVER EFFECT (POP + COLOR CHANGE) */
.card:hover h4 {
    color: #d4a84f; /* gold color */
    transform: scale(1.1);
    letter-spacing: 0.5px;
}

/* OPTIONAL: SMOOTH CARD HOVER */
.card {
    transition: all 0.3s ease;
}

.as_aboutimg video {
    width: 100%;
    max-width: 650px;   /* 🔥 control width */
    height: auto;
    border-radius: 12px;
}