:root {
    --primary-blue: #0d6efd;
    --secondary-yellow: #ffc107;
    --dark-background: #1a1a1a;
    --light-text: #f0f0f0;
    --gray-text: #6c757d;
    --white: #fff;
    --light-gray: #f8f9fa;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
body, button, input, select, textarea {
    font-family: 'Rubik', sans-serif;
    color: #333;
}

.section-padding {
    padding: 40px 0;
}
input,textarea {
    color: #666 !important;
    padding: .75em !important;
    height: auto !important;
    border-width: 1px !important;
    border-style: solid !important;
    border-color: var(--ast-border-color) !important; 
    border-radius: 2px !important;
    background: var(--ast-comment-inputs-background) !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    transition: all .2s linear !important;
}
.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    text-align: center;
}
 .main-heading {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 3rem;
            text-align: center;
        }

/* --- Global Navigation & Buttons --- */
.navbar {
    z-index: 100;
}
.logo-mark {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
}
.logo-mark::before {
    content: "C";
    color: var(--white);
    background-color: var(--secondary-yellow);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 1.25rem;
    margin-right: 0.5rem;
}
.navbar-nav .nav-link {
    color: var(--white) !important;
    font-weight: 500;
}
.btn-start-learning {
    background-color: var(--secondary-yellow);
    color: #000;
    font-weight: bold;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
}
.btn-start-learning.header-btn {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.btn-start-learning.header-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}

/* --- Home Page Specific Styles --- */
.hero-section {
    background-image: url('https://websitedemos.net/online-coding-course-02/wp-content/uploads/sites/713/2020/10/online-programming-course-hero-section-bg.svg');
    background-size: cover;
    background-position: right top;
    background-repeat: no-repeat;
    color: var(--white);
    display: flex;
    align-items: center;
    height: 100%; /* fallback */
    min-height: 100vh; /* ensures full height on large screens */
}
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
}
.hero-text h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
}
.on-demand {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-yellow);
    position: relative;
    padding-left: 20px;
}
.on-demand::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--secondary-yellow);
    border-radius: 50%;
}
.btn-start-course {
    background-color: var(--white);
    color: #000;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    margin-right: 1rem;
}
.btn-view-all {
    color: var(--white);
    font-weight: 600;
    padding: 0.75rem 2rem;
    text-decoration: none;
    position: relative;
}
.btn-view-all:hover {
    color: var(--secondary-yellow);
}
.video-container {
    position: relative;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-container img {
    width: 100%;
    height: auto;
    display: block;
}
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.play-button svg {
    color: #000;
    width: 30px;
    height: 30px;
}
.testimonial-1 {
    background-color: var(--light-gray);
    position: relative;
    overflow: hidden;
}
.testimonial-1 .bg-dots {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#d3d3d3 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 0;
}
.testimonial-1 .quote-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: var(--secondary-yellow);
    clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
    z-index: -1;
}
.testimonial-1 .testimonial-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    z-index: 1;
}
.testimonial-1 .testimonial-text {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}
.testimonial-1 .author-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}
.testimonial-1 .author-title {
    font-size: 1rem;
    color: var(--gray-text);
}
.testimonial-1 .read-all-reviews {
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}
.testimonial-1 .read-all-reviews:hover {
    color: var(--primary-blue);
}
.testimonial-1 .read-all-reviews::after {
    content: ' →';
}
.featured-course-section {
    background-color: var(--white);
    position: relative;
}
.featured-course-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--gray-text) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 0;
}
.featured-course-card {
    background-color: var(--light-gray);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}
.course-image-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.course-image {
    width: 100%;
    height: auto;
    display: block;
}
.featured-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-yellow);
    text-transform: uppercase;
    position: relative;
    padding-left: 15px;
}
.featured-course-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}
.course-description {
    font-size: 1rem;
    color: var(--gray-text);
}
.course-features {
    font-size: 1rem;
    color: #333;
}
.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}
.feature-item svg {
    color: var(--primary-blue);
    margin-right: 8px;
    min-width: 16px;
}
.btn-start-course {
    background-color: var(--primary-blue);
    color: var(--white);
    font-weight: bold;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.btn-start-course:hover {
    background-color: #0b5ed7;
    color: var(--white);
}
.popular-courses-section {
    background-color: var(--white);
    position: relative;
}
.popular-courses-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--gray-text) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 0;
}
.course-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 100%;
}
.course-card:hover {
    transform: translateY(-10px);
}
.course-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.card-body {
    padding: 1.5rem;
}
.course-tag {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-text);
    text-transform: uppercase;
}
.course-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    color: #333;
}
.course-details {
    font-size: 0.9rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
}
.course-details svg {
    color: var(--secondary-yellow);
    margin-right: 5px;
}
.course-details span {
    margin-right: 1.5rem;
}
.testimonial-2 {
    background-color: var(--white);
}
.testimonial-2 .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0rem;
}
.testimonial-2 .subheading {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.testimonial-2 .main-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-top: 0.5rem;
}
.testimonial-2 .btn-learning {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background-color: transparent;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}
.testimonial-2 .btn-learning:hover {
    background-color: var(--primary-blue);
    color: var(--white);
}
.testimonial-2 .testimonial-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    text-align: center;
    height: 100%;
}
.testimonial-2 .profile-image-container {
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}
.testimonial-2 .profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testimonial-2 .testimonial-quote {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 2rem;
}
.testimonial-2 .author-name {
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #333;
}

/* --- About Page Specific Sections --- */
.about-hero-section {
    background-color: #21396a;
    color: var(--white);
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}
.about-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://websitedemos.net/online-coding-course-02/wp-content/uploads/sites/713/2020/10/online-programming-course-hero-section-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: cover;
    background-color: #21396a;
    z-index: -1;
}
.about-hero-section .about-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
}
.about-hero-section .about-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}
.about-hero-section .about-image {
    margin-top: 3rem;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}
.about-cloutsaas {
    padding: 80px 0;
}
.about-cloutsaas h2 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
}
.about-cloutsaas p {
    max-width: 700px;
    margin: 20px auto;
    text-align: center;
    color: var(--gray-text);
}
.numbers-section {
    background-color: var(--light-gray);
    padding: 80px 0;
}
.numbers-item {
    text-align: center;
}
.numbers-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
}
.numbers-item p {
    font-size: 1rem;
    color: var(--gray-text);
}
/* --- What We Do Section (Engaging Version) --- */
        .what-we-do {
            padding: 80px 0;
        }
        .what-we-do-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background-color: #f8f9fa;
            padding: 1.5rem;
            margin-bottom: 1rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .what-we-do-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        .what-we-do-item .what-we-do-icon {
            flex-shrink: 0;
            color: var(--primary-blue);
        }
        .what-we-do-item svg {
            width: 24px;
            height: 24px;
        }
        .what-we-do-item p {
            margin: 0;
            color: #333;
        }

.instructors-section {
    padding: 80px 0;
    background-color: var(--light-gray);
    position: relative;
}
.instructors-section .bg-dots {
            background-image: radial-gradient(var(--gray-text) 1px, transparent 1px);
            background-size: 15px 15px;
            opacity: 0.5;
        }
.instructor-card {
    text-align: center;
    background-color: var(--white);
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}
.instructor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}
.instructor-name {
    font-size: 1.25rem;
    font-weight: bold;
}
.instructor-title {
    font-size: 0.9rem;
    color: var(--gray-text);
    margin-bottom: 1rem;
}
.instructor-social a {
    color: #333;
    margin: 0 5px;
    transition: color 0.3s ease;
}
.instructor-social a:hover {
    color: var(--primary-blue);
}
.membership-section {
    background-color: #21396a;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.membership-section::before, .membership-section::after {
    content: '';
    position: absolute;
    z-index: 0;
    bottom: 0;
}
.membership-section::before {
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://websitedemos.net/online-coding-course-02/wp-content/uploads/sites/713/2020/10/online-programming-course-hero-section-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
}
.membership-section::after {
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://websitedemos.net/online-coding-course-02/wp-content/uploads/sites/713/2020/10/online-programming-course-hero-section-bg.svg');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
}
.membership-content {
    position: relative;
    z-index: 1;
}
.membership-content h2 {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
}
.membership-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}
.membership-button {
    background-color: var(--white);
    color: #333;
    font-weight: bold;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.membership-button:hover {
    background-color: #e2e6ea;
}




/*contact Page*/

/* --- Contact Page Specific Styles --- */
/* --- Contact Page Specific Styles --- */
/* --- Contact Page Specific Styles --- */
.contact-page-section {
    background-image: url('https://websitedemos.net/online-coding-course-02/wp-content/uploads/sites/713/2020/10/online-programming-course-hero-section-bg.svg');
    position: relative;
    padding-top: 100px;
    padding-bottom: 80px;
}
.contact-page-bg {
    position: relative;
    z-index: 1; /* Ensures content is on top */
}

.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}
.contact-page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}
.contact-page-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
}
.contact-page-list {
    padding-left: 0;
}
.contact-page-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.contact-page-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-page-icon svg {
    width: 18px;
    height: 18px;
}
.contact-page-details {
    margin: 0;
}
.contact-page-label {
    font-weight: bold;
    margin-bottom: 0;
}
.contact-page-details p {
    color: var(--gray-text);
    margin: 0;
}
.contact-social-icon {
    color: var(--primary-blue);
    transition: color 0.3s ease;
}
.contact-social-icon:hover {
    color: #0b5ed7;
}


.contact-form-btn {
    border-style: solid !important;
    border-top-width: 2px !important;
    border-right-width: 2px !important;
    border-left-width: 2px!important;
    border-bottom-width: 2px!important;
    color: #fff !important;
    border-color: var(--primary-blue)! important;
    background-color: var(--primary-blue) !important;
    padding-top: 14px !important;
    padding-right: 30px !important;
    padding-bottom: 14px !important;
    padding-left: 30px !important;
    font-family: 'Poppins',sans-serif !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    font-size: 0.83333333333333rem !important;
    line-height: 1em !important;
    text-transform: capitalize !important;
    border-top-left-radius: 50px !important;
    border-top-right-radius: 50px !important;
    border-bottom-right-radius: 50px !important; 
    border-bottom-left-radius: 50px !important;
}
.contact-form-btn:hover {
    background-color: #0b5ed7;
}
.map-section {
    position: relative;
    margin-top: -80px;
}
.map-container {
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    position: relative;
}
.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
/*contact end*/



/*courses page*/
/* --- Courses Page Specific Styles --- */
.courses-page-section {
    background-image: url('https://websitedemos.net/online-coding-course-02/wp-content/uploads/sites/713/2020/10/online-programming-course-hero-section-bg.svg');
    color: var(--white);
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.courses-page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--white);
}
.courses-page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}
.featured-courses-section .section-title {
    text-align: left;
}
.featured-courses-dots {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(var(--gray-text) 1px, transparent 1px);
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 0;
}


/*courses-end*/


.site-footer {
    background-color: var(--dark-background);
    color: var(--light-text);
    padding: 80px 0 20px;
}
.footer-heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--light-text);
    margin-bottom: 25px;
}
.footer-link-list {
    list-style: none;
    padding-left: 0;
}
.footer-link-list li {
    margin-bottom: 10px;
}
.footer-link-list a, .footer-contact-info a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-link-list a:hover, .footer-contact-info a:hover {
    color: var(--secondary-yellow);
}
.footer-social-icons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.footer-social-icons a {
    color: var(--light-text);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}
.footer-social-icons a:hover {
    color: var(--secondary-yellow);
}
.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 50px 0 20px;
}
.copyright-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-text {
    color: #b0b0b0;
}
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
        min-height: auto;
        padding-bottom: 3rem;
    }
    .hero-text, .video-container {
        margin-top: 2rem;
    }
    .hero-text h1 {
        font-size: 2.5rem;
    }
    .navbar-nav {
        background-color: rgba(0, 0, 0, 0.8);
                /*background-color: rgb(3, 102, 208);*/

        padding: 2rem;
        border-radius: 5px;
    }
    .hero-section .video-container{
        display: none;
    }
    .featured-course-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    .course-image-container {
        margin-bottom: 2rem;
    }
    .featured-course-title {
        font-size: 2rem;
    }
    .about-hero-section .about-title {
        font-size: 2rem;
    }
    .about-hero-section .about-subtitle {
        font-size: 1rem;
    }
}
@media (max-width: 767.98px) {
    .testimonial-2 .header {
        flex-direction: column;
        text-align: center;
    }
    .testimonial-2 .main-heading {
        font-size: 2rem;
    }
    .testimonial-2 .btn-learning {
        margin-top: 1.5rem;
        width: 100%;
    }
    .testimonial-2 .testimonial-card {
        margin-bottom: 1.5rem;
    }
    .site-footer {
        text-align: center;
        padding: 40px 0 20px;
    }
    .footer-col {
        margin-bottom: 30px;
    }
    .footer-social-icons {
        justify-content: center;
    }
    .copyright-bar {
        flex-direction: column;
        text-align: center;
    }
    .copyright-bar p:first-child {
        margin-bottom: 5px;
    }
    .what-we-do-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-section {
        text-align: center;
    }
    .about-cloutsaas p {
        text-align: left;
    }
    .numbers-section h3 {
        font-size: 2.5rem;
    }
}