:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --border-color: #e0e0e0;
}

* {


    margin: 0;
    padding: 0;
  box-sizing: border-box;
}

html, body {
      height: 100%;
  font-family: 'Roboto', sans-serif;
  scroll-behavior: smooth;
}

body {
  background-color: var(--light-bg);

	  color: var(--text-dark);

	 line-height: 1.6;
}

.container {
  max-width: 1200px;
	margin: 0 auto;
    padding  :   0 15px;
}

.navbar-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   position: sticky;
   top: 0;
          z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	
}

.nav-container {
    max-width:1200px;
   margin: 0 auto;
  padding: 0 15px;
    display: flex;
   justify-content: space-between;
   align-items: center;
  height: 70px;
}

.nav-logo a {
  display: flex;
    align-items: center;
          text-decoration: none;
}

.logo-image {
    height: 114px;
   width   :auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
  display: flex;
  gap: 35px;
    align-items: center;
  list-style: none;
}

.nav-link {
  color: var(--text-light);
    text-decoration: none;
  font-weight: 500;
    font-size: 15px;
   position: relative;
   transition: all 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link.active::after {
  content: '';
  position: absolute;
   bottom: -5px;
   left: 0;
                    width: 100%;
   height: 3px;
   background: #fff;
   border-radius  :   2px;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.2);
   padding: 8px 20px;
  border-radius: 25px;
	transition: all 0.3s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hamburger {
    display: none;
	flex-direction: column;
   cursor: pointer;
  gap: 6px;
}

.hamburger span {
    width: 28px; 
	   height: 3px; 
	  background: var(--text-light); 
	  border-radius: 2px; 
	   transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-link.active::after {
        display: none;
    }
}.hero-section {
	padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-title {
  font-size: 48px;
   font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
	line-height :       1.2;
}

.hero-subtitle {
     font-size: 18px;
   color: #555;
    margin-bottom: 30px;
  line-height: 1.8;
}

.button-group {
        display: flex;
    gap: 20px;
     flex-wrap: wrap;
}

.btn-primary {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 12px 30px !important;
    border-radius: 5px;
          text-transform: none;
   font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
    padding    :10px 28px !important;
  border-radius: 5px;
    text-transform: none;
          font-weight: 600;
   transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: var(--primary-color);
    color: white;
  transform: translateY(-2px);
} 

.hero-image {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
        text-align: center;
    }
}.stats-section {
    padding: 60px 0;
  background: var(--dark-bg);
  color: var(--text-light);
}

.stat-box {
    text-align: center;
  padding     :       30px;
}

.stat-number {
  font-size: 48px;
    font-weight: 700;
  color: var(--primary-color);
   margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #aaa;
    text-transform: uppercase;
        letter-spacing: 1px;
}

.section-title {
   font-size: 42px;
    font-weight: 700;
  color: var(--text-dark);
   margin-bottom: 10px;
   text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: #777;
    margin-bottom: 40px;
   text-align: center;
}

.services-preview    {
	  padding: 80px 0;
   background: white;
	}



.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
	}

.icon-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   width: 70px;
    height: 70px;
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
   margin: 0 auto 20px;
}

.icon-wrapper i {
    color: white;
    font-size:40px;
}

.service-card h3 {
  font-size: 20px;
  color: var(--text-dark);
    margin-bottom: 15px;
}

.service-card p {
    color: #666;

	   font-size: 15px;
}

.about-preview {


    padding: 80px 0;
  background: var(--light-bg);}

.section-image {
  width: 100%;
	    border-radius: 15px;
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	   margin-bottom: 30px;
}

.feature-list {
     list-style: none;
   margin-top: 30px; 
	

}

.feature-list li {
                    padding: 12px 0;
   padding-left: 30px;
  position     :    relative;
    color: #555;
   font-size: 16px;
}

.feature-list li:before {
  content: '';
   position: absolute;
               left: 0;
    top: 18px;
    width: 10px;
   height: 10px;
  background: var(--primary-color);
    border-radius: 50%;
}

.process-section {
    padding: 80px 0;
    background: white;
}

.process-card {

  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 40px 25px;
    border-radius: 10px;
   text-align: center;
  height: 100%;
  position   :  relative;
    transition: all 0.3s ease;}

.process-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
}

.process-card:hover .process-number {

	  color: white;}

.process-number {
    font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.process-card h3

{
  font-size: 18px;
    margin-bottom: 15px;
  color: var(--text-dark);
}

.process-card:hover h3 {
  color: white;
}

.process-card p {
	 font-size: 14px;
   color: #666;
}

.process-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.portfolio-section {
	padding: 80px 0;
  background: var(--light-bg);
}

.case-card {
  background: white;
  border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.case-image {
   width: 100%;
  height  :250px;
  object-fit: cover;
}

.case-card h3 {
  font-size: 18px;
  color: var(--text-dark);
   padding: 20px 20px 10px;
   margin: 0;
}

.case-card p  {
	padding: 0 20px;
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}


.team-section {
   padding: 80px 0;

	    background: white;
}

.team-card {
    text-align: center;
  transition: all 0.3s ease;
}

.team-image {
  width: 100%;
    height: 280px;
    object-fit: cover;
  border-radius: 10px;
                    margin-bottom: 20px;
}

.team-card h3 {
    font-size: 18px;
  color: var(--text-dark);
  margin-bottom  :        10px;
}

.team-card p {
    font-size: 14px;
    color: #666;
}

.coaching-section	{
	 padding: 80px 0;
  background: var(--light-bg);
}

.program-list {
  display   :     flex;
    flex-direction: column;
   gap:    25px;
  margin-top: 30px;
}

.program-item {
  display: flex;
         gap     :20px;
}

.program-item i  
  {
  color: var(--primary-color);
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 5px;
}

.program-item h4 {
               font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.program-item p {
     color: #666;
    font-size: 14px;}

.seminars-section {
      padding   :        80px 0;
    background: white;
}

.seminar-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 40px;
   border-radius: 10px;
    transition: all 0.3s ease;
}

.seminar-card:hover {
  transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.seminar-header

{


  display: flex;
    align-items: center;
    gap: 15px;
	 margin-bottom: 20px;}

.seminar-header i {
  color: var(--primary-color);
    font-size: 32px;
}

.seminar-date {
                    font-size: 14px;

	  color: #999;

		font-weight: 500;
}

.seminar-card h3 {
  font-size: 20px;
  color: var(--text-dark);
   margin-bottom: 15px;
}

.seminar-card p {
   color: #666;

    font-size: 14px;

  margin-bottom: 20px;
}

.btn-small {

  padding: 8px 20px !important;
  font-size: 14px;
     }

.testimonials-section {
   padding :   80px 0; 
  background: var(--light-bg);
}

.testimonial-card {
    background: white;
   padding: 30px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   height     :      100%;
}

.testimonial-card:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.testimonial-text {
   color: #555;
  font-style: italic;
   margin-bottom: 20px;
   font-size: 16px;
  line-height: 1.8;
}

.testimonial-author h4 {
    font-size: 16px;
  color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-author p {
   font-size: 13px;
    color: #999;
}

.blog-section {
  padding: 80px 0;
     background: white;
}

.blog-card {
   background: white;
  border-radius:  10px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.blog-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
     }

.blog-image {
    width: 100%;
  height  : 200px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card h3 {
   font-size: 18px;
  color: var(--text-dark);
	padding: 20px 20px 10px;
    margin: 0;
}

.blog-card p{
   padding: 0 20px;
    color: #666;
  font-size: 14px;
     margin-bottom: 15px;
}

.blog-date {
   display: block;
    padding: 0 20px 20px;
   font-size: 12px;
	color: #999;
}

.contact-section {
   padding: 80px 0;
  background: var(--light-bg);
}

.contact-form {
    background: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.input-field label {
  color: #999;
}

.input-field input:focus,
.input-field textarea:focus,
.input-field select:focus {
  border-bottom-color: var(--primary-color) !important;
  box-shadow: 0 1px 0 0 var(--primary-color) !important;
}

.input-field input.valid,
.input-field textarea.valid {
  border-bottom-color: var(--primary-color) !important;
}

.contact-form .btn {
	    width: 100%;
   margin-top:      20px;


}

.contact-info{
    background: white;
   padding: 40px;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3 
 {
   font-size: 24px;
  color: var(--text-dark);
    margin-bottom: 30px; 
	
}

.info-block {
  display: flex;
    gap  :20px;
   margin-bottom: 25px;
}

.info-block i {
  color: var(--primary-color);
  font-size: 28px;
  flex-shrink: 0;
}

.info-block h4 {
   font-size: 16px;
  color: var(--text-dark);
   margin-bottom: 5px;
}

.info-block p {
    color: #666;
   font-size: 14px;
    margin: 0;
}

.footer-section {
  background: var(--dark-bg);
  color: var(--text-light);
   padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.logo-footer-image {

	  height: 146px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {

    font-size    :   14px;
    color: #aaa;
    line-height: 1.8;
}

.footer-title {
   font-size: 18px;
    color: white;
  margin-bottom: 20px;
   font-weight     :   600;
}

.footer-links  
  {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
   color: #aaa;
   text-decoration  :    none;
   font-size: 14px;
   transition: color 0.3s ease;
}

.footer-links a:hover {
   color: white;
}

.footer-info
{
  font-size: 13px;
 color: #aaa;
  line-height: 1.8;
}

.footer-info p {
  margin-bottom: 10px;
}

.footer-bottom {
   border-top: 1px solid #333;
  padding-top  :        30px;
	margin-top: 30px;
   text-align: center;
}

.footer-copyright {
  font-size: 13px;
   color: #666; 

}
@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .hero-section {
        padding: 50px 0;
    }

    .stats-section,
    .services-preview,
    .about-preview,
    .process-section,
    .portfolio-section,
    .team-section,
    .coaching-section,
    .seminars-section,
    .testimonials-section,
    .blog-section,
    .contact-section {
        padding: 50px 0;
    }

    .contact-form,
    .contact-info {
        padding: 25px;
    }

    .seminar-card,
    .process-card {
        padding: 25px;
    }

    .footer-section {
        padding: 40px 0 20px;
    }
}#coaching-fundamentals {
    padding   :       80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

#coaching-fundamentals .section-heading {
    font-size: 42px;
   font-weight: 700;
  color: #2c3e50;
    margin-bottom: 20px;
}

#coaching-fundamentals .section-text {
                    font-size  :  16px;
    color: #555;
    line-height: 1.8;
   margin-bottom: 20px;
}

.fundamentals-list {
  margin: 30px 0;

    list-style: none;
}

.fundamentals-list li {
   padding: 12px 0 12px 35px;
   position: relative;
  color: #555;
   font-size: 15px;
  line-height: 1.6;
}

.fundamentals-list li:before  
  {
  content: '→';
   position: absolute;
   left: 0;
    color: #667eea;
  font-weight: bold;
  font-size: 18px;
}

.fundamentals-image {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

#coaching-benefits {
  padding: 80px 0;
  background: white;
}

#coaching-benefits .section-heading.centered {
   text-align:    center;
    font-size: 42px;
  font-weight: 700;
   color: #2c3e50;
}

#coaching-benefits .section-subtitle {
  text-align: center;
  font-size: 18px;
    color: #777;
   margin-bottom: 50px;
} 

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 30px;
}

.benefit-card {
	  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
   padding: 35px;
  border-radius: 12px;
          transition: all 0.3s ease;
   border-left: 5px solid transparent;
     }

.benefit-card:nth-child(1) {
	   border-left-color: #667eea;}

.benefit-card:nth-child(2) {
	border-left-color   :        #764ba2; 

}

.benefit-card:nth-child(3) {
  border-left-color     : #f093fb;
}

.benefit-card:nth-child(4) {
   border-left-color: #667eea;
}

.benefit-card:nth-child(5) {


   border-left-color: #764ba2;


}

.benefit-card:nth-child(6) {
   border-left-color: #f093fb;
}



.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  background: white;
}

.benefit-card h3 {
   font-size:     20px;
   color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefit-card p {
  font-size: 15px;
   color: #666;
  line-height: 1.7;
}

#coaching-methodology {
  padding     : 80px 0;
  background: var(--light-bg);
}

#coaching-methodology .section-heading {
   font-size: 42px;
   font-weight: 700;
  color: #2c3e50;
    margin-bottom: 30px;
}

#coaching-methodology .section-text {
    line-height     :1.8;
    margin-bottom: 20px;
  color: #555;
  font-size: 16px;
}

.methodology-image	{
		 width: 100%;
       border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px; 


}

.methodology-step {
      background: white;
   padding: 25px;
   margin-bottom: 20px;
   border-radius: 8px;
	 border-left   :      4px solid #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
     }

.methodology-step:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.methodology-step h4 {
   font-size: 17px;
   color: #2c3e50;
      margin-bottom: 12px;
  font-weight: 600;
}

.methodology-step p {

	   margin: 0;
   font-size: 15px;
	color: #666;
    line-height     :       1.7;

}

#executive-coaching {
   padding: 80px 0;
      background: white;
}

#executive-coaching .section-heading.centered {
    text-align: center;
    font-size: 42px;
   font-weight: 700;
  color: #2c3e50;

} 

#executive-coaching .section-subtitle {


    text-align: center;
  font-size   :        18px;
    color: #777;
  margin-bottom   :    50px;
}

.coaching-program-card {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding   : 40px;
	 border-radius: 12px;
  color: white;
  transition: all 0.3s ease;
  text-align: center;
               height: 100%;
   display: flex;
   flex-direction   :column;
   justify-content     :   space-between;
}

.coaching-program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(102, 126, 234, 0.3);
}

.coaching-program-card h3 {
	font-weight: 600;
    margin-bottom: 15px;
      font-size: 22px;
}

.coaching-program-card p {
    font-size: 15px;
	 line-height  :      1.7;
  color: rgba(255, 255, 255, 0.95);
}

#team-coaching {
  padding: 80px 0;
  background: var(--light-bg);
}

#team-coaching .section-heading {
    font-size: 42px;
    font-weight    :      700;
	color: #2c3e50;
     margin-bottom: 20px;
}

#team-coaching .section-text {
  font-size: 16px;
    color     :  #555;
   line-height: 1.8;
   margin-bottom: 20px;
}

.coaching-subheading {
    font-size: 19px;
   color: #2c3e50;
   margin: 25px 0 15px;
	 font-weight: 600;
}

.coaching-focus-list {
  list-style: none;
    margin: 0; 

}

.coaching-focus-list li {
   padding:10px 0 10px 30px;
	position: relative;
    color: #555;
  font-size: 15px;
   line-height: 1.6;
}

.coaching-focus-list li:before {
  content: '✓';
  position: absolute;
    left: 0;
  color: #667eea;
    font-weight: bold;
  font-size: 16px; 
	
}

.team-coaching-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

#crisis-coaching {
  padding: 80px 0;
    background: white;
}

#crisis-coaching .section-heading.centered {
    text-align: center;
         font-size: 42px;
  font-weight: 700;
  color: #2c3e50;
}

#crisis-coaching .section-subtitle {
          text-align: center;
  font-size: 18px;
  color: #777;
   margin-bottom: 50px;
}

.crisis-card {
  background: white; 
	    border: 2px solid #e0e0e0; 
	          padding: 35px; 
	   border-radius: 12px; 
	  transition: all 0.3s ease; 
	    position: relative; 
	    overflow: hidden;
}

.crisis-card::before {
  content: '';
   position: absolute;
    top: 0;
  left: 0;
  width: 100%;
    height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;


}



.crisis-card:hover {
    border-color: #667eea;
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
}

.crisis-card:hover::before {
  transform: scaleX(1);
}

.crisis-card h3 {
    font-size: 20px;
   color   :        #2c3e50;
    margin-bottom: 15px;
  font-weight: 600;
}

.crisis-card p {
       font-size: 15px;
    color: #666;
          line-height: 1.7;
}

#success-stories-coaching {
   padding: 80px 0;
	  background: var(--light-bg);
}

#success-stories-coaching .section-heading.centered {
   text-align: center;
    font-size   :42px;
    font-weight: 700;
   color: #2c3e50;
}

#success-stories-coaching .section-subtitle {
          text-align: center;
     font-size: 18px;
  color: #777;
    margin-bottom: 50px;
}

.success-story-card {
	  background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
       transition  :all 0.3s ease;

}

.success-story-card:hover {
  transform: translateY(-10px);
	  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.story-image {
   width: 100%;
	height: 250px;
   object-fit: cover;
}

.success-story-card h3 {

  margin:      0;
   font-size  :   19px;
   padding: 20px 20px 10px;
  color: #2c3e50;
    font-weight: 600;




}

.success-story-card p {
  font-size: 14px;
   padding: 0 20px 20px;
   margin: 0;
   color: #666;
  line-height: 1.7;
}

#coaching-tools {

	   padding: 80px 0;
  background: white;
     }

#coaching-tools .section-heading {
   font-size: 42px;
  font-weight: 700;
   color: #2c3e50;
   margin-bottom: 20px;
}

#coaching-tools .section-text {
  font-size: 16px;
  color: #555;
  line-height :        1.8;
    margin-bottom: 20px;
}

.tools-image {
    width: 100%;
	border-radius    :  12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
   margin-bottom: 20px;
}

.tools-list {
      display: flex;
   flex-direction: column;
   gap: 20px;
}

.tool-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 25px;
    border-radius: 8px;
   transition: all 0.3s ease;
   border-left: 4px solid #667eea;
}

.tool-item:hover {
    background: white;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.12);
  transform: translateX(5px);
}



.tool-item h4 {
   font-size: 17px;
  color: #2c3e50;
    margin-bottom: 10px;
   font-weight: 600;
}

.tool-item p {
    font-size: 14px;
    color: #666;
  line-height: 1.6;
  margin: 0;
}

#coaching-duration {
   padding: 80px 0;
  background: var(--light-bg);
	
}

#coaching-duration .section-heading.centered {
	text-align: center;
    font-size:  42px;
    font-weight: 700;
	 color: #2c3e50;
}

#coaching-duration .section-subtitle
	{
   text-align: center;
   font-size: 18px;
   color: #777;
   margin-bottom: 50px;
}

.duration-container  
  {
     width: 100%;


}

.duration-card {
   background: white;
   border-radius: 12px;
   padding: 35px 25px;
   text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    border-top: 4px solid transparent;
}

.duration-card:nth-child(1) {
    border-top-color: #667eea; 
	
}

.duration-card:nth-child(2) {
   border-top-color: #764ba2;
}

.duration-card:nth-child(3) {
  border-top-color: #f093fb;
}

.duration-card:nth-child(4) {
    border-top-color: #667eea;
}

.duration-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(102, 126, 234, 0.15);
}

.duration-title {
  font-size: 19px;
   color: #2c3e50;
   margin-bottom: 15px;
         font-weight: 600;
}

.duration-length {
    font-size: 28px;
  color: #667eea;
	font-weight :       700;
    margin-bottom: 20px;
}

.duration-details {
    list-style  :  none;
  font-size: 14px;
   color: #666;
}

.duration-details li {
    padding: 8px 0;
   border-bottom: 1px solid #e0e0e0;
}

.duration-details li:last-child {
    border-bottom: none;
}

#coaching-expertise {
  padding: 80px 0;
 background: white;
}

#coaching-expertise .section-heading.centered


{
  text-align: center;
  font-size: 42px;
        font-weight: 700;
    color: #2c3e50;
}

#coaching-expertise .section-subtitle {
    text-align: center;
    font-size  :    18px;
  color: #777;
  margin-bottom: 50px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.expertise-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 35px;
   border-radius: 12px;
	transition: all 0.3s ease;
  position: relative;
}

.expertise-item::before {
  content: '';
   position: absolute;
    bottom: 0;
	left     :        0;
    right: 0;
   height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 0 0 12px 12px;
  transform: scaleX(0);
   transform-origin: left;
   transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.12);


}

.expertise-item:hover::before {
  transform: scaleX(1);
}

.expertise-item h3{


  font-size: 19px;
   color: #2c3e50;
    margin-bottom: 15px;
  font-weight   :  600;}

.expertise-item p {
    font-size: 14px;
    color  : #666;
    line-height: 1.7;
  margin  :   0;
}

#coaching-testimonials {
   padding: 80px 0;
  background: var(--light-bg);
}

#coaching-testimonials .section-heading.centered {
  text-align: center;
   font-size: 42px;
	font-weight: 700;
  color: #2c3e50;
}


#coaching-testimonials .section-subtitle {
    text-align: center;
  font-size: 18px;
	color: #777;
   margin-bottom: 50px;
}

.testimonial-item {
  background: white;
    padding: 30px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   border-left    :4px solid #667eea;
}

.testimonial-item:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.testimonial-quote {
   font-size: 15px;
  color: #555;
    font-style: italic;
   line-height  :1.8;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 16px;
    color: #2c3e50;
    margin-bottom: 5px;
   font-weight: 600;
}

.testimonial-title {
  font-size    :       13px;
   color: #999;
   margin: 0;}

#coaching-research {
   padding: 80px 0;
   background: white;
}

#coaching-research .section-heading {
   font-size: 42px;
  font-weight: 700;
     color: #2c3e50;
  margin-bottom: 20px;
}

#coaching-research .section-text {
       font-size: 16px;
   color: #555;
	line-height: 1.8;
  margin-bottom: 20px;}

.research-subheading {
    font-size: 19px;
  color: #2c3e50;
    margin: 25px 0 15px;
  font-weight: 600;
} 

.research-list {
   list-style: none;
  margin: 0; 

}

.research-list li {
    padding: 12px 0 12px 35px;
   position: relative;
    color: #555;
   font-size: 15px;
   line-height: 1.7;
}

.research-list li:before    {
     content: '▪';
  position: absolute;
   left: 0;
  color: #667eea;
   font-weight: bold;
   font-size: 14px;
}

.research-image		{
       width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}@media (max-width: 768px) {
    #coaching-fundamentals,
    #coaching-benefits,
    #coaching-methodology,
    #executive-coaching,
    #team-coaching,
    #crisis-coaching,
    #success-stories-coaching,
    #coaching-tools,
    #coaching-duration,
    #coaching-expertise,
    #coaching-testimonials,
    #coaching-research {
        padding: 50px 0;
    }

    #coaching-fundamentals .section-heading,
    #coaching-methodology .section-heading,
    #team-coaching .section-heading,
    #coaching-research .section-heading,
    #coaching-benefits .section-heading.centered,
    #executive-coaching .section-heading.centered,
    #crisis-coaching .section-heading.centered,
    #success-stories-coaching .section-heading.centered,
    #coaching-duration .section-heading.centered,
    #coaching-expertise .section-heading.centered,
    #coaching-testimonials .section-heading.centered {
        font-size: 32px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .duration-container .row {
        display: flex;
        flex-direction: column;
    }
}.services-hero {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding:     80px 0;
	text-align :center;
    color: white;
}

.services-hero-title {
    font-size     : 52px;
   font-weight: 700;
   margin-bottom: 15px;
   color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.services-hero-subtitle {
    font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
   line-height: 1.6;
}

.services-grid-section {

	padding: 80px 0;
  background: var(--light-bg);}

.services-grid {
               display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap    :      30px;
}

.service-item {
    display: flex;
  flex-direction: column;
}

.service-card {
    background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  display: flex;
  flex-direction     :   column;
    height: 100%;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 50px rgba(102, 126, 234, 0.2);
}

.service-image-wrapper {
   width: 100%;
   height: 280px;
  overflow: hidden;
   position: relative;
}

.service-image{
	width: 100%;
   height: 100%;
   object-fit   :        cover;
    transition: transform 0.3s ease;


}

.service-card:hover .service-image {
	  transform: scale(1.08);
}

.service-content {
  flex-direction: column;
   padding: 30px;
    display: flex;
   flex-grow: 1;
}

.service-title {
   font-size: 22px;
  color: #2c3e50;
    margin-bottom: 15px;
	 font-weight: 600;
   line-height: 1.4;
}

.service-description	{
    font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.btn-service


{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding: 12px 30px !important;
    border-radius: 5px;
	text-transform: none;
    font-weight: 600;
  display    :   inline-block;
      text-align: center;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.btn-service:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.thankyou-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	min-height: 100vh;
   display: flex;
    align-items: center;
}

.thankyou-wrapper {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.thankyou-content {
   background    :     white;
  border-radius: 15px;
  padding: 60px 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon {
  margin-bottom: 30px;
}

.success-icon i {
  font-size: 80px;
  color: #667eea;
}

.thankyou-title


{
    font-size: 48px;
                    font-weight: 700;
	color: #2c3e50;
  margin-bottom: 10px;
}

.thankyou-subtitle {
   font-size: 20px;
  color: #764ba2;
  font-weight: 600;
    margin-bottom: 20px; 

}

.thankyou-text {
   font-size: 16px;
    color: #666;
    line-height: 1.8;
  margin-bottom: 40px;
}

.thankyou-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  padding: 25px;
	border-radius    : 10px;
    margin-bottom :  40px;
}

.info-title {
  font-size: 18px;
    color: #2c3e50;
   margin-bottom: 10px;
  font-weight    : 600;
}

.info-text {
   line-height: 1.6;
    color   :     #666;
   margin: 0;
    font-size: 15px;
}

.thankyou-next-steps {
    margin-bottom: 40px;
}

.steps-title {
    font-size: 20px;
   color    :       #2c3e50;
	 margin-bottom: 25px;
   font-weight: 600;
}

.steps-list {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.step {
    text-align: center;
}

.step-number {
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
          font-size  :       24px;
  font-weight: 700;
  margin: 0 auto 15px;
}

.step p {
	font-size     :13px;
   color: #666;
  line-height: 1.5;
   margin: 0;
}

.thankyou-actions {
      display: flex;
   gap: 15px;
   margin-bottom: 40px;
	flex-wrap: wrap;
    justify-content: center;
}

.thankyou-actions .btn {
  padding: 12px 30px !important;
   text-transform   :        none;
  font-weight: 600;
    border-radius: 5px;
   transition: all 0.3s ease;
}

.thankyou-actions .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.thankyou-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.thankyou-actions .btn-secondary {
   background: transparent;
	color: #667eea;
    border: 2px solid #667eea;
}

.thankyou-actions .btn-secondary:hover {
  transform: translateY(-3px);
	background: #667eea;
    color   :       white;
}

.thankyou-contact		{

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 30px;
  border-radius: 10px;
  color: white;}

.contact-title {
   font-size     :       18px;

   margin-bottom: 10px;

    font-weight: 600; 

}

.contact-text {
		font-size: 15px;
    margin-bottom: 15px;
	 opacity :        0.95;

}

.contact-phone 
 {
      font-size: 18px;
  margin-bottom: 10px;
  font-weight: 600;
}

.contact-address {


  font-size: 14px;
    margin: 0;
    opacity: 0.9;
}@media (max-width: 768px) {
    .services-hero {
        padding: 50px 0;
    }

    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 40px 25px;
    }

    .thankyou-title {
        font-size: 36px;
    }

    .thankyou-subtitle {
        font-size: 18px;
    }

    .steps-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
    }

    .success-icon i {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .services-grid-section {
        padding: 40px 0;
    }

    .service-image-wrapper {
        height: 220px;
    }

    .thankyou-content {
        padding: 30px 20px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .success-icon i {
        font-size: 50px;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  text-align: center;
  color   :        white;
}

.about-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom    :  15px;
    color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
    font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.about-intro {
   padding: 80px 0;
  background: white;
}

.about-section-title {
  font-size: 42px;
      font-weight: 700;
  color: #2c3e50;
   margin-bottom: 30px;
}

.about-section-title.centered {
   text-align: center;
}

.about-subtitle {
   font-size: 18px;
    color: #777;
  margin-bottom: 50px;
}

.about-subtitle.centered {
        text-align: center;
}

.about-text {
    font-size   : 16px;
  color: #555;
   line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    width: 100%;
    border-radius   :        15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    margin-bottom     :  20px;
}

.about-history {
   padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.timeline {
    position: relative;
    max-width: 800px;
      margin: 0 auto; 

}

.timeline::before {
  content: '';
  position: absolute;
   left: 30px;
    top: 0;
   bottom: 0;
   width: 3px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
   margin-bottom: 40px;
   padding-left: 100px;
  position: relative;
}

.timeline-marker     {
   position: absolute;
    left: 0;
               top: 0;
    width: 60px;
    height: 60px;
   background: white;
    border :        3px solid #667eea;
   border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-size: 18px;
    font-weight: 700;
                    color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.timeline-content {
  background: white;
         padding: 25px;
      border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition:      all 0.3s ease;

}

.timeline-content:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.timeline-content h3 {
    font-size: 20px;
	 color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
   color: #666;
    line-height: 1.7;
    margin: 0;
}

.about-mission {
    padding: 80px 0;
  background: white;
}

.mission-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
    padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
	transition: all 0.3s ease;
  height: 100%;
}

.mission-card:hover 
 {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
	background: white;
}

.mission-icon {

    font-size     :  48px;
    color: #667eea;
    margin-bottom: 15px;}

.mission-card h3 {
       font-size: 22px;
  color: #2c3e50;
	margin-bottom: 15px;
   font-weight     :       600;
}

.mission-card p {
  color: #666;
    font-size: 14px;
  line-height: 1.7;
   margin: 0;
}

.about-approach {
   padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.approach-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.approach-item {
  background: white;
  padding: 40px;
   border-radius: 12px;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.approach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.approach-number  
  {
	margin-bottom: 15px;

  color: #667eea;

  font-size: 48px;

   font-weight: 700;

   line-height: 1;
}

.approach-item h3 {
  font-size: 20px;
    color: #2c3e50;
   margin-bottom: 15px;
  font-weight: 600;
}

.approach-item p {
  font-size: 14px;
  color: #666;
    line-height:   1.7;
    margin: 0;
}

.about-why {
  padding: 80px 0;
    background: white;
}



.why-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.why-item {
	padding: 30px;
    border-radius: 12px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%);
  transition: all 0.3s ease;
  text-align: center;
}

.why-item:hover {
  transform: translateY(-8px);
  background     :      white;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.12);
}

.why-icon {
   display: flex;
  align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
   font-size: 40px;

	 color: #667eea;
}

.why-item h3  {
   font-size: 18px;
  color: #2c3e50;
   margin-bottom: 12px;
   font-weight: 600;
}

.why-item p {
    font-size: 14px;
  color: #666;
   line-height: 1.7;
  margin: 0;
}

.about-cta {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
   color: white;
}

.cta-title {
  font-size: 42px;
   font-weight: 700;
  color: white;
   margin-bottom: 15px;
}

.cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
    line-height: 1.6;
}

.btn-cta	{
   background: white;
    color: #667eea;
  padding: 14px 40px !important;
    border-radius: 5px;
   text-transform: none;
          font-weight     :  600;
   font-size:   16px;
    transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
   color: #764ba2;
}@media (max-width: 768px) {
    .about-hero {
        padding: 50px 0;
    }

    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-subtitle {
        font-size: 16px;
    }

    .about-intro,
    .about-history,
    .about-mission,
    .about-approach,
    .about-why,
    .about-cta {
        padding: 50px 0;
    }

    .about-section-title {
        font-size: 32px;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        left: -5px;
        font-size: 14px;
    }

    .timeline-item {
        padding-left: 80px;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-subtitle {
        font-size: 14px;
    }

    .about-section-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 14px;
    }

    .timeline-item {
        padding-left: 70px;
    }

    .timeline-marker {
        width: 45px;
        height: 45px;
        font-size: 12px;
    }

    .cta-title {
        font-size: 26px;
    }

    .mission-card,
    .approach-item,
    .why-item {
        padding: 25px 20px;
    }
}.policy-section {
	 padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   min-height: 70vh;
}

.policy-container {
   max-width: 900px;
    margin: 0 auto;
    background: white;
   padding: 60px;
        border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
    font-size: 48px;

    color: #2c3e50;

   margin-bottom: 40px;

  font-weight: 700;

     border-bottom: 3px solid #667eea;

    padding-bottom: 20px;
}

.policy-container h2 {
    font-size: 28px;
   color: #2c3e50;
   margin-top: 40px;
   margin-bottom: 20px;
  font-weight: 600;
  color: #667eea;
}

.policy-container h3 {
   font-size: 20px;
   color: #2c3e50;
       margin-top: 25px;
   margin-bottom: 15px;
   font-weight: 600;
}

.policy-container p {
  color: #555;

  margin-bottom: 18px;

   line-height: 1.8;

   font-size: 16px;

  text-align: justify;
}

.policy-container p:last-child {
   margin-bottom: 0;
}

.policy-container strong	{
    color: #2c3e50;
   font-weight: 600;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 40px 25px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 36px;
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policy-container h3 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 16px;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.5rem;
    }

    .policy-container {
        padding: 25px 15px;
        border-radius: 6px;
    }

    .policy-container h1 {
        font-size: 28px;
        margin-bottom: 25px;
        padding-bottom: 12px;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policy-container h3 {
        font-size: 16px;
        margin-top: 18px;
        margin-bottom: 10px;
    }

    .policy-container p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 14px;
    }
}.blog-hero	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    text-align   :     center;
  color: white;
  margin-top: 70px;
}

.blog-hero-content {
  max-width: 800px;
    margin: 0 auto;
}

.blog-category {
    display: inline-block;
  background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
  border-radius: 25px;
	font-size: 13px;
  font-weight: 600;
   text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;

}

.blog-title {
   font-size     :      48px;
   font-weight: 700;
  color: white;
	margin: 20px 0;
	line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.blog-meta {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

.blog-content {

   padding: 80px 0;
   background: white;


} 

.blog-container {
  max-width: 800px;
   margin: 0 auto;
}

.blog-article {
   line-height: 1.8;
}

.blog-featured-image {
   width: 100%;
	height: auto;
    border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    margin-bottom: 50px;
    object-fit: cover;
}

.blog-article h2 {
   padding-bottom: 15px;
  margin: 50px 0 25px;
   border-bottom: 3px solid #667eea;
  color: #2c3e50;
    font-weight: 700;
  font-size: 32px;
}

.blog-article h3 {
   font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
   margin: 35px 0 15px;
}

.blog-article p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
   margin-bottom: 20px;
   text-align :justify; 

}

.blog-article p:last-child   {
  margin-bottom: 0; 

}

.blog-article strong {

	    color: #2c3e50;
    font-weight: 600;
}

.blog-article em  {
    color: #667eea;
   font-style: italic;
}@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0;
        margin-top: 70px;
    }

    .blog-title {
        font-size: 36px;
        margin: 15px 0;
    }

    .blog-category {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 15px;
    }

    .blog-meta {
        font-size: 14px;
    }

    .blog-content {
        padding: 50px 0;
    }

    .blog-article h2 {
        font-size: 26px;
        margin: 40px 0 20px;
        padding-bottom: 12px;
    }

    .blog-article h3 {
        font-size: 19px;
        margin: 30px 0 12px;
    }

    .blog-article p {
        font-size: 15px;
        margin-bottom: 18px;
        text-align: left;
    }

    .blog-featured-image {
        margin-bottom: 40px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 40px 0;
    }

    .blog-title {
        font-size: 28px;
        margin: 12px 0;
    }

    .blog-category {
        font-size: 11px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .blog-meta {
        font-size: 13px;
    }

    .blog-content {
        padding: 40px 0;
    }

    .blog-article h2 {
        font-size: 22px;
        margin: 30px 0 15px;
        padding-bottom: 10px;
    }

    .blog-article h3 {
        font-size: 17px;
        margin: 24px 0 10px;
    }

    .blog-article p {
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1.7;
    }

    .blog-container {
        padding: 0 10px;
    }

    .blog-featured-image {
        margin-bottom: 30px;
        border-radius: 8px;
    }
}.navbar-wrapper {
	  z-index: 100;
	position: sticky;
   top: 0;
}

.footer-section {
    margin-top: 80px;
}

.blog-article ul,
.blog-article ol {
  margin-bottom: 20px; 
  margin-left: 20px;
}

.blog-article li {
    margin-bottom     :     12px;
   line-height: 1.8;
}

.blog-quote {
     border-left: 4px solid #667eea;
  padding-left: 20px;
	 margin: 30px 0;
    font-style: italic;
  color: #666;
   background: #f8f9fa;
   padding: 20px;
  border-radius   :       4px;


}


.blog-article img {
   max-width: 100%;
   height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

html {
  scroll-behavior: smooth;
}

.blog-title,
.blog-article h2,
.blog-article h3 {
      word-break: break-word;
    overflow-wrap: break-word;
	}

.blog-article p {
    word-break: break-word;
  overflow-wrap:break-word;
}@media print {
    .navbar-wrapper,
    .footer-section {
        display: none;
    }

    .blog-hero {
        background: white;
        color: #2c3e50;
        border-bottom: 2px solid #667eea;
    }

    .blog-title {
        color: #2c3e50;
        text-shadow: none;
    }

    .blog-category {
        background: #f0f0f0;
        color: #2c3e50;
    }

    .blog-article h2 {
        page-break-inside: avoid;
    }

    .blog-featured-image {
        max-width: 100%;
    }
}.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
   width: 100%;
    box-sizing: border-box;
}

.row {
  flex-wrap: wrap;
   margin-left: 0;
   margin-right: 0;
  justify-content: center;
    display: flex;
}

.row .col {
    float: none;
	 box-sizing: border-box;
}

section {
   width: 100%;
   overflow-x: hidden;
	}

.hero-section .hero-content,
.hero-section .row {
  display: flex;
    flex-wrap: wrap;
    align-items: center;
   justify-content: center;
}

.services-preview .row,
.services-grid {
   display: flex;
  flex-wrap   :wrap;
       justify-content: center;
  gap: 20px;
}

.service-card {
  margin: 0 auto;
}

.section-title,
.section-subtitle {
        text-align: center;
   width: 100%;
}

body {
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

img {


   max-width: 100%;
   height: auto;

}

.valign-wrapper {
  display: flex;
    align-items: center;
  justify-content: center;
   flex-wrap: wrap;
}@media (max-width: 992px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .row .col {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}.row     {
   display:      flex !important;
    flex-wrap: wrap;
   margin-left: -0.75rem;
	margin-right: -0.75rem;
}

.row::after {

	  content: "";
    display: table;
   clear:    both;


}

.col-md-6,
.col-md-4,
.col-md-3 {
    grid-column: unset;
    padding: 0 0.75rem;
   box-sizing: border-box;
}

.col-md-6 {

    max-width: 50%;
    flex :   0 0 50%;


}

.col-md-4 {
   flex:    0 0 33.333%;
  max-width: 33.333%;
}

.col-md-3 {
    flex: 0 0 25%;
	max-width: 25%;
}

.container {
   width: 100%;
    max-width: 1200px;
    margin-left: auto;
  margin-right: auto;
   padding-left  :   15px;
     padding-right: 15px;
   box-sizing: border-box;
}

#hero .row {
    justify-content  : center;
  align-items: center;
}

#courses .row {
  justify-content: center;
}

.section .row {
    align-items: center;
}

.process-grid,
.stories-grid,
.models-grid,
.obstacles-grid,
.coaches-grid,
.testimonials-grid,
.faq-grid,
.values-grid,
.commitments-grid {
   display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}@media (max-width: 992px) {
    .col-md-6,
    .col-md-4,
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .row {
        margin-left: 0;
        margin-right: 0;
    }
}.valign-wrapper {
   display: flex !important;
  align-items: center;
   min-height    :      auto;
     }

#intro .row,
#workshop-section .row,
#webinar-section .row,
#journal-section .row,
#manuscript-section .row,
#environment-section .row,
#typewriter-section .row,
#brainstorm-section .row,
#notebook-section .row,
#morning-section .row {
    display: flex !important;
    flex-wrap: wrap;
       align-items: center;
}

.intro-content,
.workshop-text,
.webinar-content,
.journal-text,
.manuscript-content,
.environment-text,
.typewriter-text,
.brainstorm-content,
.notebook-text,
.morning-content {
    width: 100%;
}