* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
    overflow-x: hidden;
}

.topbar_section {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(52, 152, 219, 0.1);
    transition: all 0.3s ease;
}

.navigation_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

.brand_container .company_logo {
    height: 45px;
    width: auto;
}

.menu_links {
    display: flex;
    gap: 2rem;
}

.nav_item {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav_item:hover {
    color: #3498db;
}

.nav_item::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    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: #34495e;
    transition: all 0.3s ease;
}

.mobile_menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.mobile_nav_item {
    display: block;
    padding: 0.8rem 2rem;
    text-decoration: none;
    color: #34495e;
    transition: all 0.3s ease;
}

.mobile_nav_item:hover {
    background: #ecf0f1;
    color: #3498db;
}

.hero_banner {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero_text_area h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #ecf0f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero_subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta_buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary_cta, .secondary_cta {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary_cta {
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.primary_cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
}

.secondary_cta {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary_cta:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero_visual {
    position: relative;
}

.hero_image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.hero_image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.services_showcase {
    padding: 5rem 0;
    background: white;
}

.section_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services_showcase h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.services_showcase h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    border-radius: 2px;
}

.services_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.service_card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service_img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service_card:hover .service_img {
    transform: scale(1.05);
}

.service_card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service_card p {
    padding: 0 1.5rem 1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.transformation_section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.content_wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.transform_content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.transform_content > p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
    line-height: 1.7;
}

.benefits_list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit_item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #3498db;
}

.benefit_item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefit_item p {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.transform_img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta_section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    position: relative;
}

.cta_content_wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta_section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta_section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.main_cta_button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #f39c12, #e74c3c);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.main_cta_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.contact_section {
    padding: 5rem 0;
    background: white;
}

.contact_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact_info h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact_info > p {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact_details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact_item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact_item p {
    color: #7f8c8d;
}

.contact_form_wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.consultation_form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form_input, .form_select, .form_textarea {
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form_input:focus, .form_select:focus, .form_textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form_textarea {
    resize: vertical;
    font-family: inherit;
}

.submit_button {
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit_button:hover {
    background: linear-gradient(45deg, #2980b9, #3498db);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.footer_section {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer_content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer_logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer_info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer_column h4 {
    margin-bottom: 1rem;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.footer_column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer_column a:hover {
    color: #3498db;
}

.footer_column p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer_bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
}

.footer_bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .desktop_nav {
        display: none;
    }
    
    .mobile_toggle {
        display: flex;
    }
    
    .mobile_menu.active {
        display: block;
    }
    
    .hero_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero_text_area h1 {
        font-size: 2.5rem;
    }
    
    .content_wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact_container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer_info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services_grid {
        grid-template-columns: 1fr;
    }
    
    .cta_buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .navigation_wrapper {
        padding: 1rem;
    }
    
    .hero_text_area h1 {
        font-size: 2rem;
    }
    
    .contact_form_wrapper {
        padding: 1.5rem;
    }
    
    .section_container {
        padding: 0 1rem;
    }
}.nav_item.active {
   color    :   #3498db;
  font-weight: 600;
}

.nav_item.active::after {
    width: 100%;
}

.about_hero {
     margin-top: 80px;
    padding  :   4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items   :        center;
	 max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  padding-left    :  2rem;
    padding-right: 2rem;
     }

.about_hero_content h1 {
  font-size: 3rem;
   	 color: white;
       margin-bottom: 1.5rem;
       line-height: 1.2;
}

.hero_description {
  font-size: 1.2rem; 
  color: rgba(255, 255, 255, 0.9); 
          line-height    :       1.7;
}

.about_hero_img {
    width: 100%;
	 height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.mission_section {
       padding: 5rem 0;
         background: white;}


.mission_container {
    max-width    :1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.mission_content h2 {
   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 2rem;
    color: #2c3e50;
}

.mission_content > p {
  font-size: 1.2rem;
	text-align: center;
    max-width:       800px;
    margin: 0 auto 3rem;
    color: #7f8c8d;
    line-height: 1.7;
}

.values_grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    margin-top: 3rem;
}

.value_item {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	 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_item h3 {

	    color: #2c3e50;
  margin-bottom: 1rem;
   font-size: 1.4rem;
     }

.value_item p {
	color: #7f8c8d;
   line-height: 1.6;

}

.expertise_section {
   padding:  5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

}

.expertise_wrapper {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.expertise_text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  color: #2c3e50;
}

.expertise_text > p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
  color: #34495e;
  line-height: 1.7;
}

.stats_container {
   display    :grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
	}

.stat_item {
    text-align: center;
       padding:      1.5rem;
  background: white;
   border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat_number 
 {
    display: block;
	font-size: 2.5rem;
                    font-weight    :      bold;
    color: #3498db;
  margin-bottom: 0.5rem;
}

.stat_label {
      font-weight: 500;
  color: #7f8c8d;
  font-size: 0.9rem;
}

.expertise_img {
   width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);

}

.approach_section {

    padding: 5rem 0;
 background: white;

}

.approach_container {
   max-width: 1200px;
   margin: 0 auto;
	 padding: 0 2rem;
}

.approach_container h2 {
   font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.approach_grid {
   display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach_step {
  padding: 2rem;
    border-radius: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
   position: relative;
    overflow: hidden;
}

.step_number
	{
	font-size: 3rem;
    font-weight  :      bold;
    opacity    :  0.3;
   margin-bottom :      1rem;
}

.approach_step h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
}

.approach_step p {


  line-height: 1.6;
	opacity: 0.9;



}

.specializations_section
	{
   padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.specializations_content {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
         gap: 4rem;
   align-items: center;
}

.spec_img {
    width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.spec_text h2 {
  font-size: 2.5rem;
   margin-bottom: 2rem;
  color: #2c3e50;
}

.specialization_list {
  display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.spec_item  {
   padding   :    1.5rem;
     background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #9b59b6;
}

.spec_item h4 {


    color: #2c3e50;
   margin-bottom: 0.5rem;
   font-size: 1.2rem; 



}

.spec_item p {
  color: #7f8c8d;
      line-height: 1.6;


}

.why_choose_section {
   padding: 5rem 0;
    background: white; 
	
}

.why_choose_container {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;

}

.why_choose_container h2 {
    font-size: 2.5rem;
      text-align: center;
    margin-bottom: 3rem;
  color  :   #2c3e50;
}

.reasons_grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;

}

.reason_card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}


.reason_card:hover {
  transform: translateY(-5px);

}

.reason_img {
  width  :     100%;
   height: 250px;
    object-fit: cover;
}

.reason_card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
               color: #2c3e50;
  font-size   :        1.4rem;
}

.reason_card p {
    padding: 0 1.5rem 1.5rem;
  color    :        #7f8c8d;
  line-height: 1.6;
}

.thankyou_hero {
	 margin-top: 80px;
  padding    :  5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 80vh;
	display: flex;
   align-items: center;
}

.thankyou_container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
  align-items: center;
     }

.success_icon_wrapper {
   display: flex;

  justify-content: center;
}

.success_checkmark {
   width: 120px;
    height: 120px;
  border-radius: 50%;
   display: block;
      stroke-width: 3;
    stroke     :        #4CAF50;
          stroke-miterlimit: 10;
	box-shadow     :  inset 0px 0px 0px #4CAF50;
    animation    :fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    position: relative;
    background: white;
    margin: 0 auto;
}

.success_checkmark .check_icon {
  -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
  width: 120px;
	height: 120px;
   position: relative;
     border-radius: 50%;
   box-sizing: border-box;
    border: 3px solid #4CAF50;
   background:     white;
}

.check_icon .icon_stem   {
 position: absolute;
   width: 3px;
  height :     30px;
       background-color: #4CAF50;
  left: 45px;
	 top: 55px;
  transform: rotate(45deg);
  border-radius: 2px;
  animation: checkmark-stem 0.3s ease-in-out 0.9s forwards;
    opacity: 0; 
	

}

.check_icon .icon_kick	{

   position: absolute;
  width: 3px;
  height     :    18px;
   background-color: #4CAF50;
         left: 35px;
	top: 65px;
  transform: rotate(-45deg);
  border-radius: 2px;
   animation: checkmark-kick 0.2s ease-in-out 1.15s forwards;
    opacity: 0;}@keyframes checkmark-stem {
    0% {
        opacity: 0;
        transform: rotate(45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
}

@keyframes checkmark-kick {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    100% {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}.thankyou_content {
   text-align: center;
    color: white;
}

.thankyou_content h1 {
	margin-bottom: 1.5rem;
    line-height     :      1.2;
   font-size: 2.8rem;
}

.thankyou_message {


   font-size:    1.2rem;
    margin-bottom: 3rem;
         opacity :       0.9;
   line-height: 1.7;
     }

.next_steps     {
  background: rgba(255, 255, 255, 0.1);
	padding: 2rem;
    border-radius: 15px;
   margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.next_steps h3 {
   margin-bottom: 1.5rem;
    font-size:     1.5rem;
}

.steps_timeline {
  flex-direction: column;
       gap: 1.5rem;
          display: flex;
}

.timeline_step {
   display: flex;
    align-items: flex-start;
    gap: 1rem;
  text-align: left;
}

.step_indicator {
   width: 40px;
  height: 40px;
  background: #f39c12;
    color: white;
        border-radius   :       50%;
    display: flex;
    align-items :      center;
    justify-content: center;
  font-weight: bold;
      flex-shrink: 0;
}

.step_content h4 {
      margin-bottom: 0.5rem;
  font-size  :  1.1rem;
}

.step_content p {
  opacity: 0.8;
        line-height: 1.5;
  font-size     :  0.95rem;
}

.additional_info {
     background: rgba(255, 255, 255, 0.1);
   padding: 1.5rem;
        border-radius: 10px;
   margin-bottom  :    2rem;
  backdrop-filter: blur(10px); 


}



.additional_info h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.additional_info p {
               opacity: 0.9;
   	 line-height: 1.6;

}

.cta_buttons_thankyou {
  display:      flex;
  gap: 1rem;
   justify-content: center;
    flex-wrap: wrap;
}

.primary_button, .secondary_button {
	 padding: 1rem 2rem;
         text-decoration   :     none;
    border-radius    :       50px;
	 font-weight: 600;
  transition: all 0.3s ease;
	display: inline-block;
}

.primary_button {
  background: linear-gradient(45deg, #f39c12, #e74c3c);
 color: white;
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.primary_button:hover
	{

  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(231, 76, 60, 0.4);
	
}

.secondary_button {
    background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary_button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.thankyou_img {
	 width: 100%;
	 height:       auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact_info_section {
    background: white;
	padding: 4rem 0;
}

.contact_info_container 
 {
               max-width: 1200px;
     margin: 0 auto;
       padding: 0 2rem;
    text-align: center;

}

.contact_info_container h2 {
    font-size  : 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.contact_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact_info_item {
	padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius     :    12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact_info_item h4 {
  font-size :      1.2rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}


.contact_info_item p {
     color: #7f8c8d;
  line-height    : 1.6;
}@media (max-width: 768px) {
    .about_hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .about_hero_content h1 {
        font-size: 2.5rem;
    }
    
    .expertise_wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .specializations_content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats_container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .approach_grid {
        grid-template-columns: 1fr;
    }
    
    .reasons_grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou_container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thankyou_content h1 {
        font-size: 2.2rem;
    }
    
    .steps_timeline {
        align-items: center;
    }
    
    .timeline_step {
        flex-direction: column;
        text-align: center;
    }
    
    .contact_grid {
        grid-template-columns: 1fr;
    }
    
    .cta_buttons_thankyou {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .mission_container,
    .approach_container,
    .why_choose_container,
    .contact_info_container {
        padding: 0 1rem;
    }
    
    .values_grid {
        grid-template-columns: 1fr;
    }
    
    .next_steps {
        padding: 1.5rem;
    }
    
    .additional_info {
        padding: 1rem;
    }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
	  max-width: 800px;
  margin: 0 auto;
          text-align: left;}

.policyContainer h2 {
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom :  1.5rem;
     font-weight: 700;
}

.policyContainer p {

	    color  :   #7f8c8d;
    margin-bottom: 1.5rem;
  line-height : 1.7;
   font-size: 1.1rem;
     }  @media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}