
/* customizations */


.welcome-content h2{
    font-weight: 700 !important;
}

/* Show dropdown menu on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0; /* Optional: aligns the dropdown */
}

a{
    text-decoration: none;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 0.5rem;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: #ff4444;
    color: white;
}

.dropdown-divider {
    margin: 0.5rem 0;
}

/* Style for circular buttons */
.whatsapp-btn, .call-btn, .back-to-top-btn {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}

/* Specific positions for buttons */
.whatsapp-btn {
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
}

.call-btn {
    bottom: 20px;
    left: 20px;
    background-color: #007bff;
}

.back-to-top-btn {
    bottom: 90px;
    right: 20px;
    background-color: #343a40;
}

/* Hover effects for each button */
.whatsapp-btn:hover {
    background-color: #128c7e;
}

.call-btn:hover {
    background-color: #0056b3;
}

.back-to-top-btn:hover {
    background-color: #495057;
}


.welcome-image img{
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 10px;
}

/* .footer-logo{
    display: flex;
    align-items: center;
    justify-content: center;
} */

.footer-logo img{
    width: 100px;
    height: 100px;
    object-fit: contain;
}

/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.section-padding{
    padding: 70px 0;
}

/* Top Bar */
.top-bar {
    font-size: 0.9rem;
}

/* Navigation */

.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 1rem 1.2rem;
}

.navbar-nav .nav-link:hover {
    color: #dc3545;
}

/* Hero Section */
.hero-section {
    background: url('../images/medical-bg.jpg') no-repeat center center;
    background-size: cover;
    min-height: 75vh;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 51, 102, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.registration-form {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    margin-top: 20px;
}

/* Form Styles */
.form-control, .form-select {
    padding: 0.8rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.form-control:focus, .form-select:focus {
    box-shadow: none;
    border-color: #dc3545;
}

.btn-primary {
    background-color: #dc3545;
    border-color: #dc3545;
    padding: 0.8rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #c82333;
    border-color: #c82333;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .registration-form {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .top-bar .text-end {
        text-align: left !important;
        margin-top: 0.5rem;
    }
}

/* About Section Styles */
.about-section {
    background-color: #f8f9fa;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    color: #6c757d;
    margin-bottom: 1rem;
}

.feature-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #dc3545;
}

.feature-item span {
    font-weight: 500;
    color: #333;
}

.about-image img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

@media (max-width: 991.98px) {
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        justify-content: center;
    }
}

/* Welcome Section Styles */
.welcome-section {
    background-color: #ffffff;
}

.welcome-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.section-title .subtitle {
    color: #dc3545;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title .title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #333;
}

.welcome-text p {
    color: #666;
   
}

.certification-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(220, 53, 69, 0.9), rgba(220, 53, 69, 1));
    color: white;
    padding: 20px;
}

.certification-overlay ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.certification-overlay ul li i {
    margin-right: 10px;
    color: #fff;
}

.certification-overlay h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.certification-overlay p {
    color: #fff;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.training-modes .badge {
    font-size: 0.9rem;
    padding: 8px 15px;
}

.contact-info p {
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.contact-info i {
    margin-right: 8px;
}

@media (max-width: 991.98px) {
    .welcome-content {
        margin-top: 2rem;
        padding-left: 0 !important;
    }
    
    .certification-overlay {
        position: relative;
    }
}

/* Services Section Styles */
.services-section {
    background-color: #f8f9fa;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    min-height: 75px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.meta-item {
    text-align: center;
}

.meta-item .label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.meta-item .value {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

@media (max-width: 991.98px) {
    .service-content p {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    background-color: #faf9f7;
}

.choose-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.choose-card:hover {
    transform: translateY(-10px);
}

.choose-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #dc3545;
    transition: all 0.3s ease;
}

.choose-card:hover::after {
    width: 50%;
}

.choose-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choose-icon img {
    max-width: 100%;
    height: auto;
}

.choose-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.choose-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .choose-card {
        margin-bottom: 30px;
    }
}

/* Achievers Section Styles */
.achievers-section {
    background-color: #f8f9fa;
}

.carousel-item {
    padding: 20px;
}

.achiever-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    max-width: 600px;
    margin: 0 auto;
}

.achiever-card:hover {
    transform: translateY(-5px);
}

.achiever-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.achiever-info h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.achiever-info .designation {
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
}

.achiever-info .company,
.achiever-info .achievement {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 0;
}

#achieversCarousel .carousel-control-prev,
#achieversCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(220, 53, 69, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

#achieversCarousel .carousel-control-prev {
    left: 20px;
}

#achieversCarousel .carousel-control-next {
    right: 20px;
}

#achieversCarousel .carousel-indicators {
    bottom: -50px;
}

#achieversCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dc3545;
    opacity: 0.5;
}

#achieversCarousel .carousel-indicators button.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .achiever-card {
        max-width: 100%;
    }
    
    #achieversCarousel .carousel-control-prev,
    #achieversCarousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }
}

.achiever-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.achiever-info {
    padding: 20px;
    text-align: center;
}

.achiever-info h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.achiever-info .designation {
    color: #666;
    font-size: 1rem;
    margin-bottom: 8px;
}

.achiever-info .company,
.achiever-info .achievement {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .achiever-card {
        margin-bottom: 30px;
    }
}

/* Placement Companies Section Styles */
.placement-companies {
    background-color: #001936;
}

.company-logo {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.company-logo:hover {
    transform: translateY(-5px);
}

.company-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 767.98px) {
    .company-logo {
        height: 80px;
        padding: 15px;
    }
    
    .company-logo img {
        max-height: 60px;
    }
}

.section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #007bff, #0056b3);
            border-radius: 2px;
        }
        
        .testimonial-card {
            background: #ffffff;
            border: none;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(45deg, #007bff, #0056b3);
        }
        
        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #555555;
            margin-bottom: 30px;
            text-align: justify;
        }
        
        .star-rating {
            margin-bottom: 25px;
            text-align: center;
        }
        
        .star-rating .fa-star {
            color: #ffc107;
            font-size: 1.3rem;
            margin: 0 2px;
        }
        
        .testimonial-author {
            text-align: center;
            margin-top: auto;
        }
        
        .author-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }
        
        .author-info {
            font-size: 0.95rem;
            color: #6c757d;
            font-weight: 500;
        }
        
        .quote-icon {
            font-size: 3rem;
            color: #e9ecef;
            text-align: center;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .testimonial-card {
                padding: 30px 20px;
                margin-bottom: 30px;
            }
            
            .testimonial-section {
                padding: 60px 0;
            }
        }


        /* faq section */

        .faq-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .faq-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            color: #dc3545;
            margin-bottom: 50px;
        }
        
        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .accordion-item {
            border: 1px solid #dee2e6;
            border-radius: 8px;
            margin-bottom: 10px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-button {
            background: #ffffff;
            color: #333333;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 20px 25px;
            border: none;
            border-radius: 0;
            text-align: left;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .accordion-button:not(.collapsed) {
            background: #dc3545;
            color: #ffffff;
            box-shadow: none;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        
        .accordion-button::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            background-image: none;
            width: auto;
            height: auto;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }
        
        .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
            color: #ffffff;
        }
        
        .accordion-button.collapsed::after {
            color: #6c757d;
        }
        
        .accordion-body {
            padding: 25px;
            background: #ffffff;
            color: #555555;
            line-height: 1.7;
            font-size: 1rem;
            border-top: 1px solid #dee2e6;
        }
        
        .accordion-button:hover {
            background: #f8f9fa;
        }
        
        .accordion-button:not(.collapsed):hover {
            background: #c82333;
        }
        
        @media (max-width: 768px) {
            .faq-title {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .accordion-button {
                font-size: 1rem;
                padding: 15px 20px;
            }
            
            .accordion-body {
                padding: 20px;
            }
            
            .faq-section {
                padding: 60px 0;
            }
        }
        
        .first-item {
            background: #dc3545 !important;
            color: #ffffff !important;
        }
        
        .first-item::after {
            color: #ffffff !important;
            transform: rotate(180deg);
        }

        /* keywords section */

        .keywords-section {
            background: #ffffff;
            padding: 80px 0;
        }
        
        .keywords-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .keyword-link {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #28a745;
            font-weight: 500;
            font-size: 1rem;
            border: 2px dashed #dc3545;
            border-radius: 8px;
            text-align: center;
            transition: all 0.3s ease;
            background: #ffffff;
            margin-bottom: 15px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1.2;
        }
        
        .keyword-link:hover {
            color: #ffffff;
            background: #28a745;
            border-color: #28a745;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }
        
        .keyword-link:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.25);
        }
        
        .keywords-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 15px;
            margin-top: 30px;
        }
        
        @media (max-width: 768px) {
            .keywords-section {
                padding: 60px 0;
            }
            
            .keywords-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            
            .keyword-link {
                font-size: 0.9rem;
                padding: 12px 15px;
                height: 55px;
            }
        }
        
        @media (min-width: 768px) and (max-width: 1199px) {
            .keywords-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (min-width: 1200px) {
            .keywords-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* footer */

        .footer-section {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            color: #ecf0f1;
            padding: 60px 0 0;
            position: relative;
        }
        
        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #3498db, #2ecc71, #f39c12);
        }
        
        .footer-content {
            padding-bottom: 40px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 20px;
            text-decoration: none;
        }
        
        .footer-logo:hover {
            color: #2980b9;
        }
        
        .footer-description {
            font-size: 1rem;
            line-height: 1.7;
            color: #bdc3c7;
            margin-bottom: 25px;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #3498db;
            border-radius: 2px;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            font-size: 1rem;
        }
        
        .footer-links a:hover {
            color: #3498db;
            padding-left: 5px;
        }
        
        .footer-links a i {
            margin-right: 8px;
            width: 16px;
        }
        
        .contact-info {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }
        
        .contact-info i {
            color: #3498db;
            margin-right: 12px;
            margin-top: 3px;
            width: 18px;
        }
        
        .contact-info a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-info a:hover {
            color: #3498db;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid rgba(52, 152, 219, 0.2);
        }
        
        .social-links a:hover {
            background: #3498db;
            color: #ffffff;
            border-color: #3498db;
            transform: translateY(-3px);
        }
        
        .newsletter-section {
            background: rgba(0, 0, 0, 0.2);
            padding: 25px;
            border-radius: 10px;
            margin-top: 20px;
        }
        
        .newsletter-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            border-radius: 5px;
            padding: 12px 15px;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .newsletter-input::placeholder {
            color: #bdc3c7;
        }
        
        .newsletter-input:focus {
            outline: none;
            border-color: #3498db;
            background: rgba(255, 255, 255, 0.15);
        }
        
        .newsletter-btn {
            background: #3498db;
            color: #ffffff;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: 600;
            transition: background 0.3s ease;
            width: 100%;
        }
        
        .newsletter-btn:hover {
            background: #2980b9;
        }
        
        .footer-bottom {
            background: rgba(0, 0, 0, 0.3);
            padding: 25px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 40px;
        }
        
        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .copyright {
            color: #bdc3c7;
            font-size: 0.95rem;
        }
        
        .footer-bottom-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .footer-bottom-links a {
            color: #bdc3c7;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }
        
        .footer-bottom-links a:hover {
            color: #3498db;
        }
        
        .certifications {
            margin-top: 20px;
        }
        
        .cert-badge {
            display: inline-block;
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.85rem;
            margin-right: 8px;
            margin-bottom: 8px;
            border: 1px solid rgba(52, 152, 219, 0.3);
        }
        
        @media (max-width: 768px) {
            .footer-section {
                padding: 40px 0 0;
            }
            
            .footer-logo {
                font-size: 1.7rem;
                text-align: center;
            }
            
            .footer-title {
                font-size: 1.2rem;
                text-align: center;
                margin-top: 30px;
            }
            
            .footer-title::after {
                left: 50%;
                transform: translateX(-50%);
            }
            
            .footer-description {
                text-align: center;
            }
            
            .social-links {
                justify-content: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            
            .footer-bottom-links {
                justify-content: center;
            }
        }



/* breadscrumb */

.page-title{
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.breadcrumb-wrapper {
    background-image: url('../images/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 80px 0;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay */
}

.breadcrumb-wrapper .container {
    z-index: 1;
}

.breadcrumb {
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    justify-content: center;
    align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #fff;
}

.breadcrumb-item a {
    color: #0656f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #fff;
}

.breadcrumb-item.active {
    color: #fff;
}

.about-section {
        padding: 80px 0;
    }

    .section-title .subtitle {
        color: #ff4444;
        font-weight: 600;
        display: block;
        margin-bottom: 10px;
    }

    .section-title .title {
        margin-bottom: 30px;
        font-weight: 700;
    }

    .stat-box {
        padding: 20px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .stat-box h3 {
        color: #ff4444;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .feature-box {
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .mission-box,
    .vision-box {
        height: 100%;
        transition: all 0.3s ease;
    }

    .mission-box:hover,
    .vision-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* CPC Training Page Styles */
.course-overview {
    padding: 80px 0;
}

.course-highlights {
    display: grid;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.highlight-item i {
    color: #ff4444;
    font-size: 1.5rem;
}

.feature-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1rem;
    margin: 0;
    font-size: 1.25rem;
}

.feature-card p {
    padding: 0 1rem 1rem;
    color: #6c757d;
}

.curriculum-list {
    list-style: none;
    padding: 0;
}

.curriculum-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.curriculum-list li:last-child {
    border-bottom: none;
}

.why-cpc-section {
    background-color: #f8f9fa;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.benefit-card p {
    color: #6c757d;
    margin-bottom: 0;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Course Highlights Styles */
.course-highlights-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    transform: translateY(-5px);
}

.highlight-card .card-icon {
    width: 60px;
    height: 60px;
    background: #ff4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.highlight-card .card-icon i {
    font-size: 1.5rem;
    color: white;
}

.highlight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: 600;
}

.highlight-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .highlight-card {
        padding: 1.5rem;
    }
}

/* FAQ Section Styles */
/* .faq-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.accordion-button {
    padding: 1.25rem;
    font-weight: 600;
    color: #333;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #fff3f3;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,.125);
}

.accordion-button::after {
    background-size: 1.25rem;
    transition: all 0.3s ease;
}

.accordion-body {
    padding: 1.25rem;
    background-color: #fff;
    color: #6c757d;
    line-height: 1.6;
}


.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ff4444'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
} */


/* Speciality Courses Section Styles */
.speciality-courses-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.speciality-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speciality-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 24px rgba(255,68,68,0.12);
}

.speciality-icon {
    width: 60px;
    height: 60px;
    background: #ff4444;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.speciality-card h3 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #222;
}

.speciality-card p {
    color: #6c757d;
    font-size: 0.98rem;
    margin-bottom: 0;
}

/* gallery */

.gallery-img {
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    width: 100%;
    height: 260px;
    object-fit: cover;
}
.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255,68,68,0.15);
}

.contact-section {
    padding: 80px 0 60px 0;
    background: #f8f9fa;
}
.contact-form-wrapper,
.contact-details-wrapper {
    min-height: 100%;
}
.contact-form .form-control:focus {
    border-color: #ff4444;
    box-shadow: 0 0 0 0.2rem rgba(255,68,68,.15);
}
.btn-danger {
    background: #ff4444;
    border: none;
}
.btn-danger:hover {
    background: #d32f2f;
}
.map-responsive {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    margin-top: 1.5rem;
}
.map-responsive iframe {
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
@media (max-width: 991px) {
    .contact-section .row {
        flex-direction: column;
    }
    .contact-form-wrapper,
    .contact-details-wrapper {
        margin-bottom: 2rem;
    }
}