/* ---------- Diagonal background -----*/


/* ---------- Background diagonal shape ---------- */


/* 
.diagonal-box {
    position: relative;
    padding: 90px 0;
    overflow: visible;
}

.diagonal-box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, #921111 0%, #e9e9e9 100%);
    clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
    z-index: 0;
    pointer-events: none;
}

.diagonal-box>.container {
    position: relative;
    z-index: 2;
}
 */


/* ---------- Card styles ---------- */


/* .service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
} */


/* .service-desc {
    text-align: left !important;
    color: #2f6e2f;
    font-weight: 600;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
} */


/* ---------- Image ---------- */


/* 
.service-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
} */


/* ---------- Full Form ---------- */


/* .service-title {
    color: #222;
    margin-top: 15px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
} */


/* ---------- Description ---------- */


/* .service-desc {
    color: #555;
    font-size: 0.95rem;
    margin: 12px 0;
    line-height: 1.5;
} */


/* ---------- Description ---------- */


/* .service-desc {
    color: #2f6e2f;
    font-weight: 600;
    font-size: 0.9rem;
    /* थोडा छोटा केला */


/* margin: 10px 0 12px 0; */


/* line-height: 1.4; */


/* text-align: left; */


/* डावीकडे ठेवले */


/* width: 100%; */


/* पूर्ण रुंदी व्यापेल */


/* } */


/* ---------- Description ---------- */


/* 
.service-desc {
    color: #2f6e2f;
    font-weight: 600;
    font-size: 0.9rem;
    margin: 10px 0 12px 0;
    line-height: 1.4;
    text-align: left !important;
    /* हे मुख्य — left align करते 
    width: 100%;
} */


/* ---------- Button ---------- */


/* 
.service-btn {
    background: #4CAF50;
 
    color: #fff;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #3e8e41;
} */


/*--------------------------------------*/


/* ---------- Diagonal background via pseudo-element (NOT clipping children) ---------- */


/* .diagonal-box {
    position: relative;
    padding: 90px 0;

    overflow: visible;
   
} */


/* background shape placed behind content */


/* 
.diagonal-box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(135deg, #921111 0%, #e9e9e9 100%);
    clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
    z-index: 0;
 
    pointer-events: none;
} */


/* make the container/content sit above the pseudo-element */


/* .diagonal-box>.container {
    position: relative;
    z-index: 2;
} */


/* ---------- Card styles ---------- */


/* 
.service-card {
    background: #fff;
    border-radius: 1px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 26px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .28s ease, box-shadow .28s ease;
    min-height: 300px;

} */


/* .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
} */


/* icon */


/* 
.icon-wrap i {
    font-size: 40px;
    color: #2f6e2f;
    display: inline-block;
    margin-bottom: 10px;
} */


/* title / text */


/* 
.service-card h3 { */


/* font-size: 1.15rem;
    margin-bottom: 6px;
    color: #1f2b2b;
    font-weight: 700;
} */


/* 
.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 3px;
    color: #1f2b2b;
    font-weight: 700;
    padding: 6px 10px;
    box-shadow: inset 0 -4px 0 #2f6e2f33;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 12px;
    min-height: 44px;
} */


/* vacancy text */

.vacancy-text {
    color: #2f6e2f;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
   /*font-size: 1rem;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;*/
    /* bold */
   
    /* min-height: 44px; 
    background: #f9f9f9;*/
    /* हलका highlight */
    /* padding: 6px 10px;
    
    display: inline-block;
    box-shadow: inset 0 -2px 0 #2f6e2f33;
    subtle bottom highlight */
}


/* full-width button at bottom */

.read-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #33682b;
    color: #fff;
    padding: 10px 14px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 600;
}

.read-btn:hover {
    background: #2a4f21;
}


/* ---------- Responsive tweaks ---------- */

@media (max-width: 576px) {
    .diagonal-box {
        padding: 60px 0;
    }
    .diagonal-box::before {
        /* soften clip on small screens so it doesn't feel too sharp */
        clip-path: polygon(0 6%, 100% 0, 100% 94%, 0 100%);
    }
    .service-card {
        min-height: 260px;
        padding: 20px;
    }
    .icon-wrap i {
        font-size: 34px;
    }
}


/* h3 {
    color: #33682b;
    font-weight: bold;
    margin-bottom: 1.5rem;
} */

.feature-card {
    transition: all 0.35s ease-in-out;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.07);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}


/* Glowing border effect */

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(45deg, #ff6b6b, #5f27cd, #1dd1a1, #feca57);
    background-size: 300% 300%;
    animation: borderGlow 5s linear infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* ================== centric focus ================== */


/* ================== Section Heading ================== */

.section-heading {
    font-size: 2rem;
    position: relative;
    font-weight: bold;
}

.section-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0072ff, #00c6ff);
    margin: 12px auto 0;
    border-radius: 2px;
}


/* ================== Premium Card ================== */

.premium-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid transparent;
    width: 260px;
    /* fixed width so next card peeks */
    position: relative;
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid darkgreen;
    /* hover border color */
}


/* Glowing border animation */

.premium-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(45deg, #ff6b6b, #5f27cd, #1dd1a1, #feca57);
    background-size: 300% 300%;
    animation: borderGlow 5s linear infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}


/* Icon inside card */

.premium-card .icon {
    font-size: 2.5rem;
    color: #1e5099;
    margin-bottom: 1rem;
}


/* Card title */

.premium-card h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e5099;
}


/* Card description (optional) */

.premium-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0;
}


/* ================== Swiper pagination ================== */

.swiper-pagination-bullet {
    background: #0072ff;
    opacity: 0.8;
}

.swiper-pagination-bullet-active {
    background: #00c6ff;
}


/* ================== Responsive ================== */

@media (max-width: 576px) {
    .premium-card {
        width: 100%;
        min-height: 220px;
        padding: 1.5rem;
    }
    .premium-card .icon {
        font-size: 2rem;
    }
}