/* customizations */

a{
    color: #dc3545;
    text-decoration: none;
    transition: color 0.2s ease;
}

.achiever-poster img {
    height: 320px;
    object-fit: cover;
    width: 100%;
    border-radius: 16px;
}
.achiever-poster {
    background: #fff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.2s;
}
.achiever-poster:hover {
    transform: translateY(-6px) scale(1.03);
}

.gallery-section {
    background: #f8fafc;
}
.gallery-img-wrapper {
    overflow: hidden;
    border-radius: 16px;
    transition: transform 0.3s;
}
.gallery-img-wrapper img {
    transition: transform 0.4s;
    width: 100%;
    height: 300px;
    object-fit: cover;
}
.gallery-img-wrapper:hover img {
    transform: scale(1.08);
}

.navbar-brand img{
    height: 60px;
    width: auto;
}




/* Primary theme color */
:root {
    --primary: #dc3545;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --gradient-start: #667eea;
    --gradient-end: #764ba2;
    --text-dark: #1f2937;
    --text-light: #6b7280;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

.hero-section {
    background-image: url('images/breadcrumb-bg.jpg');
    background-size: cover;
    background-position: center;
    /* background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%); */
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgb(18 15 0 / 50%); /* #dc3545 with 65% opacity */
    z-index: 1;
}

.hero-content,
.registration-form-wrapper {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    color: #fff;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-hero {
    background: var(--primary);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero:hover {
    background: #b02a37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-cta {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #b02a37;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: black;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    display: block;
    margin: 1rem auto;
    border-radius: 2px;
}

/* Certification & Specialty Cards */
.certification-card,
.specialty-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.certification-card::before, .specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.certification-card:hover, .specialty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    text-align: center;
}

.card-description {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.certifications-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
}

.specialty-section {
    padding: 80px 0;
    background: white;
}

.cta-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

/* Navbar */
.navbar {
    background: rgba(255,255,255,0.95);
    border-bottom: 2px solid var(--primary);
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer a {
    color: var(--primary);
}

.footer-logo img{
    height: 100px;
    width: auto;
}

/* Outline Button */
.btn-outline-light {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Registration form styles */
.registration-form-wrapper {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    max-width: 420px;
    margin: 0 auto;
}
.registration-form-wrapper .form-control,
.registration-form-wrapper .form-select,
.registration-form-wrapper textarea {
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.registration-form-wrapper .btn-primary {
    background: var(--primary);
    border: none;
    font-weight: 600;
    border-radius: 8px;
    transition: background 0.2s;
}
.registration-form-wrapper .btn-primary:hover {
    background: #b02a37;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .certification-card, .specialty-card {
        margin-bottom: 1.5rem;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* Footer Styling */
.footer {
    text-align: left !important;
    background: #222;
    color: #fff;
    padding-top: 40px;
    padding-bottom: 20px;
    font-size: 1rem;
    margin-top: 40px;
    border-top: 4px solid #dc3545;
}

.footer h5 {
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer p,
.footer address,
.footer a {
    color: #e0e0e0;
    font-size: 1rem;
}

.footer a {
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul {
    padding-left: 0;
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer address {
    font-style: normal;
    line-height: 1.7;
}

.footer .mt-2 a {
    display: inline-block;
    width: 38px;
    height: 38px;
    line-height: 38px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    margin-right: 8px;
    font-size: 1.2rem;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    vertical-align: middle;
}

.footer .mt-2 a:last-child {
    margin-right: 0;
}

.footer .mt-2 a:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-3px) scale(1.08);
}

.footer .small {
    color: #aaa;
    font-size: 0.95rem;
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .footer {
        text-align: center;
    }
    .footer .col-md-4 {
        margin-bottom: 2rem;
    }
}


/* 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;
}


.training-card {
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}
.training-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 32px rgba(220,53,69,0.15);
    border-color: #dc3545;
}
.training-card .card-title {
    color: #dc3545;
    font-weight: 700;
    font-size: 1.15rem;
}
.training-card .card-img-top {
    height: 160px;
    object-fit: cover;
}

.about-section {
    background: #fff;
    padding: 80px 0;
}
.about-section img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(220,53,69,0.08);
}
.about-section .section-title {
    color: #dc3545;
    font-weight: 700;
}
.about-section p {
    color: #333;
    font-size: 1.08rem;
    margin-bottom: 1rem;
}


.why-choose-section {
    background: #fff;
}
.why-card {
    background: #f8fafc;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(220,53,69,0.07);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #f1f1f1;
}
.why-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 8px 32px rgba(220,53,69,0.13);
    border-color: #dc3545;
}
.why-icon {
    font-size: 2.5rem;
    color: #dc3545;
    margin-bottom: 0.5rem;
}
.why-card h5 {
    color: #dc3545;
    font-weight: 700;
}


.faq-section .accordion-button {
    color: #dc3545;
    font-weight: 600;
    background: #fff;
}
.faq-section .accordion-button:not(.collapsed) {
    background: #dc3545;
    color: #fff;
}
.faq-section .accordion-item {
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid #eee;
    overflow: hidden;
}
.faq-section .accordion-body {
    background: #fff;
    color: #333;
}

/* breadscrumb */

.page-title{
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.breadcrumb-wrapper {
    background-image: url('images/breadcrumb-bg-2.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;
}

/* 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);
            }
        }