/* ====== GLOBAL STYLES ====== */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f8f9fa;
}

/* ====== NAVBAR ====== */
.navbar {
  background: linear-gradient(135deg, #004aad, #007bff);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
  height: 55px;
}

.navbar-nav .nav-link {
  color: #fff !important;
  font-weight: 500;
  margin: 0 8px;
  transition: 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #ffd700 !important;
}

.hover-btn-new {
  background: #fff;
  color: #007bff;
  border-radius: 8px;
  padding: 8px 14px;
  font-weight: 600;
  transition: 0.3s;
}

.hover-btn-new:hover {
  background: #ffd700;
  color: #000;
}

/* ======= LOGIN MODAL ======= */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-header {
  background: linear-gradient(135deg, #004aad, #007bff);
  color: white;
  border: none;
}

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

.nav-tabs .nav-link {
  border: none;
  background: #f1f1f1;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-tabs .nav-link.active {
  background: #007bff;
  color: #fff;
}

.form-control {
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.btn {
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

/* ======= HEADER SECTION ======= */
.brand-header {
  background: #fff;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  padding: 20px 10px;
}

.brand-header img {
  border-radius: 10px;
}

.blinking {
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0.5; }
}

/* ====== CONTACT SECTION ====== */
.section-title h3 {
  font-weight: 700;
  color: #004aad;
  margin-bottom: 15px;
}

/* ====== FOOTER ====== */
.footer {
  background: #002244;
  color: #fff;
  padding: 40px 0;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer h5 {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer img {
  transition: 0.3s;
}

.footer img:hover {
  transform: scale(1.1);
}

.copyright {
  background: #001122;
  color: #ccc;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

/* ===== SCROLL TOP BUTTON ===== */
#scroll-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #007bff;
  color: #fff;
  border-radius: 50%;
  padding: 10px 13px;
  font-size: 22px;
  display: none;
  transition: 0.3s;
  z-index: 999;
}

#scroll-to-top:hover {
  background: #0056b3;
}
/* ====== GLOBAL STYLES ====== */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* ====== NAVBAR ====== */
.navbar {
    background: linear-gradient(135deg, #004aad, #007bff);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar-brand img {
    height: 55px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 500;
    margin: 0 8px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #ffd700 !important;
}

.hover-btn-new {
    background: #fff;
    color: #007bff;
    border-radius: 8px;
    padding: 8px 14px;
    font-weight: 600;
    transition: 0.3s;
}

.hover-btn-new:hover {
    background: #ffd700;
    color: #000;
}

/* ======= LOGIN MODAL ======= */
.modal-content {
    border-radius: 15px;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #004aad, #007bff);
    color: white;
    border: none;
}

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

.nav-tabs .nav-link {
    border: none;
    background: #f1f1f1;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.nav-tabs .nav-link.active {
    background: #007bff;
    color: #fff;
}

.form-control {
    border-radius: 10px;
    padding: 10px 14px;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0,123,255,0.3);
}

.btn {
    border-radius: 10px;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
}

/* ======= HEADER SECTION ======= */
.brand-header {
    background: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    padding: 20px 10px;
}

.brand-header img {
    border-radius: 10px;
}

.blinking {
    animation: blink 1.2s infinite;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

/* ====== HERO SECTION ====== */
.first-section {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ====== COURSE CARDS ====== */
.course-card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* ====== FEATURES SECTION ====== */
.features-list li {
    font-size: 1.1rem;
    padding: 8px 0;
}

/* ====== STATISTICS SECTION ====== */
.stat-box {
    padding: 30px 20px;
}

.stat-box i {
    color: #ffd700;
}

/* ====== FOOTER ====== */
.footer {
    background: #002244;
    color: #fff;
    padding: 40px 0;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer h5 {
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer img {
    transition: 0.3s;
    margin: 5px;
}

.footer img:hover {
    transform: scale(1.1);
}

.copyright {
    background: #001122;
    color: #ccc;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* ===== SCROLL TOP BUTTON ===== */
#scroll-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #007bff;
    color: #fff;
    border-radius: 50%;
    padding: 10px 13px;
    font-size: 22px;
    display: none;
    transition: 0.3s;
    z-index: 999;
    border: none;
}

#scroll-to-top:hover {
    background: #0056b3;
    transform: translateY(-2px);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .brand-header .col-md-2 {
        margin-bottom: 15px;
    }
    
    .first-section h2 {
        font-size: 1.8rem;
    }
    
    .stat-box {
        margin-bottom: 30px;
    }
}
/* ====== HERO SECTION ====== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 50px;
    position: relative;
    overflow: hidden;
}

.min-vh-80 {
    min-height: 80vh;
}

.hero-badge {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    margin-bottom: 30px;
}

.hero-stats {
    border-top: 1px solid rgba(255,255,255,0.3);
    padding-top: 30px;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    opacity: 0.8;
    margin: 0;
}

.hero-image {
    position: relative;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #333;
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
}

.card-1 {
    top: 20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* ====== SECTIONS COMMON STYLES ====== */
.section-subtitle {
    color: #007bff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* ====== FEATURES SECTION ====== */
.feature-card {
    padding: 40px 20px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon i {
    font-size: 32px;
    color: white;
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* ====== COURSES SECTION ====== */
.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.course-image {
    position: relative;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 5px;
}

.current-price {
    color: #dc3545;
    font-weight: 700;
    font-size: 16px;
}

.course-content {
    padding: 25px;
}

.course-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.course-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.course-features span {
    color: #666;
    font-size: 14px;
}

.course-features i {
    color: #007bff;
    margin-right: 5px;
}

/* ====== FRANCHISE SECTION ====== */
.franchise-section {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
}

.bg-gradient {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.franchise-features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.feature-item i {
    margin-right: 15px;
    font-size: 20px;
}

/* ====== TESTIMONIALS SECTION ====== */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 25px;
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-info h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.author-info span {
    color: #007bff;
    font-size: 14px;
}

/* ====== CTA SECTION ====== */
.cta-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

/* ====== RESPONSIVE DESIGN ====== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .floating-card {
        position: relative;
        margin: 10px;
        animation: none;
    }
    
    .card-1, .card-2, .card-3 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .hero-buttons .btn {
        margin-bottom: 10px;
        width: 100%;
    }
    
    .franchise-buttons .btn {
        margin-bottom: 10px;
        width: 100%;
    }
}
/* ====== GLOBAL STYLES ====== */
:root {
    --primary-color: #007bff;
    --secondary-color: #0056b3;
    --accent-color: #ffd700;
    --dark-color: #002244;
    --light-color: #f8f9fa;
}

/* ====== FRANCHISE SECTION ====== */
.franchise-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    position: relative;
    overflow: hidden;
}

.franchise-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.franchise-content {
    position: relative;
    z-index: 2;
}

.section-subtitle {
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: rgb(255, 255, 255);
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #FFD700, #FFA500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.franchise-content .lead {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Features Grid */
.franchise-features {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 24px;
    color: white;
}

.feature-text h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 14px;
}

/* Buttons */
.franchise-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.franchise-buttons .btn-primary {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(255,107,107,0.4);
    transition: all 0.3s ease;
}

.franchise-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255,107,107,0.6);
}

.franchise-buttons .btn-outline-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.franchise-buttons .btn-outline-secondary:hover {
    background: white;
    color: #667eea;
}

/* Franchise Visual */
.franchise-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-franchise-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    width: 300px;
    transform: rotate(3deg);
}

.card-header {
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    padding: 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
}

.card-header i {
    margin-right: 10px;
    font-size: 20px;
}

.card-body {
    padding: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 12px;
    transition: transform 0.3s ease;
}

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

.benefit-item i {
    font-size: 20px;
    margin-bottom: 8px;
}

.benefit-item.success {
    background: linear-gradient(45deg, #28a745, #20c997);
    color: white;
}

.benefit-item.primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
}

.benefit-item.warning {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
    color: white;
}

.benefit-item.info {
    background: linear-gradient(45deg, #17a2b8, #138496);
    color: white;
}

.benefit-item.danger {
    background: linear-gradient(45deg, #dc3545, #c82333);
    color: white;
}

.benefit-item.dark {
    background: linear-gradient(45deg, #343a40, #23272b);
    color: white;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: float 4s ease-in-out infinite;
}

.element-1 {
    top: 10%;
    right: 10%;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    color: white;
    animation-delay: 0s;
}

.element-2 {
    top: 40%;
    left: 5%;
    background: linear-gradient(45deg, #4ECDC4, #44A08D);
    color: white;
    animation-delay: 1.3s;
}

.element-3 {
    bottom: 20%;
    right: 5%;
    background: linear-gradient(45deg, #FFD93D, #FF9A3D);
    color: white;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .franchise-section {
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .franchise-buttons {
        justify-content: center;
    }
    
    .franchise-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .franchise-visual {
        height: 300px;
        margin-top: 40px;
    }
    
    .main-franchise-card {
        transform: none;
    }
    
    .floating-element {
        display: none;
    }
}

/* ====== ABOUT PAGE SPECIFIC STYLES ====== */

/* About Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.about-hero-content .section-subtitle {
    background: linear-gradient(45deg, #007bff, #0056b3);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-hero-image {
    position: relative;
}

.floating-badge {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 14px;
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    color: #007bff;
    font-size: 18px;
}

.badge-1 {
    top: 20%;
    left: -20px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 30%;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Mission Vision Section */
.mission-card, .vision-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before, .vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.mission-card::before {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.vision-card::before {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.mission-card:hover, .vision-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 30px;
    color: white;
}

.vision-card .card-icon {
    background: linear-gradient(45deg, #ffc107, #fd7e14);
}

.mission-card h3, .vision-card h3 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.mission-list, .vision-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.mission-list li, .vision-list li {
    padding: 8px 0;
    font-size: 15px;
}

/* About Content Section */
.feature-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #007bff, #0056b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
}

.feature-box h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.about-story {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-story h3 {
    color: #333;
    font-weight: 700;
    border-left: 5px solid #007bff;
    padding-left: 15px;
}

.about-story p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

/* Values Section */
.value-card {
    padding: 30px 20px;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffd700;
}

.value-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.value-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .floating-badge {
        position: relative;
        display: inline-block;
        margin: 10px;
        animation: none;
    }
    
    .badge-1, .badge-2 {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .mission-card, .vision-card {
        margin-bottom: 30px;
    }
    
    .feature-box {
        margin-bottom: 20px;
    }
    
    .about-story {
        padding: 25px;
    }
}
/* ====== CERTIFICATE COURSES PAGE STYLES ====== */

/* Courses Hero Section */
.courses-hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 80px 0;
}

.courses-hero-section .section-subtitle {
    background: white;
    color: #007bff;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-features {
    margin-top: 30px;
}

.feature-item {
    text-align: center;
    padding: 15px;
}

.feature-item i {
    font-size: 24px;
    margin-bottom: 10px;
    display: block;
    color: #ffd700;
}

.feature-item span {
    font-size: 14px;
    font-weight: 500;
}

/* Certificate Course Cards */
.certificate-course {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.certificate-course:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.course-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.course-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
}

.course-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.course-code {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.course-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.course-body {
    padding: 25px;
}

.course-duration, .course-fee {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
}

.course-duration i, .course-fee i {
    color: #007bff;
    width: 20px;
}

.course-syllabus h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.course-syllabus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-syllabus li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.course-syllabus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.course-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.feature-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.course-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

.btn-purple {
    background: linear-gradient(135deg, #6f42c1, #5a2d8a);
    border: none;
    color: white;
}

.btn-purple:hover {
    background: linear-gradient(135deg, #5a2d8a, #4a2373);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .courses-hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hero-features .col-md-4 {
        margin-bottom: 20px;
    }
    
    .certificate-course {
        margin-bottom: 25px;
    }
    
    .course-header {
        padding: 25px 15px;
    }
    
    .course-body {
        padding: 20px;
    }
    
    .course-features {
        justify-content: center;
    }
}
/* ====== FINANCIAL ACCOUNTING COURSES PAGE STYLES ====== */

/* Accounting Hero Section */
.accounting-hero-section {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 80px 0;
}

.accounting-hero-section .section-subtitle {
    background: white;
    color: #28a745;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Accounting Hero Graphic */
.accounting-hero-graphic {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tally-icon-main {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #28a745;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse-tally 2s ease-in-out infinite;
}

@keyframes pulse-tally {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-accounting-element {
    position: absolute;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float-accounting 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 12px;
}

.floating-accounting-element i {
    color: #28a745;
    font-size: 20px;
    margin-bottom: 5px;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float-accounting {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

/* Accounting Course Cards */
.accounting-course {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.accounting-course:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.accounting-course .course-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.accounting-course .course-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
}

.accounting-course .course-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.accounting-course .course-code {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.accounting-course .course-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.accounting-course .course-body {
    padding: 25px;
}

.accounting-course .course-duration, 
.accounting-course .course-fee {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
}

.accounting-course .course-duration i, 
.accounting-course .course-fee i {
    color: #28a745;
    width: 20px;
}

.accounting-course .course-syllabus h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.accounting-course .course-syllabus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accounting-course .course-syllabus li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.accounting-course .course-syllabus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.accounting-course .course-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.accounting-course .feature-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.accounting-course .course-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* Custom Button Colors */
.btn-pink {
    background: linear-gradient(135deg, #B94B70, #C2185B);
    border: none;
    color: white;
}

.btn-pink:hover {
    background: linear-gradient(135deg, #C2185B, #AD1457);
    color: white;
}

.btn-teal {
    background: linear-gradient(135deg, #038A82, #00BFA5);
    border: none;
    color: white;
}

.btn-teal:hover {
    background: linear-gradient(135deg, #00BFA5, #009688);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .accounting-hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .accounting-hero-graphic {
        height: 200px;
        margin-top: 30px;
    }
    
    .tally-icon-main {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-accounting-element {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .accounting-course {
        margin-bottom: 25px;
    }
    
    .accounting-course .course-header {
        padding: 25px 15px;
    }
    
    .accounting-course .course-body {
        padding: 20px;
    }
    
    /* ====== DIPLOMA COURSES PAGE STYLES ====== */

/* Diploma Hero Section */
.diploma-hero-section {
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    padding: 80px 0;
}

.diploma-hero-section .section-subtitle {
    background: white;
    color: #17a2b8;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Diploma Hero Graphic */
.diploma-hero-graphic {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diploma-icon-main {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #17a2b8;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse-diploma 2s ease-in-out infinite;
}

@keyframes pulse-diploma {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-diploma-element {
    position: absolute;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float-diploma 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 12px;
}

.floating-diploma-element i {
    color: #17a2b8;
    font-size: 20px;
    margin-bottom: 5px;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float-diploma {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

/* Diploma Course Cards */
.diploma-course {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.diploma-course:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.diploma-course .course-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.diploma-course .course-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
}

.diploma-course .course-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.diploma-course .course-code {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.diploma-course .course-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.diploma-course .course-body {
    padding: 25px;
}

.diploma-course .course-duration, 
.diploma-course .course-fee {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
}

.diploma-course .course-duration i, 
.diploma-course .course-fee i {
    color: #17a2b8;
    width: 20px;
}

.diploma-course .course-syllabus h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.diploma-course .course-syllabus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diploma-course .course-syllabus li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.diploma-course .course-syllabus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #17a2b8;
    font-weight: bold;
}

.diploma-course .course-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.diploma-course .feature-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.diploma-course .course-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* Custom Button Colors */
.btn-pink {
    background: linear-gradient(135deg, #B94B70, #C2185B);
    border: none;
    color: white;
}

.btn-pink:hover {
    background: linear-gradient(135deg, #C2185B, #AD1457);
    color: white;
}

.btn-teal {
    background: linear-gradient(135deg, #038A82, #00BFA5);
    border: none;
    color: white;
}

.btn-teal:hover {
    background: linear-gradient(135deg, #00BFA5, #009688);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .diploma-hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .diploma-hero-graphic {
        height: 200px;
        margin-top: 30px;
    }
    
    .diploma-icon-main {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-diploma-element {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .diploma-course {
        margin-bottom: 25px;
    }
    
    .diploma-course .course-header {
        padding: 25px 15px;
    }
    
    .diploma-course .course-body {
        padding: 20px;
    }
    
    .diploma-course .course-features {
        justify-content: center;
    }
}
/* ====== ADVANCE DIPLOMA COURSES PAGE STYLES ====== */

/* Advance Diploma Hero Section */
.advance-diploma-hero-section {
    background: linear-gradient(135deg, #ffc107 0%, #ffb300 100%);
    padding: 80px 0;
}

.advance-diploma-hero-section .section-subtitle {
    background: white;
    color: #ffc107;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Advance Diploma Hero Graphic */
.advance-diploma-hero-graphic {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advance-diploma-icon-main {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffc107;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse-advance 2s ease-in-out infinite;
}

@keyframes pulse-advance {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-advance-element {
    position: absolute;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float-advance 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 12px;
}

.floating-advance-element i {
    color: #ffc107;
    font-size: 20px;
    margin-bottom: 5px;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float-advance {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

/* Advance Diploma Course Cards */
.advance-diploma-course {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.advance-diploma-course:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.advance-diploma-course .course-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.advance-diploma-course .course-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
}

.advance-diploma-course .course-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.advance-diploma-course .course-code {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.advance-diploma-course .course-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.advance-diploma-course .course-body {
    padding: 25px;
}

.advance-diploma-course .course-duration, 
.advance-diploma-course .course-fee {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
}

.advance-diploma-course .course-duration i, 
.advance-diploma-course .course-fee i {
    color: #ffc107;
    width: 20px;
}

.advance-diploma-course .course-syllabus h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.advance-diploma-course .course-syllabus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advance-diploma-course .course-syllabus li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.advance-diploma-course .course-syllabus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffc107;
    font-weight: bold;
}

.advance-diploma-course .course-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.advance-diploma-course .feature-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.advance-diploma-course .course-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* Custom Button Colors */
.btn-pink {
    background: linear-gradient(135deg, #B94B70, #C2185B);
    border: none;
    color: white;
}

.btn-pink:hover {
    background: linear-gradient(135deg, #C2185B, #AD1457);
    color: white;
}

.btn-teal {
    background: linear-gradient(135deg, #038A82, #00BFA5);
    border: none;
    color: white;
}

.btn-teal:hover {
    background: linear-gradient(135deg, #00BFA5, #009688);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advance-diploma-hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .advance-diploma-hero-graphic {
        height: 200px;
        margin-top: 30px;
    }
    
    .advance-diploma-icon-main {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-advance-element {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .advance-diploma-course {
        margin-bottom: 25px;
    }
    
    .advance-diploma-course .course-header {
        padding: 25px 15px;
    }
    
    .advance-diploma-course .course-body {
        padding: 20px;
    }
    
    .advance-diploma-course .course-features {
        justify-content: center;
    }
}

/* ====== HARDWARE & NETWORKING COURSES PAGE STYLES ====== */

/* Hardware Hero Section */
.hardware-hero-section {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    padding: 80px 0;
}

.hardware-hero-section .section-subtitle {
    background: white;
    color: #6c757d;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

/* Hardware Hero Graphic */
.hardware-hero-graphic {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hardware-icon-main {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #6c757d;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: pulse-hardware 2s ease-in-out infinite;
}

@keyframes pulse-hardware {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.floating-hardware-element {
    position: absolute;
    background: white;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    animation: float-hardware 3s ease-in-out infinite;
    font-weight: 600;
    font-size: 12px;
}

.floating-hardware-element i {
    color: #6c757d;
    font-size: 20px;
    margin-bottom: 5px;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float-hardware {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-10px) rotate(5deg); 
    }
}

/* Hardware Course Cards */
.hardware-course {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.hardware-course:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hardware-course .course-header {
    padding: 30px 20px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hardware-course .course-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.1);
}

.hardware-course .course-icon {
    font-size: 48px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.hardware-course .course-code {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.hardware-course .course-name {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.hardware-course .course-body {
    padding: 25px;
}

.hardware-course .course-duration, 
.hardware-course .course-fee {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
}

.hardware-course .course-duration i, 
.hardware-course .course-fee i {
    color: #6c757d;
    width: 20px;
}

.hardware-course .course-syllabus h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hardware-course .course-syllabus ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hardware-course .course-syllabus li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.9rem;
}

.hardware-course .course-syllabus li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6c757d;
    font-weight: bold;
}

.hardware-course .course-features {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hardware-course .feature-badge {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.hardware-course .course-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
}

/* Skills Section */
.skill-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6c757d, #495057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: white;
}

.skill-card h4 {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.skill-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Custom Button Colors */
.btn-pink {
    background: linear-gradient(135deg, #B94B70, #C2185B);
    border: none;
    color: white;
}

.btn-pink:hover {
    background: linear-gradient(135deg, #C2185B, #AD1457);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hardware-hero-section {
        padding: 50px 0;
        text-align: center;
    }
    
    .hardware-hero-graphic {
        height: 200px;
        margin-top: 30px;
    }
    
    .hardware-icon-main {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }
    
    .floating-hardware-element {
        width: 60px;
        height: 60px;
        font-size: 10px;
    }
    
    .hardware-course {
        margin-bottom: 25px;
    }
    
    .hardware-course .course-header {
        padding: 25px 15px;
    }
    
    .hardware-course .course-body {
        padding: 20px;
    }
    
    .hardware-course .course-features {
        justify-content: center;
    }
    
    .skill-card {
        margin-bottom: 25px;
    }
}