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

body {
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
 color: #2d3748;
background-color: #fff;
 overflow-x: hidden;
}

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

.topnavbar {
 position: fixed;
top: 0;
 left: 0;
right: 0;
   background: rgba(26,32,44,0.95);
 backdrop-filter: blur(10px);
z-index: 1000;
 padding: 15px 0;
transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 border-bottom: 1px solid rgba(255,255,255,0.1);
}

.navcontainer {
max-width: 1200px;
 margin: 0 auto;
padding: 0 20px;
 display: flex;
justify-content: space-between;
 align-items: center;
}

.logoimg {
height: 42px;
 width: auto;
display: block;
 filter: brightness(1.1);
transition: transform 0.3s ease;
}

.logoimg:hover {
 transform: scale(1.05);
}

.mainmenu {
display: flex;
 list-style: none;
gap: 35px;
 margin: 0;
padding: 0;
}

.mainmenu li a {
 color: rgba(255,255,255,0.9);
text-decoration: none;
 font-size: 15px;
font-weight: 500;
 padding: 12px 18px;
border-radius: 8px;
 transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
 letter-spacing: 0.3px;
}

.mainmenu li a::before {
 content: '';
position: absolute;
 bottom: 0;
left: 50%;
 width: 0;
height: 2px;
 background: linear-gradient(90deg, #48bb78, #38a169);
transition: all 0.3s ease;
 transform: translateX(-50%);
}

.mainmenu li a:hover::before,
.activelink::before {
 width: 80%;
}

.mainmenu li a:hover,
.activelink {
background: rgba(72,187,120,0.15);
 color: #68d391;
transform: translateY(-1px);
}

.mobilemenu {
 display: none;
flex-direction: column;
 cursor: pointer;
padding: 8px;
 border-radius: 6px;
transition: all 0.3s ease;
}

.mobilemenu:hover {
 background: rgba(255,255,255,0.1);
}

.menuline {
width: 26px;
 height: 3px;
background: #fff;
 margin: 3px 0;
transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
 border-radius: 2px;
}

.mainbanner {
 height: 100vh;
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #6b73ff 100%);
 position: relative;
display: flex;
 align-items: center;
justify-content: center;
 overflow: hidden;
}

.mainbanner::before {
 content: '';
position: absolute;
 top: 0;
left: 0;
 right: 0;
bottom: 0;
 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23FFFFFF"></path></svg>') bottom/cover no-repeat;
 z-index: 1;
}

.banneroverlay {
position: absolute;
 top: 0;
left: 0;
 right: 0;
bottom: 0;
 background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
z-index: 2;
}

.bannercontent {
 position: relative;
z-index: 3;
 text-align: center;
color: #fff;
 max-width: 900px;
padding: 0 20px;
 animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
 from {
   opacity: 0;
   transform: translateY(50px);
 }
 to {
   opacity: 1;
   transform: translateY(0);
 }
}

.bannercontent h1 {
font-size: clamp(32px, 5vw, 56px);
 margin-bottom: 24px;
font-weight: 700;
 line-height: 1.2;
text-shadow: 0 4px 8px rgba(0,0,0,0.3);
 letter-spacing: -0.5px;
}

.bannerdesc {
 font-size: clamp(16px, 2.5vw, 22px);
margin-bottom: 35px;
 line-height: 1.6;
opacity: 0.95;
 text-shadow: 0 2px 4px rgba(0,0,0,0.2);
font-weight: 300;
}

.contentblock {
padding: 80px 0;
 background: linear-gradient(145deg, #f7fafc 0%, #edf2f7 100%);
position: relative;
}

.contentblock::before {
 content: '';
position: absolute;
 top: -1px;
left: 0;
 right: 0;
height: 60px;
 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="%23FFFFFF"></path></svg>') bottom/cover no-repeat;
}

.textcontent {
max-width: 1000px;
 margin: 0 auto;
padding: 0 20px;
}

.textcontent h2 {
 font-size: clamp(28px, 4vw, 38px);
margin-bottom: 30px;
 color: #2d3748;
text-align: center;
 font-weight: 600;
position: relative;
 padding-bottom: 15px;
}

.textcontent h2::after {
 content: '';
position: absolute;
 bottom: 0;
left: 50%;
 width: 60px;
height: 3px;
 background: linear-gradient(90deg, #48bb78, #38a169);
transform: translateX(-50%);
 border-radius: 2px;
}

.textcontent p {
margin-bottom: 20px;
 color: #4a5568;
font-size: 17px;
 line-height: 1.8;
text-align: justify;
 font-weight: 400;
}

.whatwedo {
 padding: 90px 0;
background: #fff;
 position: relative;
}

.sectionrow {
 display: flex;
align-items: center;
 gap: 60px;
flex-wrap: wrap;
}

.imagecol {
flex: 1;
 min-width: 450px;
}

.aboutimage {
border-radius: 15px;
 overflow: hidden;
box-shadow: 0 20px 40px rgba(0,0,0,0.15);
 position: relative;
transform: perspective(1000px) rotateY(-5deg);
 transition: all 0.4s ease;
}

.aboutimage:hover {
 transform: perspective(1000px) rotateY(0deg) scale(1.02);
box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.aboutimage img {
width: 100%;
 height: auto;
display: block;
 transition: transform 0.4s ease;
}

.contentcol {
 flex: 1;
min-width: 400px;
}

.contentwrap {
 padding: 20px 0;
}

.smallheader {
font-size: 13px;
 color: #48bb78;
font-weight: 700;
 text-transform: uppercase;
letter-spacing: 2px;
 display: block;
margin-bottom: 12px;
 position: relative;
}

.smallheader::before {
 content: '';
width: 30px;
 height: 2px;
background: #48bb78;
 display: inline-block;
margin-right: 10px;
 vertical-align: middle;
}

.contentwrap h2 {
 font-size: clamp(28px, 4vw, 36px);
margin-bottom: 25px;
 color: #2d3748;
line-height: 1.3;
 font-weight: 600;
}

.contentwrap p {
margin-bottom: 28px;
 color: #4a5568;
font-size: 16px;
 line-height: 1.7;
}

.tabsection {
margin-top: 35px;
}

.tabnav {
 display: flex;
gap: 8px;
 margin-bottom: 25px;
flex-wrap: wrap;
}

.tablink {
background: linear-gradient(145deg, #f7fafc, #edf2f7);
 padding: 14px 22px;
border: none;
 border-radius: 10px;
cursor: pointer;
 font-weight: 600;
color: #4a5568;
 text-decoration: none;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 box-shadow: 0 4px 6px rgba(0,0,0,0.05);
position: relative;
 overflow: hidden;
}

.tablink::before {
content: '';
 position: absolute;
top: 0;
 left: -100%;
width: 100%;
 height: 100%;
background: linear-gradient(90deg, #48bb78, #38a169);
 transition: left 0.3s ease;
z-index: -1;
}

.tablink:hover::before,
.activetab::before {
 left: 0;
}

.tablink:hover,
.activetab {
 color: #fff;
transform: translateY(-2px);
 box-shadow: 0 8px 15px rgba(72,187,120,0.3);
}

.tabcontent {
 background: linear-gradient(145deg, #fff, #f7fafc);
padding: 30px;
 border-radius: 15px;
box-shadow: 0 10px 25px rgba(0,0,0,0.1);
 border: 1px solid rgba(72,187,120,0.1);
}

.tabpane {
display: none;
}

.activePane {
 display: block;
animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
 from { opacity: 0; transform: translateY(10px); }
 to { opacity: 1; transform: translateY(0); }
}

.tabpane p {
margin: 0;
 color: #4a5568;
line-height: 1.8;
 font-size: 16px;
}

.servicesarea {
padding: 90px 0;
 background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sectionheading {
position: relative;
 z-index: 1;
margin-bottom: 70px;
 text-align: center;
}

.sectionheading h2 {
font-size: clamp(32px, 5vw, 48px);
 margin-bottom: 20px;
display: block;
 line-height: 1.2;
color: #2d3748;
 font-weight: 700;
}

.sectionheading p {
font-size: 18px;
 color: #718096;
margin-bottom: 0;
 max-width: 600px;
margin-left: auto;
 margin-right: auto;
}

.servicesrow {
display: flex;
 flex-wrap: wrap;
gap: 35px;
 justify-content: center;
}

.serviceitem {
flex: 1;
 min-width: 280px;
max-width: 320px;
}

.singleservicearea {
position: relative;
 z-index: 1;
text-align: center;
 margin-bottom: 50px;
background: #fff;
 padding: 40px 25px;
border-radius: 20px;
 box-shadow: 0 10px 30px rgba(0,0,0,0.1);
transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 border: 1px solid rgba(72,187,120,0.1);
overflow: hidden;
}

.singleservicearea::before {
 content: '';
position: absolute;
 top: 0;
left: 0;
 right: 0;
height: 4px;
 background: linear-gradient(90deg, #48bb78, #38a169);
transform: scaleX(0);
 transition: transform 0.3s ease;
}

.singleservicearea:hover::before {
 transform: scaleX(1);
}

.singleservicearea:hover {
transform: translateY(-10px);
 box-shadow: 0 20px 40px rgba(72,187,120,0.2);
}

.singleservicearea img {
display: inline-block;
 margin-bottom: 25px;
width: 80px;
 height: 80px;
object-fit: cover;
 border-radius: 12px;
box-shadow: 0 5px 15px rgba(0,0,0,0.1);
 transition: transform 0.3s ease;
}

.singleservicearea:hover img {
 transform: scale(1.1);
}

.singleservicearea h5 {
font-size: 21px;
 margin-bottom: 18px;
font-weight: 600;
 color: #2d3748;
}

.singleservicearea p {
margin-bottom: 0;
 line-height: 1.7;
color: #4a5568;
 font-size: 15px;
}

.ftcosection {
padding: 90px 0;
 position: relative;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 overflow: hidden;
}

.ftcosection::before {
content: '';
 position: absolute;
top: 0;
 left: 0;
right: 0;
 bottom: 0;
background: rgba(255,255,255,0.05);
 backdrop-filter: blur(1px);
}

.mainrow {
 display: flex;
align-items: stretch;
 gap: 0;
flex-wrap: wrap;
 position: relative;
z-index: 2;
}

.imageside {
flex: 1;
 min-width: 400px;
display: flex;
}

.aboutimg {
width: 100%;
 display: flex;
align-items: center;
 justify-content: center;
background-size: cover;
 background-position: center;
margin-bottom: 0;
 border-radius: 0 25px 25px 0;
overflow: hidden;
}

.aboutimg img {
 width: 100%;
height: auto;
 min-height: 450px;
object-fit: cover;
 filter: brightness(1.1) contrast(1.1);
}

.contentside {
flex: 1;
 min-width: 400px;
padding-left: 50px;
 background: rgba(255,255,255,0.95);
backdrop-filter: blur(10px);
 border-radius: 25px 0 0 25px;
}

.contentwrap {
padding: 60px 40px;
}

.headingsection .subheading {
font-size: 13px;
 display: block;
font-weight: 700;
 color: #e53e3e;
text-transform: uppercase;
 letter-spacing: 2px;
margin-bottom: 18px;
}

.headingsection h2 {
font-size: clamp(28px, 4vw, 40px);
 font-weight: 700;
margin-bottom: 25px;
 line-height: 1.3;
color: #2d3748;
}

.headingsection p {
margin-bottom: 30px;
 color: #4a5568;
font-size: 16px;
 line-height: 1.7;
}

.tabnavigation2 {
margin-top: 30px;
}

.navpills {
 display: flex;
list-style: none;
 padding: 0;
margin: 0 0 20px 0;
 gap: 12px;
flex-wrap: wrap;
}

.navitem {
margin-bottom: 10px;
}

.navlink {
background: linear-gradient(145deg, #fff, #f7fafc);
 border-radius: 10px;
color: #2d3748;
 font-weight: 600;
padding: 12px 20px;
 text-decoration: none;
display: block;
 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
 position: relative;
overflow: hidden;
}

.navlink::before {
 content: '';
position: absolute;
 top: 0;
left: -100%;
 width: 100%;
height: 100%;
 background: linear-gradient(90deg, #4299e1, #3182ce);
transition: left 0.3s ease;
 z-index: -1;
}

.navlink.active::before {
left: 0;
}

.navlink.active {
color: #fff;
 transform: translateY(-2px);
box-shadow: 0 8px 16px rgba(66,153,225,0.3);
}

.tabcontent {
background: linear-gradient(145deg, #fff, #f7fafc);
 padding: 30px;
border-radius: 15px;
 box-shadow: 0 8px 20px rgba(0,0,0,0.1);
border: 1px solid rgba(66,153,225,0.2);
}

.whylearnsection {
 padding: 90px 0;
background: #fff;
}

.sectionheader {
text-align: center;
 margin-bottom: 80px;
}

.sectionheader h2 {
 font-size: clamp(32px, 5vw, 46px);
margin-bottom: 20px;
 color: #2d3748;
font-weight: 700;
 line-height: 1.2;
}

.sectionheader p {
font-size: 20px;
 color: #718096;
max-width: 750px;
 margin: 0 auto;
line-height: 1.6;
}

.reasonsrow {
 display: flex;
flex-wrap: wrap;
 gap: 30px;
justify-content: center;
}

.reasonitem {
flex: 1;
 min-width: 360px;
max-width: 400px;
}

.reasoncard {
 background: linear-gradient(145deg, #f7fafc, #edf2f7);
padding: 40px 32px;
 border-radius: 18px;
text-align: left;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
box-shadow: 0 8px 25px rgba(0,0,0,0.08);
 height: 100%;
border-left: 5px solid #48bb78;
 position: relative;
overflow: hidden;
}

.reasoncard::before {
 content: '';
position: absolute;
 top: 0;
right: 0;
 width: 100px;
height: 100px;
 background: radial-gradient(circle, rgba(72,187,120,0.1) 0%, transparent 70%);
transform: translate(30px, -30px);
}

.reasoncard:hover {
transform: translateY(-8px) scale(1.02);
 box-shadow: 0 15px 35px rgba(72,187,120,0.2);
background: #fff;
 border-left-color: #38a169;
}

.reasoncard h3 {
 font-size: 24px;
margin-bottom: 18px;
 color: #2d3748;
font-weight: 600;
 line-height: 1.3;
position: relative;
 z-index: 2;
}

.reasoncard p {
color: #4a5568;
 font-size: 16px;
line-height: 1.8;
 margin: 0;
position: relative;
 z-index: 2;
}

.ctasection {
padding: 100px 0;
 background: linear-gradient(135deg, #1a202c 0%, #2d3748 50%, #4a5568 100%);
position: relative;
 overflow: hidden;
}

.ctasection::before {
content: '';
 position: absolute;
top: 0;
 left: 0;
right: 0;
 bottom: 0;
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="%234299E1" fill-opacity="0.1"></path></svg>') top/cover no-repeat;
}

.ctaoverlay {
position: absolute;
 top: 0;
left: 0;
 right: 0;
bottom: 0;
 background: radial-gradient(ellipse at center, rgba(66,153,225,0.3) 0%, rgba(49,130,206,0.6) 100%);
z-index: 1;
}

.ctacontent {
 text-align: center;
color: #fff;
 position: relative;
z-index: 2;
}

.ctaheader h2 {
font-size: clamp(32px, 5vw, 52px);
 font-weight: 700;
margin-bottom: 25px;
 line-height: 1.2;
text-transform: uppercase;
 text-shadow: 0 4px 8px rgba(0,0,0,0.3);
letter-spacing: -0.5px;
}

.ctaheader p {
 font-size: clamp(18px, 3vw, 22px);
margin-bottom: 45px;
 opacity: 0.95;
max-width: 750px;
 margin-left: auto;
margin-right: auto;
 line-height: 1.6;
text-shadow: 0 2px 4px rgba(0,0,0,0.2);
 font-weight: 300;
}

.ctabuttons {
display: flex;
 gap: 30px;
justify-content: center;
 flex-wrap: wrap;
margin-bottom: 40px;
}

.ctabtn {
padding: 20px 40px;
 text-decoration: none;
border-radius: 12px;
 font-size: 18px;
font-weight: 600;
 transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
display: inline-block;
 min-width: 220px;
text-align: center;
 position: relative;
overflow: hidden;
 letter-spacing: 0.5px;
}

.ctabtn::before {
content: '';
 position: absolute;
top: 0;
 left: -100%;
width: 100%;
 height: 100%;
transition: left 0.4s ease;
 z-index: -1;
}

.ctabtn.primary {
 background: linear-gradient(135deg, #48bb78, #38a169);
color: #fff;
 border: 2px solid #48bb78;
box-shadow: 0 8px 20px rgba(72,187,120,0.3);
}

.ctabtn.primary::before {
background: linear-gradient(135deg, #38a169, #2f855a);
}

.ctabtn.primary:hover::before {
left: 0;
}

.ctabtn.primary:hover {
 transform: translateY(-3px);
box-shadow: 0 12px 30px rgba(72,187,120,0.4);
}

.ctabtn.secondary {
 background: rgba(255,255,255,0.1);
color: #fff;
 border: 2px solid rgba(255,255,255,0.3);
backdrop-filter: blur(10px);
 box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.ctabtn.secondary::before {
background: rgba(255,255,255,0.2);
}

.ctabtn.secondary:hover::before {
 left: 0;
}

.ctabtn.secondary:hover {
transform: translateY(-3px);
 box-shadow: 0 12px 30px rgba(255,255,255,0.2);
}

.ctainfo {
font-size: 17px;
 opacity: 0.9;
}

.ctainfo p {
margin: 0;
 font-weight: 500;
letter-spacing: 0.5px;
}

.bottomblock {
 background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
color: #fff;
 padding: 70px 0 30px;
position: relative;
}

.bottomblock::before {
 content: '';
position: absolute;
 top: -1px;
left: 0;
 right: 0;
height: 60px;
 background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%231A202C"></path></svg>') bottom/cover no-repeat;
}

.footercontent {
display: flex;
 justify-content: space-between;
gap: 50px;
 margin-bottom: 40px;
flex-wrap: wrap;
 position: relative;
z-index: 2;
}

.footerinfo {
 flex: 1;
min-width: 280px;
}

.companyinfo h4 {
font-size: 22px;
 margin-bottom: 18px;
color: #48bb78;
 font-weight: 600;
}

.companyinfo p {
 margin-bottom: 12px;
line-height: 1.6;
 color: #cbd5e0;
font-size: 15px;
}

.footerlinks {
display: flex;
 gap: 50px;
flex-wrap: wrap;
}

.linkgroup {
 min-width: 160px;
}

.linkgroup h5 {
font-size: 18px;
 margin-bottom: 18px;
color: #48bb78;
 font-weight: 600;
}

.linkgroup ul {
 list-style: none;
}

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

.linkgroup ul li a {
 color: #a0aec0;
text-decoration: none;
 transition: all 0.3s ease;
font-size: 15px;
 position: relative;
}

.linkgroup ul li a::before {
content: '';
 position: absolute;
bottom: -2px;
 left: 0;
width: 0;
 height: 1px;
background: #48bb78;
 transition: width 0.3s ease;
}

.linkgroup ul li a:hover::before {
 width: 100%;
}

.linkgroup ul li a:hover {
color: #48bb78;
 transform: translateX(5px);
}

.copyrightarea {
 border-top: 1px solid #4a5568;
padding-top: 25px;
 text-align: center;
position: relative;
 z-index: 2;
}

.copyrightarea p {
color: #a0aec0;
 font-size: 14px;
letter-spacing: 0.5px;
}

@media (max-width: 768px) {
.mainmenu {
display: none;
 position: absolute;
top: 100%;
 left: 0;
right: 0;
 background: rgba(26,32,44,0.98);
backdrop-filter: blur(10px);
 flex-direction: column;
padding: 20px;
 gap: 0;
border-radius: 0 0 15px 15px;
}

.mainmenu.active {
 display: flex;
}

.mainmenu li {
margin-bottom: 8px;
}

.mainmenu li a {
 display: block;
padding: 15px 10px;
 border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobilemenu {
display: flex;
}

.mobilemenu.active .menuline:nth-child(1) {
 transform: rotate(-45deg) translate(-5px, 6px);
}

.mobilemenu.active .menuline:nth-child(2) {
opacity: 0;
}

.mobilemenu.active .menuline:nth-child(3) {
 transform: rotate(45deg) translate(-5px, -6px);
}

.sectionrow {
flex-direction: column;
}

.imagecol,
.contentcol {
 min-width: auto;
}

.aboutimage {
transform: none;
}

.contentwrap h2 {
 font-size: 28px;
}

.tabnav {
flex-direction: column;
}

.tablink {
text-align: center;
}

.servicesrow {
flex-direction: column;
 align-items: center;
}

.serviceitem {
max-width: 100%;
}

.mainrow {
flex-direction: column;
}

.imageside,
.contentside {
 min-width: auto;
}

.contentside {
padding-left: 0;
 border-radius: 0;
}

.contentwrap {
padding: 40px 20px;
}

.aboutimg {
border-radius: 15px 15px 0 0;
}

.aboutimg img {
min-height: 300px;
}

.reasonsrow {
flex-direction: column;
 align-items: center;
}

.reasonitem {
max-width: 100%;
 min-width: auto;
}

.ctabuttons {
flex-direction: column;
 align-items: center;
}

.ctabtn {
min-width: 280px;
}

.footercontent {
flex-direction: column;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}

.navcontainer {
 padding: 0 15px;
}

.reasoncard {
padding: 30px 24px;
}
}


.pricingarea {
    padding: 90px 0;
background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sectiontop {
    margin-bottom: 70px;
text-align: center;
}

.sectiontop h2 {
    color: #2d3748;
font-size: clamp(32px, 5vw, 42px);
  font-weight: 600;
margin-bottom: 15px;
  line-height: 1.2;
}

.sectiontop p {
    color: #718096;
font-size: 18px;
  font-weight: 400;
max-width: 600px;
  margin: 0 auto;
line-height: 1.5;
}

.pricingrow {
  display: flex;
flex-wrap: wrap;
  gap: 30px;
justify-content: center;
}

.pricingcol {
  flex: 1;
min-width: 300px;
  max-width: 350px;
}

.singletable {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
padding-bottom: 35px;
  background: #fff;
border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
margin-bottom: 25px;
  position: relative;
overflow: hidden;
}

.singletable::before {
  content: '';
position: absolute;
  top: 0;
left: 0;
  right: 0;
height: 4px;
  background: linear-gradient(90deg, #48bb78, #38a169);
transform: scaleX(0);
  transition: transform 0.3s ease;
}

.singletable:hover::before {
transform: scaleX(1);
}

.singletable:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
transform: translateY(-8px);
}

.singletable:hover .tabletop {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.singletable:hover .tabletop h3 {
    color: #fff;
}

.singletable:hover .tabletop h2 {
  color: #fff;
}

.singletable.featured {
    transform: scale(1.05);
border: 2px solid #48bb78;
}

.singletable.featured::before {
  transform: scaleX(1);
}

.singletable.featured .tabletop {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.singletable.featured .tabletop h3,
.singletable.featured .tabletop h2 {
    color: #fff;
}

.tabletop {
    background: #f7fafc;
padding: 50px 20px;
  border-bottom: 1px solid #e2e8f0;
transition: all 0.4s ease;
  border-radius: 15px 15px 0 0;
text-align: center;
}

.tabletop h3 {
    color: #2d3748;
font-size: 22px;
  font-weight: 600;
text-transform: capitalize;
  margin-bottom: 18px;
transition: color 0.3s ease;
}

.tabletop h2 {
    color: #2d3748;
font-size: 44px;
  font-weight: 700;
margin: 0;
  transition: color 0.3s ease;
}

.tabletop h2 span {
    font-size: 16px;
font-weight: 400;
  color: #718096;
}

.tablecontent {
    padding: 35px 25px 20px;
}

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

.tablecontent ul li {
    color: #4a5568;
font-size: 15px;
  font-weight: 400;
padding: 14px 0;
  border-bottom: 1px solid rgba(226,232,240,0.8);
text-align: center;
  position: relative;
}

.tablecontent ul li::before {
content: '✓';
  position: absolute;
left: 20px;
  color: #48bb78;
font-weight: bold;
}

.tablecontent ul li:last-child {
    border-bottom: none;
}

.tablebtn {
  text-align: center;
}

.templatebtn {
    color: #2d3748;
background: #f7fafc;
  font-size: 14px;
font-weight: 600;
  display: inline-block;
padding: 16px 32px;
  border-radius: 8px;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
border: 2px solid #e2e8f0;
  cursor: pointer;
text-transform: uppercase;
  letter-spacing: 0.5px;
position: relative;
  overflow: hidden;
}

.templatebtn::before {
content: '';
  position: absolute;
top: 0;
  left: -100%;
width: 100%;
  height: 100%;
background: linear-gradient(90deg, #48bb78, #38a169);
  transition: left 0.3s ease;
z-index: -1;
}

.templatebtn:hover::before {
left: 0;
}

.templatebtn:hover {
    color: #fff;
transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(72,187,120,0.3);
}

.singletable.featured .templatebtn {
background: #fff;
  color: #2d3748;
border-color: #fff;
  font-weight: bold;
}

.singletable.featured .templatebtn::before {
  background: linear-gradient(90deg, #2d3748, #4a5568);
}

.singletable.featured .templatebtn:hover {
color: #fff;
  transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(45,55,72,0.3);
}

@media (max-width: 991px) {
    .singletable.featured {
        transform: none;
margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .pricingarea {
        padding: 70px 0;
    }
    
    .pricingrow {
      flex-direction: column;
align-items: center;
    }
    
    .pricingcol {
      max-width: 100%;
    }
    
    .tabletop h2 {
        font-size: 36px;
    }
    
    .tablecontent {
      padding: 30px 20px 15px;
    }
}

@media (max-width: 480px) {
.sectiontop {
  margin-bottom: 50px;
}

.tabletop {
  padding: 40px 15px;
}

.templatebtn {
  padding: 14px 28px;
}
}

.cookiealert {
  position: fixed;
bottom: 0;
  left: 0;
right: 0;
  background: rgba(45,55,72,0.95);
backdrop-filter: blur(10px);
  padding: 20px;
z-index: 9999;
  display: none;
border-top: 3px solid #48bb78;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
from {
  transform: translateY(100%);
}
  to {
  transform: translateY(0);
  }
}

.cookiecontent {
  max-width: 1200px;
margin: 0 auto;
  display: flex;
align-items: center;
  justify-content: space-between;
gap: 20px;
  flex-wrap: wrap;
}

.cookietext {
flex: 1;
  min-width: 300px;
}

.cookietext p {
  color: #fff;
font-size: 14px;
  line-height: 1.5;
margin: 0;
}

.cookietext a {
  color: #68d391;
text-decoration: underline;
  transition: color 0.3s ease;
}

.cookietext a:hover {
color: #48bb78;
}

.cookiebutton {
  flex-shrink: 0;
}

.acceptbtn {
background: linear-gradient(135deg, #48bb78, #38a169);
  color: #fff;
border: none;
  padding: 12px 24px;
border-radius: 6px;
  font-size: 14px;
font-weight: 600;
  cursor: pointer;
transition: all 0.3s ease;
  text-transform: uppercase;
letter-spacing: 0.5px;
}

.acceptbtn:hover {
  background: linear-gradient(135deg, #38a169, #2f855a);
transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(72,187,120,0.3);
}

@media (max-width: 768px) {
.cookiecontent {
  flex-direction: column;
text-align: center;
}

.cookietext {
  min-width: auto;
}

.cookietext p {
  font-size: 13px;
}

.acceptbtn {
  width: 100%;
max-width: 200px;
  padding: 14px 20px;
}
}

@media (max-width: 480px) {
.cookiealert {
  padding: 15px;
}

.cookietext p {
  font-size: 12px;
}
}

.storypage {
padding: 130px 0 70px;
  background: #fafafa;
}

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

.storytitle h1 {
  font-size: 44px;
color: #333;
  font-weight: normal;
margin: 0;
  letter-spacing: -1px;
}

.mainphoto {
  text-align: center;
margin-bottom: 60px;
}

.mainphoto img {
width: 70%;
  max-width: 600px;
height: auto;
  border: 8px solid #fff;
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.storytext {
  max-width: 750px;
margin: 0 auto;
}

.bigtext {
  font-size: 22px;
color: #444;
  line-height: 1.6;
margin-bottom: 30px;
  font-weight: 300;
text-align: center;
  font-style: italic;
}

.storytext p {
font-size: 17px;
  color: #555;
line-height: 1.8;
  margin-bottom: 20px;
text-align: left;
}

.numberbox {
display: flex;
  justify-content: space-around;
background: #fff;
  padding: 40px 20px;
margin: 50px 0;
  border-left: 5px solid #4CAF50;
}

.numberitem {
text-align: center;
}

.number {
  display: block;
font-size: 32px;
  font-weight: bold;
color: #4CAF50;
  margin-bottom: 5px;
}

.numberlabel {
font-size: 14px;
  color: #777;
text-transform: uppercase;
  letter-spacing: 1px;
}

.goalssection {
margin: 60px 0;
}

.goalssection h2 {
  font-size: 28px;
color: #333;
  margin-bottom: 35px;
text-align: center;
  font-weight: normal;
}

.goallist {
display: grid;
  grid-template-columns: 1fr;
gap: 25px;
}

.goalitem {
background: #fff;
  padding: 25px;
border-left: 4px solid #4CAF50;
}

.goalitem h3 {
  font-size: 20px;
color: #333;
  margin-bottom: 10px;
font-weight: 600;
}

.goalitem p {
  margin: 0;
font-size: 16px;
  color: #666;
line-height: 1.6;
}

.finaltext {
  margin: 50px 0;
background: #f0f0f0;
  padding: 30px;
border-radius: 0;
}

.ctabox {
text-align: center;
  margin-top: 50px;
}

.storybutton {
  background: #4CAF50;
color: #fff;
  padding: 18px 40px;
font-size: 16px;
  text-decoration: none;
display: inline-block;
  border: none;
font-weight: 600;
  transition: background 0.3s ease;
}

.storybutton:hover {
background: #45a049;
}

@media (max-width: 768px) {
.storypage {
  padding: 110px 0 50px;
}

.storytitle h1 {
  font-size: 34px;
}

.mainphoto img {
  width: 90%;
}

.storytext {
  padding: 0 20px;
}

.bigtext {
  font-size: 19px;
}

.storytext p {
  font-size: 16px;
}

.numberbox {
  flex-direction: column;
gap: 20px;
}

.goallist {
  gap: 20px;
}

.goalitem {
  padding: 20px;
}
}

@media (max-width: 480px) {
.storytitle h1 {
  font-size: 28px;
}

.mainphoto img {
  width: 95%;
border-width: 4px;
}

.bigtext {
  font-size: 17px;
}

.storytext p {
  font-size: 15px;
}

.number {
  font-size: 24px;
}

.storybutton {
  width: 90%;
}
}

.coursespage {
padding: 130px 0 80px;
  background: #f5f5f5;
}

.pageheader {
text-align: center;
  margin-bottom: 40px;
}

.pageheader h1 {
  font-size: 42px;
color: #222;
  margin-bottom: 15px;
font-weight: 400;
}

.pageheader p {
font-size: 18px;
  color: #666;
margin: 0;
}

.heroimg {
  text-align: center;
margin-bottom: 60px;
}

.heroimg img {
  width: 60%;
max-width: 500px;
  height: auto;
border: 6px solid #ddd;
}

.coursesgrid {
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
gap: 30px;
  margin-bottom: 70px;
}

.coursecard {
background: #fff;
  padding: 0;
border: 1px solid #e0e0e0;
  position: relative;
}

.coursecard.beginner {
  border-top: 6px solid #4CAF50;
}

.coursecard.intermediate {
border-top: 6px solid #FF9800;
}

.coursecard.advanced {
  border-top: 6px solid #F44336;
}

.courselevel {
position: absolute;
  top: -1px;
right: 20px;
  padding: 8px 15px;
font-size: 12px;
  font-weight: bold;
text-transform: uppercase;
  color: #fff;
}

.beginner .courselevel {
  background: #4CAF50;
}

.intermediate .courselevel {
background: #FF9800;
}

.advanced .courselevel {
  background: #F44336;
}

.coursecard h3 {
  font-size: 24px;
color: #333;
  margin: 30px 25px 15px 25px;
font-weight: 600;
}

.courseprice {
  font-size: 32px;
color: #333;
  font-weight: bold;
margin: 0 25px 20px 25px;
}

.coursedetails {
padding: 0 25px 25px 25px;
}

.coursedetails p {
  font-size: 16px;
color: #555;
  line-height: 1.6;
margin-bottom: 20px;
}

.coursefacts {
display: flex;
  flex-direction: column;
gap: 8px;
  margin-bottom: 25px;
}

.coursefacts span {
font-size: 14px;
  color: #777;
background: #f8f8f8;
  padding: 6px 12px;
}

.coursebutton {
  display: block;
background: #333;
  color: #fff;
text-align: center;
  padding: 15px;
text-decoration: none;
  font-weight: 600;
transition: background 0.3s ease;
}

.coursebutton:hover {
  background: #555;
}

.infobox {
background: #fff;
  padding: 40px;
border: 1px solid #ddd;
  margin-bottom: 50px;
}

.infobox h2 {
  font-size: 28px;
color: #333;
  margin-bottom: 25px;
font-weight: 400;
}

.infotext p {
  font-size: 16px;
color: #555;
  line-height: 1.7;
margin-bottom: 18px;
}

.nextcourses {
background: #333;
  color: #fff;
padding: 40px;
}

.nextcourses h2 {
  font-size: 26px;
margin-bottom: 30px;
  font-weight: 400;
color: #fff;
}

.datelist {
display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
}

.dateitem {
  padding: 20px;
background: rgba(255,255,255,0.1);
  text-align: center;
}

.date {
display: block;
  font-size: 20px;
font-weight: bold;
  margin-bottom: 8px;
color: #4CAF50;
}

.course {
  font-size: 14px;
color: #ccc;
}

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

.pageheader h1 {
  font-size: 32px;
}

.heroimg img {
  width: 80%;
}

.coursesgrid {
  grid-template-columns: 1fr;
gap: 25px;
}

.infobox {
  padding: 25px;
}

.nextcourses {
  padding: 25px;
}

.datelist {
  grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.pageheader h1 {
  font-size: 28px;
}

.heroimg img {
  width: 95%;
border-width: 3px;
}

.coursecard h3 {
  font-size: 20px;
margin: 25px 20px 12px 20px;
}

.courseprice {
  font-size: 28px;
margin: 0 20px 15px 20px;
}

.coursedetails {
  padding: 0 20px 20px 20px;
}

.coursefacts {
  gap: 6px;
}

.coursefacts span {
  font-size: 13px;
padding: 5px 10px;
}
}

.teacherspage {
padding: 130px 0 80px;
  background: #f8f8f8;
}

.pageheader {
text-align: center;
  margin-bottom: 40px;
}

.pageheader h1 {
  font-size: 42px;
color: #222;
  margin-bottom: 15px;
font-weight: 400;
}

.pageheader p {
font-size: 18px;
  color: #666;
margin: 0;
}

.heroimg {
  text-align: center;
margin-bottom: 60px;
}

.heroimg img {
  width: 55%;
max-width: 450px;
  height: auto;
border: 5px solid #ccc;
}

.teamgrid {
  display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
margin-bottom: 70px;
}

.teachercard {
  background: #fff;
padding: 30px;
  border: 1px solid #ddd;
border-left: 5px solid #4CAF50;
}

.teachercard h3 {
  font-size: 22px;
color: #333;
  margin-bottom: 10px;
font-weight: 600;
}

.expertise {
  font-size: 14px;
color: #4CAF50;
  font-weight: bold;
text-transform: uppercase;
  margin-bottom: 15px;
letter-spacing: 1px;
}

.teachercard p {
  font-size: 15px;
color: #555;
  line-height: 1.6;
margin-bottom: 20px;
}

.teachingarea {
font-size: 13px;
  color: #777;
background: #f5f5f5;
  padding: 10px;
border-left: 3px solid #eee;
}

.teachingphilosophy {
  background: #fff;
padding: 40px;
  border: 1px solid #ddd;
margin-bottom: 50px;
}

.teachingphilosophy h2 {
font-size: 28px;
  color: #333;
margin-bottom: 25px;
  font-weight: 400;
}

.philosophytext p {
font-size: 16px;
  color: #555;
line-height: 1.7;
  margin-bottom: 18px;
}

.qualifications {
  background: #333;
color: #fff;
  padding: 40px;
}

.qualifications h2 {
font-size: 26px;
  margin-bottom: 30px;
font-weight: 400;
  color: #fff;
}

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

.qualitem {
  background: rgba(255,255,255,0.1);
padding: 20px;
}

.qualtitle {
  display: block;
font-size: 16px;
  font-weight: bold;
margin-bottom: 8px;
  color: #4CAF50;
}

.qualdetail {
font-size: 14px;
  color: #ccc;
line-height: 1.5;
}

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

.pageheader h1 {
  font-size: 32px;
}

.heroimg img {
  width: 75%;
}

.teamgrid {
  grid-template-columns: 1fr;
gap: 20px;
}

.teachercard {
  padding: 25px;
}

.teachingphilosophy {
  padding: 30px;
}

.qualifications {
  padding: 30px;
}

.quallist {
  grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.pageheader h1 {
  font-size: 28px;
}

.heroimg img {
  width: 90%;
border-width: 3px;
}

.teachercard {
  padding: 20px;
}

.teachercard h3 {
  font-size: 20px;
}

.teachingphilosophy {
  padding: 20px;
}

.qualifications {
  padding: 20px;
}

.qualitem {
  padding: 15px;
}
}

.workpage {
padding: 150px 0 100px;
  background: #fff;
}

.worktitle {
text-align: center;
  margin-bottom: 80px;
}

.worktitle h1 {
  font-size: 48px;
color: #2c2c2c;
  font-weight: 300;
margin: 0;
}

.workcontent {
  max-width: 700px;
margin: 0 auto;
  padding: 0 20px;
}

.intro {
  font-size: 22px;
color: #555;
  line-height: 1.7;
margin-bottom: 40px;
  font-style: italic;
text-align: center;
}

.workcontent p {
font-size: 18px;
  color: #444;
line-height: 1.8;
  margin-bottom: 25px;
}

.workcontent h2 {
  font-size: 32px;
color: #333;
  margin: 50px 0 30px 0;
font-weight: 400;
  text-align: center;
}

@media (max-width: 768px) {
.workpage {
  padding: 120px 0 80px;
}

.worktitle h1 {
  font-size: 36px;
}

.intro {
  font-size: 19px;
}

.workcontent p {
  font-size: 16px;
}

.workcontent h2 {
  font-size: 26px;
margin: 40px 0 25px 0;
}
}

@media (max-width: 480px) {
.worktitle h1 {
  font-size: 30px;
}

.intro {
  font-size: 17px;
}

.workcontent p {
  font-size: 15px;
margin-bottom: 20px;
}

.workcontent h2 {
  font-size: 24px;
}
}

.contactpage {
padding: 130px 0 80px;
  background: #f9f9f9;
}

.contactheader {
text-align: center;
  margin-bottom: 60px;
}

.contactheader h1 {
  font-size: 42px;
color: #222;
  margin-bottom: 15px;
font-weight: 400;
}

.contactheader p {
font-size: 18px;
  color: #666;
margin: 0;
}

.contactcontent {
  display: flex;
gap: 50px;
  flex-wrap: wrap;
}

.contactform {
flex: 2;
  background: #fff;
padding: 40px;
  border: 1px solid #ddd;
}

.contactform h2 {
  font-size: 28px;
color: #333;
  margin-bottom: 30px;
font-weight: 400;
}

.formrow {
  margin-bottom: 20px;
display: flex;
  gap: 15px;
flex-wrap: wrap;
}

.formrow input,
.formrow select,
.formrow textarea {
  flex: 1;
min-width: 200px;
  padding: 15px;
border: 2px solid #e0e0e0;
  font-size: 16px;
background: #fff;
  color: #333;
}

.formrow textarea {
  flex: 100%;
min-width: 100%;
  resize: vertical;
}

.formrow input:focus,
.formrow select:focus,
.formrow textarea:focus {
  border-color: #4CAF50;
outline: none;
}

.submitbtn {
  background: #4CAF50;
color: #fff;
  padding: 18px 40px;
font-size: 16px;
  border: none;
cursor: pointer;
  font-weight: 600;
transition: background 0.3s ease;
}

.submitbtn:hover {
  background: #45a049;
}

.contactinfo {
flex: 1;
  background: #fff;
padding: 40px;
  border: 1px solid #ddd;
}

.contactinfo h2 {
  font-size: 28px;
color: #333;
  margin-bottom: 30px;
font-weight: 400;
}

.infoblock {
  margin-bottom: 30px;
}

.infoblock h3 {
font-size: 18px;
  color: #4CAF50;
margin-bottom: 10px;
  font-weight: 600;
}

.infoblock p {
font-size: 15px;
  color: #555;
line-height: 1.6;
  margin: 0;
}

.thankyoupopup {
  position: fixed;
top: 0;
  left: 0;
right: 0;
  bottom: 0;
background: rgba(0,0,0,0.8);
  display: none;
z-index: 10000;
  align-items: center;
justify-content: center;
}

.popupcontent {
  background: #fff;
padding: 40px;
  text-align: center;
max-width: 400px;
  border-radius: 8px;
}

.popupcontent h3 {
font-size: 24px;
  color: #4CAF50;
margin-bottom: 15px;
}

.popupcontent p {
  font-size: 16px;
color: #555;
  margin-bottom: 25px;
line-height: 1.6;
}

.closebtn {
background: #333;
  color: #fff;
padding: 12px 30px;
  border: none;
cursor: pointer;
  font-size: 16px;
transition: background 0.3s ease;
}

.closebtn:hover {
  background: #555;
}

.success {
  color: #4CAF50;
font-size: 18px;
  text-align: center;
padding: 40px;
  font-weight: 600;
}

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

.contactheader h1 {
  font-size: 32px;
}

.contactcontent {
  flex-direction: column;
gap: 30px;
}

.contactform,
.contactinfo {
  padding: 30px;
}

.formrow {
  flex-direction: column;
}

.formrow input,
.formrow select,
.formrow textarea {
  min-width: 100%;
}
}

@media (max-width: 480px) {
.contactheader h1 {
  font-size: 28px;
}

.contactform,
.contactinfo {
  padding: 20px;
}

.contactform h2,
.contactinfo h2 {
  font-size: 24px;
}

.submitbtn {
  width: 100%;
}

.popupcontent {
  margin: 20px;
padding: 30px;
}
}

.blogpage {
padding: 200px 0 200px;
  background: #fafafa;
}

.blogtitle {
text-align: center;
  margin-bottom: 100px;
}

.blogtitle h1 {
  font-size: 50px;
color: #333;
  font-weight: 300;
margin: 0;
}

.blogcontent {
  text-align: center;
}

.comingsoon {
background: #fff;
  padding: 80px 40px;
border: 1px solid #e0e0e0;
  max-width: 500px;
margin: 0 auto;
}

.comingsoon p {
  font-size: 24px;
color: #777;
  margin: 0;
font-style: italic;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
.blogpage {
  padding: 150px 0 150px;
}

.blogtitle h1 {
  font-size: 38px;
}

.comingsoon {
  padding: 60px 30px;
}

.comingsoon p {
  font-size: 20px;
}
}

@media (max-width: 480px) {
.blogpage {
  padding: 120px 0 120px;
}

.blogtitle h1 {
  font-size: 32px;
}

.comingsoon {
  padding: 40px 20px;
margin: 0 20px;
}

.comingsoon p {
  font-size: 18px;
}
}