/* CSS VARIABLES & RESET */
:root {
    --primary-navy: #0d1e33;
    --accent-gold: #b38e46;
    --text-muted: #667085;
    --bg-light: #fcfcfd;
    --card-shadow: 0px 12px 32px rgba(0, 0, 0, 0.04);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
	--form--color-text: color:#000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-navy);
    overflow-x: hidden;
}

/* HEADER & NAVIGATION */
header {
    background-color: #ffffff;

    top: 0;
    z-index: 1000;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    max-height: 60px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    text-decoration: none;
    color: var(--primary-navy);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

nav a:hover, nav a.active {
    color: var(--accent-gold);
}

.enrol-btn {
    background-color: var(--primary-navy);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid var(--primary-navy);
}

.enrol-btn:hover {
    background-color: transparent;
    color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(13, 30, 51, 0.15);
}

/* MAIN CONTENT */
.main-content {
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* READING PROGRESS BAR */
.progress-container {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #f2f4f7;
    z-index: 999;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), var(--primary-navy));
    width: 0%;
    transition: width 0.1s;
}



.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 30, 51, 0.85) 0%, rgba(13, 30, 51, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 8%;
    color: #ffffff;
}

.slide-content h1 {
     font-family: "Poppins", sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
}

.slide-content p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin-bottom: 30px;
}

.slide-btn {
    background: var(--accent-gold);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.slide-btn:hover {
    background: #ffffff;
    color: var(--primary-navy);
    transform: translateY(-3px);
}

.slider-nav, .owl-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot, .owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active, .owl-dot.active {
    background: var(--accent-gold) !important;
    transform: scale(1.2);
}

.owl-nav, .slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 4%;
    z-index: 10;
}

.slider-arrow, .owl-nav button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2) !important;
	border: 2px solid rgba(255, 255, 255, 0.5) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer !important;
	transition: var(--transition-smooth);
	color: #ffffff !important;
	font-size: 20px !important;
}

.slider-arrow:hover, .owl-nav button:hover {
    background: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
}
.owl-nav button span {
	font-size: 28px;
}
/* SECTION STYLES */
.section {
    padding: 80px 0;
}

.section-title {
     font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
	margin-top: 30px;
    margin-bottom: 30px;
    color: var(--primary-navy);
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}

/* BEST ONLINE COACHING */
.coaching-section {
    background: #ffffff;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-gold);
}

.course-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), #1a3a5c);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #ffffff;
}

.course-card h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-navy);
    font-weight: 600;
}

.course-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* COURSES & SERVICES */
.services-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.service-image img {
	height: 225px;
	width: 100%;
	object-fit: cover;
}

.service-image img {
	height: 225px;
	width: 100%;
	object-fit: cover;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-navy);
    font-weight: 600;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 12px;
}

/* MODE OF TEACHING */
.teaching-section {
    background: #ffffff;
}

.teaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.teaching-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.teaching-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.teaching-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
}

.teaching-card h3 {
     font-family: "Poppins", sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-navy);
    font-weight: 600;
}

.teaching-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* TESTIMONIAL SLIDER */
.testimonial-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slide {
    display: none;
    text-align: center;
    color: #ffffff;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-quote {
    font-size: 64px;
    color: var(--accent-gold);
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.testimonial-info h4 {
	font-family: "Poppins", sans-serif;
	font-size: 15px;
	margin-bottom: 5px;
	font-weight: 600;
}

.testimonial-info p {
    font-size: 14px;
    opacity: 0.8;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 50px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-dot.active {
    background: var(--accent-gold);
    transform: scale(1.2);
}

/* CONTACT SECTION */
.contact-section {
    background: #ffffff;
   
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
     font-family: "Poppins", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-navy);
    font-weight: 600;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: var(--primary-navy);
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 20px;
}

.contact-form {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
    background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(179, 142, 70, 0.1);
}

.submit-btn {
    background: var(--primary-navy);
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-gold);
}

/* FOOTER */
footer {
    background: var(--primary-navy);
    color: #ffffff;
}

.footer-content {
    padding: 60px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--accent-gold);
    font-weight: 600;
}

.footer-brand img {
    max-height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--accent-gold);
}

.footer-section .contact-item {
    color: rgba(255, 255, 255, 0.7);
}

.footer-section .contact-item i {
    color: var(--accent-gold);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* HERO SECTION (Generic) */
.hero-section {
    position: relative;
    height: 40vh;
    min-height: 350px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-section:before{
	 position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
	z-index:10;
	content: "";
  display: block;
  overflow: hidden;
  clear: both;
	opacity:0.75;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
	z-index:9;
}

.hero-content {
    position: relative;
    z-index: 11;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
	font-family: "Poppins", sans-serif;
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
	max-width: 940px;
	text-align: center;
	margin: 0 auto 20px;
}

.hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

/* ABOUT PAGE */
/* .about-section {
    padding: 80px 0;
} */
.about-s1{background: #f1f1f1;}
.story-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h3 {
     font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 28px;
    color: #ffffff;
}

.mvv-card h3 {
     font-family: "Poppins", sans-serif;
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-navy);
    font-weight: 600;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    padding: 80px 0;
    margin: 0px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: "Poppins", sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 16px;
    color: #ffffff;
}

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

.team-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.team-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.team-info h3 {
     font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-navy);
    font-weight: 600;
}

.team-info p {
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-weight: 500;
}

.team-info span {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    
}

.cta-section h2 {
     font-family: "Poppins", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-btn {
    background: var(--accent-gold);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.cta-btn:hover {
    background: #ffffff;
    color: var(--primary-navy);
    transform: translateY(-3px);
}

/* BLOG PAGE */
.animated-section {
    margin-bottom: 80px;
}

.featured-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-img-wrapper {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.featured-img-wrapper .tag {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--accent-gold);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.featured-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-content h2 {
	font-family: "Poppins", sans-serif;
	font-size: 24px;
	margin-bottom: 12px;
	color: var(--primary-navy);
	font-weight: 700;
}

.featured-content .desc {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 25px;
}
.section-header-row .section-title {
	margin-top: 10px;
}
.meta-info {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-muted);
}

.read-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
    font-size: 16px;
}

.read-link:hover {
    gap: 12px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.sub-tag {
    font-size: 14px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-all {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.view-all:hover {
    gap: 8px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.post-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-wrapper {
    position: relative;
    height: 220px;
}

.card-img-wrapper .tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-gold);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.card-body {
    padding: 25px;
}

.card-body h3 {
	font-family: "Poppins", sans-serif;
	font-size: 16px;
	margin-bottom: 12px;
	color: var(--primary-navy);
	font-weight: 700;
}
.card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    padding-top: 15px;
    border-top: 1px solid #f2f4f7;
}

/* BLOG DETAIL PAGE */
.category-badge {
    background: var(--accent-gold);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-title {
     font-family: "Poppins", sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}
.single-post .hero-meta {
	align-items: center;
  justify-content: center;
}
.single-post .main-content {
	padding: 80px 30px;
}
.post-navigation-custom {
	display: none;
}
.hero-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.article-content {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
}

.article-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-style: italic;
}

.article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--primary-navy);
}

.article-body h2 {
     font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-navy);
}

.article-body h3 {
     font-family: "Poppins", sans-serif;
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--primary-navy);
}

.article-body p {
    margin-bottom: 10px;
}
.sidebar-card.related-articles h3, .sidebar-card h3 {
	font-weight: 600;
	margin-bottom: 0;
}
.article-body ul {
    margin: 20px 0;
    padding-left: 25px;
}
.related-content h4 {
	font-size: 14px;
	font-weight: 600;
}
body .related-thumb {
	width: 70px;
	height: 70px;
	flex-shrink: 0;
}
.article-body li {
    margin-bottom: 10px;
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--accent-gold);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box h4 {
     font-family: "Poppins", sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.highlight-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 0;
}

.author-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
     font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--primary-navy);
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #f2f4f7;
}

.share-buttons span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.share-btn:hover {
    background: var(--accent-gold);
    color: #ffffff;
}

.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    margin-bottom: 30px;
}

.sidebar-card h3 {
     font-family: "Poppins", sans-serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.toc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toc-list a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
    padding-left: 15px;
    border-left: 2px solid #e4e7ec;
}

.toc-list a:hover {
    color: var(--accent-gold);
    border-left-color: var(--accent-gold);
}

.recent-posts-list {
    list-style: none;
}

.recent-posts-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f2f4f7;
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list li a {
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
    transition: var(--transition-smooth);
}

.recent-posts-list li a:hover {
    color: var(--accent-gold);
}

.recent-posts-list li span {
    font-size: 12px;
    color: var(--text-muted);
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.categories-list li a:hover {
    color: var(--accent-gold);
}

/* CONTACT PAGE */
.contact-hero {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3a5c 100%);
    color: #ffffff;
    border-radius: 20px;
    margin-bottom: 60px;
}
.contact-wrap {
	padding: 80px 0 0;
}
.contact-hero h1 {
    font-family: "Poppins", sans-serif;
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
}

.contact-info-card h2 {
    font-weight:700;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-navy);
	font-family: "Poppins", sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    color: var(--accent-gold);
    font-size: 24px;
}

.contact-item-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary-navy);
}

.contact-item-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
}

.contact-form-card h2 {
    font-family: "Poppins", sans-serif;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-navy);
	 font-weight: 700;
}

.departments-section {
    margin-top: 80px;
	margin-bottom:80px;
}

.helpline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dept-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.dept-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.dept-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold)); */
    background: #b38e46;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #ffffff;
}

.dept-title {
     font-family: "Poppins", sans-serif;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--primary-navy);
  font-weight: 600;
}

.numbers-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-link {
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

.phone-link:hover {
    gap: 12px;
}

/* COURSES PAGE */
.filter-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    margin-bottom: 40px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.filter-header h2 {
     font-family: "Poppins", sans-serif;
    font-size: 24px;
    color: var(--primary-navy);
}

.filter-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-navy);
}

.filter-group input,
.filter-group select {
    padding: 12px 16px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: var(--primary-navy);
    transition: var(--transition-smooth);
    background: #ffffff;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(179, 142, 70, 0.1);
}

.filter-btn {
    background: var(--primary-navy);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 46px;
    margin-top: 24px;
}

.filter-btn:hover {
    background: var(--accent-gold);
}

.clear-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid #e4e7ec;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 46px;
    margin-top: 24px;
}

.clear-btn:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.courses-section {
    margin-top: 40px;
}

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

.course-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.course-image {  
    height: 254px;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #ffffff;
    position: relative;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.single-course .course-badge{position:static;}
.course-content {
    padding: 25px;
}

.course-category {
    font-size: 12px;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.course-content h3 {
     font-family: "Poppins", sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.course-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f2f4f7;
}

.course-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-navy);
}

.course-btn {
    background: var(--primary-navy);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.course-btn:hover {
    background: var(--accent-gold);
}

.no-results {
    text-align: center;
    padding: 60px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
}

.no-results i {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-results h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-navy);
}

.no-results p {
    color: var(--text-muted);
}

/* COURSE DETAIL PAGE */
.course-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--accent-gold);
    text-decoration: none;
}

.breadcrumb span {
    color: #ffffff;
    opacity: 0.7;
}

.course-detail-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.course-info {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    border: 1px solid #f2f4f7;
}

.course-info h2 {
     font-family: "Poppins", sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-navy);
}

.course-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f2f4f7;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-muted);
}

.meta-item i {
    color: var(--accent-gold);
}

.course-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.curriculum-section {
    margin-bottom: 40px;
}

.curriculum-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #f2f4f7;
    transition: var(--transition-smooth);
}

.curriculum-item:hover {
    border-color: var(--accent-gold);
}

.curriculum-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.curriculum-header h4 {
    font-size: 18px;
    color: var(--primary-navy);
    margin-bottom: 5px;
}

.curriculum-header span {
    font-size: 14px;
    color: var(--text-muted);
}

.curriculum-content {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e4e7ec;
    display: none;
}

.curriculum-content.active {
    display: block;
}

.curriculum-content ul {
    list-style: none;
    padding-left: 0;
}

.curriculum-content li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.curriculum-content li i {
    color: var(--accent-gold);
    font-size: 12px;
}

.sidebar-card.price-card {
    text-align: center;
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--primary-navy);
    margin-bottom: 10px;
}

.price-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.enroll-btn {
    background: var(--primary-navy);
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 100%;
    margin-bottom: 15px;
}

.enroll-btn:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-top: 25px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f2f4f7;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--accent-gold);
}

.instructor-card {
    text-align: center;
}

.instructor-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-navy), var(--accent-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 40px;
    color: #ffffff;
    font-weight: 700;
}

.instructor-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 5px;
    color: var(--primary-navy);
}

.instructor-card p {
    font-size: 14px;
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 500;
}

.instructor-card span {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
.hero-benner img {
	max-width: 100%;
	height: auto;
}

.woocommerce-breadcrumb, .woocommerce-breadcrumb a {
	font-size: 20px;
	font-weight: 600;
	color: #000;
}
.woocommerce-account #main .woocommerce {
	max-width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}
.woocommerce-account #main .woocommerce {
	max-width: 100%;
	padding: 0 30px;
	margin: 0 auto;
}
body .woocommerce form .form-row .input-text, body .woocommerce form .form-row select {
	border: 1px solid #000;
	width: 100%;
}
.woocommerce-form .form-row {
	display: block;
}
.woocommerce form .form-row {
	margin-bottom: 18px;
	display: block;
	width: 100%;
}
.woocommerce-ResetPassword.lost_reset_password {
	margin-top: 60px;
	margin-bottom: 60px;
}
.woocommerce-form, .woocommerce-ResetPassword {
	background: #fff;
	border: 2px solid #000;
	max-width: 600px;
	margin: 0 auto;
	border-radius: 10px;
	text-align: left;
	padding: 30px;
}
/* Cart & Checkout */
.woocommerce-cart table.cart,
.woocommerce-checkout-review-order-table {
    border: 1px solid #e5e5e5;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
    padding: 15px;
}

.cart_totals,
.woocommerce-checkout-review-order {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 20px;
}

/* Login & Register */
.woocommerce form.login,
.woocommerce form.register, .woocommerce-ResetPassword {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.woocommerce form label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.woocommerce form .form-row {
    margin-bottom: 18px;
}


/* WooCommerce Messages */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background: #ffffff;
    border-top: 3px solid #b8872a;
    padding: 15px;
    border-radius: 6px;
	margin-top:30px;
}
.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme span {
	position: relative;
	top: -7px;
	padding-left: 10px;
}
.woocommerce-account #main .woocommerce {
	max-width: 100%;
	padding: 80px 30px 70px;
	margin: 0 auto;
}
.entry-header{
	display: none;
}
.woocommerce-Address-title.title {
	padding: 0;
	padding-bottom: 11px;
	margin-bottom: 10px;
}
.woocommerce-account .woocommerce-MyAccount-content label {
	font-size: 14px !important;
}
.woocommerce-EditAccountForm.edit-account .woocommerce-form-row {
	margin-bottom: 0 !important;
}
.woocommerce-account .woocommerce-EditAccountForm #account_display_name + span {
	font-size: 14px;
}
.woocommerce-account #main .woocommerce h2 {
	font-size: 24px;
	text-align: center;
	margin-bottom: 20px;
	font-weight: bold;
	margin-top: 30px;
}
body .woocommerce form .form-row .input-text, body .woocommerce form .form-row select {
	border: 1px solid #000;
	width: 100%;
	height: 48px;
	font-size:14px;
}
.woocommerce-account .woocommerce-EditAccountForm fieldset legend {
	font-size: 16px;
	font-weight: 600;
}
:where(.woocommerce) .select2-container .select2-selection--single .select2-selection__placeholder {
	font-size: 14px;
}

.woocommerce .woocommerce-form-login__rememberme {
	margin: 1rem 0 20px 0;
}
.woocommerce-button.button.woocommerce-form-login__submit, .woocommerce-Button.button {
	background: #b38e46 !important;
	color: #fff !important;
	padding: 13px 30px;
	border-radius: 8px;
	font-size: 16px;
	width: 100%;
	font-weight: 600;
}
.woocommerce-error li, .woocommerce-info, .woocommerce-message {
	justify-content: start;

}
body input[type="checkbox"]::after {
	border: 3px solid #000;
	border-top: 0;
	border-left: 0;
	left: 8px;
  top: 3px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .filter-grid {
        grid-template-columns: 1fr 1fr;
    }
    header {
        padding: 15px 4%;
    }
  
    .hero-content h1 {
        font-size: 36px;
    }
    .story-content {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    .course-detail-layout {
        grid-template-columns: 1fr;
    }
    .sidebar {
        position: static;
    }
    .featured-card {
        grid-template-columns: 1fr;
    }
    .featured-img-wrapper {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    nav, .enrol-btn {
        display: none;
    }
    .filter-grid {
        grid-template-columns: 1fr;
    }
 
    .hero-content h1 {
       font-size: 28px;
    margin-bottom: 0;
    }
    .courses-grid {
        grid-template-columns: 1fr;
    }
    .course-info {
        padding: 25px;
    }
    .course-info h2 {
        font-size: 28px;
    }
    .course-meta {
        flex-direction: column;
        gap: 15px;
    }
    .slide-content h1 {
        font-size: 30px;
    }
  .section-title {
	font-size: 20px !important;
	margin-bottom: 20px !important;
}
    .contact-grid {
        grid-template-columns: 1fr;
    }
    nav {
		padding: 0 !important;
}
.navbar-toggler-icon {

	width: 1.6em;

}

header {
	padding: 0.75rem 0;
	
}
.navbar-toggler {
	border: none;
	padding: 0;
	border: none;
	outline: none !important;
	box-shadow: none !important;
}
.slide-content p {
	font-size: 16px;
	padding: 0 50px;
}
.slide-btn {
	padding: 11px 20px;
	font-size: 14px;
}
.section, .testimonial-section, .about-section, .stats-section {
	padding: 50px 0;
}
.contact-info h2 {

	font-size: 24px;

}
.contact-item {
	gap: 16px;
	margin-bottom: 15px;
}
.contact-wrapper {
	gap: 10px;
}
.contact-form {

	padding: 20px;
}
	.contact-item-content h3 {
	font-size: 14px;
	font-weight: 600;
}
.form-group label {
	margin-bottom: 5px;
	font-size: 12px;
	text-align: left;
}
.form-row {
	display: grid;
	grid-template-columns: inherit;
	gap: 0;
}
.form-group br {
	display: none;
}
.form-group {
	margin-bottom: 10px;
}
.form-group input, .form-group select, .form-group textarea {
	
	resize: none;
	height: 84px;
}
.wpcf7-submit, .submit-btn{width: 100% !important;}
.container {
	padding-left: 20px;
	padding-right: 20px;
}
.footer-content {
	padding: 30px 0;
}
.story-card {
	padding: 20px;
}
.story-text h3 {

	font-size: 24px;
	margin-bottom: 5px;

}
.story-text p {

	margin-bottom: 10px;
}
.story-content {

	gap: 10px;
	
}
.cta-section h2 {

	font-size: 30px;
	margin-bottom: 14px;

}
.cta-btn {

	padding: 10px 30px;
	border-radius: 8px;
	font-size: 14px;
}
.slider-arrow, .owl-nav button {
	width: 36px;
	height: 36px;

}
.owl-nav button span {
	font-size: 21px;
}
.slider-nav, .owl-dots {
	bottom: 8px;
	gap: 8px;

}
.slider-dot, .owl-dot {
	width: 8px;
	height: 8px;

}
.owl-nav {
	opacity: 0;
}
.brand img {
	max-height: 40px;

}
	.featured-content {
	padding: 20px;
}
	.featured-content h2 {
	font-size: 20px;
	margin-bottom: 7px;
	line-height: 26px;
}
	.meta-info {
	gap: 10px;
	font-size: 12px;
	flex-wrap: wrap;
}
	.featured-content .desc {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 12px;
}
	.animated-section {
	margin-bottom: 40px;
}
	.section-header-row {
	margin-bottom: 0px;
}
	.posts-grid {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}
	.card-body {
	padding: 20px;
}
	.card-footer {
	flex-wrap: wrap;
}
	body .blog-pagination {
	gap: 5px;
	margin: 26px 0 40px;
	flex-wrap: wrap;
}
	body .blog-pagination .page-numbers {
	min-width: 38px;
	height: 38px;
	padding: 0 8px;
	font-size: 12px;
}
	.hero-content h1 {
	font-size: 24px;
	margin-bottom: 10px;
}
	.category-badge {
	display: none;
}
	.single-post .hero-meta {

	flex-wrap: wrap;
	gap: 10px;
}
	.single-post .main-content {
	padding: 40px 20px;
}
	.content-wrapper {
	display: flex;
	gap: 0;
		flex-wrap: wrap;
}
	.article-content {
	padding: 20px;

}
	.article-intro {
	font-size: 16px;
	line-height: 1.6;


}
.author-card {
	margin-top: 30px;
	flex-wrap: wrap;
	justify-content: center;
	
}
	.share-buttons span {
	width: 100%;
	text-align: center;
}
	.share-buttons {
	gap: 15px;
	margin-top: 26px;
	padding-top: 15px;
		flex-wrap: wrap;
		justify-content: center;
}
	.sidebar {
	margin-top: 20px;
}
	body .related-post-item {
	align-items: start;
	padding: 10px 0;
}
	.footer-section h3 {
	margin-bottom: 10px;
}
	.woocommerce form.login, .woocommerce form.register {
	padding: 20px;
}
	.woocommerce-account #main .woocommerce {
	padding: 0 20px 40px;
}
	.woocommerce-ResetPassword.lost_reset_password {
	margin-top: 40px;
	margin-bottom: 40px;
}
	.woocommerce-account #main .woocommerce {
	padding: 0 20px !important;
}
	.woocommerce form.login, .woocommerce form.register, .woocommerce-ResetPassword {
	padding: 20px;
		margin-bottom:40px;
}
	.contact-wrap {
	padding: 40px 0 0;
}
	.contact-info-card {
	padding: 20px;
}
	.contact-info-card h2 {
	font-size: 20px;
	margin-bottom: 18px;
}
	.contact-grid {
	gap: 30px;
}
	.contact-form-card {
	padding: 20px;
}
	.form-group input, .form-group select, .form-group textarea {
	height: 46px;
}
	.departments-section {
	margin-top: 40px;
	margin-bottom: 40px;
}
	.contact-form-card h2 {
	font-size: 20px;
	margin-bottom: 14px;
}
	.woocommerce-cart #main {
	padding: 40px 20px 0 !important;
}
}

