/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-family: 'Poppins', 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: 15px;
    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;
}



/* Heading */
.title-section-light h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
}

.title-section-light h2 .red-text {
    color: #b52828;
}

/* Sub heading */
.title-section-light .bold {
    font-size: 17px;
    font-weight: 500;
    color: #222;
}

/* Paragraph */
.title-section-light p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #444;
}

/* Features title */
.title-section-light p.bold {
    font-size: 20px;
    font-weight: 600;
    color: #111;
}

/* UL styling */
.title-section-light ul {
    list-style: none;
    border-radius: 14px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 8px 20px;
}

/* LI */
.title-section-light ul li {
    font-size: 15.5px;
    padding: 10px 0 10px 35px;
    position: relative;
    transition: all 0.3s ease;
}

/* Icon */
.title-section-light .fa-circle-check {
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 18px;
    color: #b52828;
}

/* Hover effect */
.title-section-light ul li:hover {
    transform: translateX(6px);
    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: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
    display: flex;
    align-items: center;
    padding: 15px;
    margin-bottom: 20px;
    height: 100%;  
    border: 1px solid rgba(49, 48, 48, 0.342);               /* 👈 equal height */
    border-radius: 10px;
    transition: all 0.4s ease;    /* 👈 smooth effect */
}

/* Hover Effect */
.card-transfrom:hover {
    transform: translateY(-8px) scale(1.02);
    /* box-shadow: rgba(0, 0, 0, 0.3) 0px 15px 25px; */
    /* background: linear-gradient(135deg, #f8f9ff, #ffffff); */
}

/* Image styling */
.card-transfrom img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Text styling */
.card-transfrom p {
    font-weight: 600;
    padding-left: 15px;
    margin: 0;
    font-size: 15px;
    line-height: 1.4;
}

.card-transfrom:hover img {
    transform: rotate(8deg) scale(1.1);
    transition: 0.4s ease;
}


/* .bold {
    font-weight: bold;
    padding: 20px 0;
    margin-bottom: 0;
    font-size: 17px;
} */



.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%;
}




/* Outer card */
.skill-card {
    background: #000;
    padding: 8px;
    margin-bottom: 40px;

    /* Routed corners */
    clip-path: polygon(
        18px 0%, 100% 0%, 100% calc(100% - 18px),
        calc(100% - 18px) 100%, 0% 100%, 0% 18px
    );
}

/* INNER FRAME */
.royal-frame {
    background: #000;
    border: 2px solid #caa24a;
    padding: 30px;
    display: flex;
    position: relative;

    /* Inner routed corners */
    clip-path: polygon(
        16px 0%, 100% 0%, 100% calc(100% - 16px),
        calc(100% - 16px) 100%, 0% 100%, 0% 16px
    );
}

/* Optional subtle hover */
.skill-card:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
}

/* Icon */
.skill-card img {
    width: 80px;
    height: 70px;
    margin-top: 6px;
}

/* Content */
.skill-content {
    margin-left: 22px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
}

/* Title */
.skill-content .card-title {
    color: #f5d07a;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Highlight text */
.skill-content strong {
    color: #ffd966;
}

/* Paragraph */
.skill-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #ddd;
}



.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;
}

@media(max-width: 769px){
    .pro-navbar{
 display: none !important;   
}
}





/* =====phone TOP HEADER ===== */
.phone-menu{
    display: none;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media(max-width: 769px){
    .phone-menu{
 display: block !important;   
}
}

.phone-menu .top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

   .top-header {
          padding: 5px 5px;
      }

.phone-menu .menu-btn {
    font-size: 28px;
    background: none;
    border: none;
    color: #000;
}

.phone-menu .top-logo img {
    height: 40px;
}

/* ===== SIDE MENU ===== */
.phone-menu #sideMenu {
    position: fixed;
    top: 0;
    left: -280px;
    width: 280px;
    height: 100%;
    background: linear-gradient(180deg, #b52828, #000);
    transition: .4s;
    z-index: 9999;
    overflow-y: auto;
}

.phone-menu #sideMenu.active {
    left: 0;
}

/* ===== MENU HEADER ===== */
.phone-menu .menu-header {
    text-align: center;
    padding: 25px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.phone-menu .menu-header img {
    width: 130px;
}

/* ===== MENU LINKS ===== */
.phone-menu .menu-list a {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 15px;
}

.phone-menu .menu-list a i {
    margin-right: 12px;
    font-size: 18px;
}

.phone-menu .menu-list a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ===== CATEGORY & SUB CATEGORY ===== */
.phone-menu .submenu a {
    padding-left: 55px;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.18);
}

.phone-menu .submenu .submenu a {
    padding-left: 75px;
    background: rgba(0, 0, 0, 0.28);
}

/* ===== OVERLAY ===== */
.phone-menu #overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    display: none;
    z-index: 9998;
}

.phone-menu #overlay.active {
    display: block;
}

/* ===== CLOSE BTN ===== */
.phone-menu .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.phone-menu ul li a {
    width: 100%;
}

.phone-menu ul li {
    list-style: none;
}






/* HERO Breadcrumb */
.course-hero {
    background:
        linear-gradient(rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.78)),
        url(':https://webdigitalcourse.com/gallery/service-img.jpg') center/cover no-repeat;
    color: #fff;
    padding: 130px 0 110px;
    margin-top: 5rem;
}

.course-hero h1 {
    font-weight: 500;
    letter-spacing: 0.5px;
}

.course-hero span {
    color: #b52828;
}

/* Breadcrumb styling (same <p> tags) */
.course-hero p {
    display: inline-block;
    margin: 0 6px;
    font-size: 14px;
    color: #ddd;
}

.course-hero p a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.course-hero p a:hover {
    color: #b52828;
}

/* Mobile */
@media (max-width: 768px) {
    .course-hero {
        padding: 100px 0 90px;
    }

    .course-hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .course-hero p {
        font-size: 13px;
        margin: 0 4px;
    }
}






/* ===== GLOBAL ===== */
.section-space {
    padding: 90px 0;
}

/* ===== SECTION TITLE ===== */
.section-title {
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(to right, #2563eb, #60a5fa);
}

.section-sub {
    max-width: 720px;
    margin: 20px auto 0;
    opacity: 0.9;
}

/* ===== TESTIMONIAL SECTION ===== */


/* ===== CARD ===== */
.testimonial-section .testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 36px 30px;
    color: #000;
    border: 1px solid #000;
    transition: 0.4s ease;

    height: 300px;
    /* equal card height */
    display: flex;
    flex-direction: column;
}

.testimonial-section .testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.92;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    /* lines control */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


/* ===== STUDENT INFO ===== */
.testimonial-section .student-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 14px;
}

.testimonial-section .student-info img {
    width: 58px !important;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;

    border: 2px solid #60a5fa;
}

.testimonial-section .student-info h6 {
    margin: 0;
    font-weight: 800;
    font-size: 16px;
}

.testimonial-section .student-info span {
    font-size: 13px;
    opacity: 0.75;
}

/* ===== STARS ===== */
.testimonial-section .stars {
    color: #facc15;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

/* ===== TEXT ===== */
.testimonial-section .testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.92;
}

/* Owl dots */
.owl-theme .owl-dots .owl-dot span {
    background: #94a3b8;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #60a5fa;
}




/* ================================= FAQ CSS =============================================== */


/* ===== VIDEO REVIEWS GRID ===== */
.review-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    overflow: hidden; /* MOST IMPORTANT */
}

/* VIDEO */
.review-video {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;          /* gap fix */
    border-radius: 22px;     /* smooth corners */
}

/* RESPONSIVE */
@media (max-width: 576px) {
    .review-video {
        height: 180px;
    }
}



/* =========================  Review ========================== */



/* Section Background */
.bg-red-images {
    background-image: linear-gradient(
        rgba(120, 0, 0, 0.85),
        rgba(60, 0, 0, 0.9)
    ), url('../gallery/redbg.jpg');
    padding: 100px 0 60px;
    background-size: cover;
    background-position: center;
    color: #fff;
}

/* Heading */
.bg-red-images h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
}

/* Review Card */
.card-review {
    display: flex;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    padding: 20px;
    border-radius: 14px;
    border-left: 4px solid #ffcc4d;
    transition: 0.3s;
}

.card-review:hover {
    background: rgba(255,255,255,0.14);
    transform: translateY(-3px);
}

/* Image Holder */
.card-review .image-holder {
    text-align: center;
    min-width: 90px;
}

.card-review img {
    width: 70px !important;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffcc4d;
}

.card-review .image-holder h5 {
    font-size: 15px;
    margin-top: 8px;
    font-weight: 600;
}

/* Review Text */
.card-review .con p {
    font-size: 14px;
    line-height: 1.7;
    color: #f1f1f1;
}

.card-review i {
    color: #ffcc4d;
    font-size: 14px;
}

/* Stats Section */
.stats-section {
    padding-left: 15px;
}

/* Stats Box */
.stats-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
}

.stats-box:hover {
    transform: translateY(-4px);
}

/* Stats Icon */
.stats-box i {
    font-size: 34px;
    color: #b62222;
}

/* Stats Text */
.nrunner {
    text-align: left;
}

.stats-number {
    font-size: 26px;
    font-weight: 800;
    color: #b62222;
    line-height: 1;
}

.stats-label {
    font-size: 14px;
    font-weight: 600;
    color: #002244;
}

/* Mobile Responsive */
@media(max-width:768px) {
    .bg-red-images h2 {
        font-size: 28px;
    }

    .card-review {
        flex-direction: column;
        text-align: center;
    }

    .card-review .image-holder {
        margin-bottom: 10px;
    }
}




.package-section {
    margin-top: 40px;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.course-card img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

/* Hover Effect */
.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.course-card:hover img {
    transform: scale(1.05);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .course-card {
        border-radius: 12px;
    }
}













