/********** Template CSS **********/
:root {
    --primary: #0935d3;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 6rem;
    padding: 18rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary-blue.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}
.btn-primary {
    color: #fff;
    background-color: #0935d3 !important;
    border-color: #0735d4 !important;
}
.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0935d3;
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: #0935d3;
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: #0935d3;
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}




/* .bg-primary {
  background-color: #6222cc !important;
 
}
 */
.bg-primary {
  background-image: url('../img/hero-section-bg.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 80vh; 
  height: auto;
  /* display: flex; */
  align-items: flex-start; 
  padding-top: 50px; }

@media (min-width: 1400px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl, .container-xxl {
    max-width: 100% !important; /* ya jitna tumhe chahiye utna px me */
  }
}


/* new */
/* Spacing helpers like pt-108 pb-84 */
    .pt-108 { padding-top: 108px; }
    .pb-84  { padding-bottom: 84px; }

    /* Container width similar to container-w-xl-1202 */
    .container-main { width: 100%; }
    .container-w-xl-1202 { max-width: 1202px; margin: 0 auto; padding: 0 16px; }

    /* Row tweaks */
    .programs-row { gap: 24px; }

    /* Left column text block width */
    .max-w-lg-476 { max-width: 476px; }

    /* Text styles */
    .text-white { color: #ffffff; }
    .fs-32 { font-size: 32px; line-height: 1.5; }
    .fs-14 { font-size: 14px; line-height: 1.5; }

    /* Card styles */
    .l-program-card {
      border: 2px solid rgba(0,0,0,0.06);
      box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06);
      transition: transform .18s ease, box-shadow .18s ease;
    }
    .l-program-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(17,24,39,0.12);
    }
    .rounded-24 { border-radius: 24px !important; }
    .min-h-276 { min-height: 276px; }

    /* Typographic sizes used in markup */
    .fs-lg-20 { font-size: 20px; }
    .fw-600 { font-weight: 600; }
    .fw-400 { font-weight: 400; }
    .lh-48 { line-height: 48px; }
    .lh-21 { line-height: 21px; }

    /* Utility widths for images in cards */
    .w-lg-80 { width: 80px !important; height: 80px !important; }
    .w-60 { width: 60px !important; height: 60px !important; }

    /* Colors (approx from original) */
    .text-color-1 { color: #0b1a2b; } /* heading color inside card */
    .text-color-3 { color: #596b7a; } /* link color */

    /* Make the left side vertically center on lg screens */
    .programs-column.d-lg-flex { display: flex !important; align-items: center; }

    /* Responsive tweaks */
    @media (min-width: 992px) {
      .mb-lg-16 { margin-bottom: 16px !important; }
      .py-lg-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
      .px-lg-0 { padding-left: 0 !important; padding-right: 0 !important; }
    }

    /* Keep hero dark bg to simulate original section */
    .learning-programs-section {
    background: url(../img/learning-bg.svg) bottom no-repeat, linear-gradient(97.91deg, #002ccd 7.06%, #000825 98.51%);
}
.l-program-card img {
  filter: invert(34%) sepia(89%) saturate(749%) hue-rotate(180deg) brightness(95%) contrast(85%);
}

    /* small visual nudge to center content vertically on large screens */
    .programs-row { align-items: start; }

    /* Make "See Programs" link inline-flex and arrow spacing */
    .see-programs {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
    }
.see-programs span {
  color: #007bff; /* Bootstrap’s standard blue or choose your preferred blue */
}

.see-programs svg path {
  fill: #007bff; /* Makes the arrow icon blue too */
}
.category-pills .btn.active {
    background-color: #007bff; /* Blue */
    color: white;
    border-color: #007bff;
}

.bg-white.border {
  border: 1px solid #000 !important; /* Light grey border */
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.05); /* Soft shadow */
  border-radius: 8px; /* Rounded corners */
}
.widget-body .row {
  border: 1px solid #ddd; /* Light grey border */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1); /* Soft shadow */
  padding: 8px; /* Inner spacing */
  margin-bottom: 12px; /* Gap between boxes */
  background-color: #fff; /* White background */
}

.widget-body .row img {
  border-radius: 6px; /* Rounded image edges */
}

/* new */
/* Mega Menu Fix */
.navbar .dropdown-menu {
  display: none;
}

.navbar .dropdown:hover > .dropdown-menu {
  display: block;
}

.navbar .position-static .dropdown-menu {
  left: 0;
  right: 0;
}
/* service-page */
.subpage-header {
    background-color: #0935d3 !important;
  /* background: url('your-bg-image.jpg') no-repeat center center/cover; */
  color: #fff;
}
.subpage-header h1 {
  color: #fff;
  
}
.subpage-header h2 {
  color: #fff;
}
.custom-banner-form input:focus {
  box-shadow: none;
}
.entry-header {
  margin-top: 69px !important;
}
/* <!-- breadcrumb --> */
.breadcrumb {
  background: transparent;
  font-size: 16px;
  justify-content: center; /* fallback if Bootstrap class not working */
}
.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #666;
}

/* video section */
.video-link img {
  transition: transform 0.3s ease;
  cursor: pointer;
}
.video-link img:hover {
  transform: scale(1.05);
}


section p {
  font-size: 16px;
  line-height: 1.7;
}

.text-decoration-underline {
  text-decoration: underline;
}

section.bg-success {
  background: #0935d3 !important;
}


.seomarketing-wrap {
      background: #f8f9fa;
      padding: 50px 20px;
    }
    .seomarketing-wrap h2 {
      font-weight: 700;
    }
    .seomarketing-wrap .subheading {
      color: #556c26;
      font-size: 20px;
      margin-bottom: 20px;
    }
    .seomarketing-wrap .text-underline {
      text-decoration: underline;
    }


    .case-study-wrap {
      padding: 50px 20px;
      background: #f9f9f9;
    }
    .case-study-wrap h2 {
      font-weight: 800;
      font-size: 17px;
      color: #fba505;
      text-decoration: underline;
      margin-top: 15px;
      margin-bottom: 5px;
    }
    .case-study-wrap p.yellow-case-sec {
      color: #fff;
      font-weight: 600;
      margin-bottom: 15px;
    }
    .percent-stats h2 {
      font-size: 26px;
      font-weight: 800;
      color: #fff;
    }
    .percent-stats p {
      margin-bottom: 0;
    }
   .newcont {
    background: #0935d3 !important;
    color: #fba505 !important;
    margin: 2%;                /* responsive margin */
    height: 25vh;              /* viewport height के हिसाब से */
    display: flex;
    align-items: center;       /* vertically center content */
    justify-content: center;   /* horizontally center content */
    text-align: center;        /* text center */
}
.yellow-case-sec{
    color:#0935d3 !important;

}
.border-img{
    border: 1px solid #0935d3;
    padding: 7px;
    
}



/* Custom styles */
.ourseoservices h2 {
  font-size: 2rem;
}
.ourseoservices p {
  font-size: 1.1rem;
}
.ourseoservices .card-title a {
  text-decoration: none;
  color: #0935d3;
}
.ourseoservices .card-title a:hover {
  text-decoration: underline;
}

.newcard{
    background-color: #fba505 !important;
}

.newbody{
  background-color: #0935d3 !important;
    color: #fff !important;
    text-decoration: none !important;
}
a {
    
    text-decoration: none;
}

.newbtn{
     background-color: #fba505 !important;
     border-color:#fba505 !important;
}
.new-text{
    color:#fba505;
}