    /* Global Styles */
    body {
        margin: 0;
        font-family: "Raleway", sans-serif;
        background: #01001c;
        color: #fff;
        line-height: 1.6;
    }

        .S-button, .banner-cta, .cta button{
        /*background: Red;*/
        background: green;

    }
    
      /* Navbar Container */
    nav {
      background: #0a0d1a;
      border-radius: 30px;
      margin: 10px;
      padding: 10px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    nav img {
      height: 40px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-links a, 
    .nav-links .dropdown {
      color: white;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      position: relative;
    }

    .nav-links a.active {
      color: #126fbf;
    }

    .dropdown:hover .dropdown-list {
      display: block;
    }

    .dropdown i {
      font-size: 12px;
      margin-left: 5px;
    }

    .dropdown-list {
      display: none;
      position: absolute;
      top: 25px;
      left: 0;
      background: #0a0d1a;
      border-radius: 10px;
      padding: 10px;
      flex-direction: column;
      min-width: 180px;
    }

    .dropdown-list a {
      display: block;
      padding: 8px 12px;
      color: white;
      text-decoration: none;
      font-size: 14px;
    }

    .dropdown-list a:hover {
      background: #126fbf;
      border-radius: 6px;
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      color: white;
      cursor: pointer;
    }

        /* Footer Styles */
    .footer_wrapper {
      background: #060622;
      color: #fff;
      padding: 40px 20px 0;
      font-family: Arial, sans-serif;
    }

    .footer_row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .footer_col {
      flex: 1;
      min-width: 250px;
      margin-bottom: 20px;
    }

    .footer_logo img {
      height: 40px;
      margin-bottom: 15px;
    }

    .footer_logo p {
      line-height: 1.6;
      font-size: 14px;
      color: #ddd;
    }

    .footer_services h5,
    .footer_address h5 {
      font-size: 16px;
      margin-bottom: 12px;
      color: #fff;
    }

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

    .footer_services ul li a {
      display: block;
      color: #ccc;
      text-decoration: none;
      margin-bottom: 6px;
      font-size: 14px;
      transition: 0.3s;
    }

    .footer_services ul li a:hover {
      color: #fff;
    }

    .footer_address p,
    .footer_address a {
      font-size: 14px;
      color: #ccc;
      text-decoration: none;
      line-height: 1.6;
      display: block;
    }

    .footer_address a:hover {
      color: #fff;
    }

    /* Footer bottom bar */
    .footer_bottom {
      background: #12121c;
      margin-top: 30px;
      padding: 12px 20px;
      display: flex;
      /* flex-wrap: wrap; */
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #ccc;
    }

    @media screen and (max-width:480px) {
        .footer_bottom{
            display: flex;
            flex-direction: column;
        }
    }
     

    .footer_social a {
      margin-left: 12px;
      color: #fff;
      font-size: 18px;
      transition: 0.3s;
    }

    .footer_social a:hover {
      color: #00aced;
    }


    @media (max-width: 768px) {
      .footer_row {
        flex-direction: column;
      }
      .footer_social {
        margin-top: 10px;
      }
        .nav-links {
        display: none;
        flex-direction: column;
        background: #0a0d1a;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        border-radius: 15px;
        padding: 15px;
      }

      .nav-links.show {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }
  

    .thankyou-body {
        margin: 0;
        padding: 0;
        font-family: "Raleway", sans-serif;
        background: #01001c;
        color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100vh;
        text-align: center;
        padding: 20px;
    }

    h2,
    h3 {
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
    }

    .container {
        padding: 2rem 0;
    }

    /* Section Titles */
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        color: #fff;
    }

    

    /* Cards Grid */
    .grid {
        display: grid;
        gap: 1.5rem;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .card {
        background: #0c0b2a;
        padding: 1.5rem;
        border-radius: 12px;
        text-align: center;
        transition: transform 0.3s ease, background 0.3s ease;
        border: 1px solid rgb(255 255 255 / 34%);

    }

    .card:hover {
        transform: translateY(-8px);
        background: #116fbf;
    }

    .card h3 {
        margin-top: 1rem;
        font-size: 1.2rem;
        color: #fff;
    }

    .card p {
        font-size: 0.95rem;
        opacity: 0.85;
    }

    /* Icon Style */
    .icon {
        font-size: 2rem;
        color: #116fbf;
    }

    /* How It Works */
    .steps {
        display: flex;
        /* flex-wrap: wrap; */
        justify-content: center;
        gap: 4rem;
        /* margin-top: 2rem; */
    }

    .step {
        /* flex: 1 1 200px; */
        text-align: center;
    }

    .step span {
        display: block;
        margin-top: 0.5rem;
        font-weight: 600;
    }

    /* Highlight Section */
    .highlight {
        background: #0c0b2a;
        /* padding: 3rem 1.5rem;
        border-radius: 15px; */
        text-align: center;
        margin-top: 3rem;
    }

    /* CTA Section */
    .cta {
        background: #0c0b2a;
        padding: 3rem 1.5rem;
        margin-top: 3rem;
        border-radius: 15px;
    }

    .cta h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: #116fbf;
    }

    .cta p {
        margin-bottom: 2rem;
    }

    .cta button {
        border: none;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .cta button:hover {
        /*background: #0a4a80;*/
    }

    button:hover {
        /*background: #0a4a80;*/
    }

    .S-button {
        border: none;
        padding: 1rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 8px;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s ease;
        margin-top: 5px;
        display: ruby-text;
        margin: 10px auto 0;
    }



    .cta-strip {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        text-align: center;
        margin-bottom: 2rem;
        background: #01001c;
        /* padding: 2px; */
        border-radius: 10px;
    }



    .cta-strip div {
        font-size: 0.9rem;
        position: relative;
        padding: 0.5rem 0;

        display: flex;
        /* flex lagao */
        flex-direction: column;
        /* column wise arrange */
        justify-content: space-between;
        /* strong upar, p neeche */
        align-items: center;
        /* center align */
        height: 100%;
        /* equal height ke liye */
    }

    .cta-strip div strong {
        margin-bottom: auto;
        /* strong ko top pe fix karne ke liye */
    }

    .cta-strip div p {
        margin-top: auto;
        /* p ko neeche push karne ke liye */
    }

    
    .cta-strip div:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -0.5rem;
        transform: translateY(-50%);
        width: 1px;
        height: 70%;
        background: linear-gradient(to bottom, transparent, white, transparent);
    }


     @media screen and (max-width:860px) {
      .cta-strip div:not(:last-child)::after {
    content: none;   /* removes the pseudo element */
    display: none;   /* fallback */
  }

     }


    .blue-title {
        color: #116fbf;
    }

    .blue-titlee{ 
      color: #116fbf;
      padding: 4px 8px; /* Padding to create space around the text */
    border-radius: 4px; /* Rounded corners */
    font-weight: bold; /* Bold for emphasis */
    box-shadow: 0 2px 6px rgba(17, 111, 191, 0.3); /* Subtle shadow for depth */
    transition: all 0.3s ease; /* Smooth transition on hover */
      }
      
    .banner-heading {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1%;
    }

    .cta-image {
        flex: 1;
        max-width: 700px;
        text-align: center;
    }

    .cta-image img {
        max-width: 120%;
        border-radius: 12px;
        min-height: 150px;
        max-height: 250px;
        width: 45vw;
    }

    .inner-section-content {
        width: 90%;
        margin: auto;
    }

    .cta-video {
        /*position: relative;*/
        width: 100%;
        /* apne design ke hisaab se */
        height: 230px;
    }

    .cta-video img {
        /*width: 70%;*/
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
    }

    .cta-video iframe {
        /*position: absolute;*/
        /*top: 0;*/
        /*left: 0;*/
        width: 500px;
        height: 250px;
        border-radius: 10px;
        /*display: none;*/
        /* default me chhupana */
    }

    .thankyou-container {
        max-width: 600px;
        background: rgba(255, 255, 255, 0.05);
        padding: 40px 20px;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .thankyou-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #116fbf;
    }

    .thankyou-text {
        font-size: 1.1rem;
        line-height: 1.6;
    }

    .thankyou-highlight {
        color: #116fbf;
        font-weight: 600;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: #116fbf;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 20px;
    }

    .thankyou-icon svg {
        width: 40px;
        height: 40px;
        fill: #ffffff;
    }

     .thankyou-button {
      display: inline-block;
      margin-top: 25px;
      padding: 12px 28px;
      border: 2px solid #116fbf;
      border-radius: 8px;
      background: transparent;
      color: #116fbf;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .thankyou-button:hover {
      background: #116fbf;
      color: #fff;
    }
    
    /* Responsive */

    @media (max-width: 970px) {
        .cta {
            text-align: center;
        }

        .banner-heading {
            display: block;
            text-align: center;
        }

        .cta-image img {
            text-align: center;
        }

        .cta p {
            max-width: 100%;
            width: 100%;


        }

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

    }

    @media (max-width: 1200px) {
        .steps {
            flex-direction: column;
            align-items: center;
        }

    }

    @media (max-width: 480px) {

        h1,
        h2 {
            font-size: 1.5rem;
        }

        .cta-image img {

            width: 80vw;
        }
        
        .cta-video iframe {
        /*position: absolute;*/
        /*top: 0;*/
        /*left: 0;*/
        width: 300px;
        height: 150px;
        border-radius: 10px;
        /*display: none;*/
        /* default me chhupana */
    }


    }


    @media (max-width: 610px) {
        .step {
            flex: 0px;
        }

        .arrow svg {
            transform: rotate(90deg);
        }

    }

    @media screen and (max-width:1200px) {

        .arrow svg {
            transform: rotate(90deg);
        }
    }

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

        .thankyou-text {
            font-size: 1rem;
        }

        .thankyou-container {
            padding: 30px 15px;
        }

        .thankyou-icon {
            width: 60px;
            height: 60px;
        }

        .thankyou-icon svg {
            width: 28px;
            height: 28px;
        }
    }
    
    
    .certificate-section {
    padding: 40px 0; /* removed full width spacing */
}

.certificate-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

/* Left side */
.certificate-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.certificate-desc {
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

/* Right side */
.certificate-preview-box {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    text-align: center; /* center align image */
}

.certificate-preview-title {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Certificate image (fixed height) */
.certificate-image {
    height: 360px;        /* your required height */
    width: auto;          /* maintain aspect ratio */
    object-fit: contain;  /* perfect scaling */
    display: block;
    margin: 0 auto;       /* center align */
    border-radius: 6px;
    border: 1px solid #ddd;
}

/* Mobile */
@media (max-width: 900px) {
    .certificate-container {
        grid-template-columns: 1fr;
    }
}


@media (max-width:768px){
    .certificate-section{
        padding: 40px 15px;
    }
}

@media (max-width:450px){
    .cta-video img{
        width: 100%;
    }
}

        
