:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
b {
    font-family: "Lato", system-ui, sans-serif !important;
}

/* p,
span,
small,
strong,
li,
a,
button,
input,
textarea,
label,
div {
    font-family: 'Manrope', sans-serif !important;
} */

p,
span,
small,
strong,
li,
a,
button,
input,
textarea,
label,
div {
    font-family: "Lato", system-ui, sans-serif !important;
}

.programs-section {
    scroll-margin-top: 100px;
}

html {
    scroll-behavior: smooth;
}

.navbar-top-content {
    background-color: #f3f2f2;
    transition:
        transform 0.3s ease,
        height 0.3s ease,
        opacity 0.2s ease;
    transform: translateY(0);
    overflow: hidden;
}

/* Header wrapper logic stays unchanged */
.site-header {
    width: 100%;
    z-index: 1050;
}

.site-header.strip-hidden .navbar-top-content {
    transform: translateY(-100%);
    height: 0;
    opacity: 0;
}

/* Inner layout */
.strip-inner {
    flex-wrap: wrap;
    /* responsive */
}

/* Text body */
.strip-text {
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1.3;
    font-weight: 400;
}

/* Countdown */
.count-down {
    font-size: 14px;
    font-weight: 700;
}

/* Button */
.header-strip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7c00 !important;
    color: #fff !important;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 10px;
    font-weight: 400;
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .strip-inner {
        flex-direction: column;
        gap: 8px;
    }

    .header-strip-btn {
        margin-left: 0;
    }
}

.navbar {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(22px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.container-fluid {
    width: 94%;
    max-width: 1320px;
}

.navbar-brand {
    width: 100px;
    height: 80px;
}

.navbar-brand img.nav-logo {
    width: 100px;
    height: 100%;
    object-fit: contain;
}

.nav-link {
    color: #fff;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fff;
}

.navbar-toggler {
    display: flex;
    align-items: flex-end !important;
    width: 50px;
    color: #2c2c2c;
    background-color: #ff7c00;
    border-radius: 7px;
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-section {
    position: relative;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
        url("../images/iph-training-hub-lucknow.png");
    height: auto;
    display: flex;
    align-items: center;
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0px;
    overflow: hidden;
}

.blog-hero-section {
    position: relative;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0)),
        url("../images/iph-training-hub-lucknow.png");
    height: 80vh;
    display: flex;
    align-items: flex-end;
    padding-bottom: 7vh;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 0;
    overflow: hidden;
}

/* Bottom white gradient blur layer */
.blog-hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(to top,
            rgb(242, 242, 242) 0%,
            rgba(255, 255, 255, 0.9) 25%,
            rgba(255, 255, 255, 0.7) 50%,
            rgba(255, 255, 255, 0.4) 75%,
            rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.blog-hero-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom,
            rgb(16, 16, 16) 0%,
            rgba(20, 20, 20, 0.9) 25%,
            rgba(26, 25, 25, 0.7) 50%,
            rgba(43, 42, 42, 0.4) 75%,
            rgba(50, 49, 49, 0) 100%);
    pointer-events: none;
}

.hero-section .container-fluid {
    margin-top: 6%;
    padding: 100px 0px !important;
    width: 100%;
    max-width: 92%;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 253, 253, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.1);
}

.nav-btn-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff7c00 !important;
    color: rgb(255, 254, 254) !important;
    padding: 10px 25px !important;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 300;
    transition: all 0.5s ease;
    border: none;
    text-decoration: none;
}

.nav-btn-style:hover {
    color: rgb(255, 255, 255) !important;
}

.custome-btn-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff7c00, #ff7c00);
    color: #fff !important;
    padding: 12px 24px !important;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 500;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custome-btn-style:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 108, 3, 0.4);
    color: #fff !important;
}

.outline-btn-style {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #2874fc !important;
    padding: 10px 28px !important;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 500;
    border: 2px solid #2874fc;
    text-decoration: none;
    cursor: pointer;
}

.outline-btn-style:hover {
    background: #2874fc;
    color: #ffffff !important;
}

.hero-image {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.stat-card {
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px 13px;
    box-shadow: 2px 2px 5px rgba(235, 235, 235, 0.25);
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16.5px);
}

.stat-card:hover {
    transform: translateY(-2px);
}

.stat-number {
    font-size: 30px;
    font-weight: bold;
    background: #fff;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 7px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.programs-section {
    padding: 50px 0;
    background: var(--light-bg);
}

.section-title {
    font-size: 34px;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-sub-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--dark-bg);
}

.section-para {
    color: #2c2c2c;
    font-size: 16px;
}

.about-us-iphtech p {
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: justify;
    width: 100%;
}

.program-card-wrapper {
    position: relative;
    width: 100%;
    padding: 25px;
    background: linear-gradient(135deg, #ffffff, #f4f7ff);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #e5e9ff;
    transition: all 0.3s ease;
}

.program-card-wrapper p {
    padding-bottom: 0px;
    margin-bottom: 0px;
    text-align: justify;
    width: 100%;
}

.program-card-wrapper:hover {
    transform: translateY(-2px);
}

.program-front {
    position: relative;
    z-index: 1;
}

.program-back {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 18px;
    z-index: 10;
    background: linear-gradient(135deg, #fff, #fff, #dfdede);
    backdrop-filter: blur(16px);
    transition: all 0.45s ease-out;
    display: flex;
    flex-direction: column;
}

.program-back::before {
    content: "";
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    filter: blur(10px);
}

.program-card-wrapper:hover .program-back {
    right: 0;
}

.program-back h4 {
    font-size: 14px;
    font-weight: 600;
    color: #2c2c2c !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px !important;
    position: relative;
    display: inline-block;
}

.program-back h4::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: rgba(70, 70, 70, 0.8);
    transition: width 0.3s ease;
}

.program-back ul {
    position: relative;
}

.program-back ul li {
    color: #2c2c2c;
    font-size: 14px;
    margin-bottom: 7px;
    list-style: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(244, 241, 241, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(213, 212, 212, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.program-back ul li:hover {
    background: rgba(230, 230, 230, 0.2);
    transform: translateX(3px);
    border-color: rgba(219, 218, 218, 0.3);
}

.program-back ul li i {
    color: #3c3c3c;
    font-size: 14px;
    width: 20px;
    text-align: center;
}

.program-back-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    padding-right: 20px;
    margin-right: -20px;
    scrollbar-width: thin;
    scrollbar-color: #fc9738 transparent;
}

.program-back-content::-webkit-scrollbar {
    max-width: 1px !important;
    max-height: 10px !important;
}

.program-back-content::-webkit-scrollbar-track {
    background: transparent;
}

.program-back-content::-webkit-scrollbar-thumb {
    background-color: #858484 !important;
    border-radius: 10px;
}

.see-more-btn {
    display: inline-block;
    padding: 8px 22px;
    background: rgb(255, 255, 255);
    color: #fc9738 !important;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgb(211, 207, 207);
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.see-more-btn:hover {
    background: rgb(255, 255, 255);
    color: #fc9738 !important;
    transform: translateY(-2px);
    box-shadow: 0px 3px 7px rgba(68, 67, 67, 0.1);
    color: rgba(255, 254, 254, 0.0000001);
}

.modules-section {
    padding: 50px 0;
    background: #fff;
}

.module-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 20px;
    color: #fff;
    transition: all 0.25s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: auto;
    width: 100%;
}

.module-card:hover {
    transform: translateY(-3px) !important;
}

.module-card-learn-list {
    padding-left: 0;
    margin: 10px 0 40px 15px;
    line-height: 1.6;
}

.module-duration {
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    bottom: 20px;
    right: 20px;
}

.module-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.module-type {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    padding: 40px 0 20px;
}

.footer-links a {
    color: #6b7c98;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #4e8efc;
    padding-left: 5px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #387ef7;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
    }

    section {
        overflow-x: hidden !important;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px !important;
    }

    .section-title {
        font-size: 22px;
    }

    .section-para {
        font-size: 13px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .program-card {
        padding: 30px;
    }

    .custome-btn-style {
        padding: 9px 20px !important;
        font-size: 15px;
    }

    .outline-btn-style {
        padding: 9px 20px !important;
        font-size: 15px;
    }
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* change carousel style  */
.students-carousel .item {
    display: flex;
    height: 100%;
    align-items: stretch;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
}

.student-card {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

@media (max-width: 767px) {
    .students-carousel .item {
        padding: 5px;
    }

    .student-card {
        width: 100%;
        max-width: 330px;
    }
}

/* --------- end ------- */

.student-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.25);
}

.student-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.student-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.student-card:hover .student-image img {
    transform: scale(1.1);
}

.student-info {
    padding: 20px;
    text-align: center;
}

.student-name {
    font-size: 18px;
    font-weight: bold;
    color: var(--dark-bg);
    margin-bottom: 8px;
}

.student-role {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.student-tech {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.tech-badge {
    background: linear-gradient(135deg,
            var(--primary-color),
            var(--secondary-color));
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
    display: none;
    /* position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); */
}

.owl-carousel .owl-nav button.owl-prev {
    left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    right: -25px;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.owl-carousel .owl-nav button span {
    font-size: 2rem;
    line-height: 1;
}

/* Wrapper (bottom right position) */
.fab-wrapper {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 998;
}

.fab-card {
    width: 60px;
    background: linear-gradient(145deg, #22a951, #1e9548);
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);

    cursor: pointer;
    animation: gentlePulse 2s ease-in-out 1s 2;



    height: 110px;
    border-radius: 28px;
    padding: 6px;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(34, 169, 81, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

}

/* WAVE AROUND BUTTON (fixed visibility) */
.fab-card::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(34, 169, 81, 0.35);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.4);
    opacity: 0.7;
    animation: waveEffect 2.5s ease-out infinite;
    z-index: -1;
}

@keyframes waveEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.4);
        opacity: 0.6;
    }

    70% {
        opacity: 0.25;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.7);
        opacity: 0;
    }
}

/* Circle shadow on hover */
.fab-card::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: 0.3s ease;
}



.fab-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ICON BASE */
.fab-icon {
    width: 38px;
    height: 38px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: linear-gradient(145deg, #ffffffd9, #ffffffcf);
    backdrop-filter: blur(10px);
    border: 2px solid #ffffffdd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    z-index: 2;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.call {
    top: 30%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    color: #4285F4;
}

.whatsapp {
    top: 70%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    color: #25D366;
}

/* .fab-card:hover .call {
    top: 30%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
} */

/* .fab-card:hover .whatsapp {
    top: 70%;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
} */

.fab-icon::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.fab-icon:hover::after {
    opacity: 1;
}

.tawk-min-container .tawk-button-circle.tawk-button-large {
    width: 60px;
    height: 60px;
}

@media (max-width: 768px) {
    .fab-wrapper {
        bottom: 15px;
        right: 15px;
    }

    .tawk-min-container .tawk-button-circle.tawk-button-large {
        width: 45px !important;
        height: 45px !important;
    }

    .fab-card {
        width: 45px;
        height: 90px;
    }

    .fab-icon {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    .fab-card::before {
        width: 50px;
        height: 50px;
    }
}

.enhanced-why-section {
    background: linear-gradient(180deg, #f3f3f3 0%, #ffffff 100%);
}

.why-card {
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 20px rgba(0, 0, 0, 0.12);
}

.why-icon {
    font-size: 3rem;
    color: #2874fc;
    margin-bottom: 15px;
}

.why-title {
    font-size: 1.25rem !important;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-size: 0.9rem;
    color: #3b4554;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
}

.why-list li::before {
    content: "✓";
    color: #2874fc;
    font-weight: bold;
    margin-right: 6px;
}

/* Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f9f9f9 100%);
    position: relative;
    overflow: hidden;
}

.faq-container {
    position: relative;
    z-index: 1;
}

.accordion-item {
    background: #fff;
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: #2c2c2c;
    padding: 15px 20px;
    background: #fff;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: #2c2c2c;
    background: #e1ecff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    transform: scale(1.2);
}

.accordion-button:not(.collapsed)::after {
    transform: scale(1.2) rotate(-180deg);
}

.accordion-body {
    padding: 15px;
    font-size: 14px;
    line-height: 1.7;
    color: #4a5568;
    background: #f7fafc;
}

.faq-icon {
    width: 2.5rem;
    height: 2.5rem;
    min-width: 2.5rem;
    min-height: 2.5rem;
    background: #2874fc;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: #fff;
    font-size: 1rem;
    flex-shrink: 0;
    /* VERY IMPORTANT */
}

@media (max-width: 768px) {
    .faq-icon {
        width: 2.2rem;
        height: 2.2rem;
        min-width: 2.2rem;
        min-height: 2.2rem;
        font-size: 0.9rem;
    }

    .accordion-button {
        font-size: 14px;
    }

    .accordion-body {
        font-size: 13px;
    }

    .accordion-button::after {
        transform: scale(0.8);
    }

    .accordion-button:not(.collapsed)::after {
        transform: scale(0.8) rotate(-180deg);
    }
}

.btn-outline-primary {
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
}

/* Enhanced card-style with subtle hover effects */
.card-style {
    background-color: #ffff;
    border-radius: 16px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.java-page-card {
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* Glass effect */
    border-radius: 22px;
    padding: 28px;
    margin: auto;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(20px);
}

.why-learn-section .card-style {
    background-color: #f9f9f9 !important;
}

.why-learn-section .icons {
    font-size: 24px;
    padding: 10px 15px;
    border-radius: 50% !important;
}

.hybrid-framework-section .icons {
    font-size: 24px;
    padding: 17px 15px;
    border-radius: 50% !important;
}

.traning-highlights .icons {
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 50%;
    background-color: #e1ecff;
}

.curriculum .card-style {
    background-color: #ffff !important;
}

.card-style:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 7px 10px rgba(0, 0, 0, 0.15) !important;
}

.text-primary {
    color: #2874fc !important;
}

/*---------- Succes payment page css  ---------- */

/* Section */
.payment-success-section {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.success-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

    max-width: 750px;
}

.success-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.18);
    text-align: center;
}

/* Icon */
.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: pop 0.8s ease-in-out;
}

@keyframes pop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Title */
.success-title {
    font-size: 34px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 15px;
}

.next-steps {
    text-align: left;
    background: #ffff;
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.next-steps h4 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 10px;
}

.next-steps ul {
    padding-left: 20px;
    margin: 0;
}

.next-steps li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .success-card {
        padding: 35px 25px;
    }

    .success-title {
        font-size: 2rem;
    }

    .success-icon {
        font-size: 4rem;
    }
}

@media (max-width: 480px) {
    .success-title {
        font-size: 1.7rem;
    }

    .next-steps {
        padding: 15px 18px;
    }
}

.payment-card {
    background: #2874fc;
    border-radius: 18px;
    padding: 35px 28px;
    text-align: center;
    color: #fff;
    box-shadow: 0 3px 7px rgba(26, 95, 180, 0.15);
}

/* ---------- popup style-start ----------- */

.popup-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(11, 36, 77, 0.18), transparent 25%),
        radial-gradient(circle at bottom left, rgba(6, 6, 6, 0.15), transparent 25%), rgba(7, 15, 31, 0.25);
    backdrop-filter: blur(2px) saturate(30%);
    -webkit-backdrop-filter: blur(2px) saturate(30%);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9998;
}

.popup-overlay.active {
    display: flex;
}


.popup-overlay.active {
    display: flex;
}

.course-popup {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(500px, 92vw);
    height: min(500px, 92vh);
    background-color: #111;
    background-repeat: no-repeat;
    background-size: contain;
    /* show full image */
    background-position: center;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    transform: translate(-50%, -50%) scale(.9);
    opacity: 0;
    visibility: hidden;
    transition: all .35s ease;
    z-index: 9999;
    aspect-ratio: 1/1;
}

.course-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.course-popup::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: 1;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, .6);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 10000;
}

.popup-close:hover {
    background: rgba(0, 0, 0, .8);
}

/*=========== Blog Listing page design  =============*/
.bl-filter {
    background: #ffff;
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid #f3f3f3;
    padding: 0.9rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.bl-filter-inner {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-wrapper {
    position: relative;
    width: 300px;
}

.search-input {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #e8e8fb;
    padding: 12px 45px 12px 18px;
    font-size: 14px;
    outline: none;
    background: #eaeef9;
    transition: all 0.25s ease;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.15);
}

.search-input:focus {
    background: #e4eafa;
    border-color: #b2bdf6;
    transform: translateY(0px);
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.18);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    height: 32px;
    width: 32px;
    border: none;
    background: transparent;
    color: rgb(35, 41, 60);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-btn i {
    font-size: 13px;
}

.blog-box {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 5px 5px 9px rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-box:hover {
    transform: translateY(-3px);
    box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.19);
    color: #2874fd;
}

.image-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-box:hover img {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #206db5;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 30px;
}

.blog-content-box {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-desc {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #888;
}

.blog-meta i {
    margin-right: 5px;
}

/* ── Blog Pagination ─────────────────────────────────── */
#pagination-wrapper nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

#pagination-wrapper nav .text-sm.text-gray-700 {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
    letter-spacing: 0.3px;
}

#pagination-wrapper nav .text-sm.text-gray-700 .font-medium {
    color: #111827;
    font-weight: 700;
}

/* Hide mobile prev/next block */
#pagination-wrapper nav .flex.justify-between.flex-1 {
    display: none !important;
}

/* Pagination button group */
#pagination-wrapper nav .relative.z-0.inline-flex {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    box-shadow: none !important;
    border-radius: 0;
}

/* All page buttons base style */
#pagination-wrapper nav .relative.z-0.inline-flex a,
#pagination-wrapper nav .relative.z-0.inline-flex span span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 40px;
    font-size: 14px;
    font-weight: 600;
    border: 1.5px solid #e5e7eb;
    border-radius: 10px !important;
    background: #fff;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    margin: 0;
}

/* Hover state */
#pagination-wrapper nav .relative.z-0.inline-flex a:hover {
    background: var(--bs-primary, #0d6efd);
    border-color: var(--bs-primary, #0d6efd);
    color: #2c2c2c;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
    transform: translateY(-1px);
}

/* Active / current page */
#pagination-wrapper nav span[aria-current="page"] span {
    background: var(--bs-primary, #0d6efd) !important;
    border-color: var(--bs-primary, #0d6efd) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3) !important;
    cursor: default;
}

/* Disabled next/prev arrows */
#pagination-wrapper nav span[aria-disabled="true"] span {
    width: 40px;
    background: #f9fafb !important;
    border-color: #e5e7eb !important;
    color: #d1d5db !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
}

/* Prev / Next arrow buttons */
#pagination-wrapper nav a[rel="prev"],
#pagination-wrapper nav a[rel="next"] {
    width: 40px;
    background: #f9fafb;
    border-color: #e5e7eb;
    color: #6b7280;
}

#pagination-wrapper nav a[rel="prev"]:hover,
#pagination-wrapper nav a[rel="next"]:hover {
    background: var(--bs-primary, #0d6efd);
    border-color: var(--bs-primary, #0d6efd);
    color: #fff;
}

/* SVG arrow icons size */
#pagination-wrapper nav svg {
    width: 16px;
    height: 16px;
}

/* Ellipsis dots */
#pagination-wrapper nav span.relative>span:not([aria-current]) {
    background: transparent !important;
    border-color: transparent !important;
    color: #9ca3af !important;
    box-shadow: none !important;
    cursor: default;
    min-width: 30px;
}

.blog-content-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 16px;
}

.blog-bottom-content {
    margin-top: auto;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info {
    line-height: 1.2;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
}

.author-role {
    font-size: 12px;
    color: #777;
}

/* Responsive */
@media (max-width: 576px) {

    #pagination-wrapper nav .relative.z-0.inline-flex a,
    #pagination-wrapper nav .relative.z-0.inline-flex span span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        border-radius: 8px !important;
    }
}

.subscribe-section {
    background: #f8f9fc;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.subscribe-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(99, 137, 255, 0.12) 0%,
            transparent 70%);
    pointer-events: none;
}

.subscribe-section-row {
    position: relative;
    background: linear-gradient(145deg,
            #e9e6ff 0%,
            #dbe9ff 30%,
            #f7f8fa 50%,
            #dbe9ff 70%,
            #e9e6ff 100%);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.19);
    overflow: hidden;
}

.subscribe-section-row::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0));
    z-index: 1;
}

.subscribe-section-row>* {
    position: relative;
    z-index: 2;
}

.sub-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5a7bef;
    background: rgba(99, 137, 255, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(99, 137, 255, 0.2);
    margin-bottom: 1.25rem;
}

.sub-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5a7bef;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.sub-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 1rem;
}

.sub-title em {
    font-style: italic;
    color: #3b60e4;
}

.sub-desc {
    font-size: 15.5px;
    line-height: 1.8;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.sub-form-wrap {
    max-width: 500px;
    margin: 0 auto 1rem;
}

.input-group.sub-group {
    background: #fff;
    border-radius: 99px;
    overflow: hidden;
    border: 1.5px solid #dbe4ff;
    box-shadow: 0 4px 24px rgba(59, 96, 228, 0.08);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.input-group.sub-group:focus-within {
    border-color: #2874fc;
    box-shadow: 0 4px 24px rgba(59, 96, 228, 0.18);
}

/* Frame 40461 */

.sub-group .form-control {
    border: none;
    background: transparent;
    padding: 14px 22px;
    font-size: 14.5px;
    color: #0f172a;
    margin-right: 5px;
    box-shadow: none !important;
}

.sub-group .form-control::placeholder {
    color: #94a3b8;
}

.sub-group .btn-subscribe {
    background: #2874fc;
    color: #fff;
    border: none;
    border-radius: 99px !important;
    padding: 10px 26px;
    margin: 5px;
    font-size: 14px;
    font-weight: 500;
    transition:
        background 0.2s,
        transform 0.15s;
}

.sub-group .btn-subscribe:hover {
    background: #2748c9;
    transform: scale(1.03);
}

.sub-note {
    font-size: 12.5px;
    color: #94a3b8;
}

.sub-note .check {
    display: inline-flex;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #e2f0e8;
    color: #2d7d4f;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    margin-right: 4px;
}

.sub-divider {
    width: 40px;
    height: 1px;
    background: #dbe4ff;
    margin: 1.5rem auto;
}

.trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 1.5rem;
    font-size: 13px;
    color: #475569;
}

.trust-item:not(:last-child) {
    border-right: 1px solid #dbe4ff;
}

.trust-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #fff;
    border: 1px solid #dbe4ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.trust-label strong {
    display: block;
    font-weight: 500;
    color: #0f172a;
    font-size: 13.5px;
}

/* ------------- Company marquee List------------ */
.placement-marquee-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.placement-marquee-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.placement-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.placement-title {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    color: #0f172a;
}

.placement-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
    padding: 40px 0px;
}

.logo-item {
    min-width: 220px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .9);

    transition: .4s;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(255, 107, 0, .15);
}

.logo-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;

    filter: grayscale(100%);
    transition: .4s;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item span {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

@media(max-width:768px) {

    .logo-item {
        min-width: 180px;
        height: 80px;
    }

    .logo-item img {
        width: 38px;
        height: 38px;
    }

    .logo-item span {
        font-size: 14px;
    }

    .logo-track {
        animation-duration: 25s;
    }
}

.placement-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .05);
}

.placement-title {
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    color: #0f172a;
}

.placement-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: auto;
}

.logo-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    align-items: center;
    gap: 24px;
    width: max-content;
    animation: scrollLeft 40s linear infinite;
    padding: 40px 0px;
}

.logo-item {
    min-width: 220px;
    height: 95px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 20px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06),
        inset 0 1px 0 rgba(255, 255, 255, .9);

    transition: .4s;
}

.logo-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 45px rgba(255, 107, 0, .15);
}

.logo-item img {
    width: 48px;
    height: 48px;
    object-fit: contain;

    filter: grayscale(100%);
    transition: .4s;
}

.logo-item:hover img {
    filter: grayscale(0%);
}

.logo-item span {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

@keyframes scrollLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 180px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, transparent 100%);
}

@media(max-width:768px) {

    .logo-item {
        min-width: 180px;
        height: 80px;
    }

    .logo-item img {
        width: 38px;
        height: 38px;
    }

    .logo-item span {
        font-size: 14px;
    }

    .logo-track {
        animation-duration: 25s;
    }
}



#compare,
#compare table td {
    background: #0a0d1a;
}

#compare .text-gradient {
    color: var(--accent-color) !important;
}

.lucide-rocket-native {
    width: 28px;
    height: 28px;
}

.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23FFFFFF'%3E%3Cpath d='M120-240v-80h720v80H120Zm0-200v-80h720v80H120Zm0-200v-80h720v80H120Z'/%3E%3C/svg%3E");
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================
   MODERN LEFT DRAWER
========================= */
.modern-mobile-drawer {
    width: 300px !important;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
    color: black;
    z-index: 9999;
}

.modern-mobile-drawer .offcanvas-header {
    padding: 9px 8px;
}

.drawer-logo {
    width: 97px;
    height: auto;
}

.drawer-close {
    opacity: 1;
    display: none;
}

@media (max-width: 369px) {
    .drawer-close {
        display: block;
    }
}

/* Drawer body */
.modern-mobile-drawer .offcanvas-body {
    padding: 0 !important;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modern-mobile-drawer .offcanvas-body::-webkit-scrollbar {
    display: none;
}

/* Nav links */
.mobile-nav-list {
    gap: 6px;
    background: transparent !important;
    border-radius: 0px !important;
    border: none !important;
    margin-top: 0px !important;
}

.mobile-nav-list a {
    margin: 0px;
}

.mobile-nav-list .nav-link {
    font-size: 16px;
    font-weight: 600;
    color: #111827 !important;
    padding: 14px 14px;
    transition: all 0.25s ease;
}

.mobile-nav-list .nav-link:hover {
    color: #0d6efd;
}

/* Bottom contact card */
.mobile-drawer-bottom {
    padding: 10px;
    background: linear-gradient(135deg, #f8faff, #eef4ff);
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.mobile-contact-card {
    display: block;
    text-decoration: none;
    background: linear-gradient(135deg, #f8faff, #eef4ff);
    border: 1px solid rgba(13, 110, 253, 0.08);
    padding: 14px;
    color: #111827;
    transition: all 0.3s ease;
}

.mobile-contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(13, 110, 253, 0.08);
}

.mobile-contact-card small {
    display: block;
    color: #6b7280;
    font-size: 12px;
    margin-bottom: 2px;
}

.mobile-contact-number {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.mobile-contact-icon {
    width: 46px;
    height: auto;
    flex-shrink: 0;
}

/* Enroll button */
.mobile-enroll-btn {
    padding: 12px 8px !important;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
}

/* Optional better offcanvas backdrop */
.offcanvas-backdrop.show {
    opacity: 0.45;
    backdrop-filter: blur(2px);
}

/* Desktop / mobile visibility cleanup */
@media (max-width: 991.98px) {
    .navbar-collapse {
        display: none !important;
    }

    .custom-navbar {
        padding: 8px 0;
    }
}

.mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: 0;
    font-size: 16px;
    font-weight: 500;
    color: #2c2c2c;
}

.mobile-dropdown-toggle i {
    transition: .3s;
}

.offcanvas-body .mobile-dropdown-menu .mobile-dropdown-toggle {
    border: 1px solid rgba(255, 255, 255, 0);
}

.offcanvas-body .mobile-dropdown-menu.active .mobile-dropdown-toggle {
    background: linear-gradient(135deg, #f8faff, #eef4ff);
    border: 1px solid rgba(13, 110, 253, 0.08);
}

.offcanvas-body .mobile-dropdown-menu.active .mobile-submenu {
    background-color: #e8f0ff56;
}

.mobile-dropdown-menu.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-submenu {
    display: none;
    list-style: none;
}

.mobile-submenu ul {
    padding: 0px 20px;
}

.mobile-submenu li a {
    display: flex;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-size: 15px;
    justify-content: space-between;
}

.mobile-submenu li a .mobile-submenu-text {
    margin-left: 2px;
}

.mobile-submenu li a:hover {
    color: #0d6efd;
}

.iphs-tech-stack-section {
    padding: 5rem 0;
    background: #f9f9f9;
}

.iphs-tech-stack-heading {
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: .5rem;
}

.iphs-tech-stack-subtext {
    max-width: 1000px;
    margin-bottom: 2.5rem;
}

.iphs-tech-stack-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.iphs-tech-stack-scene {
    position: relative;
    display: flex;
    border-radius: 16px;
    overflow: hidden;
}

.iphs-tech-stack-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.3rem;
    background: #fff;
    border: 1.5px solid #e8eaed;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
    overflow: hidden;
}

.iphs-tech-stack-active .iphs-tech-stack-card {
    border-color: #ff7c00;
    box-shadow: 0 4px 20px rgba(255, 124, 0, .12);
}

.iphs-tech-stack-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 16px;
    background: rgba(26, 26, 46, .6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 5;
}

.iphs-tech-stack-scene:hover .iphs-tech-stack-overlay {
    opacity: 1;
    pointer-events: auto;
}

.iphs-tech-stack-badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-end;
    padding: 4px 12px;
    margin-bottom: .75rem;
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .03em;
    flex-shrink: 0;
}

.iphs-tech-stack-badge--on {
    background: #fff0e0;
    color: #c05500;
    border: 1px solid #ffd0a0;
}

.iphs-tech-stack-badge--soon {
    background: #f2f3f5;
    color: #7a828e;
    border: 1px solid #e0e2e6;
}

.iphs-tech-stack-hdr {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: .7rem;
    flex-shrink: 0;
}

.iphs-tech-stack-hdr img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.iphs-tech-stack-hdr h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a2e;
}

.iphs-tech-stack-desc {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: #5f6677;
}

.iphs-tech-stack-blabel {
    margin: .65rem 0 .35rem;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #aab0bc;
}

.iphs-tech-stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.iphs-tech-stack-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    font-size: 12.5px;
    color: #444;
    background: #f6f7f9;
    border: 1px solid #e8eaed;
    border-radius: 50px;
    white-space: nowrap;
}

.iphs-tech-stack-tag i {
    font-size: 10px;
    color: #ff7c00;
}

.iphs-tech-stack-prog {
    margin-top: auto;
    padding-top: 12px;
}

.iphs-tech-stack-prog-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 11.5px;
    color: #8a8f9a;
}

.iphs-tech-stack-bar {
    width: 100%;
    height: 6px;
    background: #eeeff1;
    border-radius: 50px;
    overflow: hidden;
}

.iphs-tech-stack-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #e05500 0%, #ffb347 55%, transparent 100%);
    transition: width .6s ease;
}

.iphs-tech-stack-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 150px;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    border: 1.5px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all .25s ease;
}

.iphs-tech-stack-btn--ghost {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .8);
}

.iphs-tech-stack-btn--ghost:hover {
    color: #fff;
    background: rgba(255, 255, 255, .2);
    border-color: #fff;
}

.iphs-tech-stack-btn--fill {
    color: #fff;
    background: #ff7c00;
    border-color: #ff7c00;
}

.iphs-tech-stack-btn--fill:hover {
    color: #fff;
    background: #e06a00;
    border-color: #e06a00;
}

.iphs-tech-stack-feature-img {
    position: relative;
    grid-row: span 2;
    border: 1.5px solid #e8eaed;
    border-radius: 16px;
    overflow: hidden;
}

.iphs-tech-stack-feature-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.iphs-tech-stack-feature-img:hover img {
    transform: scale(1.05);
}

@media (max-width:1199.98px) {

    .iphs-tech-stack-section {
        padding: 4.5rem 0;
    }

    .iphs-tech-stack-grid {
        gap: 14px;
    }

    .iphs-tech-stack-card {
        padding: 1.2rem;
    }

    .iphs-tech-stack-btn {
        min-width: 140px;
        padding: 11px 20px;
        font-size: 15px;
    }
}

@media (max-width:991.98px) {

    .iphs-tech-stack-section {
        padding: 4rem 0;
    }

    .iphs-tech-stack-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .iphs-tech-stack-feature-img {
        order: -1;
        grid-column: 1;
        grid-row: 1;
        height: 320px;
    }

    .iphs-tech-stack-feature-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .iphs-tech-stack-card {
        padding: 1.15rem;
    }

    .iphs-tech-stack-btn {
        min-width: 145px;
        font-size: 15px;
    }
}

@media (max-width:767.98px) {

    .iphs-tech-stack-section {
        padding: 3.5rem 0;
    }

    .iphs-tech-stack-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .iphs-tech-stack-scene {
        min-height: auto;
    }

    .iphs-tech-stack-feature-img {
        height: 260px;
        border-radius: 14px;
    }

    .iphs-tech-stack-card {
        padding: 1.1rem;
    }

    .iphs-tech-stack-hdr h3 {
        font-size: 15px;
    }

    .iphs-tech-stack-desc {
        font-size: 14px;
        line-height: 1.6;
    }

    .iphs-tech-stack-btn {
        min-width: 140px;
        padding: 11px 18px;
        font-size: 14px;
    }

    .iphs-tech-stack-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .iphs-tech-stack-scene:hover .iphs-tech-stack-overlay {
        opacity: 0;
        pointer-events: none;
    }

    .iphs-tech-stack-scene.iphs-tech-stack-tapped .iphs-tech-stack-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width:575.98px) {

    .iphs-tech-stack-section {
        padding: 3rem 0;
    }

    .iphs-tech-stack-grid {
        gap: 12px;
    }

    .iphs-tech-stack-feature-img {
        height: 220px;
        border-radius: 12px;
    }

    .iphs-tech-stack-card {
        padding: 1rem;
        border-radius: 14px;
    }

    .iphs-tech-stack-hdr {
        gap: 8px;
    }

    .iphs-tech-stack-hdr img {
        width: 32px;
        height: 32px;
    }

    .iphs-tech-stack-hdr h3 {
        font-size: 15px;
    }

    .iphs-tech-stack-desc {
        font-size: 13.5px;
    }

    .iphs-tech-stack-tag {
        font-size: 11.5px;
        padding: 3px 8px;
    }

    .iphs-tech-stack-btn {
        width: 90%;
        min-width: auto;
    }
}

@media (max-width:399.98px) {

    .iphs-tech-stack-feature-img {
        height: 190px;
    }

    .iphs-tech-stack-btn {
        width: 100%;
        font-size: 13px;
        padding: 10px 16px;
    }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   Pricing Section — IPHS Learning Hub
   Prefix: iphs-pricing-  (zero conflicts)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.iphs-pricing-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

/* ── Grid ── */
.iphs-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* ── Card ── */
.iphs-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.65rem;
    background: #fff;
    border: 1.5px solid #e8eaed;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .05);
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.iphs-pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .10);
}

.iphs-pricing-card--featured {
    border-color: #FF7C00;
    box-shadow: 0 4px 28px rgba(255, 124, 0, .18);
}

.iphs-pricing-card--featured:hover {
    box-shadow: 0 14px 40px rgba(255, 124, 0, .22);
}

/* ── Popular badge ── */
.iphs-pricing-popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    background: linear-gradient(90deg, #e05500, #FFB347);
    color: #fff;
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .04em;
}

/* ── Plan name ── */
.iphs-pricing-plan-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #aab0bc;
    margin-bottom: .4rem;
}

.iphsp-duration-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    padding: 2px 15px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .2);
    font-weight: 600;
    background: #f9f9f9;
}

.iphs-pricing-card--featured .iphs-pricing-plan-name {
    color: #FF7C00;
}

/* ── Plan title ── */
.iphs-pricing-plan-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: .4rem;
}

/* ── Plan desc ── */
.iphs-pricing-plan-desc {
    font-size: 13.5px;
    color: #5f6677;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* ── Divider ── */
.iphs-pricing-divider {
    border: none;
    border-top: 1.5px solid #f3f3f3;
    margin: 0 0 1rem;
}

/* ── Price block ── */
.iphs-pricing-price-wrap {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 1.5rem;
}

.iphs-pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1;
    padding-bottom: 6px;
}

.iphs-pricing-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
}

.iphs-pricing-card--featured .iphs-pricing-amount,
.iphs-pricing-card--featured .iphs-pricing-currency {
    color: #FF7C00;
}

.iphs-pricing-period {
    font-size: 13px;
    color: #aab0bc;
    padding-bottom: 6px;
}

/* ── Features list ── */
.iphs-pricing-features {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.iphs-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #3d4152;
    line-height: 1.5;
}

.iphs-pricing-features li.iphs-pricing-feat--off {
    color: #bfc4cc;
    text-decoration: line-through;
}

.iphs-pricing-feat-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 9px;
}

.iphs-pricing-feat-icon--on {
    background: #fff0e0;
    color: #FF7C00;
}

.iphs-pricing-feat-icon--off {
    background: #f2f3f5;
    color: #bfc4cc;
}

/* ── CTA button ── */
.iphs-pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 24px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
    margin-top: auto;
}

.iphs-pricing-cta--outline {
    color: #FF7C00;
    border-color: #FF7C00;
    background: transparent;
}

.iphs-pricing-cta--outline:hover {
    background: #fff0e0;
    color: #c05500;
    border-color: #c05500;
}

.iphs-pricing-cta--fill {
    background: linear-gradient(90deg, #e05500, #FF7C00);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 4px 14px rgba(255, 124, 0, .35);
}

.iphs-pricing-cta--fill:hover {
    background: linear-gradient(90deg, #c94b00, #e06a00);
    box-shadow: 0 6px 20px rgba(255, 124, 0, .45);
    color: #fff;
}

/* ── Note ── */
.iphs-pricing-note {
    font-size: 12px;
    color: #aab0bc;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 0;
}

.iphs-pricing-note a {
    color: #FF7C00;
    text-decoration: none;
    font-weight: 600;
}

.iphs-pricing-note a:hover {
    text-decoration: underline;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━
   Responsive
━━━━━━━━━━━━━━━━━━━━━━━━ */
@media (max-width: 991px) {
    .iphs-pricing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .iphs-pricing-card--featured {
        order: -1;
        grid-column: 1 / -1;
    }
}

@media (max-width: 575px) {
    .iphs-pricing-section {
        padding: 3rem 0;
    }

    .iphs-pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .iphs-pricing-card--featured {
        grid-column: auto;
    }
}