* {
  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;
}

.content_container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.primary_navigation {


  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
   top: 0;
    width: 100%;
  z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
} 

.nav_wrapper {
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
   display: flex;
  justify-content: space-between;
  align-items: center;
	height: 70px;
	
}

.brand_logo
	{
  height: 45px;
   width: auto;
}

.nav_links {
   display     :      flex;
   gap: 40px;
}

.nav_item {
    text-decoration :        none;
  color     :        #333;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav_item:hover {
   color: #2563eb;
}

.nav_item::after {
  content: '';
   position: absolute;
   width: 0;
   height: 2px;
  bottom: -5px;
  left: 0;
   background: #2563eb;
  transition: width 0.3s ease;
}

.nav_item:hover::after {
    width: 100%;
}

.mobile_toggle	{


  display : none;
   flex-direction: column;
    cursor: pointer;
   gap     :     4px;

}

.burger_line {
  width    :   25px;
   height: 3px;
    background: #333;
    transition: 0.3s;
}

.mobile_menu {
  display     :     none;
     background: white;
  position: absolute;
   top: 100%;
  left: 0;
	width: 100%;
  padding  :   20px;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile_nav_item {
	display: block;
  padding: 15px 0;
    text-decoration: none;
  color: #333;
    font-weight: 500;
          border-bottom: 1px solid #f0f0f0;
}

.mobile_nav_item:last-child {
	 border-bottom: none;
}

.hero_banner  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 120px 0 80px;
   margin-top: 70px;
}

.hero_banner .content_container  {
	display: grid;
  grid-template-columns    :    1fr 1fr;
    gap: 60px;
  align-items: center;
}

.hero_text_section h1     {
  font-size     :3.2rem;
   font-weight     :    700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero_subtitle {
  font-size: 1.3rem;
    margin-bottom: 35px;
   opacity: 0.9;
	 line-height: 1.5;
}

.hero_actions {
    display: flex;
	gap: 20px;
	flex-wrap: wrap;


}

.primary_cta {
    background    :   #ffffff;
		color: #2563eb;
    padding: 16px 32px;
  text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
	transition: all 0.3s ease;
   display: inline-block;
}

.primary_cta:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
     }

.secondary_cta {
   background  :      transparent;
  color: white;
    padding: 16px 32px;
   text-decoration: none;
	border: 2px solid white;
  border-radius: 8px;
    font-weight: 600;
   transition: all 0.3s ease;
	 display: inline-block;


}

.secondary_cta:hover	{
  background: white;
   color: #2563eb;
}

.hero_visual img {
      width :       100%;
  height  :     auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.value_proposition {
   padding: 100px 0;
    background: #f8fafc;
}

.value_proposition h2 {
    text-align: center;
	    font-size: 2.5rem;
	  margin-bottom: 60px;
	   color: #1e293b;
}

.benefits_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
               gap: 40px;
}

.benefit_card


{
	background: white;
    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.benefit_card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit_card img
	{
  width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius    :      8px;
   margin-bottom: 24px;
}

.benefit_card h3 {
    font-size: 1.5rem;
    margin-bottom     :  16px;
   color: #1e293b;
}

.benefit_card p {
    color   :  #64748b;
  line-height: 1.6;
	
}

.cta_section   {
  background: linear-gradient(45deg, #2563eb, #3b82f6);
  color  :     white;
  padding: 80px 0;
}

.cta_section .content_container {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap    :50px;
    align-items: center;
}

.cta_content h2  {
   font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta_content p {
	font-size: 1.1rem;
  margin-bottom: 30px;
               opacity: 0.9;
}

.cta_button {
   background: white;
  color: #2563eb;
  padding: 18px 36px;
               text-decoration: none;
        border-radius: 8px;
	 font-weight: 600;
   display: inline-block;
    transition: all 0.3s ease;
}

.cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15); 
	
}

.cta_visual img {
    width: 100%;

   height: auto;

   border-radius: 12px;
}

.services_detailed {
        padding: 100px 0;
}

.services_detailed h2 {
   text-align :  center;
        font-size: 2.5rem;
   margin-bottom: 60px;
   color: #1e293b;
}

.services_list {
       display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	   gap: 30px;
}

.service_item {
    background     :        #f8fafc;
  padding: 30px;
		border-radius: 8px;
   border-left: 4px solid #2563eb;
}

.service_item h3 {
    font-size: 1.3rem;
  margin-bottom: 12px;
  color: #1e293b;
	
}

.service_item p {
	color: #64748b;
}

.contact_section {
    background    :     #1e293b;
   color  :   white;
   padding: 100px 0;
	
}

.contact_section h2 {
    text-align    : center;
   font-size: 2.5rem;
   margin-bottom: 60px;
}

.contact_wrapper {
    display  :     grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: start;
}

.contact_info h3 {
     font-size: 1.5rem;
   margin-bottom :        20px;
}

.contact_info p {

	  opacity: 0.9;
  line-height: 1.6; 

     }

.contact_form {
   background: white;
   padding: 40px;
  border-radius: 12px;
  color: #333;
}

.form_group	{
    margin-bottom: 20px;
}

.form_group input, .form_group select, .form_group textarea {
      width: 100%;
    padding: 15px;
   border: 2px solid #e2e8f0;
    border-radius: 6px;
   font-size: 16px;
  transition: border-color 0.3s ease;
     }

.form_group input:focus, .form_group select:focus, .form_group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.submit_btn {
	background: #2563eb;
    color: white;
  padding: 16px 32px;
    border   :  none;
   border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
   width :        100%;
        transition: background 0.3s ease;
}

.submit_btn:hover {
  background: #1d4ed8;
}

.site_footer {
         background: #0f172a; 
	 color: white; 
    padding: 60px 0 20px;


}

.footer_content {
	max-width: 1200px;
       margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 40px;
}

.footer_logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom  :        16px;
	
}

.footer_section h4{
	margin-bottom: 20px;
   font-size: 1.1rem;
}

.footer_links {

   list-style: none;
     }

.footer_links li {
  margin-bottom: 8px;
}

.footer_links a {
       color: #94a3b8;
    text-decoration: none;
      transition: color 0.3s ease;


}

.footer_links a:hover {
    color    :white;
}

.footer_section p {
    color: #94a3b8;
    line-height: 1.6;
}

.footer_bottom {
	max-width: 1200px; 
			 margin: 0 auto; 
	  padding: 20px; 
	    border-top: 1px solid #334155; 
	    text-align: center; 
	    color: #94a3b8; 
	   margin-top: 40px;
}@media (max-width: 768px) {
    .nav_links {
        display: none;
    }
    
    .mobile_toggle {
        display: flex;
    }
    
    .hero_banner .content_container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero_text_section h1 {
        font-size: 2.5rem;
    }
    
    .hero_actions {
        justify-content: center;
    }
    
    .benefits_grid {
        grid-template-columns: 1fr;
    }
    
    .cta_section .content_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .value_proposition h2, .services_detailed h2, .contact_section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content_container {
        padding: 0 15px;
    }
    
    .hero_text_section h1 {
        font-size: 2rem;
    }
    
    .hero_subtitle {
        font-size: 1.1rem;
    }
    
    .hero_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary_cta, .secondary_cta {
        width: 100%;
        text-align: center;
    }
    
    .contact_form {
        padding: 25px;
    }
}.nav_item.active


{
   color: #2563eb;
   font-weight: 600;
}

.nav_item.active::after {
    width: 100%;
}

.about_hero {
  background: linear-gradient(120deg, #1e293b 0%, #334155 100%);

	color: white;

     padding: 120px 0 80px;

   margin-top    :      70px; 
	
}

.about_hero .content_container {
  display: grid;
  grid-template-columns :1fr 1fr;
    gap: 50px;
   align-items: center;
}

.about_hero_content h1 {
    line-height: 1.2;
      font-weight: 700;
  font-size: 3rem;
   margin-bottom: 20px;
}

.about_subtitle {
 font-size: 1.2rem;
          opacity: 0.9;
    line-height: 1.6;
}

.about_hero_visual img	{
     width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);

}

.our_story {
  padding: 100px 0;
   background: #f8fafc;
}

.our_story h2 {
  font-size: 2.5rem;
   text-align: center;
   margin-bottom:60px;
   color: #1e293b;
}  

.story_content {
        display: grid;
       align-items: center;
    gap: 60px;
  grid-template-columns: 1fr 1fr;
}

.story_text p {
  margin-bottom: 25px;
    font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
}

.story_visual img {
  width: 100%;
   height: auto;
                    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our_mission


{
   padding: 100px 0;
	  background :      white;
}

.our_mission h2 {
   font-size: 2.5rem;
   text-align: center;
	 margin-bottom: 60px;
     color: #1e293b;
}

.mission_grid  {
    display   : grid;
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	  gap: 40px;
}

.mission_card {
   background: #f1f5f9;
	padding: 40px;
  border-radius: 12px;
  text-align: center;
  border-top: 4px solid #2563eb;
}

.mission_card h3 {

	  font-size: 1.5rem;
   margin-bottom    :    20px;
    color: #1e293b;}

.mission_card p {
   color: #64748b;
  line-height  :  1.6;
}

.our_approach {
   padding: 100px 0;
     background: #f8fafc;
}

.approach_content {


  display     :grid;
    grid-template-columns: 1fr 1fr;
       gap: 60px;
  align-items: center;

}

.approach_text h2 {


   font-size: 2.5rem;
    margin-bottom: 25px;
  color: #1e293b;


}

.approach_text > p {
   font-size: 1.1rem;
       margin-bottom: 40px;
     color: #475569;
   	 line-height:   1.7;
}  

.approach_points {
  display: flex;
	flex-direction :  column;
  gap: 25px;
	
}

.approach_point {
   padding: 20px;
	    background: white;
	    border-radius: 8px;
	   border-left:      4px solid #2563eb;


}

.approach_point h4 {
    font-size: 1.2rem;
   margin-bottom: 8px;
    color: #1e293b;
}

.approach_point p{
  color: #64748b;
  font-size: 0.95rem;

}

.approach_visual img {
    width     :   100%;
	height: auto;
 border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our_expertise {
    padding: 100px 0;
    background  :      white;
}

.our_expertise h2
{
    font-size: 2.5rem; 
	  text-align: center; 
	  margin-bottom: 60px; 
	  color: #1e293b;
}

.expertise_grid {

	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;



}

.expertise_item {
    padding: 30px;
    background: #f8fafc;
    border-radius : 10px;
   transition: transform 0.3s ease;
}

.expertise_item:hover   {
  transform: translateY(-5px);
}

.expertise_item h3    {
   font-size  :    1.3rem;
   margin-bottom   :      15px;
				 color: #1e293b;
}

.expertise_item p {
  color: #64748b;

	   line-height: 1.6;
}

.our_results {
  padding: 100px 0;
  background: #1e293b;
   color: white;
  text-align: center;
}

.our_results h2 {


  font-size: 2.5rem;
   margin-bottom: 60px;
	


}

.results_stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 40px;
   margin-bottom:    60px;
}

.stat_item


{
   text-align: center;
}

.stat_number {


    margin-bottom: 10px;
    font-size: 3rem;
   color: #60a5fa;
    font-weight: 700;

}  

.stat_label {
  font-size:    1.1rem;
  opacity   :   0.9;
}

.results_visual {
   max-width   :      600px;

	    margin: 0 auto;
}

.results_visual img {
   width: 100%;
    height: auto;
        border-radius: 12px;
}

.why_choose_us {
   padding   :        100px 0;
    background: #f8fafc;
}

.why_choose_us h2
	{
	 font-size: 2.5rem;
     text-align: center;
   margin-bottom: 60px;
    color: #1e293b;
}

.reasons_list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.reason_item {
  background: white;
   padding: 35px;
   border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}  

.reason_item h3 {
   font-size: 1.4rem;
    margin-bottom: 15px;
  color: #1e293b;
}

.reason_item p {
  color: #64748b;
  line-height: 1.6;
}

.cta_about {
  padding: 80px 0;
  background: linear-gradient(45deg, #3b82f6, #1e40af);
   color: white;
}

.cta_about .content_container
	{
   display: grid;
    grid-template-columns: 1fr 1fr;
               gap: 50px;
    align-items: center;
}

.cta_about_content h2 {
    font-size  :        2.2rem;
  margin-bottom: 20px;
}

.cta_about_content p {
    font-size: 1.1rem;
   margin-bottom: 30px;
    opacity: 0.9;
}

.cta_button_about {
    background: white;
   color: #2563eb;
  padding: 18px 36px;
  -moz-border-radius: 8px;
   -o-transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
    -webkit-border-radius: 8px;
    text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
    display    :   inline-block;
    transition: all 0.3s ease;
	}

.cta_button_about:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);

}

.cta_about_visual img {
    width: 100%;
   height: auto;
    border-radius: 12px; 

}

.thankyou_hero {


  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
               text-align: center;



}

.thankyou_content {
   max-width: 800px;
  margin: 0 auto;
}

.success_icon {
   margin-bottom: 40px;
}

.checkmark {
   width: 80px;
    height: 80px;
    margin: 0 auto;
   position: relative;
}

.checkmark_circle {
     width : 80px;
   height: 80px;
   position: absolute;
  border: 4px solid rgba(255,255,255,0.3);
	border-radius: 50%;
  background: rgba(255,255,255,0.1);

}

.checkmark_stem {
  position  :      absolute;
  width: 3px;
  height: 20px;
  background: white;
    left: 35px;
   top: 35px;
  transform: rotate(45deg);
}

.checkmark_kick {
   position   :       absolute;
    width: 3px;
    height: 12px;
    background   :    white;
   left: 28px;
   top: 42px;
  transform: rotate(-45deg);
}

.thankyou_content h1 {
  font-size: 2.8rem;
  font-weight: 700;
	margin-bottom: 20px;
}

.thankyou_subtitle {
   font-size: 1.3rem;

    margin-bottom: 50px;

	opacity: 0.9;

  line-height: 1.6;
}

.next_steps {
	  background: rgba(255,255,255,0.1);
   padding: 40px;
    border-radius: 12px;
  margin-bottom: 40px;
       text-align: left;

}

.next_steps h2 {
  font-size: 1.8rem;
  text-align    :        center;
    margin-bottom: 30px;
}

.steps_list {
   display: flex;
               gap :  25px;
    flex-direction: column;
}

.step_item  {
    display: flex;
   gap: 20px;
    align-items: flex-start;
}

.step_number {
   background: white;
  color: #10b981;
	 width: 40px;
       height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
	 font-weight:  700;
    flex-shrink: 0;
}

.step_content h3 {

	   font-size  :       1.2rem;
   margin-bottom: 8px;
	}

.step_content p     {
    opacity: 0.9;
   line-height   :    1.5;
}

.additional_info {
  background: rgba(255,255,255,0.1);
    padding: 30px;
   border-radius: 10px;
  margin-bottom: 40px;
} 

.additional_info h3 {
    font-size: 1.3rem; 
   margin-bottom: 15px;
}

.additional_info p	{
	    opacity: 0.9;
   line-height: 1.6;
     }

.thankyou_actions {
		 display: flex;
  gap: 20px;
  justify-content: center;
   flex-wrap: wrap; 
	}

.primary_button {
   background: white;
    color     : #10b981;
    padding: 16px 32px;
  text-decoration: none;
	 border-radius: 8px;
  font-weight:     600;
   transition: all 0.3s ease;
}

.primary_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.secondary_button {


    background: transparent;
               color     :        white;
  padding: 16px 32px;
    text-decoration: none;
   border: 2px solid white;
	 border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.secondary_button:hover {
   background: white;
   color: #10b981;
}

.thankyou_visual {
    margin-top: 60px;
     max-width: 500px;
   margin-left    : auto;
	 margin-right: auto;
}

.thankyou_visual img {
   width: 100%; 
   height    :      auto; 
   border-radius: 12px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	
}

.contact_info_section {

		padding: 80px 0;
  background: #f8fafc;
     }

.contact_info_section h2 {
	font-size: 2.2rem;
          text-align:    center;
   margin-bottom: 50px;
  color     :       #1e293b;
}

.contact_details {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   text-align    :        center;

}

.contact_item

{
    background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact_item h3 {
   font-size: 1.2rem;

    margin-bottom: 15px;

  color: #1e293b;
}

.contact_item p     {
    color: #64748b;
   line-height    :      1.6;
}

.additional_resources {
  padding: 80px 0;
   background: white;
}

.additional_resources h2 {
   font-size     :    2.2rem;
	text-align: center;
    margin-bottom: 50px;
  color  :  #1e293b;


}

.resources_grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;


}

.resource_card {
  background: #f8fafc;
    padding: 30px;
    border-radius: 10px;
    border-left :4px solid #10b981;
}

.resource_card h3 {
  font-size: 1.3rem;
    margin-bottom: 15px;
   color: #1e293b;
}

.resource_card p {
   color: #64748b; 
         line-height: 1.6;
}@media (max-width: 768px) {
    .about_hero .content_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about_hero_content h1 {
        font-size: 2.3rem;
    }
    
    .story_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .approach_content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta_about .content_container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou_content h1 {
        font-size: 2.2rem;
    }
    
    .steps_list {
        gap: 20px;
    }
    
    .step_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .thankyou_actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary_button, .secondary_button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about_hero_content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou_content h1 {
        font-size: 1.8rem;
    }
    
    .next_steps, .additional_info {
        padding: 25px;
    }
    
    .mission_grid, .expertise_grid, .reasons_list {
        grid-template-columns: 1fr;
    }
}