/* =========================================
   CERTIFICATION PAGE STYLES
   ========================================= */
:root {
    --cert-primary: #0046bf;
    --cert-secondary: #F38A12;
    --cert-accent: #AA1D01;
    --cert-surface: #faf8ff;
    --cert-surface-alt: #eef8ff;
    --cert-surface-orange: #FFECD4;
    --cert-text-main: #333333;
    --cert-text-muted: #5c575b;
    --cert-white: #ffffff;
    --cert-shadow: 0 4px 15px rgba(0, 0, 0, .05);
    --cert-shadow-hover: 0 20px 40px rgba(0, 70, 191, .15);
    --cert-border-radius: 16px;
    --cert-font-main: 'Plus Jakarta Sans', sans-serif;
    --cert-font-body: 'Inter', sans-serif;
}

/* Base Utility Classes */
.cert-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.cert-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--cert-font-main);
}

.cert-btn-primary {
    background-color: var(--cert-secondary);
    color: var(--cert-white);
    box-shadow: var(--cert-shadow);
}

.cert-btn-primary:hover {
    transform: translateY(-2px);
    background-color: #d97d0c;
}

.cert-btn-outline-white {
    background-color: transparent;
    border: 2px solid #0046BF;
    color: #0046BF;
}

.cert-btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cert-btn-white {
    background-color: var(--cert-white);
    color: var(--cert-primary);
    box-shadow: var(--cert-shadow);
}

.cert-btn-white:hover {
    background-color: #f3f3fd;
    transform: translateY(-2px);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Headings & Tags */
.cert-section-head {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
}

.cert-title-line {
    width: 80px;
    height: 3px;
    background: var(--cert-secondary);
    margin: 15px 0 20px 0;
    border-radius: 10px;
}

.cert-title-line.light {
    background: var(--cert-white);
    opacity: 0.8;
}

.cert-title-line.center {
    margin: 15px auto 20px auto;
}

.cert-tag {
    display: inline-block;
    color: var(--cert-white);
    font-size: 16px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
}

.cert-tag.dark-tag {
    background: rgba(0, 70, 191, 0.1);
    color: var(--cert-primary);
    border-color: rgba(0, 70, 191, 0.2);
    backdrop-filter: none;
}

.cert-section-head h2 {
    font-size: 38px;
    color: var(--cert-primary);
    font-family: var(--cert-font-main);
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

.cert-section-head p {
    font-size: 16px;
    color: var(--cert-text-muted);
    font-family: var(--cert-font-body);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 1. Hero Section */
.premium-hero {
    min-height: 700px;
    display: flex;
    align-items: center;
    background: url("../images/certification.jpg") center center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.cert-hero-overlay {
    position: absolute;
    inset: 0;
    /* background: linear-gradient(90deg, rgba(0, 15, 45, 0.85) 0%, rgba(0, 15, 45, 0.6) 50%, rgba(0, 15, 45, 0.2) 100%); */
    z-index: 1;
}

.cert-hero-wrap {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cert-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
        background: rgb(57 62 73 / 13%);
    border: 1px solid rgb(255, 255, 255);
    padding: 8px 20px;
    border-radius: 50px;
    color: #0046BF;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    font-family: var(--cert-font-body);
}

.cert-pulse-dot {
    width: 10px;
    height: 10px;
    background-color: var(--cert-secondary);
    border-radius: 50%;
    animation: cert-pulse-dot 2s infinite;
}

@keyframes cert-pulse-dot {
    0% {
        box-shadow: 0 0 0 0 rgba(243, 138, 18, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(243, 138, 18, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(243, 138, 18, 0);
    }
}

.cert-hero-content h1 {
    font-size: 49px;
    line-height: 1.15;
    color: #0046BF;
    font-family: var(--cert-font-main);
    font-weight: 800;
    margin-bottom: 24px;
}

.cert-hero-content h1 strong {
    color: var(--cert-secondary);
}

.cert-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: #0046BF;
    font-family: var(--cert-font-body);
    margin-bottom: 40px;
    max-width: 650px;
}

.cert-hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cert-hero-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cert-hero-img-wrap img {
    width: 100%;
    display: block;
}

.cert-hero-image {
    position: relative;
    justify-self: end;
}

.cert-hero-stat {
    position: absolute;
    background: var(--cert-white);
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}

.cert-hero-stat.top-left {
    top: -24px;
    left: -24px;
}

.cert-hero-stat.bottom-right {
    bottom: -24px;
    right: -24px;
}

.cert-hero-stat i {
    font-size: 32px;
    color: var(--cert-secondary);
}

.cert-hero-stat strong {
    display: block;
    font-size: 24px;
    color: var(--cert-primary);
    font-weight: 700;
}

.cert-hero-stat span {
    font-size: 12px;
    color: var(--cert-text-muted);
}

/* 2. Benefits */
.cert-benefits {
    padding: 100px 0;
    background-color: var(--cert-surface);
}

.cert-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-benefit-card {
    background: var(--cert-white);
    padding: 40px 30px;
    border-radius: var(--cert-border-radius);
    box-shadow: var(--cert-shadow);
    border: 1px solid rgba(0, 70, 191, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.cert-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--cert-shadow-hover);
}

.cert-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(243, 138, 18, 0.1);
    color: var(--cert-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
}

.cert-benefit-card h3 {
    font-size: 20px;
    color: var(--cert-primary);
    font-family: var(--cert-font-main);
    margin-bottom: 12px;
}

.cert-benefit-card p {
    font-size: 15px;
    color: var(--cert-text-muted);
    line-height: 1.6;
}

/* 3. Showcase Section */
.cert-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cert-primary) 0%, #00174c 100%);
    color: var(--cert-white);
}

.cert-showcase-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cert-showcase-content h2 {
    font-size: 42px;
    font-family: var(--cert-font-main);
    margin-bottom: 10px;
    line-height: 1.2;
}

.cert-showcase-content h2 strong {
    color: var(--cert-secondary);
}

.cert-showcase-content p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
}

.cert-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.cert-features-list li {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cert-features-list i {
    color: var(--cert-secondary);
}

.cert-mockup {
    width: 100%;
    border-radius: 12px;
    /* border: 5px solid rgba(255, 255, 255, 0.2); */
   box-shadow: 0 20px 50px rgb(0 0 0 / 87%);
}

/* 4. Programs */
.cert-programs {
    padding: 100px 0;
    background-color: var(--cert-surface-alt);
}

.cert-programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-program-card {
    background: var(--cert-white);
    border-radius: var(--cert-border-radius);
    overflow: hidden;
    box-shadow: var(--cert-shadow);
}

.cert-program-card:hover {
    box-shadow: var(--cert-shadow-hover);
}

.cert-card-top {
    height: 180px;
    background-size: cover;
    background-position: center;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.cert-card-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}

.cert-badge {
    position: relative;
    background: var(--cert-secondary);
    color: var(--cert-white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.cert-card-bottom {
    padding: 24px;
}

.cert-card-bottom h4 {
    font-size: 18px;
    color: var(--cert-primary);
    margin-bottom: 10px;
    font-family: var(--cert-font-main);
}

.cert-card-bottom p {
    font-size: 14px;
    color: var(--cert-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.cert-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--cert-primary);
    font-weight: 600;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 15px;
}

/* 5. Process Timeline */
.cert-process {
    padding: 100px 0;
    background-color: var(--cert-surface);
}

.cert-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.cert-timeline::before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 70, 191, 0.1);
    z-index: 0;
}

.cert-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cert-step-icon {
    width: 80px;
    height: 80px;
    background: var(--cert-white);
    border: 4px solid var(--cert-secondary);
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--cert-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.cert-step-content h3 {
    font-size: 20px;
    color: var(--cert-primary);
    margin-bottom: 10px;
}

.cert-step-content p {
    font-size: 14px;
    color: var(--cert-text-muted);
    line-height: 1.6;
}
.cert-step-icon{
    transition: all 0.3s ease;
}

.cert-step:hover .cert-step-icon{
    background: #0046bf;
    color: #fff;
    border-color: #0046bf;
}

/* 6. CTA */
.cert-cta {
    padding: 80px 0;
}

.cert-cta-wrap {
    background: url("../images/Section 6_ CTA.jpg") center center / cover no-repeat;
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* background-color: var(--cert-primary); */
}

.cert-cta-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 45, 0.7);
}

.cert-cta-wrap h2,
.cert-cta-line,
.cert-cta-wrap p,
.cert-cta-btns {
    position: relative;
    z-index: 1;
}

.cert-cta-wrap h2 {
    font-size: 42px;
    color: var(--cert-secondary);
    font-family: var(--cert-font-main);
}

.cert-cta-line {
    width: 200px;
    height: 3px;
    background: var(--cert-secondary);
    margin: 15px auto 25px;
}

.cert-cta-wrap p {
    font-size: 17px;
    color: var(--cert-white);
    max-width: 700px;
    margin: 0 auto 30px;
}

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

    .cert-benefits-grid,
    .cert-programs-grid,
    .cert-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .cert-timeline::before {
        display: none;
    }
}

@media (max-width: 992px) {

    .cert-hero-wrap,
    .cert-showcase-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cert-hero-content p {
        margin: 0 auto 30px;
    }

    .cert-hero-btns {
        justify-content: center;
    }

    .cert-hero-image {
        max-width: 600px;
        margin: 40px auto 0;
    }

    .cert-features-list {
        text-align: left;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    .cert-benefits-grid,
    .cert-programs-grid,
    .cert-timeline {
        grid-template-columns: 1fr;
    }

    .cert-features-list {
        grid-template-columns: 1fr;
    }

    .premium-hero {
        padding: 60px 0;
    }

    .cert-hero-content h1 {
        font-size: 26px;
    }

    .cert-section-head h2 {
        font-size: 21px;
    }

    .cert-cta-wrap {
        padding: 50px 20px;
        border-radius: 20px;
    }

    .cert-cta-wrap h2 {
        font-size: 17px;
    }

    .cert-hero-subtitle {
        font-size: 14px;
        line-height: 1.7;
       color: #0046BF;
        font-family: var(--cert-font-body);
        margin-bottom: 40px;
        max-width: 650px;
        text-align: justify;
    }

    .cert-cta-wrap p {
        font-size: 17px;
        color: var(--cert-white);
        max-width: 700px;
        margin: 0 auto 30px;
        text-align: justify;
    }

    .cert-benefit-card p {
        font-size: 15px;
        color: var(--cert-text-muted);
        line-height: 1.6;
        text-align: justify;
    }

    .cert-section-head p {
        font-size: 13px;
        color: var(--cert-text-muted);
        font-family: var(--cert-font-body);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
        text-align: justify;
    }

    .cert-showcase-content h2 {
        font-size: 34px;
        font-family: var(--cert-font-main);
        margin-bottom: 10px;
        line-height: 1.2;
    }

    .cert-showcase-content p {
        font-size: 17px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.85);
        margin-bottom: 30px;
        text-align: justify;
    }
}







/* certification section - matching provided design exactly */
    .certification-section {
      width: 100%;
      max-width: 1530px;
      margin: 0 auto;
      position: relative;
      background: #030131;
      overflow: hidden;
      min-height: 600px;
      /* responsive behavior */
    }

    /* container for content */
    .certification-container {
      width: 100%;
      max-width: 1530px;
      margin: 0 auto;
      position: relative;
      padding: 0 20px;
    }

    /* background glow elements (exact from design) */
    .glow-blue {
      position: absolute;
      width: 500px;
      height: 500px;
      left: 1199px;
      top: 116px;
      opacity: 0.15;
      background: #2563EB;
      box-shadow: 120px 120px 120px;
      border-radius: 250px;
      filter: blur(60px);
      pointer-events: none;
    }

    .glow-cyan {
      position: absolute;
      width: 600px;
      height: 600px;
      left: -169px;
      top: -82px;
      opacity: 0.15;
      background: #00D4FF;
      box-shadow: 120px 120px 120px;
      border-radius: 300px;
      filter: blur(60px);
      pointer-events: none;
    }

    /* main flex wrapper - left and right columns */
    .certification-flex {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 172px;
      padding: 92px 0 92px 120px;
      position: relative;
      z-index: 2;
    }

    /* left column */
    .certification-left {
      width: 495px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 24px;
      display: inline-flex;
    }

    .certification-title {
      align-self: stretch;
      justify-content: center;
      display: flex;
      flex-direction: column;
      color: #FF9900;
      font-size: 27px;
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      line-height: 38px;
      word-wrap: break-word;
    }

    .certification-description {
      align-self: stretch;
      justify-content: center;
      display: flex;
      flex-direction: column;
      color: white;
      font-size: 18px;
      font-family: 'Lato', sans-serif;
      font-weight: 400;
      line-height: 28px;
      word-wrap: break-word;
    }

    /* right column with two cards */
    .certification-right {
      width: 624px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 24px;
      display: inline-flex;
    }

    /* card styling */
    .cert-card {
      align-self: stretch;
      padding: 24px 24px 32px 24px;
      background: conic-gradient(from 180deg at 50% 50%, #00033A 199deg, #502D00 360deg);
      overflow: hidden;
      border-radius: 12px;
      outline: 1px solid rgba(255, 255, 255, 0.53);
      outline-offset: -1px;
      backdrop-filter: blur(6px);
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      gap: 8px;
      display: flex;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .cert-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.4);
    }

    .cert-card-title {
      align-self: stretch;
      padding-top: 8px;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      display: flex;
    }

    .cert-card-title h3 {
      align-self: stretch;
      justify-content: center;
      display: flex;
      flex-direction: column;
      color: #FFEB66;
      font-size: 22px;
      font-family: 'Inter', sans-serif;
      font-weight: 600;
      line-height: 32px;
      word-wrap: break-word;
      margin: 0;
    }

    .cert-card-content {
      align-self: stretch;
      flex-direction: column;
      justify-content: flex-start;
      align-items: flex-start;
      display: flex;
    }

    .cert-card-content p {
      align-self: stretch;
      justify-content: center;
      display: flex;
      flex-direction: column;
      color: white;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 20px;
      word-wrap: break-word;
      margin: 0;
    }

    /* bullet list styling for second card */
    .bullet-list {
      list-style: none;
      padding: 0;
      margin: 0;
      color: white;
      font-size: 14px;
      font-family: 'Inter', sans-serif;
      font-weight: 400;
      line-height: 20px;
    }

    .bullet-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
      position: relative;
      padding-left: 20px;
    }

    .bullet-list li::before {
      content: "▹";
      position: absolute;
      left: 0;
      color: #FF9900;
      font-size: 14px;
    }

    /* Responsive Styles */
    @media (max-width: 1400px) {
      .certification-flex {
        gap: 80px;
        padding: 80px 0 80px 80px;
      }
      .certification-left {
        width: 45%;
      }
      .certification-right {
        width: 45%;
      }
    }

    @media (max-width: 1100px) {
      .certification-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
        padding: 60px 40px;
      }
      .certification-left {
        width: 100%;
        max-width: 100%;
      }
      .certification-right {
        width: 100%;
        max-width: 100%;
      }
      .glow-blue, .glow-cyan {
        opacity: 0.08;
      }
    }

    @media (max-width: 768px) {
      .certification-flex {
        padding: 40px 24px;
        gap: 40px;
      }
      .certification-title {
        font-size: 24px;
        line-height: 32px;
      }
      .certification-description {
        font-size: 16px;
        line-height: 24px;
      }
      .certification-right {
        width: 100%;
      }
      .cert-card {
        padding: 20px 20px 24px 20px;
      }
      .cert-card-title h3 {
        font-size: 20px;
        line-height: 28px;
      }
      .bullet-list li {
        font-size: 13px;
        line-height: 20px;
      }
      .glow-blue {
        width: 300px;
        height: 300px;
        left: auto;
        right: -100px;
        top: 50%;
      }
      .glow-cyan {
        width: 400px;
        height: 400px;
        left: -150px;
        top: -50px;
      }
    }

    @media (max-width: 480px) {
      .certification-title {
        font-size: 16px;
        line-height: 30px;
        text-align: justify;
      }
      .certification-description {
        font-size: 14px;
        line-height: 22px;
        text-align: justify;
      }
      .cert-card-title h3 {
        font-size: 14px;
        line-height: 26px;
      }
      .cert-card-content p {
    align-self: stretch;
    justify-content: center;
    display: flex
;
    flex-direction: column;
    color: white;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 20px;
    word-wrap: break-word;
    margin: 0;
    text-align: justify;
}
.certify-heading p {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}
.certify-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    text-align: justify;
}
    }









   
.certify-zone{
    padding:100px 5%;
    background:#eef8ff;
}

.certify-container{
    max-width:1200px;
    margin:auto;
}

.certify-heading{
    text-align:center;
    max-width:800px;
    margin:auto auto 60px;
}

.certify-heading span{
    display:inline-block;
    color:#0046BF;
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
}

.certify-heading h2{
    font-size:42px;
    color:#111;
    margin-bottom:15px;
}

.certify-heading p{
    color:#666;
    line-height:1.8;
}

.certify-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.certify-card{
  
    background: linear-gradient(
        180deg,
        #FFEDD7 0%,
        #FFFBF5 100%
    );
    padding: 10px;

    border: 1px solid #FF9900;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

.certify-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 153, 0, 0.15);
}

.certify-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.certify-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,#fff8ef,#fff);
    opacity:0;
    transition:.4s;
}

.certify-card:hover::before{
    opacity:1;
}

.certify-image{
    height:220px;
    overflow:hidden;
}

.certify-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.certify-card:hover .certify-image img{
    transform:scale(1.08);
}

.certify-content{
    padding:15px;
    position:relative;
    z-index:2;
}

.certify-content h3{
    font-size:19px;
    color:#ff9900;
    margin-bottom:10px;
    line-height:1.4;
    font-weight:500;
}

.certify-content p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}

/* Tablet */

@media(max-width:992px){

    .certify-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .certify-heading h2{
        font-size:34px;
    }

}

/* Mobile */

@media(max-width:768px){

    .certify-zone{
        padding:70px 20px;
    }

    .certify-grid{
        grid-template-columns:1fr;
    }

    .certify-heading h2{
        font-size:28px;
    }

    .certify-content h3{
        font-size:16px;
    }

}







.project-learn-section{
    position: relative;
    min-height: 440px;
    background: url("../images/learningbase.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.project-overlay{
    position: absolute;
    inset: 0;
    /* background: rgba(0,0,0,0.55); */
}

.project-container{
    width: 100%;
    max-width: 1400px;
    margin: auto;
    padding: 80px 5%;
    position: relative;
    z-index: 2;
}

.project-content{
    max-width: 650px;
}

.project-content h2{
    color: #EEF8FF;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

.project-divider{
    width: 510px;
    max-width: 100%;
    height: 3px;
    background: #FF9900;
    margin-bottom: 28px;
    border-radius: 20px;
}

.project-content p{
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* Tablet */

@media (max-width: 992px){

    .project-content h2{
        font-size: 34px;
    }

    .project-content{
        max-width: 100%;
    }

}

/* Mobile */

@media (max-width: 768px){

    .project-learn-section{
        min-height: auto;
    }

    .project-container{
        padding: 70px 20px;
    }

    .project-content h2{
        font-size: 28px;
        line-height: 1.4;
    }

    .project-divider{
        width: 220px;
        margin-bottom: 20px;
    }

    .project-content p{
        font-size: 15px;
        line-height: 1.8;
    }

}



.applyhub-section{
     background: url("../images/WhoCanApply.jpg") center center/cover no-repeat;
    position: relative;
    /* background: #030131; */
    border-radius: 20px;
    overflow: hidden;
    margin: 100px auto;
    max-width: 1300px;
    padding: 70px;
}

.applyhub-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 2;
}

.applyhub-content{
    flex: 1;
}

.applyhub-heading h2{
    color: #EEF8FF;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.applyhub-heading span{
    width: 220px;
    height: 3px;
    background: #FF9900;
    display: block;
    border-radius: 20px;
    margin-bottom: 30px;
}

.applyhub-content h4{
    color: #729DF5;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
}

.applyhub-list-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.applyhub-list-grid ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.applyhub-list-grid li{
    color: #729DF5;
    font-size: 16px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 24px;
}

.applyhub-list-grid li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF9900;
    font-weight: 700;
}

.applyhub-note{
    color: #FF9900;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.8;
    max-width: 700px;
}

.applyhub-image{
    flex: 0 0 420px;
}

.applyhub-image img{
    width: 100%;
    height: auto;
    display: block;
}

/* Glow Effects */

.applyhub-glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.applyhub-glow-one{
    width: 600px;
    height: 600px;
    background: #00D4FF;
    opacity: .15;
    top: -250px;
    left: -250px;
}

.applyhub-glow-two{
    width: 500px;
    height: 500px;
    background: #2563EB;
    opacity: .15;
    right: -150px;
    bottom: -150px;
}

/* Tablet */

@media(max-width:992px){

    .applyhub-section{
        padding: 50px;
    }

    .applyhub-wrapper{
        flex-direction: column;
    }

    .applyhub-image{
        flex: unset;
        max-width: 450px;
    }

    .applyhub-list-grid{
        grid-template-columns: repeat(2,1fr);
    }

}

/* Mobile */

@media(max-width:768px){

    .applyhub-section{
        padding: 35px 20px;
        margin: 60px 15px;
    }

    .applyhub-heading h2{
        font-size: 30px;
    }

    .applyhub-content h4{
        font-size: 18px;
    }

    .applyhub-list-grid{
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
    }

    .applyhub-note{
        font-size: 16px;
    }

    .applyhub-image{
        max-width: 100%;
    }

}







.journeyx-section{
     background: url("../images/startyourlearning.png") center center/cover no-repeat;
    /* background:#FFECD4; */
    padding:70px 5%;
    overflow:hidden;
}

.journeyx-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.journeyx-image{
    flex:0 0 400px;
}

.journeyx-image img{
    width:100%;
    height:270px;
    object-fit:cover;
    border-radius:14px;
    display:block;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s ease;
}

.journeyx-image img:hover{
    transform:scale(1.03);
}

.journeyx-content{
    flex:1;
}

.journeyx-heading h2{
    color: #FF9900;
    font-size:34px;
    font-weight:800;
    margin-bottom:12px;
    line-height:1.3;
}

.journeyx-heading span{
    width:220px;
    height:3px;
    background:#FF9900;
    display:block;
    border-radius:20px;
    margin-bottom:25px;
}

.journeyx-content p{
    color:#ffffff;
    font-size:18px;
    line-height:1.9;
    font-weight:500;
    margin-bottom:18px;
}

.journeyx-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 32px;
    background:#FF9900;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    transition:.3s ease;
}

.journeyx-btn:hover{
    background:#0046BF;
    transform:translateY(-3px);
}

/* Tablet */

@media(max-width:992px){

    .journeyx-container{
        flex-direction:column;
        text-align:center;
    }

    .journeyx-image{
        flex:unset;
        width:100%;
        max-width:600px;
    }

    .journeyx-heading span{
        margin:0 auto 25px;
    }

}

/* Mobile */

@media(max-width:768px){

    .journeyx-section{
        padding:60px 20px;
    }

    .journeyx-heading h2{
        font-size:19px;
    }

    .journeyx-content p{
        font-size:16px;
        line-height:1.8;
        text-align: justify;
    }

    .journeyx-image img{
        height:220px;
    }

    .journeyx-btn{
        width:100%;
    }

}
