* {
   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: #fafafa;
}

.main_navigation

{

	  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right     :  0;
   z-index: 1000;
        padding: 15px 0;
  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;
}

.brand_logo {
    height: 40px;
  width: auto;
}

.navigation_links {
  display: flex;
  list-style: none;
   gap: 30px;


}

.navigation_links a {

  text-decoration:       none; 
  color: #333; 
    font-weight: 500; 
    transition: color 0.3s ease;}

.navigation_links a:hover {
   color     :       #2c5aa0;
}

.mobile_menu_btn {
      display    : none;
  flex-direction: column;
    cursor: pointer;
  gap :     4px;
}

.mobile_menu_btn span {

	width: 25px;
    height: 3px;
   background-color:     #333;
    transition: all 0.3s ease;
}

.hero_banner {
    padding    :      120px 0 80px;
               max-width: 1200px;
	margin: 0 auto;
   display: flex;
   align-items  :  center;
    gap: 60px;
  min-height: 70vh;
}

.hero_content {
            flex: 1; 
   padding    :      0 20px;
}

.hero_content h1   {
   font-size: 3.2rem;
   color: #1a1a1a;
	margin-bottom: 25px;
   line-height: 1.2;
    font-weight: 700;
}



.hero_content p {
   font-size: 1.3rem;
    color: #666;
   margin-bottom: 35px;
  line-height: 1.5; 

}

.cta_buttons {
  display:  flex;
  gap: 20px; 
	
}

.primary_btn, .secondary_btn {


   display: inline-block; 
          padding: 15px 30px; 
  text-decoration: none; 
	border-radius: 6px; 
   font-weight: 600; 
   transition: all 0.3s ease; 
  font-size: 1rem;


}

.primary_btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.primary_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.secondary_btn {
     background     :     transparent;
        color: #2c5aa0;
    border: 2px solid #2c5aa0;}

.secondary_btn:hover		{
   background: #2c5aa0;
                    color: white; 
	
}

.hero_visual {
    flex: 1;
  padding   :        0 20px;
}

.hero_visual img {
  width :        100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise_section, .strategy_showcase, .contact_section {
    padding: 80px 0;
}

.section_container {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expertise_section h2, .strategy_showcase h2, .contact_section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  color: #1a1a1a;
    font-weight: 700;
}

.expertise_grid {
	    display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
    margin-top: 60px;
	
}

.expertise_card		{
    background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise_card:hover

{
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12); 

}

.expertise_card img {
   width: 100%;
   height: 250px;
   object-fit   :   cover;
}

.expertise_card h3 {
   font-size: 1.4rem;
   color: #1a1a1a;
	 margin: 25px 25px 15px;
    font-weight: 600; 
	
}


.expertise_card p {
   color     :        #666;
  margin: 0 25px 25px;
  line-height: 1.6;
  font-size: 0.95rem;
}

.strategy_showcase		{
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.strategy_content

{
    display: flex;
    align-items: center;
    gap: 60px;
}

.strategy_content > div:first-child {
   flex: 1; 
	
}

.strategy_content h2 {
  text-align: left;
    margin-bottom: 25px;
  font-size: 2.2rem;
}

.strategy_content p  {
  font-size: 1.1rem;
	color  :       #555;
   margin-bottom   :      30px;
    line-height: 1.7;
}

.strategy_points {

   list-style: none;
}

.strategy_points li {
    padding: 12px 0;
	 color: #444;
   position: relative;
   padding-left: 25px;
    font-size: 1rem;
}

.strategy_points li:before {
  content: '▶';
    position  :       absolute;
   left: 0;
  color: #2c5aa0;
    font-size: 0.8rem;
}

.strategy_image {
    flex: 1;
}

.strategy_image img {
	width :      100%;
         height: auto;
   border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta_section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
    text-align: center;
   padding  :     100px 0;
}



.cta_container {
   max-width: 800px;
   margin: 0 auto;
          padding: 0 20px;
}

.cta_section h2 {

	    font-size: 2.8rem;
      margin-bottom: 25px;
      font-weight: 700;
     }

.cta_section p {
  font-size: 1.2rem;
    margin-bottom: 40px;
      line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

.cta_button {
  display: inline-block;
  background: white;
    color: #2c5aa0;
  padding: 18px 35px;
   text-decoration: none;
   border-radius: 6px;
   font-weight: 600;
   font-size:        1.1rem;
    transition: all 0.3s ease;
}

.cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.contact_wrapper {
	 display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 60px;
	 margin-top: 50px;
}

.consultation_form {
   background: white;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
} 

.form_row {
    display: flex;
  gap: 20px;
   margin-bottom: 25px; 
	
}

.input_group {


  flex  :1;
    margin-bottom: 25px;
     }

.input_group label {
  display: block;
   margin-bottom: 8px;
  color: #333;
   font-weight: 500;
  font-size: 0.95rem;
}

.input_group input,
.input_group select,
.input_group textarea
{
	width: 100%;
   padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
   font-size   :1rem;
   transition: border-color 0.3s ease;
   font-family    :     inherit;
}

.input_group input:focus,
.input_group select:focus,
.input_group textarea:focus {
   outline: none;
    border-color: #2c5aa0;
}

.submit_btn     {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
   padding: 15px 30px;
  border: none;
    border-radius: 6px;
   font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
  width: 100%;

}

.submit_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.contact_info {
   background: #f8f9fa;
   padding : 40px 30px;
    border-radius: 12px;
    height: fit-content;
}  

.contact_info h3 {
          margin-bottom: 30px;
    color: #1a1a1a;
	 font-size: 1.4rem;
}

.info_item {
    margin-bottom: 25px;
}

.info_item strong {
    display: block;
    margin-bottom     :      5px;
    color: #2c5aa0;
    font-size: 1rem;
}

.info_item p {
   color :   #555;
   line-height: 1.5;
}  

.site_footer     {
    background: #1a1a1a;
         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: 35px;
    width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer_section h4 {
  font-size    :  1.1rem;
   color: white;
    margin-bottom: 20px;
}

.footer_section ul {
    list-style: none;
}

.footer_section ul li {
   margin-bottom: 10px;
}

.footer_section ul li a {
    color: #ccc;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer_section ul li a:hover {
  color: white; 

}

.footer_section p {
    color  :  #ccc;
     line-height    :       1.6;
	 font-size: 0.95rem;

}

.footer_bottom {
	  text-align: center;
   margin-top: 40px;
                    padding-top: 20px;
   border-top: 1px solid #333;
   color: #888;
	}@media (max-width: 768px) {
    .mobile_menu_btn {
        display: flex;
    }
    
    .navigation_links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navigation_links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero_banner {
        flex-direction: column;
        text-align: center;
        padding: 100px 0 60px;
        gap: 40px;
    }
    
    .hero_content h1 {
        font-size: 2.2rem;
    }
    
    .cta_buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .expertise_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .strategy_content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form_row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta_section h2 {
        font-size: 2rem;
    }
}.about_hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
       color   :    white;
    padding:       140px 0 100px;
  text-align: center;
}

.about_hero_content {
    max-width: 800px;
  margin: 0 auto;
    padding: 0 20px;
}

.about_hero h1 {
  font-size: 3rem;
    margin-bottom: 25px;
  font-weight    :      700;
}

.about_hero p {
  font-size: 1.3rem;
       line-height: 1.6;
     color: rgba(255,255,255,0.9);}

.company_story {
  padding: 80px 0;
         background: white;
}

.story_layout {
    display: flex;
    align-items: center;
   gap: 60px;
}

.story_text {
       flex: 1;
     }

.story_text h2 {
               font-size: 2.4rem;
  color: #1a1a1a;
    margin-bottom     :30px;
    font-weight: 700;
}

.story_text p {
    font-size   :      1.1rem;
  line-height: 1.7;
   color: #555;
         margin-bottom: 25px;
}

.story_image {
  flex: 1;
}

.story_image img {
  width: 100%;
   height: auto;
    border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.mission_values {
  padding   :   80px 0;
    background: #f8f9fa;
}

.mission_values h2 {
        font-size: 2.5rem;
         text-align: center;
  color: #1a1a1a;
  margin-bottom: 50px;
  font-weight: 700;
}


.values_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
	 margin-top: 50px;
}

.value_card     {
   background: white;
    padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value_card:hover {
  transform: translateY(-5px);
}

.value_card h3 {
    margin-bottom: 20px;
  color: #2c5aa0;
  font-size: 1.5rem;
  font-weight: 600;
}

.value_card p {
                    color: #666;
   line-height: 1.6;
    font-size: 1rem;
}

.expertise_showcase{
       padding: 80px 0;
   background: white;
}

.expertise_showcase h2 {
   	font-size: 2.4rem;
  text-align: center;
  color:    #1a1a1a;
     margin-bottom :    60px;
   font-weight: 700;
     }  

.expertise_layout {
    display: flex;
    align-items    :  flex-start;
  gap: 60px;
}

.expertise_visual {
  flex:    1;
}

.expertise_visual img {
   width: 100%;

	   height: auto;

	    border-radius: 10px;

	  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise_content {
  flex: 1;
}

.expertise_item {
    margin-bottom: 35px;
	 padding-bottom: 25px;
         border-bottom: 1px solid #eee;
}


.expertise_item:last-child {


  border-bottom: none;
}

.expertise_item h4 {
   font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 12px;
    font-weight: 600;
}

.expertise_item p {
  color: #666;
   line-height: 1.6;
  font-size:   1rem;
}

.methodology_section {
   padding: 80px 0;
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 
	
}

.methodology_section h2 {
    font-size    :     2.4rem;
  text-align: center;
    color: #1a1a1a;
    margin-bottom: 50px;
   font-weight   :  700;
}



.methodology_content {
  display: flex;
    align-items: flex-start;
	gap: 60px;
}

.method_visual {
    flex: 1;
	
}

.method_visual img {
   width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.method_description {
	flex: 1;
}

.method_description p {
   font-size: 1.2rem;
   color    :   #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.methodology_list {
    padding: 0;
   list-style: none;
}

.methodology_list li {
   margin-bottom: 20px;
  color: #555;
               font-size: 1rem;
   line-height: 1.6;
}

.methodology_list strong {

    color: #2c5aa0;
  font-weight: 600;
     }

.experience_stats {
   padding: 80px 0;
    background: white;
}

.experience_stats h2

{
				 font-size : 2.4rem;
     text-align: center;
        color: #1a1a1a;
      margin-bottom: 60px;
       font-weight: 700;
}

.stats_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
    margin-top: 50px;

}

.stat_item {
         text-align: center;
  padding: 30px 20px;
}

.stat_number {
  font-size: 3rem;
    font-weight: 700;
    color: #2c5aa0;
			margin-bottom: 10px;
}

.stat_label 
 {
   font-size   : 1.1rem;
   color: #666;
   font-weight: 500;
}

.why_choose_us {
  padding: 80px 0;
   background: #f8f9fa;

}

.choice_layout {
   display:       flex;
	align-items: center;
  gap: 60px;
}

.choice_content {
   -webkit-flex: 1;
    flex: 1;
    -ms-flex: 1;
}

.choice_content h2 {
	font-size: 2.4rem;
  color: #1a1a1a;
     margin-bottom: 25px;
    font-weight: 700;
}

.choice_content > p {
	  font-size: 1.2rem;
   color: #555;
    margin-bottom: 40px;
  line-height :       1.6;
     }

.choice_benefits {
   margin-top: 30px;
}

.benefit_point {

	   display: flex;
    align-items: flex-start;
   margin-bottom: 30px;
  gap: 20px;}

.benefit_icon     {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-top: 5px;
}

.benefit_point h4 {
  font-size   :     1.2rem;
  color: #1a1a1a;
  margin-bottom: 8px;
  font-weight: 600;
}

.benefit_point p {
   color: #666;
	line-height: 1.5;
   font-size: 1rem;
}

.choice_visual {
    -webkit-flex: 1;
    flex: 1;
}

.choice_visual img {
          width     :     100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.thankyou_section {
	   padding: 140px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 80vh;
	} 

.thankyou_container


{
    margin: 0 auto;
  grid-template-columns: 2fr 1fr;
    gap: 60px;
   display: grid;
	padding: 0 20px;
   max-width    :        1200px;
}

.thankyou_content {
    background: white;
   padding: 60px 50px;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
}

.success_icon {
	    margin-bottom: 40px;
     }

.check_circle {
	width: 80px; 
        height: 80px; 
    border: 4px solid #28a745; 
    border-radius: 50%; 
        margin: 0 auto; 
      position: relative; 
  animation: checkScale 0.6s ease-in-out;
}

.check_mark {
   position: absolute;
    top: 50%;
   left: 50%;
  transform: translate(-50%, -50%);
   width: 20px;
   height: 35px;
    border: solid #28a745;
	border-width: 0 4px 4px 0;
  transform: translate(-50%, -60%) rotate(45deg);
	animation: checkMark 0.8s ease-in-out 0.3s both;
}@keyframes checkScale {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkMark {
    0% { opacity: 0; transform: translate(-50%, -60%) rotate(45deg) scale(0); }
    100% { opacity: 1; transform: translate(-50%, -60%) rotate(45deg) scale(1); }
}.thankyou_content h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
      margin-bottom: 30px;
    font-weight: 700;
}

.thankyou_message {
 margin-bottom :  50px;
}

.main_message {


   font-size: 1.3rem;
    color: #2c5aa0;
   font-weight: 600;
    margin-bottom: 15px;

}

.thankyou_message p {

    font-size: 1.1rem;
  color: #666;
   line-height: 1.6;
	}  

.next_steps {
  text-align: left;
    margin-bottom: 40px;
}

.next_steps h3 {
    font-size: 1.6rem;
   color: #1a1a1a;
       margin-bottom: 30px;
    text-align     : center;
	font-weight: 600;
}

.steps_list {
    display: flex;
  flex-direction: column;
  gap: 25px;
}

.step_item {


	 display: flex;
    align-items: flex-start;
        gap: 20px;}

.step_number {
  color: white;
   align-items: center;
    justify-content    :     center;
   width: 35px;
  margin-top: 2px;
       height  :    35px;
    flex-shrink: 0;
  font-weight :    600;
   background: #2c5aa0;
  display: flex;
    border-radius :    50%;
}

.step_content h4 {
       font-size: 1.1rem;
   color: #1a1a1a;
  margin-bottom: 5px;
   font-weight: 600;
}

.step_content p {
   color: #666;
    font-size    :      0.95rem;
    line-height: 1.5;
	
}

.additional_info {
    background: #f8f9fa;
    padding: 30px;
    border-radius  :10px;
  margin-bottom: 40px;
  text-align   :    left;
}

.additional_info h3{
  font-size :      1.3rem;
 color: #1a1a1a;
    margin-bottom:    15px;
   font-weight: 600; 

}

.additional_info p {

   color: #555;
    line-height: 1.6;
    font-size: 1rem;
	}

.thankyou_actions {
   display: flex;
  gap: 20px;
    justify-content :      center;
}

.return_home_btn, .learn_more_btn {
		display: inline-block;
    padding :       15px 30px;
   text-decoration: none;
               border-radius     : 6px;
  font-weight: 600;
    transition: all 0.3s ease;
  font-size: 1rem;
}

.return_home_btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
   color: white;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.return_home_btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.learn_more_btn {
   background: transparent;
  color: #2c5aa0;
   border: 2px solid #2c5aa0;
}

.learn_more_btn:hover {
   background:   #2c5aa0;
    color: white;
}


.contact_reminder {
    background: white;
    padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  height: fit-content;
}

.contact_reminder h4 {
    font-size: 1.4rem;
  color     :#1a1a1a;
   margin-bottom: 25px;
  font-weight: 600;
}

.contact_details {
   margin-bottom: 30px;
}

.contact_details p{
  margin-bottom   :20px;
    color: #555;
   line-height  :     1.6;
}

.contact_details strong {

    color: #2c5aa0;
	font-weight: 600;}

.urgent_note {
       background: #fff3cd;
  border: 1px solid #ffeaa7;
	border-radius: 8px;
	padding: 20px;


}

.urgent_note p {

	 color: #856404;
   margin   :    0;
   font-size: 0.95rem;
  line-height: 1.5;
	}@media (max-width: 768px) {
    .about_hero h1 {
        font-size: 2.2rem;
    }
    
    .story_layout, .expertise_layout, .methodology_content, .choice_layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .values_grid, .stats_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .thankyou_container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou_content {
        padding: 40px 30px;
    }
    
    .thankyou_content h1 {
        font-size: 2rem;
    }
    
    .thankyou_actions {
        flex-direction: column;
    }
    
    .return_home_btn, .learn_more_btn {
        text-align: center;
    }
}.content_wrapper {
	max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
   line-height: 1.6;
}

.content_wrapper h3		{


                    font-size  :     1.6rem;
    color: #1a1a1a;
   margin: 30px 0 15px;
                    font-weight: 600;


}

.content_wrapper p    {
     font-size: 1rem;
   color: #555;
  margin-bottom    : 20px;
}