<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Theme Colors */
:root {
    --theme-color: #ec6538;
    --theme-color-hover: #d55429;
}

/* Fix for headings hidden behind fixed navigation */
.section-heading {
    padding-top: 30px;
}

.info-item{
    display: flex;
}

section {
    padding-top: 90px;
    margin-top: -70px;
    z-index: 1;
    position: relative;
}

section:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

/* Section anchors fix for fixed header */
.section-anchor {
    display: block;
    position: relative;
    top: -90px;
    visibility: hidden;
}

/* Custom Styles */
.feature-box .dark-icon {
    color: var(--theme-color);
}

/* Ensure cards are of equal size and have proper margins */
.feature-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin: 15px;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.feature-box h4 {
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--theme-color);
}

.feature-box p {
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col-md-4 {
    flex: 0 0 30%;
    max-width: 30%;
    box-sizing: border-box;
}

/* Counter section styles */
.counter .dark-icon {
    color: var(--theme-color);
    margin-bottom: 15px;
    display: inline-block;
}

.counter h3 {
    color: #fff;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 400;
    text-transform: uppercase;
}

.dark-bg .counter i {
    color: var(--theme-color) !important;
}

/* Theme Color Overrides */
.btn-color {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-color:hover {
    background-color: var(--theme-color-hover);
    border-color: var(--theme-color-hover);
}

.btn-outline-color {
    color: var(--theme-color);
    border-color: var(--theme-color);
}

.btn-outline-color:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.text-color {
    color: var(--theme-color) !important;
}

.bg-color {
    background-color: var(--theme-color) !important;
}

.navbar-nav &gt; li.active &gt; a {
    color: var(--theme-color) !important;
}

.navbar-nav &gt; li &gt; a:hover {
    color: var(--theme-color) !important;
}

.section-heading h2:after {
    background: var(--theme-color);
}

.blue-icon {
    color: var(--theme-color) !important;
}

.social-media li a:hover {
    background: var(--theme-color);
    border-color: var(--theme-color);
}

#back-to-top {
    background: var(--theme-color);
}

#back-to-top:hover {
    background: var(--theme-color-hover);
}

.widget-links ul li a:hover {
    color: var(--theme-color);
}

.arcon-pulse {
    border-color: var(--theme-color);
}

/* Icon group styling */
.icon-group {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ml-10 {
    margin-left: 10px;
}

.ml-30 {
    margin-left: 30px;
}

/* Alternating section background colors */
.section-white {
    background-color: #ffffff;
}

.section-gray {
    background-color: #f7f7f7;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    /* Fix logo and hamburger menu overlap and center logo */
    .navbar-header {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        position: relative;
    }
    
    .navbar-toggle {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        padding: 10px 0;
    }

    .logo a {
        font-size: 20px !important;  /* Slightly smaller font size for mobile */
    }

    /* Add margin to cards in mobile view */
    .feature-box {
        margin-top: 30px;
        margin-bottom: 30px;
    }

    /* Adjust grid for cards in mobile */
    .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Counter section mobile adjustments */
    .counter {
        margin-bottom: 30px;
    }

    /* Footer adjustments for mobile */
    .footer .widget {
        margin-bottom: 30px;
    }
}

/* Theme color for institute name */
.institute-name {
    color: var(--theme-color);
    font-weight: bold;
}

/* Counter section responsive styles */
.counter {
    padding: 20px;
}

/* Footer widget spacing */
.widget {
    margin-bottom: 30px;
}

/* Form Elements Styling */
.form-control {
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    box-shadow: none;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 0 0.2rem rgba(236, 101, 56, 0.25);
}

textarea.form-control {
    border-radius: 8px;
}

.btn {
    border-radius: 8px;
}

.btn-circle {
    border-radius: 8px !important;
}

/* Custom styling for select dropdowns */
select.form-control {
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding-right: 25px;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
}

/* Add subtle hover effect */
.form-control:hover {
    border-color: var(--theme-color);
}

/* Course Details Page Styles */
.topics-list ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.topics-list ul li:last-child {
    border-bottom: none;
}

.topics-list .dark-icon {
    color: var(--theme-color);
    margin-right: 10px;
}

.course-features .feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
}

.course-features {
    background: #f7f7f7;
    border-radius: 8px;
}

.feature-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .dark-icon {
    color: var(--theme-color);
    width: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .course-features .feature-box {
        margin-bottom: 20px;
    }
    
    .topics-list ul li {
        padding: 15px 0;
    }
    
    .course-features {
        margin-top: 30px;
    }
    
    .feature-list li {
        padding: 12px 0;
    }
}

/* Course Page Styles */
.hover-shadow {
    transition: all 0.3s ease;
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.line-height-30 {
    line-height: 30px;
}

.font-20px {
    font-size: 20px;
}

.font-600 {
    font-weight: 600;
}

.font-700 {
    font-weight: 700;
}

.mb-30 {
    margin-bottom: 30px;
}

.p-40 {
    padding: 40px;
}

.btn-outline-white {
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
}

.btn-outline-white:hover {
    color: #333;
    background-color: #fff;
}

/* Feature List Styles */
.feature-list li {
    padding: 20px 0;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.8;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list .dark-icon {
    color: var(--theme-color);
    font-size: 20px;
    margin-right: 15px;
    vertical-align: middle;
}

.theme-color h3 {
    color: var(--theme-color);
    font-weight: 600;
}

.white-bg {
    background: #fff;
}

/* Course Page Specific Styles */
.feature-box-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hover-shadow {
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.hover-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.h-100 {
    height: 100%;
}

.p-30 {
    padding: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eee;
    line-height: 1.5;
}

.feature-list li:last-child {
    border-bottom:
    margin-bottom: 0;
    padding-bottom: 0;
}

.feature-list .dark-icon {
    color: var(--theme-color);
    width: 20px;
    font-size: 16px;
    text-align: center;
    margin-right: 10px;
    vertical-align: middle;
}

.section-gray {
    padding: 60px 0;
}

/* Course Content Cards */
.feature-box.white-bg {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.feature-box .feature-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.p-20 { padding: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

@media (max-width: 767px) {
    .feature-box-right {
        margin-top: 30px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
    
    .col-sm-12 {
        width: 100%;
    }
}</pre></body></html>