/*
 Theme Name:   Kadence Child
 Theme URI:    https://example.com/kadence-child/
 Description:  Kadence Child Theme
 Author:       Your Name
 Author URI:   https://example.com
 Template:     kadence
 Version:      1.0.2
 Tags:         customizable, modern, responsive-layout, gutenberg, header builder, footer builder
 Text Domain:  kadencechild
*/

/* Theme customization starts here
-------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #ffffff;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}


.btn-primary {
    background: #f97316;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    background: #ea580c;
    box-shadow: 0 6px 12px rgba(249, 115, 22, 0.4);
}

.btn-primary-blue {
    background: #1e3a5f;
    color: white;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.3);
}

.btn-primary-blue:hover {
    background: #2c5282;
    box-shadow: 0 6px 12px rgba(30, 58, 95, 0.4);
}

/* Hero Section */
.hero {
    background: transparent;
    padding: 80px 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 58% 37%;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.badge {
    display: inline-block;
    background: #fed7aa;
    color: #ea580c;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    width: fit-content;
}

.hero h1 {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.1;
    color: #0f172a;
}

.inner-page-hero h1 {
    font-size: 44px;
    font-weight: 400;
    line-height: 1.3;
    color: #0f172a;
	margin-top: 50px !important;
}

.inner-page-hero h1 strong {
	font-weight: 500;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 20px;
    color: #64748b;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
}

.btn-secondary {
    background: white;
    color: #475569;
    padding: 16px 32px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-secondary:hover {
    background: #f8fafc;
}

.stats {
    display: flex;
    gap: 32px;
    padding-top: 16px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #f97316;
}

.stat-label {
    font-size: 14px;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    background: #e2e8f0;
}

.hero-form-container {
    position: relative;
}

.hero-form {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.hero-form input,
.hero-form select {
    transition: all 0.3s;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Partners Section */
.partners {
    background: white;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 48px 0;
}

.partners-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    align-items: center;
}

.partner-logo {
    width: 96px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    opacity: 0.6;
    transition: all 0.3s;
}

.partner-logo:hover {
    opacity: 1;
    transform: translateY(-4px);
}

/* Programs Section */
.programs {
    background: #f8fafc;
    padding: 80px 0;
}

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

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #f97316;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.program-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.program-card:hover {
    border-color: #fb923c;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.program-card.blue:hover {
    border-color: #60a5fa;
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.icon-box.blue {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.program-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.program-card > p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    margin-bottom: 32px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #475569;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #f97316;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.checkmark.blue {
    background: #3b82f6;
}

.checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.link-button {
    color: #f97316;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: gap 0.3s;
}

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

.link-button.blue {
    color: #3b82f6;
}

/* Why Choose Section */
.why-choose {
    background: white;
    padding: 80px 0;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.feature-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #fed7aa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.feature-icon.green { background: #d1fae5; }
.feature-icon.blue { background: #dbeafe; }
.feature-icon.purple { background: #e9d5ff; }
.feature-icon.yellow { background: #fef3c7; }
.feature-icon.red { background: #fee2e2; }

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 80px 0;
    text-align: center;
}

.cta h2 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
}

.cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background: white;
    color: #ea580c;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cta-features {
    margin-top: 32px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

/* Footer */
footer {
    background: #1e3a5f;
    color: white;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f97316;
}

.footer-text {
    color: #94a3b8;
    font-size: 14px;
    line-height: 1.6;
}

.contact-info {
    list-style: none;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #2c5282;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    background: #f97316;
}

.footer-bottom {
    border-top: 1px solid #2c5282;
    padding-top: 32px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #f97316;
}

/* Testimonials Section */
.testimonials {
    background: #f8fafc;
    padding: 80px 0;
}

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

.testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ea580c;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.author-avatar.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a5f 100%);
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 14px;
    color: #64748b;
}

.rating {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 16px;
}

/* About Section */
.about {
    background: white;
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-frame {
    background: #fef3c7;
    border-radius: 20px;
    padding: 20px;
}

.about-image {
    width: 100%;
    aspect-ratio: 4/5;
    background: #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 14px;
}

.about-image img{
    border-radius: 12px;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-label {
    color: #f97316;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1.2;
}

.about-description {
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.about-feature-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.about-feature-box:hover {
    border-color: #f97316;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.about-feature-icon.blue {
    background: #dbeafe;
}

.about-feature-icon.dark {
    background: #e2e8f0;
}

.about-feature-icon.orange {
    background: #fed7aa;
}

.about-feature-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 2px;
}

.about-feature-info p {
    font-size: 13px;
    color: #94a3b8;
}

.btn-read-more {
    background: #f97316;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-top: 8px;
}

.btn-read-more:hover {
    background: #ea580c;
    gap: 12px;
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid, .programs-grid, .about-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 32px; }
    .about-title { font-size: 32px; }
    .stats { flex-wrap: wrap; }
    .about-features { grid-template-columns: 1fr; }
}



/* ----------- Custom CSS ----------- */

nav {
    box-shadow: none !important;
}

.page h3 {
	font-weight: 500;
}

#masthead {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.home .content-area {
    margin-top: 0;
    margin-bottom: 0;
}

.home .entry-content-wrap {
    padding: 0 !important;
}

.home .single-content h1 {
    margin: .5em 0;
}

.home .single-content h2 {
    margin: 0;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a {
    color: #1e3a5f;
}

.main-navigation .primary-menu-container > ul > li.menu-item.current-menu-item > a {
    color: #f97316;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a:hover {
    color: #f97316;
}

.entry-hero-container-inner {
    background: linear-gradient(135deg, rgb(255, 247, 237) 0%, rgb(255, 255, 255) 95%);
}

.inner-page-hero .wp-block-buttons .wp-block-button:first-child .wp-block-button__link {
  background-color: #f97316; /* orange */
  color: #fff;
}

.inner-page-hero .wp-block-buttons .wp-block-button:last-child .wp-block-button__link {
  background-color: #1e3a5f; /* dark blue */
  color: #fff;
}

.inner-page-hero .wp-block-columns > .wp-block-column:first-child {
  padding-right: 40px;
}

.main-navigation .primary-menu-container > ul > li.menu-item > a {
    padding-left: calc(2em / 2);
    padding-right: calc(2em / 2);
}

.header-navigation ul ul.sub-menu, .header-navigation ul ul.submenu {
    margin-left: 10px;
}

.header-navigation .header-menu-container ul ul li.menu-item > a {
    width: 220px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    color: #1e3a5f;
    font-size: 12px;
    font-weight: 400;
}

#menu-item-61 {
    background: #1e3a5f;
    padding: 0 10px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(30, 58, 95, 0.3);
    margin-left: 7px;
}

#menu-item-61:hover {
    background: #2c5282;
    box-shadow: 0 6px 12px rgba(30, 58, 95, 0.4);
}

#menu-item-61 a {
    color: #ffffff;
}

.inner-form {
	background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.inner-form h5 {
	font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #0f172a;
}

.inner-form p {
	margin-bottom: 20px;
}

.inner-form > div {
	padding: 0 !important;
}

.inner-form label {
    display: block;
    color: #475569;
    font-weight: 500;
}

.inner-form .wpcf7-text {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    background: #f8fafc;
	margin-top: 8px;
}

.inner-form .wpcf7-submit {
    width: 100%;
    padding: 16px;
    background: rgb(249, 115, 22);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 12px;
}
	
.featured-row {
	background: #ffffff;
    border-radius: 5px;
	margin: -65px 0 50px;
box-shadow: 3px 3px 13px -1px rgba(0,0,0,0.20);
-webkit-box-shadow: 3px 3px 13px -1px rgba(0,0,0,0.20);
-moz-box-shadow: 3px 3px 13px -1px rgba(0,0,0,0.20);
}


.featured-row .kt-row-column-wrap {
	padding: 0px 0px 12px !important;
	border-bottom: 1px solid #eee;
    gap: 20px;
}

.featured-row .wp-block-kadence-infobox .kt-info-svg-icon {
	opacity: 0.7;
}

.featured-row h2 {
	margin-bottom: 0 !important;
}

.page .entry-title {
    font-size: 80px;
    font-weight: 300;
    color: #fff;
}

.page .content-area {
	margin-top: 0;
}

.page .entry-content-wrap {
	padding-top: 0;
}

.kb-row-layout-id65_a341b8-21 > .kt-row-column-wrap {
	padding: 0 !important;
}

.kb-row-layout-id65_a341b8-21 {
	padding: 30px 35px 10px 35px;	
}


@media (max-width: 768px) {
	.inner-page-hero h1 {
		font-size: 32px;
		margin-top: 0px !important;
	}
	.inner-form h5 {
		font-size: 24px;
	}
}


.popup-drawer .drawer-inner {
	background: #1e3a5f;
}