﻿.innerpagebanner {
    background: url(../Images/banner-bg.png) no-repeat;
    background-size: 100% 100%;
    padding: 150px 0 100px;
}

    .innerpagebanner h1 {
        color: #fff;
        font-size: 48px;
        line-height: 48px;
        font-weight: 700;
        margin-bottom: 30px;
    }

footer {
    background: #fff;
    border-top: 1px solid #ddd;
}

.frgtlink {
    color: #434C00;
    text-decoration: none;
    text-align: center;
    margin-top: 50px;
    justify-content: center;
    margin-bottom: 100px;
}

    .frgtlink:hover {
        color: #000;
    }

footer .copyrights {
    text-align: center;
}

img {
    max-width: 100%;
}

h1, h2, h3, h4, h5, h5 {
    margin: 0;
    padding: 0;
    color: #333;
}

@media(min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1400px;
    }
}

.btn-primary {
    background: #A6CF3D;
    border-color: #A6CF3D;
    color: white;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    padding: 10px 30px;
    border-radius: 30px;
    transition: 0.5s all ease;
    margin-bottom: 20px;
    margin-top: 20px;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus {
        background: #000;
        color: #fff;
        border-color: #000;
    }

.form-control {
    height: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

    header:after {
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 133px;
        background: #363c0a;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s all ease;
    }

    header.fixed {
        padding: 0;
        z-index: 11;
    }

        header.fixed:after {
            opacity: 1;
            visibility: visible;
            height: 73px;
        }

    header .navbar-expand-lg {
        background: transparent !important;
        position: relative;
        z-index: 1;
    }

.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    /*padding: 0 25px;*/
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #90c745;
    }

@media(min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 100%;
    }

        .navbar-expand-lg .navbar-nav .nav-item {
            margin-left: 20px;
        }
}

body {
    background: #f2f2f2;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}
body {
    font-family: "Segoe UI", sans-serif;
    background: #f4f6fb;
    margin: 0;
    padding: 0;
    color: #222;
}

.pricing-section {
    padding: 80px 6%;
    text-align: center;
}

.pricing-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.pricing-subtitle {
    color: #555;
    font-size: 17px;
    margin-bottom: 60px;
}

/* ---------- GRID ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* ---------- CARD ---------- */
.course-card {
    background: #fff;
    border-radius: 14px;
    padding: 35px 28px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

    .course-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 35px 80px rgba(0,0,0,0.18);
    }

    /* TOP BAR */
    .course-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
    }

/* COLORS */
.powerapps::before {
    background: linear-gradient(90deg,#7F56D9,#9E77ED);
}

.powerbi::before {
    background: linear-gradient(90deg,#F2C94C,#F2994A);
}

.aspnet::before {
    background: linear-gradient(90deg,#2D9CDB,#56CCF2);
}

.crm::before {
    background: linear-gradient(90deg,#27AE60,#6FCF97);
}

/* ICON */
.course-icon {
    font-size: 42px;
    margin-bottom: 18px;
}

.powerapps .course-icon {
    color: #7F56D9;
}

.powerbi .course-icon {
    color: #F2994A;
}

.aspnet .course-icon {
    color: #2D9CDB;
}

.crm .course-icon {
    color: #27AE60;
}

/* TITLE */
.course-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.course-level {
    font-size: 14px;
    color: #777;
    margin-bottom: 20px;
}

/* PRICE */
.course-price {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 6px;
}

.course-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

/* FEATURES */
.course-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

    .course-card ul li {
        margin-bottom: 12px;
        font-size: 14px;
        display: flex;
        align-items: center;
    }

        .course-card ul li i {
            color: #27AE60;
            margin-right: 10px;
        }

/* BUTTON */
.enroll-btn {
    display: inline-block;
    padding: 13px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.powerapps .enroll-btn {
    background: #7F56D9;
}

.powerbi .enroll-btn {
    background: #F2994A;
}

.aspnet .enroll-btn {
    background: #2D9CDB;
}

.crm .enroll-btn {
    background: #27AE60;
}

.enroll-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
    color:black;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .pricing-title {
        font-size: 32px;
    }
}



html, body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}
@media (max-width: 768px) {

    /* Banner */
    .innerpagebanner {
        padding: 90px 20px 50px;
        background-size: cover;
        text-align: center;
    }

        .innerpagebanner h1 {
            font-size: 28px;
            line-height: 34px;
        }

    /* Pricing Section */
    .pricing-section {
        padding: 50px 20px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-subtitle {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .course-card {
        padding: 28px 22px 35px;
    }

    .course-title {
        font-size: 20px;
    }

    .course-price {
        font-size: 26px;
    }

    .enroll-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }

    .frgtlink {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
@media only screen and (min-width: 390px) and (max-width: 430px) {

    .pricing-title {
        font-size: 30px;
    }

    .course-price {
        font-size: 28px;
    }

    .enroll-btn {
        font-size: 15px;
    }
}
@media only screen and (min-width: 768px) and (max-width: 820px) {

    .pricing-section {
        padding: 60px 40px;
    }

    .pricing-title {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}
@media only screen and (min-width: 1024px) and (max-width: 1366px) {

    .pricing-section {
        padding: 80px 60px;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .pricing-title {
        font-size: 40px;
    }
}
.enroll-btn,
.btn-primary {
    min-height: 44px;
    touch-action: manipulation;
}

.form-control {
    height: 50px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
}

    header:after {
        content: "";
        display: block;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        height: 133px;
        background: #363c0a;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s all ease;
    }

    header.fixed {
        padding: 0;
        z-index: 11;
    }

        header.fixed:after {
            opacity: 1;
            visibility: visible;
            height: 73px;
        }

    header .navbar-expand-lg {
        background: transparent !important;
        position: relative;
        z-index: 1;
    }

.navbar-expand-lg .navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    /*padding: 0 25px;*/
}

    .navbar-expand-lg .navbar-nav .nav-link:hover {
        color: #90c745;
    }

@media(min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        flex: 0 0 100%;
    }

        .navbar-expand-lg .navbar-nav .nav-item {
            margin-left: 20px;
        }
}
@media(max-width:991px) {
    .navbar-toggler {
        background: #fff;
    }

    .about-section3 .items {
        margin-bottom: 40px;
    }

    .about-section4 .items {
        margin-bottom: 40px;
    }
}

@media(max-width:767px) {
    .home-section1 {
        background-size: cover;
    }

        .home-section1 .text .title {
            font-size: 36px;
            line-height: 36px;
        }

        .home-section1 .text .btn-container {
            margin-bottom: 30px;
        }

    .home-section2 {
        padding: 40px 0 0;
    }

        .home-section2 .title {
            font-size: 36px;
            line-height: 36px;
        }

    .navbar-collapse {
        background: #363c0a;
        padding: 30px;
        border-radius: 10px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding: 15px 0;
    }

    footer {
        padding: 30px 0;
    }

    .innerpagebanner {
        background-size: cover;
        padding-bottom: 80px;
        padding-top: 150px;
    }

    .traning-tier1 {
        padding: 40px 0;
    }

        .traning-tier1 .text {
            margin-bottom: 40px;
        }

    .traning-tier2 .text {
        padding-left: 0;
    }

    .contactblock {
        margin-bottom: 40px;
    }

        .contactblock:after {
            display: none;
        }

    .contactpageblock:before {
        display: none;
    }

    .contactdetails {
        padding: 20px;
    }

        .contactdetails .title {
            font-size: 24px;
        }

        .contactdetails p span:first-child {
            width: 130px;
        }

    .contactblock .form {
        padding: 20px;
    }

    .innerpagebanner h1 {
        font-size: 36px;
    }

    .innerpagebanner {
        background-size: cover;
        padding-bottom: 50px;
        padding-top: 120px;
    }

        .innerpagebanner h1 {
            margin-bottom: 10px;
        }

    .about-section1 {
        padding: 60px 0 60px;
    }

        .about-section1 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section1 .img {
            margin-bottom: 40px;
        }

        .about-section1 .text {
            padding-left: 0;
        }

    .about-section2 {
        padding: 60px 0 20px;
    }

        .about-section2 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section2 .items {
            margin-bottom: 40px;
        }

    .about-section3 {
        padding: 60px 0 20px;
    }

        .about-section3 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section3 .items {
            margin-bottom: 40px;
        }

    .about-section4 {
        padding: 60px 0 20px;
    }

        .about-section4 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section5 {
        padding: 0;
    }

        .about-section5 .title {
            font-size: 28px;
            line-height: 24px;
        }

        .about-section5 .img {
            margin-bottom: 40px;
        }

        .about-section5 .text {
            padding-left: 0;
        }

    .about-section6 .img {
        margin-bottom: 40px;
    }

    .about-section6 .text {
        padding-left: 0;
    }

    .about-section6 {
        padding: 0;
    }

        .about-section6 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section7 {
        padding-bottom: 0;
    }

        .about-section7 .title {
            font-size: 28px;
            line-height: 24px;
        }

    .about-section8 {
        padding: 60px 0 20px 0;
    }

        .about-section8 .title {
            font-size: 28px;
            line-height: 24px;
        }
}

/* ================================
   NAVBAR
================================ */
header .navbar {
    background: transparent !important;
    position: relative;
    z-index: 2;
}

/* ================================
   NAV LINKS
================================ */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    padding: 10px 18px;
    transition: 0.3s;
}

    .navbar-nav .nav-link:hover {
        color: #90c745;
    }

/* ================================
   DESKTOP (>= 992px)
================================ */
@media (min-width: 992px) {
    .navbar-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

        .navbar-nav .nav-item {
            margin-left: 20px;
        }
}

/* ================================
   TABLET & MOBILE
================================ */
@media (max-width: 991px) {

    /* Hamburger */
    .navbar-toggler {
        background: #fff;
        border-radius: 6px;
        padding: 6px 12px;
    }

    /* Menu dropdown */
    .navbar-collapse {
        background: #363c0a;
        padding: 20px;
        margin-top: 10px;
        border-radius: 12px;
        text-align: center;
    }

    .navbar-nav .nav-link {
        padding: 15px 0;
        font-size: 16px;
        display: block;
    }
}

/* ================================
   SMALL MOBILE
================================ */
@media (max-width: 480px) {
    header {
        padding: 12px 0;
    }

    .navbar-nav .nav-link {
        font-size: 15px;
    }
}