* {

	   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: #ffffff;
}

.navigation_wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
   top: 0;
  width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
	justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
}

.site_logo {
               height: 45px;
         width: auto;


}

.menu_links {
  display: flex;
    gap :     2rem;
}

.nav_link {
   text-decoration: none;
      color: #2c3e50;
  font-weight: 500;
 -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
	position: relative;
}

.nav_link:hover,
.nav_link.active		{
	color: #3498db; 

}

.nav_link.active::after {
  content: '';
   position: absolute;
    bottom: -5px;
   left : 0;
   width   :     100%;
  height: 2px;
  background: #3498db;
}

.burger_toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap:       4px;
}

.burger_toggle span {
   width: 25px;
    height: 3px;
   background: #2c3e50;
  transition: 0.3s;
}

.hero_section {
   margin-top: 80px;
    padding:4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero_container {
    max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
	 display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.hero_title {
   font-size: 3rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
    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 {
   background  :  #f39c12;
    color: white;
     padding: 1rem 2rem;
	 text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.primary_btn:hover {
  transform: translateY(-2px);

	  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4); 
	
}

.secondary_btn {
       background: transparent;
    color: white;
    padding    : 1rem 2rem;
  text-decoration: none;
  border: 2px solid white;
   border-radius: 50px;
   font-weight   :        600;
  transition: all 0.3s ease;}

.secondary_btn:hover {

	    background: white; 
    color  :       #667eea;

}

.hero_img {
    width: 100%;

	   height: auto;

	  border-radius: 15px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.features_block
{
  padding: 5rem 0;
	background: #f8f9fa;
}

.content_wrapper {
    max-width: 1200px;
      margin: 0 auto;
    padding: 0 2rem;
}

.section_heading {
  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;
          padding     :        2rem;
    border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition :    transform 0.3s ease, box-shadow 0.3s ease;
}

.feature_card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
     }

.feature_image {

  width: 100%;

	    height   :        200px;

	  object-fit: cover;

	    border-radius: 10px;

	         margin-bottom: 1.5rem;


}

.feature_title {
  font-size: 1.5rem;
  margin-bottom    :  1rem;
  color: #2c3e50;
}

.feature_text {
   color: #666;
    line-height   :1.7;
}

.cta_section {
	padding: 5rem 0;
  background: linear-gradient(45deg, #2c3e50, #3498db);
	color:   white;
}

.cta_container		{
   max-width:     1200px;
   margin: 0 auto;
    padding: 0 2rem;
  display: grid;
        grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.cta_title {
    font-size: 2.5rem;
   margin-bottom    :  1.5rem;
   font-weight: 700;
}

.cta_subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
	 line-height: 1.7;
}

.cta_button {
      display: inline-block;
      background :       #e74c3c;
      color   :   white;
       padding    :    1.2rem 2.5rem;
      text-decoration    :     none;
       border-radius: 50px;
      font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.cta_img  
  {

	    width: 100%;
  height  :   auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services_section    {
  padding: 5rem 0;
  background: white; 

}


.services_container {
  max-width: 1200px;
    margin :   0 auto;
    padding: 0 2rem;
}

.services_title {
    text-align  :     center;
     font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.services_list {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
     }

.service_item {
      background: #f8f9fa;
   padding: 2.5rem;
  border-radius: 15px;
         border-left: 5px solid #3498db;


}

.service_name     {
  font-size: 1.4rem;
   margin-bottom: 1rem;
	 color: #2c3e50;
}

.service_description    {
  color: #666;
  margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service_benefits {
         list-style: none;
  padding: 0;
}

.service_benefits li {
    padding: 0.5rem 0;

	  color: #555;

	  position  :      relative;

	  padding-left  :      1.5rem;
}

.service_benefits li::before {
  content: "✓";
    position: absolute;
	 left: 0;
    color: #27ae60;
    font-weight     :   bold;


}

.contact_section {
    padding  :    5rem 0;
  background: #f8f9fa;


}

.contact_wrapper {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
		 display :      grid;
   grid-template-columns    :       1fr 1fr;
	gap: 4rem;
}

.contact_title


{
   font-size: 2.2rem;
    margin-bottom  :       1.5rem;
    color: #2c3e50;
}

.contact_description {
    color: #666;
   margin-bottom: 2rem;
   line-height: 1.7;
}

.contact_details {
  flex-direction: column;
  gap: 1.5rem;
    display: flex;
}

.contact_item strong {
  color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
}

.contact_item p   {
    color: #666;
    margin: 0;
}

.contact_form {
   background    :white;
    padding:   2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form_group {
  margin-bottom: 1.5rem;
}

.form_input,
.form_select,
.form_textarea {
	   width: 100%;
   padding: 1rem;
   border: 2px solid #e0e0e0;
   border-radius: 8px;
  font-size: 1rem;
    transition   :        border-color 0.3s ease;
    font-family: inherit;

}

.form_input:focus,
.form_select:focus,
.form_textarea:focus {
   outline: none;
    border-color: #3498db;
}

.form_textarea {

	  resize: vertical;
  min-height: 120px;
}

.form_submit {
   font-size: 1.1rem;

	   color: white;

	  font-weight: 600;

	   padding: 1.2rem;

	   cursor: pointer;

	   width: 100%;

	  transition: all 0.3s ease;

	    border-radius: 8px;

	    background: #3498db;

	    border: none;
}

.form_submit:hover {
          background: #2980b9;
  transform: translateY(-2px);
}

.footer_section {
    background :      #2c3e50;
  color: white;
   padding: 3rem 0 1rem;
}

.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
	display: grid;
    grid-template-columns: 1fr 2fr;
  gap :       3rem;
}

.footer_logo {
   height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom  :   1rem;
}

.footer_tagline {
    color: #bdc3c7;
	line-height: 1.6;
}

.footer_links {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer_heading {
  color  :     white;
  margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer_menu {
  list-style: none;
        padding: 0; 

}

.footer_menu li {
	margin-bottom: 0.8rem;
	
}

.footer_menu a{
  color  :#bdc3c7;
      text-decoration: none;
   transition: color 0.3s ease;
}

.footer_menu a:hover
	{
        color: #3498db;
}

.footer_contact p {
  color: #bdc3c7;
    margin-bottom: 0.5rem;
}

.footer_bottom {
    margin-top: 2rem;
	 padding-top: 2rem;
    border-top: 1px solid #34495e;
    text-align: center;
	 color: #bdc3c7;
}@media (max-width: 768px) {
    .burger_toggle {
        display: flex;
    }
    
    .menu_links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .menu_links.active {
        display: flex;
    }
    
    .hero_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero_title {
        font-size: 2.2rem;
    }
    
    .cta_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact_wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services_list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav_container {
        padding: 1rem;
    }
    
    .hero_title {
        font-size: 1.8rem;
    }
    
    .section_heading {
        font-size: 2rem;
    }
    
    .cta_title {
        font-size: 2rem;
    }
    
    .contact_title {
        font-size: 1.8rem;
    }
    
    .hero_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary_btn,
    .secondary_btn {
        width: 100%;
        text-align: center;
    }
}.about_hero_section {
   margin-top: 80px;
   padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
     color: white;
}

.about_hero_container {
            max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;


}

.about_main_title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
          font-weight: 700;
    line-height: 1.2;
}

.about_hero_text  {
   font-size: 1.1rem;
	line-height: 1.7;
  opacity: 0.9;
}

.about_hero_img {
   width  : 100%;
        height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 

}

.company_story_section {
  padding: 5rem 0;
    background  :white;
}

.story_container {
   max-width: 1200px;
   margin: 0 auto;
  padding   : 0 2rem;
}

.story_title {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.story_content {
  display: grid;
    grid-template-columns: 2fr 1fr;
 gap: 3rem;
   align-items: center;
}

.story_paragraph {
	margin-bottom: 1.8rem;
    line-height: 1.8;
    color: #555;
   font-size: 1.05rem;
}

.story_img  
  {
    width     :        100%;
   height     : auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mission_values_section {
   padding: 5rem 0;
     background: #f8f9fa;
}

.mission_wrapper {
   max-width    :       1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.mission_block {
   text-align: center;
   margin-bottom: 4rem;
}

.mission_heading {
  font-size: 2.3rem;
  margin-bottom    :1.5rem;
  color: #2c3e50;
}

.mission_text {
	 font-size: 1.1rem;
  line-height    : 1.7;
  color: #666;
    max-width: 800px;
        margin: 0 auto;
     }

.values_grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;


}

.value_item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;

}

.value_item:hover {

	  transform: translateY(-5px);
}

.value_title {
   font-size: 1.3rem;
   margin-bottom: 1rem;
  color: #3498db;
}

.value_description {
   color: #666;
    line-height: 1.6;
}

.expertise_section {


	padding: 5rem 0;
    background: white;


}

.expertise_container {
   max-width: 1200px;
  margin: 0 auto;
         padding: 0 2rem;
}

.expertise_title {
	text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
	color: #2c3e50;
}

.expertise_areas {
   display: flex;
  flex-direction: column;
    gap: 2.5rem;
}

.expertise_card {
	 gap  :        2rem;
  padding :  2rem;
    grid-template-columns: 300px 1fr;
   align-items: center;
  display: grid;
   border-radius: 15px;
   background: #f8f9fa;
}

.expertise_card:nth-child(even) {
   grid-template-columns: 1fr 300px;
}

.expertise_card:nth-child(even) .expertise_image {
   order: 2;
}

.expertise_card:nth-child(even) .expertise_content {
  order: 1;
}



.expertise_image {
    width: 100%;
   height: 200px;
    object-fit: cover;
   border-radius: 10px;
}

.expertise_name {
          font-size     :     1.5rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.expertise_details {
        color: #666;
   line-height: 1.7;


}

.achievements_section {
    padding: 5rem 0;
  background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

.achievements_wrapper {
	 max-width: 1200px;
	margin: 0 auto;
    padding:    0 2rem;
    text-align: center;}

.achievements_title {
    font-size   :2.5rem;
    margin-bottom: 3rem;
}

.stats_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.stat_item {
    padding    : 2rem;
}

.stat_number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
    color: #f39c12;
}

.stat_label {
    font-size: 1.1rem;
   opacity :        0.9;
}

.approach_section {
   padding: 5rem 0;
  background: white;
}

.approach_container {
  max-width: 800px;

  margin: 0 auto;

          padding: 0 2rem;

	 text-align :       center;
}

.approach_title {


    font-size: 2.5rem;
   margin-bottom: 2rem;
   color  :        #2c3e50; 
	
	}

.approach_paragraph   {
	font-size: 1.05rem;
  line-height: 1.8;
    color: #555;
  margin-bottom: 1.8rem;
}

.thankyou_section {
    margin-top: 80px;
   padding: 5rem 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
          color: white;

}

.thankyou_container {

    max-width     : 1200px;
  margin: 0 auto;
   padding: 0 2rem;
	display: grid;
   grid-template-columns: 2fr 1fr;
      gap: 4rem;
    align-items: center;
	}

.thankyou_content {
  text-align: center;
}

.success_icon_area {
    margin-bottom: 2rem;
}

.checkmark_circle {
	  width   : 80px;
  height: 80px;
    border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;

}

.checkmark {
   width: 25px;
  height: 15px;
    border: 3px solid white;
   border-top: none;
   border-right: none;
  transform: rotate(-45deg);
}

.thankyou_title {
	     font-size: 2.5rem;
  margin-bottom: 1.5rem;
    font-weight: 700;


}

.thankyou_message {
    font-size: 1.1rem;
  line-height: 1.7;
  opacity   :  0.9;
   margin-bottom: 3rem;
}

.next_steps_block {
  background: rgba(255, 255, 255, 0.1);
   padding: 2.5rem;
  border-radius: 15px;
    margin-bottom: 3rem;
    text-align: left;
}

.steps_title {
  text-align: center;
  margin-bottom: 2rem;
   font-size: 1.5rem;
}

.steps_list 
 {
        display:      flex;
  flex-direction: column;
  gap   : 1.5rem;
}  

.step_item {
   display: flex;

	    gap: 1rem;

	   align-items: flex-start;
}

.step_number {
    background: #f39c12;
  color: white;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   display    :     flex;
   align-items    :  center;
   justify-content: center;
	font-weight: 600;
   flex-shrink: 0; 

}

.step_title {
    margin-bottom: 0.5rem;
       font-size  :   1.1rem;
}

.step_description    {
	 opacity: 0.9;
    line-height: 1.6;
}

.thankyou_actions {
  display: flex;
  gap: 1rem;
    justify-content: center;
    margin-bottom  :     3rem;
          flex-wrap: wrap;
}

.return_home_btn {
    background: #f39c12;
  color: white;
  padding: 1rem 2rem;
    text-decoration: none;
 border-radius: 50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.return_home_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);

}

.learn_more_btn {
  background: transparent;
    color: white;
  padding: 1rem 2rem;
    text-decoration: none;
	 border    :2px solid white;
    border-radius: 50px;
        font-weight: 600;
   transition: all 0.3s ease;
}

.learn_more_btn:hover {
    background: white;
    color: #27ae60;
}

.contact_reminder		{
  background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
   border-radius: 10px;
}

.reminder_title {


  font-size: 1.2rem;
  margin-bottom: 0.5rem;

}

.reminder_text {
    margin-bottom: 0.5rem;
}

.office_hours 
 {
    opacity: 0.8;
    font-size: 0.9rem;
}


.thankyou_img {
    width: 100%;
  height     :      auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.additional_resources {
      padding: 5rem 0;
   background: #f8f9fa;
}

.resources_container {
    max-width: 1200px;
      margin:     0 auto;
       padding: 0 2rem;
}

.resources_title {
  text-align: center;
                    font-size: 2.3rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.resources_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource_card {
  background: white;
  padding   :   2rem;
    border-radius :        15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
       text-align: center;
  transition: transform 0.3s ease;
}

.resource_card:hover {
  transform: translateY(-5px);
}

.resource_image {
   width: 100%;
    height: 180px;
    object-fit: cover;
   border-radius: 10px;
    margin-bottom: 1.5rem;
}

.resource_title {
	 font-size   :        1.3rem;
	margin-bottom: 1rem;
	color: #2c3e50;
}

.resource_text {
  line-height: 1.6;
               color: #666;
}@media (max-width: 768px) {
    .about_hero_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about_main_title {
        font-size: 2.2rem;
    }
    
    .story_content {
        grid-template-columns: 1fr;
    }
    
    .expertise_card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expertise_card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise_card:nth-child(even) .expertise_image,
    .expertise_card:nth-child(even) .expertise_content {
        order: unset;
    }
    
    .thankyou_container {
        grid-template-columns: 1fr;
    }
    
    .thankyou_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .return_home_btn,
    .learn_more_btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
    
    .stats_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .thankyou_title {
        font-size: 2rem;
    }
    
    .stats_grid {
        grid-template-columns: 1fr;
    }
    
    .stat_number {
        font-size: 2.5rem;
    }
    
    .next_steps_block {
        padding: 1.5rem;
    }
    
    .step_item {
        flex-direction: column;
        text-align: center;
    }
    
    .values_grid {
        grid-template-columns: 1fr;
    }
}