* {

    margin: 0;
  padding: 0;
  box-sizing: border-box;


}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #333;
   background-color: #f8f9fa;
}

.main_navigation {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  position: fixed;
    top: 0;
   width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav_container {
    display: flex;
    padding: 1rem 2rem;
   justify-content: space-between;
    margin: 0 auto;
   align-items: center;
  max-width: 1200px;

}

.brand_section .logo_img {
  height: 45px;
    width :      auto;
}

.nav_links_desktop {
  display: flex;
  gap: 2rem;


}

.nav_item {
	   color :     white;
  text-decoration     :      none;
    font-weight: 500;
   transition: color 0.3s ease;
   padding: 0.5rem 1rem;


}

.nav_item:hover {
   color: #3498db;
}

.mobile_menu_toggle {
  width     :  30px;
	cursor: pointer;
    display: none;
   justify-content     :  space-between;
   height: 24px;
  flex-direction: column;
}

.burger_line {
               width: 100%;
    height: 3px;
     background-color: white;
 transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile_menu {
   display: none;
    background: #2c3e50;
   padding: 1rem 0;
}

.mobile_nav_item {

   display: block;
          color: white;
   text-decoration: none;
  padding: 1rem 2rem;
	 border-bottom   :    1px solid #34495e;
    transition: background-color 0.3s ease;

}

.mobile_nav_item:hover {
  background-color: #34495e;
}

.hero_banner {
   margin-top: 80px;
          padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}  

.hero_content_wrapper {
   grid-template-columns: 1fr 1fr;
  align-items: center;
         display: grid;
  gap:     3rem;
  max-width: 1200px;
    margin: 0 auto;
}  

.hero_text_section h1 {
  font-size    :     3rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero_description {
    font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.hero_buttons {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.primary_btn, .secondary_btn {
  padding: 12px 30px;
    text-decoration: none;
 border-radius     : 50px;
    font-weight: 600;
	transition: all 0.3s ease;
  display: inline-block;
}

.primary_btn {
    background-color   :        #e74c3c;
  color:   white;
}

.primary_btn:hover
	{

  background-color: #c0392b;

  transform: translateY(-2px);
}

.secondary_btn {
    background-color: transparent;
  color: white;
   border: 2px solid white;
}

.secondary_btn:hover {
    background-color: white;
  color: #667eea;
}

.hero_img {
  width: 100%;
  height  :      auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.features_overview {
	  padding: 5rem 2rem;
    background-color: white;
	}

.content_container {
    max-width    :        1200px;
  margin: 0 auto;
}

.features_overview h2 {


   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
	}

.features_grid  {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap   :2rem;
}

.feature_card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;

}

.feature_card:hover {
  transform: translateY(-5px);
}

.feature_image {
    width    :   100%;
   height: 200px;
	object-fit: cover;
   border-radius: 10px;
   margin-bottom: 1.5rem;
}

.feature_card h3 {
  color: #2c3e50;

   font-size: 1.5rem;

    margin-bottom:      1rem;


}

.feature_card p {
  color: #666;
  line-height: 1.6;
}

.coaching_programs {
	padding: 5rem 2rem;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
   color: white;
}

.program_content {
	 max-width: 1200px;
   margin: 0 auto;
	 display:      grid;
   grid-template-columns    :   1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.program_text h2 {
     font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.program_text p		{
    font-size: 1.1rem;
  margin-bottom   :        2rem;
   opacity: 0.9;
}

.program_benefits {
  list-style: none;
    margin-bottom     : 2rem;
}

.program_benefits li	{
    padding   :        0.5rem 0;
    padding-left     : 1.5rem;
  position: relative;
}

.program_benefits li:before {
  content: "✓";
	position: absolute;
       left: 0;
  color: #fff;
	 font-weight: bold;
}

.program_cta_btn {
     background-color :     white;
   color: #f5576c;
  padding: 12px 30px;
    text-decoration: none;
   border-radius: 50px;
     font-weight     :600;
   transition: all 0.3s ease;
  display: inline-block;
	}

.program_cta_btn:hover {


  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
     }

.program_img {
    width: 100%; 
	    height   : auto; 
	  border-radius:        15px; 
	  box-shadow: 0 10px 30px rgba(0,0,0,0.3);


}

.cta_section {
		padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.cta_container {
    max-width: 800px;
  margin: 0 auto;
}

.cta_content h2 {
          font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta_content p   {
  font-size  : 1.2rem;
    margin-bottom     :     2rem;
    opacity     :    0.9;
}

.cta_button {
  background-color: #e74c3c;
  color: white;
   padding: 15px 40px;
    text-decoration: none;
   border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
	 transition: all 0.3s ease;
  display: inline-block;
}

.cta_button:hover {
   background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
} 

.contact_section {
  padding: 5rem 2rem;
   background-color: #f8f9fa;
}

.contact_container {
   max-width: 1200px; 
	  margin: 0 auto; 
	    display  :       grid; 
	   grid-template-columns: 1fr 1fr; 
	   gap: 4rem;
}

.contact_info h2 {
   font-size: 2.5rem;
    margin-bottom    :     1.5rem;
    color: #2c3e50;
}

.contact_info p {
  font-size  :     1.1rem;
  margin-bottom: 2rem;
  color: #666;
}

.contact_details {
   margin-top: 2rem;
}

.contact_item {
    margin-bottom: 1rem;
   color  :       #555;
} 

.contact_form {
    background: white;
	padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form_group     {
    margin-bottom    : 1.5rem;
}

.form_group label {
	   display: block;
  margin-bottom: 0.5rem;
   color: #2c3e50;
  font-weight: 500;

}



.form_group input,
.form_group select,
.form_group textarea {
    width: 100%;
   padding :        12px;
  border: 2px solid #e1e8ed;
   border-radius:       8px;
  font-size    :  1rem;
  transition: border-color 0.3s ease;
} 

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
    outline: none;
  border-color: #3498db;


}

.submit_btn   {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
    border: none;
   border-radius: 50px;
	 font-size    :     1.1rem;
  font-weight     :   600;
   cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;
     }

.submit_btn:hover     {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.site_footer
{
	    background-color: #2c3e50;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer_content {
    max-width: 1200px;
  margin: 0 auto;
               display    :    grid;
    grid-template-columns: auto 1fr;
   gap: 3rem;
   align-items: start;
}

.footer_logo {
  height: 50px;
	 width: auto;
}

.footer_info {
	  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

    gap: 2rem; 
}

.footer_section h4 {
    margin-bottom: 1rem;
   color    :#3498db; 

}

.footer_section p {
  margin-bottom:   0.5rem;
   color: #bdc3c7;
}

.footer_section a    {
    margin-bottom    :     0.5rem;
    display     :        block;
  color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer_section a:hover {
    color: #3498db;
}

.footer_bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
  text-align: center;
   color: #95a5a6;
}@media (max-width: 768px) {
    .nav_links_desktop {
        display: none;
    }
    
    .mobile_menu_toggle {
        display: flex;
    }
    
    .mobile_menu.active {
        display: block;
    }
    
    .hero_content_wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero_text_section h1 {
        font-size: 2rem;
    }
    
    .features_grid {
        grid-template-columns: 1fr;
    }
    
    .program_content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact_container {
        grid-template-columns: 1fr;
    }
    
    .footer_content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero_buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav_container {
        padding: 1rem;
    }
    
    .hero_banner {
        padding: 2rem 1rem;
    }
    
    .features_overview,
    .coaching_programs,
    .contact_section {
        padding: 3rem 1rem;
    }
    
    .cta_section {
        padding: 3rem 1rem;
    }
    
    .hero_text_section h1 {
        font-size: 1.8rem;
    }
    
    .cta_content h2 {
        font-size: 2rem;
    }
}.about_hero_section


{
    margin-top: 80px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    text-align: center; 

}

.about_hero_content h1 {
  font-size: 3rem;
   font-weight  :      700;
    margin-bottom: 1rem;
}

.about_hero_subtitle {
   font-size: 1.3rem;
  opacity: 0.9;
   max-width: 800px;
    margin: 0 auto;
}

.company_story {
   padding   : 5rem 2rem;
	    background-color: white;


}

.story_container {
    max-width: 1200px;
    margin    :      0 auto;
    display: grid;
	grid-template-columns: 1fr 1fr;
        gap: 3rem;
  align-items: center;

}

.story_content h2 {
	 font-size: 2.5rem;
    margin-bottom: 2rem;
   color: #2c3e50;
}

.story_content p		{
   font-size    :    1.1rem;
    line-height: 1.8;
   margin-bottom: 1.5rem;
  color :#555;
}

.story_image {
  width :        100%;
	height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

.mission_values {
  padding: 5rem 2rem;

	  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);

	  color: white; 
	
}

.mission_container
	{
      max-width: 1200px;
               margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.mission_card

{
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.mission_card h3 {
  font-size    :        1.5rem;
  margin-bottom: 1rem;
				 color: #fff;


}

.mission_card p {
                    line-height: 1.6;
    opacity: 0.9;
}

.expertise_areas {

	    padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.expertise_container {
         max-width: 1200px;
  margin: 0 auto;
}

.expertise_container h2 {
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.expertise_grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.expertise_item {
	background: white;
	 border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
} 

.expertise_item:hover {
  -moz-transform: translateY(-5px);
  transform: translateY(-5px);
}

.expertise_img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom    :  1rem;
}

.expertise_item h4 {
   font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color: #2c3e50; 
	
}

.expertise_item p {
   color: #666;
   line-height: 1.6;
}



.approach_methodology {
   padding: 5rem 2rem;
    background-color: white;
}

.approach_container {
         max-width  :   1000px;
	margin: 0 auto;
}

.approach_text h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
   color: #2c3e50;
  text-align: center;
}

.approach_text > p {


  font-size: 1.2rem;

  text-align: center;

  margin-bottom: 3rem;

	color: #555;


}

.approach_features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :     2rem;
}

.approach_feature {
    padding: 1.5rem;
   border-left: 4px solid #3498db;
    background-color: #f8f9fa;
	 border-radius     : 8px;
}

.approach_feature h5 {
   font-size: 1.2rem;
    margin-bottom :0.8rem;
   color: #2c3e50;
}

.approach_feature p {
  color: #666;
  line-height: 1.6;
}

.company_stats {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stats_container {
  max-width  :     1000px;
	margin: 0 auto;
	 display : grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat_item {


    text-align: center;
   padding: 1.5rem;
}

.stat_number {
	font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
                    color: #fff;
}

.stat_label
{
   font-size: 1.1rem;
	 opacity    :0.9;
}

.thankyou_main {
  margin-top: 80px;
      padding: 4rem 2rem;
   background-color: #f8f9fa;
    min-height: 70vh;
}

.thankyou_container


{
	max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns :    2fr 1fr;
    gap: 3rem;
   align-items     :      start;
}

.thankyou_content {
   background: white; 
    padding: 3rem; 
	border-radius: 20px; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.success_icon_wrapper {
   text-align: center;
   margin-bottom :        2rem;
}



.success_icon {
   display : inline-block;
    width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   border-radius  :50%;
    line-height: 80px;
   font-size: 2.5rem;
   color: white;
   font-weight: bold;
}

.thankyou_content h1 {
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
  text-align: center;
}

.thankyou_message {
                    font-size: 1.2rem;
  color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
  text-align: center;
}

.next_steps h3 {
	font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom   :   2rem;
} 

.steps_list {
    margin-bottom   :        3rem;
}

.step_item {
  display: flex;
    align-items: flex-start;
  margin-bottom: 1.5rem;
   gap: 1rem;
}

.step_number {
  display   :      inline-block;
  width: 30px;
	 height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
   text-align: center;
    line-height: 30px;
    font-weight: bold;
  flex-shrink: 0;
}

.step_item p {
	 color: #666;
	   line-height: 1.6;
	  margin: 0;
}

.additional_info h3 {
  font-size: 1.8rem;
  color: #2c3e50;
    margin-bottom: 1rem;
}

.info_list {


   list-style: none;
   margin-bottom: 3rem;}

.info_list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
   position: relative;
  color: #666;
}

.info_list li:before {
  content: "→";
    position: absolute;
		left: 0;
  color: #3498db;
 font-weight: bold;
}

.thankyou_actions {
    display: flex;
   gap: 1rem;
    justify-content: center;
  flex-wrap: wrap;
}

.return_home_btn, .learn_more_btn {
    padding: 12px 30px;

	   text-decoration: none;

	    border-radius: 50px;

	    font-weight :     600;

	    transition   :all 0.3s ease;

	  display: inline-block;
} 

.return_home_btn   {

  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;


}

.return_home_btn:hover	{
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.learn_more_btn {
    background-color: transparent;
    color :#667eea;
    border: 2px solid #667eea;
     }

.learn_more_btn:hover {
	background-color: #667eea;
    color: white;
}

.thankyou_visual	{
    position: sticky;
      top: 100px;
}

.thankyou_image {
	  width: 100%;
    height: auto;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}

.contact_reminder {
           padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center; 
	
}

.reminder_container {
   max-width: 800px;
   margin: 0 auto;
}

.reminder_container h3


{


    font-size: 2rem;
    margin-bottom: 1rem;}

.reminder_container p {
  font-size: 1.1rem;
	 margin-bottom: 2rem;
   opacity: 0.9;
}

.contact_details_reminder {
	               display: flex;
  justify-content:   center;
   gap: 2rem;
     flex-wrap: wrap;


     }

.contact_detail {
  background: rgba(255,255,255,0.1);
    padding: 1rem 2rem;
 border-radius: 10px;
  backdrop-filter: blur(10px);
}@media (max-width: 768px) {
    .story_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission_container {
        grid-template-columns: 1fr;
    }
    
    .expertise_grid {
        grid-template-columns: 1fr;
    }
    
    .approach_features {
        grid-template-columns: 1fr;
    }
    
    .stats_container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou_container {
        grid-template-columns: 1fr;
    }
    
    .thankyou_content {
        padding: 2rem;
    }
    
    .thankyou_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .contact_details_reminder {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about_hero_content h1 {
        font-size: 2rem;
    }
    
    .about_hero_subtitle {
        font-size: 1.1rem;
    }
    
    .company_story,
    .mission_values,
    .expertise_areas,
    .approach_methodology {
        padding: 3rem 1rem;
    }
    
    .thankyou_main {
        padding: 2rem 1rem;
    }
    
    .thankyou_content h1 {
        font-size: 2rem;
    }
    
    .stats_container {
        grid-template-columns: 1fr;
    }
}.content_section {
    padding: 5rem 2rem;
  background-color: #f8f9fa;
}

.content_section h1 {

    font-size: 2.5rem;
    color:       #2c3e50;
  margin-bottom: 1.5rem;
    text-align: center;
	}

.content_section p {
  font-size: 1.1rem;
   color     :   #666;
   margin-bottom: 1rem;
  line-height: 1.6;
}

.content_section h2 {
  font-size: 1.8rem;
  color: #2c3e50;
   margin-top: 2rem;
  margin-bottom: 1rem;
}

.content_section ul {
       list-style: none;
  margin-bottom: 1.5rem;
}

.content_section ul li {
  padding: 0.5rem 0;
    padding-left : 1.5rem;
    position    :    relative;
  color   :      #666;
}

.content_section ul li:before {
  content: "✓";
    position: absolute;
  left: 0;
  color: #3498db;
    font-weight: bold;
}@media (max-width: 768px) {
    .content_section {
        padding: 3rem 1rem;
    }

    .content_section h1 {
        font-size: 2rem;
    }

    .content_section h2 {
        font-size: 1.5rem;
    }
}