*,
*::before,
*::after {
    box-sizing: border-box;
}

body.wp-admin {
    all: unset;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/*====================================
  Start if use google font roboto 
 ====================================*/ 
/*body {
	margin: 0;
    font-family: 'Roboto', sans-serif;
}*/

/* if use specific css selector */
/*h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
}

p {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}*/

/*===================================
  End if use google font roboto 
 ====================================*/

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.site-header {
    background: rgba(15, 23, 42, 0.95); /* #0f172a with 85% opacity */
    color: #fff;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    backdrop-filter: blur(5px);  /* soft glass effect */
    -webkit-backdrop-filter: blur(5px);   /* Safari support */
    padding: 10px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
	position: relative;
    padding: 20px 0;
}

.site-logo h1 {
    margin: 0;
    font-size: 22px;
    color: #fff;
}

.site-logo a {
    text-decoration: none;
}

.primary-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.primary-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.main-navigation .primary-menu li a {
    font-size: 1rem;
    padding: 8px 0;
}

/* Tablet */
@media (max-width: 992px) {
    .main-navigation .primary-menu {
        gap: 15px;
        font-size: 0.95rem;
    }
}


/* Start hamberger logo for responsive */
.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 28px;
        background: none;
        border: none;
        cursor: pointer;
        margin-left: auto;
    }

    .main-navigation {
        display: none;
        width: 100%;
    }

    .main-navigation.active {
        display: block
        margin-top: 10px;
    }

    .primary-menu {
        flex-direction: column;
        gap: 12px;
    }
}
/* End Start hamberger logo for responsive */

/*=========================================
  Start user login logout my courses css
 =========================================*/

.header-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.site-logo {
    justify-self: start;
}

.header-user-area {
   /* justify-self: end; */
	min-width: 200px; /* adjust based on your design */
	margin-right: 20px; /* adjust */
	display: flex;
    justify-content: flex-end; /* 🔥 key line */
    align-items: center;
}

/* Make navigation centered with My Courses included */
.main-navigation {
    display: flex;
    justify-self: center;
    align-items: center;
    gap: 25px;
}

.primary-menu li a:hover,
.nav-extra-item:hover {
    background: linear-gradient(135deg, #ef4444, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(-3px);
    transition: 0.3s ease;
}

/* Style for added nav item */
.nav-extra-item {
    text-decoration: none;
	font-weight: 500;
	color: #ffffff;
}
/* End menu grid system 3 column */

/*====== Start logo ======== */

/* Logo left */
.site-logo {
    justify-self: start;
	display: flex;
    align-items: center;
}

.site-header {
    min-height: 80px;
    align-items: center; 
	font-weight: 600;
}

.header-wrapper {
    min-height: 95px;
}

/* Logo wrapper */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; 
    text-decoration: none;	
	max-width: 220px;
    width: 100%;   
}

/* Logo image styling */
.custom-logo {
    border-radius: 53px; 
	height: 50px;  
	width: auto;
}

/* Logo text styling */
.logo-text {
	font-size: 1.3em;
    font-weight: 800;
	margin-left: 8px;
	line-height: 1;  /* গুরুত্বপূর্ণ */
    letter-spacing: 1px;
    color: #ffffff;
	display: flex;
    align-items: center;
}
    
.custom-logo-link {
    align-items: center;
	display: flex;
}

@media (max-width: 768px) {
    .logo-wrapper {
        max-width: 160px;   /* teblet */
    }
}

@media (max-width: 480px) {
    .logo-wrapper {
        max-width: 120px;  /* smaller */
    }
}

/*====== end logo ======== */

/* Keep user logout on right */
.logout-link {
    position: absolute;
    right: 40px;
}

/* Keep header layout stable */
.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
	position: relative;
}

/* Right side user area */
.header-user-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* User area right */
.header-user-area {
    justify-self: end;
}
/*=========================================
  End user login logout my courses css
 =========================================*/

/*=========================================
        Start Footer section
 =========================================*/
.site-footer {
	background: linear-gradient(135deg, #020617, #0f172a);
	position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 0;
	padding-top: 90px;
}

/* Soft Glow */
.site-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(249,115,22,0.18),
        transparent 70%
    );
    filter: blur(90px);
    z-index: 0;
}

/* Grid */
.footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
	align-items: start;
}

/* Brand */
.footer-brand h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
	/*margin-top: 12px;*/
}

.footer-brand p {
    color: #94a3b8;
    font-size: 16px;
    max-width: 320px;
}

.footer-logo {
  display: inline-flex;   /* 👈 important */
  align-items: center;
  gap: 3px;
  text-decoration: none;
}

.footer-logo img {
  height: 35px;
  width: auto;
  border-radius: 50%;
}

.footer-logo .logo-text {
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-logo {
	margin-left: 3px;
	margin: 0;
}

/* Columns */
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

/* footer column & all text start left */
.footer-col {
    text-align: left;
}

.footer-col ul li a:hover {
    color: #f97316;
}

/*Start footer social icon style */
.footer-social {
    display: flex;
    justify-content: space-between;
    width: 200px;
}

/* Social */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, #ef4444, #f97316);
    transform: translateY(-3px);
}

.social-icon {
    font-size: 22px;
    color: #333;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #3498db; /* Hover effect color */
}

.copyright {
	color: #f97316;
}
/* End footer social icon style */

/* Bottom */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}

/* click footer menu scroll smoothly jump */
/*section {
    scroll-margin-top: 95px;
}*/

/* End footer social icon style */
/*=========================================
        End Footer section
 =========================================*/

/* Start Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a, #020617);
	padding: 80px 0;
    color: #fff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: flex-start; /* THIS */
    gap: 50px;
}


.hero-content {
    flex: 0 0 55%;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 900;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: left;
}

.hero-content h1 span {
    color: #22c55e;
    font-weight: 900;  /* thoda bold */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: left;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }
    .hero-content p {
        font-size: 16px;
    }
}


.btn-primary {
    display: inline-block;
    background: #22c55e;
    color: #020617;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #16a34a;
    transform: translateY(-2px);
}


.hero-image {
    flex: 0 0 45%;   /* right side e 45% */
    text-align: right;
}

.hero-image img {
    max-width: 410px;   /* ⬅️ magic number */
    border-radius: 50%;
	width: 100%;
	height: auto;
	display: block;
}

 .hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    align-items: center;
    gap: 50px;
}


/* Responsive */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        margin-top: 40px;
    }
}

/* Start hero background glow */
.hero-section::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -160px;
    transform: translateX(-50%);
    width: 1200px;
    height: 720px;

    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.28),
        rgba(249, 115, 22, 0.18) 35%,
        rgba(239, 68, 68, 0.10) 55%,
        transparent 75%
    );

    z-index: 0;
    pointer-events: none;
}


.hero-section {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero-section::before {
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 5;
}
/* End hero background glow */

.btn-primary {
    display: inline-block;
    background: #22c55e;
    color: #020617;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
	transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #16a34a; /* slightly darker */
    transform: translateY(-2px);
}
/* End hero section */

/* Start Courses Section */
.courses-section {
	background: linear-gradient(135deg, #0f172a, #020617);
	padding: 80px 0 120px;
	color: #fff;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #f8fafc;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-title span {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 17px;
    color: #cbd5f5;
    max-width: 620px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.7;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.course-card {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.10), transparent);
	box-shadow: 0 10px 30px rgba(15,23,42,0.08);
	border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 14px;
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
	padding: 2rem;
    text-align: center;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.20), transparent);
    border: 1px solid rgba(249, 115, 22, 0.25);
}

.course-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #f8fafc;          /* clean white */
    margin-bottom: 15px;
    text-align: center;       /* centered in card */
}

.course-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.course-thumb img:hover {
    transform: scale(1.05); /* subtle zoom on hover */
}


/* 3th code */
.single-course-wrapper {
    padding: 80px 0;
	color: #fff;
}

.single-course .course-featured-img img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 30px;
}

/* =================================
  Start Single Course Page Styles
====================================*/
.single-course-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
	background: linear-gradient(135deg, #0f172a, #020617);
    border-radius: 8px;
}

.course-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 8px;
}

.single-course .course-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.course-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.course-info {
    flex: 1;
    text-align: center; /* Center align info */
}

.course-info h1 {
	font-weight:800;
}

.course-excerpt {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.course-price {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #e67e22; /* Orange highlight for price */
}

.course-cta .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    background-color: #0073aa;
    color: #fff;
}

.single-course .course-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.single-course .course-cta {
    text-align: center;
    margin-top: 40px;
}
/* End courses section */


/* Start Why CreativeCoder */
.why-creativecoder {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #020617);
	z-index: 0;
}

.why-creativecoder h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #f8fafc;
}


.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);	
    padding: 40px 30px;
    border-radius: 14px;
    text-align: left;
    transition: all 0.35s ease;
    position: relative;
	z-index: 5;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(249, 115, 22, 0.12);
}


.why-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.why-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #cbd5f5;
}


/* Soft Glow Light */
.soft-glow {
    position: relative !important;
    overflow: hidden !important;
}

.soft-glow::before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(239, 68, 68, 0.22),
        transparent 70%
    );
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.soft-glow > * {
    position: relative;
    z-index: 2;
}
/* End why choose creativecoder */

.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #020617);
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 59px;
    color: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px 30px;
    border-radius: 16px;
	min-width: 320px;
    max-width: 320px;
    position: relative;
	text-align: center;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #e5e7eb;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fb923c; /* orange accent */
}

.testimonial-card:hover {
    transform: translateY(-4px);
    transition: all 0.3s ease;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(249, 115, 22, 0.10);
}

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

/* slider wrapper */
.testimonial-slider {
    overflow: hidden;
}

/* track */
.testimonial-track {
    display: flex;
    gap: 30px;
    transition: transform 0.6s ease;
}

/* student image */
.testimonial-card img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid rgba(249, 115, 22, 0.6);
}

.testimonial-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fb923c;
}


/* Start Blog Preview Section  */
.blog-preview-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #020617);
}

.blog-preview-section h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #f8fafc;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    transition: all 0.35s ease;
	text-align: center;
}

.blog-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(249, 115, 22, 0.35);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(249, 115, 22, 0.12);
}

.blog-thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.blog-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 20px 20px 10px;
}

.blog-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #cbd5f5;
    margin: 0 20px 20px;
}

.blog-card .btn-primary {
    margin: 0 20px 25px;
    display: inline-block;
    background: transparent;
    color: #fb923c;
    border: 1px solid rgba(249, 115, 22, 0.5);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.blog-card .btn-primary:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #fdba74;
}

.blog-thumb {
    padding: 11px;                 /* 👈 image চারপাশে gap */
    overflow: hidden;
    border-radius: 16px;           /* card feel */
    background: rgba(255,255,255,0.03);
}

.blog-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 11px;           /* 👈 image corner */
    transform: scale(0.92);       /* 👈 default এ ছোট */
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
}

/* Hover zoom */
.blog-card:hover .blog-thumb img {
    transform: scale(1.08) translateY(-6px);
}
/* End Blog Preview Section  */

/* Start CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
    position: relative;
    overflow: hidden;
}

.cta-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    padding: 70px 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #cbd5f5;
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Primary CTA Button */
.btn-cta-primary {
    background: #22c55e;
    color: #020617;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: #16a34a;
	color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34,197,94,0.4);
}

/* Secondary CTA Button */
.btn-cta-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: #fdba74;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: rgba(249, 115, 22, 0.15);
    color: #ffffff;
}

/* CTA exta glow */
.cta-section::before {
    content: "";
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,197,94,0.25), transparent 70%);
    z-index: 1;
}
/* End CTA Section */

/* Start how it workds section */
.how-it-works {
    padding: 90px 0;
    background: linear-gradient(180deg, #020617, #020617);
}

.how-it-works h2 {
    text-align: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 60px;
}

.how-step * {
    position: relative;
    z-index: 1;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.how-step {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);   /* why-card style */
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}


.how-step::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(239, 68, 68, 0.18),
        rgba(249, 115, 22, 0.18),
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.35s ease;
    z-index: 0;
}

.how-step:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 115, 22, 0.6);   /* orange focus */
    box-shadow:
        0 15px 40px rgba(0,0,0,0.45),
        0 0 35px rgba(249, 115, 22, 0.15);
}

.how-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}


.how-step:hover {
    background: linear-gradient(135deg,
        rgba(249, 115, 22, 0.18),   /* orange focus */
        rgba(239, 68, 68, 0.12)    /* soft red blend */
    );

    border-color: rgba(249, 115, 22, 0.55);
}

/*animation*/
.how-step {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 0.6s ease,
        transform 0.6s ease;
}

.how-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.how-step:nth-child(1) { transition-delay: 0.1s; }
.how-step:nth-child(2) { transition-delay: 0.2s; }
.how-step:nth-child(3) { transition-delay: 0.3s; }
.how-step:nth-child(4) { transition-delay: 0.4s; }


.how-step:hover {
    transform: translateY(-6px);
}
/* end animation */

.step-icon {
    font-size: 42px;
    margin-bottom: 20px;
	color: #f97316; /* orange */
    filter: drop-shadow(0 0 8px rgba(249,115,22,0.35));
}

.how-step h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 12px;
}

.how-step p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .how-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .how-steps {
        grid-template-columns: 1fr;
    }
}
/* End how it workds section */

/* Start Instrucdots Section */
.instructors-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.instructors-section::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: radial-gradient(circle at bottom center, rgba(255, 117, 0, 0.15), transparent 70%);
  pointer-events: none;
}

.instructors-section h2 {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.instructors-section .section-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 50px;
}


.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}


.instructor-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.instructor-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, rgba(255, 117, 0, 0.2), rgba(239, 68, 68, 0.05));
  border-color: rgba(255, 117, 0, 0.4);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}


.instructor-thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.instructor-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.instructor-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.instructor-card p {
  color: #cbd5e1;
  margin-bottom: 15px;
}

.instructor-social a {
  color: #fff;
  margin: 0 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.instructor-social a:hover {
  color: #f97316;
  transform: scale(1.2);
}

/*start instructors animation */
.instructor-card {
    opacity: 0;
    transform: translateY(30px);
    transition: 
        opacity 0.6s ease,
        transform 0.6s ease,
        background-color 0.3s ease; /* hover background smooth */
}

/* Scroll visible */
.instructor-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delay for each card */
.instructor-card:nth-child(1) { transition-delay: 0.1s; }
.instructor-card:nth-child(2) { transition-delay: 0.2s; }
.instructor-card:nth-child(3) { transition-delay: 0.3s; }

/* Hover: float + subtle background change */
.instructor-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255,255,255,0.05); /* subtle hover light */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1); /* soft shadow on hover */
}
/* end snstructors animation */
/* End Instructors Section */


/* Start pricint section */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #020617);
    color: #fff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-section .section-subtitle {
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 60px;
    font-size: 17px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Pricing Card */
.pricing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.price {
    font-size: 38px;
    font-weight: 800;
    color: #22c55e;
    margin: 20px 0;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-card ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #e5e7eb;
}

/* Popular Plan */
.pricing-card.popular {
    background: linear-gradient(
        135deg,
        rgba(249, 115, 22, 0.15),
        rgba(239, 68, 68, 0.12)
    );
    border-color: rgba(249, 115, 22, 0.6);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-12px);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: #020617;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

/* Buttons */
.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #22c55e;
    color: #22c55e;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #22c55e;
    color: #020617;
}

.pricing-section .btn-primary {
    padding: 12px 30px;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}
/* End pricing section */

/* Start Newsletter Section */
.newsletter-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0f172a, #020617);
    position: relative;
    overflow: hidden;
}

/* Soft Glow Light */
.newsletter-section::before {
    content: "";
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(239, 68, 68, 0.22),
        transparent 70%
    );
    filter: blur(80px);
    z-index: 0;
}

.newsletter-box {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 60px 50px;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Content */
.newsletter-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 18px;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* Form */
.newsletter-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    width: 100%;
    max-width: 340px;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.06);
    color: #ffffff;
    font-size: 15px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    padding: 14px 26px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(239, 68, 68, 0.35);
}

/* Note */
.newsletter-note {
    display: block;
    margin-top: 18px;
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 768px) {
    .newsletter-box {
        padding: 45px 25px;
    }

    .newsletter-content h2 {
        font-size: 30px;
    }
}
/* End newsletter section */

/* Start FAQ Section */
.faq-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #020617, #0f172a);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-header p {
    color: #94a3b8;
    font-size: 17px;
}

/* FAQ Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* FAQ Item */
.faq-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    margin-bottom: 16px;
    overflow: hidden;
}

/* Question */
.faq-question {
    width: 100%;
    padding: 22px 26px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Icon */
.faq-icon {
    font-size: 24px;
    color: #f97316;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 26px;
}

.faq-answer p {
    color: #cbd5e1;
    font-size: 16px;
    padding-bottom: 22px;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
/* End FAQ section */


/* Start Final CTA section */
.final-cta {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 50%;
    background: radial-gradient(circle, rgba(255, 117, 0, 0.2), transparent 70%);
    z-index: 0;
}

.final-cta .cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.final-cta .cta-btn {
    display: inline-block;
    background: #f97316;  /* Red-Orange like courses hover */
    color: #fff;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.final-cta .cta-btn:hover {
    background: #ea580c;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.final-cta {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.final-cta.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Start full site spacing controller */
:root {
  --space-sm: 40px;
  --space-md: 80px;
  --space-lg: 120px;
}

section {
  padding: var(--space-md) 0;
}

.section-highlight {
  padding: var(--space-lg) 0;
}

section h2 {
  margin-bottom: 16px;
}
.section-subtitle {
  margin-bottom: 48px;
}

.courses-grid,
.why-grid,
.testimonials-grid,
.blog-grid {
  gap: 32px;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-subtitle {
    margin-bottom: 32px;
  }
}

.pre-cta-section {
  padding-bottom: 100px;
}
/* End full site spacing controller */

/* start contact page */
.wpcf7-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wpcf7-form input,
.wpcf7-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.wpcf7-form button.wpcf7-submit {
    background: #3b82f6;
    color: #fff;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wpstartcf7-form button.wpcf7-submit:hover {
    background: #2563eb;
}
/* End contact form page */

/* ===================================
      Start page-courses css 
   ================================== */

.featured-course, .courses-grid, .course-filter {
    padding: 80px 0;
}

.course-card {
    background: #1e1e2f;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.1);
}

.courses-grid .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px,1fr));
    gap: 30px;
}

.section-title {
	font-size: 50px;
	font-weight: 800;
	
}

.featured-course .course-card .course-thumb img {
  width: 50%;
  height: auto;
  object-fit: contain;
  border-radius: 20px;
  margin: 0;
}

.featured {
	width: 90%;
	height: 610px;
	align-items: center;
	margin: auto;
}

.featured h3 {
    margin: 0;
	font-size: 80px;
	font-weight: 800;
	
}

.featured-course .course-card.featured h3 {
  font-size: 2rem;
  line-height: 1.3;
}

.featured-course .course-card.featured p {
  font-size: 1.05rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .featured-course .course-card.featured {
    grid-template-columns: 1fr;
    padding: 32px;
  }
}

/* new 2 Featured hero vertical stack with centered content */
.featured-course .course-card.featured {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center;  /* Center text */
    padding: 48px 24px;
}

.featured-course .course-card.featured .course-thumb {
    width: 100%;
    max-width: 600px; /* Image max width */
    height: auto;
    margin-bottom: 24px; /* Space below image */
}

.featured-course .course-card.featured h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.featured-course .course-card.featured p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.featured-course .course-card.featured .btn-primary {
    display: inline-block;
    padding: 12px 36px;
    font-size: 1rem;
}


/* btn primary Button 
.btn-primary {
    background: #22c55e;
    color: #020617;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #16a34a;
	color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(34,197,94,0.4);
}*/


@media (max-width: 768px) {
    .featured-course .course-card.featured {
        padding: 32px 16px;
    }

    .featured-course .course-card.featured h3 {
        font-size: 1.75rem;
    }

    .featured-course .course-card.featured p {
        font-size: 1rem;
    }
}


/* courses search bar & filter section of page courses */
.course-filter-bar {
  background: linear-gradient(135deg, #0f172a, #020617);
 /* padding: 30px 0;  ⬅ top-bottom কমানো */
  margin-bottom: 0;
}

.course-filter-form {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.course-filter-form input,
.course-filter-form select {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  background: #0f1115;
  color: #fff;
}


/* new */
.site-main {
	background: linear-gradient(135deg, #0f172a, #020617);
}

/* WooCommerce Single Product Page Container Fix */
.single-product .site-main,
.single-product .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-tabs {
    overflow: visible;
}


.single-product .woocommerce-Tabs-panel {
    padding-bottom: 40px;
}

.single-product .product {
    background: linear-gradient(135deg, #0f172a, #020617);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	color: #fff;
}

.single-product .product img {
	border-radius: 8px
}

/* =========== Start COURSE CONTENT + VIDEO (FINAL) ============ */
.course-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
    margin-bottom: 20px;
}

.course-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.course-video-wrapper.locked {
    background: #111;
}

.video-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
}

.course-locked-text {
    margin-top: 15px;
    font-weight: bold;
    color: #b91c1c;
}
/* =========== End COURSE CONTENT + VIDEO (FINAL) ============ */

/* Start single course page polish */
.continue-course {
    background: #16a34a;
}

.continue-course:hover {
    background: #15803d;
}

.course-locked-box {
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}
/* End single course page polish */

/* Start all courses page filter section soft glow */
/* Soft Glow Light */
.course-filter-bar {
    position: relative !important;
    overflow: hidden !important;
}

.course-filter-bar::before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(239, 68, 68, 0.22),
        transparent 70%
    );
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.course-filter-bar > * {
    position: relative;
    z-index: 2;
}
/* End all courses page filter section soft glow */

/* ==================================
  Start Learning paths page style 
 ====================================*/

.blog-preview-section .section-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    color: #f8fafc;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}


/* Start Soft Glow Light */
.blog-preview-section {
    position: relative !important;
    overflow: hidden !important;
}

.blog-preview-section::before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(
        circle,
        rgba(239, 68, 68, 0.22),
        transparent 70%
    );
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.blog-preview-section > * {
    position: relative;
    z-index: 2;
}
/* Start Soft Glow Light */

/* ==================================
  Start Learning paths page style 
 ====================================*/
 
 /* Start Learning paths single post page style */
.single-post-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff; /* site bg color */
    padding: 30px;
	border-radius: 10px;
	margin-bottom: 40px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.single-post-feature img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
	max-height: 500px;
	object-fit: cover;
	border-radius: 8px;
}

.entry-content {
    padding: 15px 0; /* left-right spacing */
    font-size: 18px;
    line-height: 1.7;
}

.entry-content h2 {
    font-size: 23px;
    margin-bottom: 10px;
}

.post-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.post-meta span {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9rem;
    color: #555;
}

.entry-content p {
    margin-bottom: 22px;
	
	@media (max-width: 768px) {
    .single-post-container {
        padding: 15px;
    }
    .single-post-feature img {
        max-height: 300px;
    }
}
/* End Learning paths single post page style */

