/*HOME ABOUT START*/
/* BACKGROUND WITH SHAPE */
.am-perfect-wrap {
    padding: 90px 20px;
    /* background: linear-gradient(135deg, #26379110, #de0f1c10); */
    position: relative;
    overflow: hidden;
}

/* BACKGROUND DECOR */
.am-perfect-wrap::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    /* background: #263791; */
    opacity: 0.08;
    border-radius: 50%;
    top: -80px;
    left: -80px;
}

.am-perfect-wrap::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    /* background: #de0f1c; */
    opacity: 0.08;
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

/* CONTAINER */
.am-perfect-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* IMAGE BOX */
.am-perfect-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

/* IMAGE STYLE */
.am-perfect-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
    transition: 0.5s;
}

/* OVERLAY EFFECT */
.am-perfect-img::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(45deg, #26379180, #de0f1c80); */
    opacity: 0;
    transition: 0.4s;
}

.am-perfect-img:hover::after {
    opacity: 1;
}

/* .am-perfect-img:hover img {
    transform: scale(1.08);
} */

/* EXPERIENCE CARD */
.am-perfect-exp {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffffff78;
    padding: 18px 22px;
    border-radius: 12px;
    border-left: 5px solid #de0f1c;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.am-perfect-exp h3 {
    margin: 0;
    font-size: 20px;
    color: #263791;
}

/* UPDATED SINCE TEXT */
.am-perfect-exp span {
    font-size: 20px;
    font-weight: 700;
    color: #de0f1c;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
}

/* TEXT */
.am-perfect-text h1 {
    font-size: 25px;
    color: #263791;
    line-height: 1.2;
    /* FIXED GAP */
    margin-bottom: 10px;
}

.am-perfect-text h1 span {
    display: block;
    color: #101480;
    font-size: 28px;
    font-weight: 400;
    margin-top: 5px;
    /* CONTROL GAP */
}

/* LINE DESIGN */
.am-perfect-text h1::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, #263791, #de0f1c);
    margin-top:5px;
    border-radius: 5px;
}

/* PARAGRAPH */
.am-perfect-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* BUTTON */
.am-perfect-cta {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background-color: #101480;
    /* background: linear-gradient(90deg, #263791, #de0f1c); */

    /* PREMIUM SHADOW */
    box-shadow: 0 10px 25px rgba(38, 55, 145, 0.3),
        0 4px 10px rgba(222, 15, 28, 0.2);

    transition: all 0.4s ease;
}

/* HOVER */
.am-perfect-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(38, 55, 145, 0.4),
        0 6px 15px rgba(222, 15, 28, 0.3);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .am-perfect-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .am-perfect-text h1 {
        font-size: 22px;
    }

    .am-perfect-text h1 span {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .am-perfect-wrap {
        padding: 60px 15px;
    }

    .am-perfect-text p {
        font-size: 14px;
    }

    .am-perfect-exp {
        padding: 12px;
    }
}

/*HOME ABOUT END*/

/* ============================= */
/* HOME PRODUCT START */
/* ============================= */
/* SECTION */
.am-product-section {
    padding: 0px 14px;
    background: linear-gradient(135deg, #26379108, #de0f1c08);
}

/* CONTAINER */
.am-product-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.am-product-title {
    text-align: center;
    margin-bottom: 15px;
}

.am-product-title h2 {
    font-size: 26px;
    font-weight: 400;
    color: #101480;
    position: relative;
    display: inline-block;
    margin: 0;
    /* letter-spacing: 1px; */
    line-height: 40px;
}

/* UNDERLINE */
.am-product-title h2::after {
    content: "";
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #263791, #de0f1c);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    border-radius: 5px;
}

/* GRID */
.am-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.am-product-card {
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    background: #ffffffcc;
    backdrop-filter: blur(6px);
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgb(16 20 128);
}

/* HOVER */
.am-product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(38, 55, 145, 0.25);
    border: 1px solid rgb(219 15 29);
}

/* IMAGE */
.am-product-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.am-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.am-product-card:hover img {
    transform: scale(1.1);
}

/* SHINE EFFECT */
.am-product-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    transform: translateX(-100%);
    transition: 0.6s;
    z-index: 2;
}

.am-product-card:hover .am-product-img::before {
    transform: translateX(100%);
}

/* LIGHT OVERLAY */
.am-product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, #263791, #de0f1c);
    opacity: 0;
    transition: 0.4s;
}

.am-product-card:hover::before {
    opacity: 0.15;
}

/* CONTENT */
.am-product-content {
    text-align: center;
    background: #393433;
    position: relative;
    z-index: 2;
    transition: 0.3s;

    /* WHITE SPACE REDUCE */
    padding: 8px 10px;
    line-height: 1.2;
}

/* CONTENT HOVER */
.am-product-card:hover .am-product-content {
    transform: translateY(-5px);
}

/* TEXT */
.am-product-content h3 {
    color: #fcf8f9;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s;

    /* REMOVE EXTRA SPACE */
    margin: 0;
    padding: 0;
}

/* .am-product-card:hover h3 {
    color: #de0f1c;
} */

.am-product-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    text-align: justify;
    opacity: 0.9;
}

/* BUTTON WRAPPER */
.am-product-btn-wrap {
    text-align: center;
    margin-top: 50px;
}

/* BUTTON */
.am-product-btn {
    position: relative;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #263791;
    border: 2px solid #263791;
    overflow: hidden;
    transition: 0.4s;
    letter-spacing: 1px;
}

/* BUTTON FILL */
.am-product-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #263791, #de0f1c);
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s;
    z-index: -1;
}

/* BUTTON HOVER */
.am-product-btn:hover::before {
    transform: scaleX(1);
}

.am-product-btn:hover {
    color: #fff;
    border-color: #de0f1c;
    box-shadow:
        0 10px 25px rgba(222, 15, 28, 0.3),
        0 0 15px rgba(38, 55, 145, 0.2);
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .am-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {

    .am-product-grid {
        grid-template-columns: 1fr;
    }

    .am-product-title h2 {
        font-size: 26px;
    }

    .am-product-content h3 {
        font-size: 18px;
    }

    .am-product-content p {
        font-size: 13px;
    }

    .am-product-img {
        height: 220px;
    }
}

/* ============================= */
/* HOME PRODUCT END */
/* ============================= */

/*Why Choose start*/
/* SECTION */
.am-why-section {
    padding-right: 10px;
    padding-left: 10px;
    padding-bottom: 60px;
    /* background: linear-gradient(90deg, #263791, #de0f1c); */
    background-color: #101480;
}

/* CONTAINER */
.am-why-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.am-why-title {
    text-align: center;
}

.am-why-title h2 {
    font-size: 34px;
    color: #fff;
}


/* GRID (FIXED ✅) */
.am-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

/* CARD */
.am-why-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding-top: 10px;
    text-align: center;
    border-radius: 18px;
    transition: 0.4s;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* HOVER */
.am-why-card:hover {
    transform: translateY(-10px) scale(1.05);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* SHINE */
.am-why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: translateX(-100%);
    transition: 0.6s;
}

.am-why-card:hover::before {
    transform: translateX(100%);
}

/* DEFAULT ICON */
.am-why-card span {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

/* 1️⃣ GOLD GLOW */
.am-why-card:nth-child(1) span {
    background: linear-gradient(90deg, #ffe600, #ff9d00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 12px rgba(255, 200, 0, 0.5);
}

/* 2️⃣ CIRCLE ICON */
.am-why-card:nth-child(2) span {
    background: #fff;
    color: #263791;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    display: inline-block;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* 3️⃣ NEON */
.am-why-card:nth-child(3) span {
    color: #00ffcc;
    text-shadow:
        0 0 5px #00ffcc,
        0 0 10px #00ffcc,
        0 0 20px #00ffcc;
}

/* TEXT */
.am-why-card h4 {
    font-size: 17px;
    margin-bottom: 8px;
}

.am-why-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    /* 🔥 text pop effect */
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .am-why-title h2 {
        font-size: 26px;
    }
}

/*Why Choose end*/

/*inner product start*/

/* MAIN SECTION */
.am-inner-product {
    width: 100%;
    padding: 10px 10%;
    background: #ffffff;
    /* ✅ WHITE BACKGROUND */
}

/* HEADER */
.am-header {
    text-align: center;
    margin-bottom: 15px;
}

.am-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #263791;
    /* 🔵 BRAND BLUE */
}

.am-header p {
    /* max-width: 700px; */
    margin: auto;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* CARD */
.am-card {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 25px;

    background: #ffffff;
    border: 1px solid #eee;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
}

/* REVERSE */
.am-card.reverse {
    flex-direction: row-reverse;
}

/* HOVER */
.am-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.am-img {
    flex: 1;
    overflow: hidden;
    border-radius: 20px;
}

.am-img img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: 0.5s ease;
}

/* IMAGE ZOOM */
.am-card:hover img {
    transform: scale(1.1);
}

/* TEXT */
.am-text {
    flex: 1;
}

.am-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #263791;
    /* 🔵 BRAND BLUE */
    position: relative;
}

/* UNDERLINE */
.am-text h2::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #de0f1c;
    /* 🔴 BRAND RED */
    position: absolute;
    left: 0;
    bottom: -8px;
    border-radius: 5px;
    transition: 0.4s;
}

.am-card:hover h2::after {
    width: 100px;
}

.am-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .am-card,
    .am-card.reverse {
        flex-direction: column;
        text-align: center;
    }

    .am-img img {
        height: 250px;
    }

    .am-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .am-header h1 {
        font-size: 30px;
    }

    .am-header p {
        font-size: 15px;
    }
}

/* inner product end*/