/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;

}

p {
    font-size: 15px;
}



/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}


header {
    top: 0;
    position: fixed;
}

.navbar .nav-link {
    color: black;
    font-size: 17px;
    font-weight: 500;
}


.navbar .nav-item {
    padding: 0 20px;
}


a {
    text-decoration: none !important;
}

.top-header {
    background-color: #b52828;
    padding: 5px 120px;
    display: flex;
    justify-content: space-between;
}

.link-header {
    display: flex;
    color: white;
}

.link-header a {
    color: white;
    padding: 0 30px 0 0;
    font-size: 17px;
    font-weight: 500;
}


.ph-em a {
    color: white;
    font-size: 17px;
    padding: 0 0 0 30px;
    font-weight: 500;
}



.req-cal-bac {
    border: 1px solid #b52828;
    border-radius: 5px;
    padding: 5px 20px;
    color: #b52828;
    background-color: white;
    font-weight: bold;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.logo span {
    color: #3498db;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #2980b9;
}



.btn-primary {
    background-color: #3498db;
    margin-right: 15px;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #3498db;
    color: #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
    color: white;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-title p {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: #3498db;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* Course Highlights */
.highlights {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.highlight-number {
    font-size: 60px;
    font-weight: 700;
    color: #3498db;
    margin-right: 30px;
    min-width: 80px;
}

.highlight-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: #2c3e50;
}

.author-info p {
    color: #7f8c8d;
    font-size: 14px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pricing-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-header {
    background-color: #3498db;
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 48px;
    font-weight: 700;
}

.price span {
    font-size: 16px;
    font-weight: 400;
}

.pricing-body {
    padding: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* CTA Section */


.cta h2 {
    font-size: 56px;
    color: #b30038;
    margin-bottom: 20px;
}

.cta .get {
    font-size: 30px;
    font-weight: 500;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta .btn {
    background-color: white;
    color: #3498db;
    font-size: 18px;
    padding: 15px 30px;
}

/* Footer */
footer {
    background-color: #b52828;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
}

.fixed-icon {
    position: fixed;
    top: 70%;
    left: 0;
    z-index: 99999;
    padding-left: 20px;
}

.fixed-icon a img {
    width: 50px;
    height: 50px;
    background-color: white;
    border-radius: 50%;
    margin-bottom: 10px;
}

.header-logo {
    width: 90px;
}

.red-bg {
    background-color: #b52828;
    text-align: center;
    color: white;
    font-weight: bold;
    padding: 7px;
    margin-top: 30px;
    font-size: 17px;
}

ul {
    padding-left: 0rem !important;

}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid white;
    color: white;
    font-size: 14px;
}


.title-section h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
}

.title-section h2 .red-text {
    color: #b52828;
}


.title-section-light h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
}

.title-section-light h2 .red-text {
    color: #b52828;
}

.card-transfrom img {
    height: 50px;
    margin: auto;
    display: block;
}

.bg-grey {
    background: url('../gallery/grey-bg.png') top left repeat-x #f7f7f7;
}

.card-transfrom {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    display: flex;
    padding: 10px;
    margin-bottom: 20px;
}

.card-transfrom p {
    font-weight: 600;
    padding-left: 20px;
    padding-top: 10px;
}

.bold {
    font-weight: bold;
    padding: 20px 0;
    margin-bottom: 0;
    font-size: 17px;
}

.title-section-light ul {
    list-style: none;
    font-size: 17px;
}

.title-section-light ul li {
    padding: 7px 0;
}

.title-section-light .fa-circle-check {
    color: #b52828;

}

.form-box {
    width: 100%;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(to bottom, #b30038, #80002a);
    color: white;
}

.form-box .form-control,
.form-box .form-select {
    border-radius: 5px;
}

.form-box label {
    font-weight: 500;
}

.form-box a {
    color: #ffd9d9;
}

.submit-btn {
    background-color: #b52828 !important;
    color: white !important;
    border-radius: 50px !important;
    width: 100%;
    font-weight: bold !important;
}

.submit-btn:hover {
    background-color: #a93226;
}

.logos img {
    height: 40px;
    margin-right: 10px;
}

.form-box img {
    width: 50%;
}

.bg-red-images {
    background-image: url('../gallery/redbg.jpg');
    padding: 100px 0 40px 0;
    background-size: cover;
    color: white;
}

.card-review {
    display: flex;
    color: white;
}

.card-review img {
    width: 80px !important;
    margin-right: 10px;
}


.card-review .image-holder {
    text-align: center;
    margin-right: 10px;
}

.card-review .image-holder h5 {
    font-size: 19px;

}

.package-section img {
    width: 100%;
    margin-top: 20px;
}



.stats-box {
    background: #fff;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: 100%;
    display: flex;
}



.stats-box i {
    font-size: 30px;
    color: #b62222;
    margin-bottom: 10px;
    display: inline-block;
    margin: auto 0;
    display: block;
    margin-left: 10px;
}

.nrunner {
    text-align: start;
    margin-left: 20px;
}

.stats-number {
    font-size: 28px;
    font-weight: bold;
    color: #b62222;
}

.stats-label {
    font-size: 14px;
    font-weight: 500;
    color: #002244;
}

.skill-card {
    border: none;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    transition: all 0.3s ease-in-out;
    display: flex;
}

.skill-card img {
    width: 80px;
    height: 80px;
}

.skill-content {
    margin-left: 20px;
}

.skill-content .card-title {
    color: #b30038;
    font-weight: bold;
    margin-bottom: 16px;
}

.footer-logo {
    width: 160px;

}

.button-from-wraper {
    display: flex;
    justify-content: space-between;
}

footer h3{
    font-size: 22px;
}

.button-form {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    padding: 10px 40px;
    width: 49%;
    border: none;
    color: #b30038;
    border-radius: 5px;
    font-weight: 600;
}