/********** Template CSS **********/
:root {
    --primary: #1b4d9a;
    --secondary: #999999;
    --light: #F2F8FE;
    --dark: #111111;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
}
/* *{
    color: #000000;
} */
h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 500 !important;
}


/*** 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;
}




/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 60px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #1b4d9a;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

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

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: #1b4d9a!important;
}




/* header */
.header {
    border-radius: 1%;
     background: #2e92cf;
}
.header .erp{
    color: #ffffff;
    font-style: oblique;
    font-size: 82px;
    margin-top: 15px;
    font-weight: 900;
}

.header-text {
    color: rgb(201, 214, 190);
    font-weight: 400;
    font-size: larger;
}

/* home image */
.image-1 {
    border-radius: 25px;
}

/*** Header ***/


/*** Service ***/



.service-background {
    background: #2e92cf;
    border-radius: 2%;
}

.service-item {
    position: relative;
    overflow: hidden;
    border-radius: 2%;
    box-shadow: 0 10px 20px #7f7e88;
}





.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}

/* Home Page Courses */
/* --- Featured Courses Section Styles --- */
:root {
    --primary-text: #333;
    --secondary-text: #6c757d;
    --background: #f8f9fa;
    --card-bg: #ffffff;
    --star-color: #ffc107;
    --button-gradient: linear-gradient(90deg, #6a11cb 0%, #2575fc 100%);
    --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.featured-courses {
    font-family: 'Poppins', sans-serif; /* Font dependency */
    background-color: var(--background);
    padding: 60px 20px;
}

.featured-courses .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Header --- */
.featured-courses .courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.featured-courses .courses-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    color: var(--primary-text);
}

.featured-courses .courses-header .view-all-btn {
    background-image: var(--button-gradient);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease;
}
.featured-courses .courses-header .view-all-btn:hover {
    transform: translateY(-2px);
}

/* --- Courses Grid --- */
.featured-courses .courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 30px;
}

/* --- Course Card --- */
.featured-courses .course-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    display: grid;
    grid-template-columns: 40% 60%; /* Image | Content */
    transition: transform 0.3s ease;
}
.featured-courses .course-card:hover {
    transform: translateY(-5px);
}

.featured-courses .course-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-courses .course-card .details {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.featured-courses .course-card .reviews {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--star-color);
}
.featured-courses .course-card .reviews span {
    color: var(--secondary-text);
}

.featured-courses .course-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 12px 0;
    color: var(--primary-text);
}

.featured-courses .course-card .meta {
    display: flex;
    gap: 20px;
    color: var(--secondary-text);
    font-size: 14px;
    margin-bottom: 16px;
}

.featured-courses .course-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1; /* Pushes footer to the bottom */
}

.featured-courses .course-card .footer {
    margin-top: 20px;
}

.featured-courses .course-card .price .original {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 16px;
    margin-right: 10px;
}

.featured-courses .course-card .price .current {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-text);
}

.featured-courses .course-card .learn-more {
    color: var(--secondary-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    /* Stack cards in one column on tablets */
    .featured-courses .courses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* On mobile, stack image on top of content inside the card */
    .featured-courses .course-card {
        grid-template-columns: 1fr; /* Single column layout */
    }
    .featured-courses .course-card img {
        height: 200px;
    }
    .featured-courses .courses-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Home Page Courses */


/* Home Page Industry */
 

    /* * { box-sizing: border-box; } */
    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: #111111;
      background: #ffffff;
    }

    /* Section */
    .industries {
      padding: 72px 16px 90px;
    }
    .container {
      max-width: 1120px;
      margin: 0 auto;
    }
    .industries h1 {
      margin: 0 0 14px;
      text-align: center;
      color: #000000;
      font-weight: 800;
      font-size: clamp(28px, 4.5vw, 42px);
      line-height: 1.15;
    }
    .industries .lead {
      max-width: 980px;
      margin: 0 auto 42px;
      text-align: center;
      color: var(--muted);
      font-size: clamp(15px, 2vw, 18px);
      line-height: 1.65;
    }

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

    /* Card */
    .card {
      display: grid;
      place-items: center;
      text-align: center;
      background: var(--card-bg);
      border: 1px solid #7f7e88;
      border-radius: 5px;
      box-shadow: #7f7e88;
      padding: 28px 20px;
      text-decoration: none;
      color: inherit;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 146px;
    }
    .card:hover,
    .card:focus-visible {
      transform: translateY(-4px);
      border-color: #7f7e88;
      box-shadow: 0 12px 28px #7f7e88;
      outline: none;
    }

    .icon-wrap {
      width: 66px;
      height: 66px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: var(--icon-bg);
      margin-bottom: 12px;
    }
    .icon-wrap i {
      font-size: 28px;
      color: #7f7e88;
    }

    .card h3 {
      margin: 4px 0 0;
      font-size: 16px;
      font-weight: 700;
      color: #7f7e88;
    }

    @media (max-width: 480px) {
      .industries { padding: 56px 12px 70px; }
      .card { padding: 24px 16px; }
      .icon-wrap { width: 60px; height: 60px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .card { transition: none; }
    }


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: var(--light);
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: #1b4d9a;
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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");
}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}





/*** Footer ***/

.footer {
    border-radius: 2%;
    background: #000000;
    /* fallback for old browsers */
    background: #000000 !important;
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #b6fbff, #83a4d4);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

}
.logo{
    color: #ffffff;
}
.get-in{
    color: #ffffff;
}
.get-in .footer-body{
    color: #ffffff;
}
.email{
    text-decoration: none !important;
     display: inline-block;
    color: #ffffff !important;
}
.mail{
    text-decoration: none;
    color: #ffffff;
}
.mail:hover{
    text-decoration: none;
    color: #ffffff;
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgb(255, 255, 255);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

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

.footer .btn.btn-link:hover {
    
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    background-color: white;
    color: #000000;
    border: 1px solid #000000;
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: #000000;
}

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

.footer .copyright a {
    color: #1b4d9a;
}

.footer .copyright a:hover {
    color: var(--dark);
}
.btn-top{
    background-color: #1b4d9a;
    color: #ffffff;
}

/* course page button */
.button{
background-color: #2e92cf;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}


/* Team */
.team {
    text-align: center;
    color: #ffffff;
}


/* Our COmpanyes */

/* Importing fonts from Google */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Reseting */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    color: #000000;
} */


.owl-carousel .owl-item {
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item .card {
    padding: 30px;
    position: relative;
}

.owl-carousel .owl-stage-outer {
    overflow-y: auto !important;
    padding-bottom: 40px;
}

.owl-carousel .owl-item img {
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
}

.owl-carousel .owl-item .card .name {
    position: absolute;
    bottom: -20px;
    left: 33%;
    color: #101c81;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: aquamarine;
    padding: 0.3rem 0.4rem;
    border-radius: 5px;
    box-shadow: 2px 3px 15px #3c405a;
}

.owl-carousel .owl-item .card {
    opacity: 0.2;
    transform: scale3d(0.8, 0.8, 0.8);
    transition: all 0.3s ease-in-out;
}

.owl-carousel .owl-item.active.center .card {
    opacity: 1;
    transform: scale3d(1, 1, 1);
}

.owl-carousel .owl-dots {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.owl-theme .owl-dots .owl-dot span {
    height: 20px;
    background: #2a6ba3 !important;
    border-radius: 2px !important;
    opacity: 0.8;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    height: 13px;
    width: 13px;
    opacity: 1;
    transform: translateY(2px);
    background: #83b8e7 !important;
}

@media(min-width: 480.6px) and (max-width: 575.5px) {
    .owl-carousel .owl-item .card .name {
        left: 24%;
    }
}

@media(max-width: 360px) {
    .owl-carousel .owl-item .card .name {
        left: 30%;
    }
}

/* nav bar */
.custom-shape-divider-bottom-1683973165 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-1683973165 svg {
    position: relative;
    display: block;
    width: calc(127% + 1.3px);
    height: 243px;
}

.custom-shape-divider-bottom-1683973165 .shape-fill {
    fill: #9013FE;
}

/* About Page */

.about-text{
    text-align: justify;
    color: #000000 !important;
}

.feature-module{
    text-align: center;
    font-family: "Bricolage Grotesque", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
    font-size: 60px;
}

.module{
    align-self: center;
}


/* Contact */
.contact-image {
    padding: 0;
    margin: 0;
    height: 400px;
    width: 500px;
}
.contact-section{
    text-align: center;
}

.message-send{
     display: inline-block;
  border-radius: 4px;
  background-color: #1b4d9a;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 10px;
  width: 130px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}


.map{
    text-align: center;
}
.contact-heading {
    color: #000000;
}



.address-card {
    align-items: center;
}

/* Common Header */
.common-header {
    border-radius: 2%;
}

/* footer */

.footer-body{
    color: #ffffff !important;
}
.process {
    text-decoration: none;
    color: #ffffff;
}

.process:hover {
    color: rgb(255, 255, 255);
}

/* Contact-Address */
.card-2 {
    margin-left: 10%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    width: 90%;
    border-radius: 20px;
}

.card-2:hover {
    box-shadow: 0 22px 30px 6px rgba(0, 0, 0, 0.2);
}

.card-2 .p {
    font-weight: 400;
}

.container {
    padding: 2px 16px;
}

