*   {
    margin: 0;
   padding: 0;
    box-sizing: border-box;
}

html {
	 scroll-behavior: smooth;
	}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 line-height: 1.6;
  color   :   #2c3e50;
  background-color: #f8f9fa;
}

.nav_panel {

  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  padding: 1rem 0;
    position: sticky;
   top     :     0;
               z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     }

.nav_inner     {
   display: flex;
  align-items: center;
    justify-content: space-between;
    max-width :       1200px;
  margin :0 auto;
  padding: 0 2rem;
}

.brand_logo {
  flex: 0 0 auto;
}



.logo_img {
  height: 45px;
   width: auto;
}

.nav_list {
  display: flex;
  list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav_list a {
   color: white;
   text-decoration: none;
    font-weight: 500;
   font-size     : 1rem;
    transition  :    color 0.3s ease, text-shadow 0.3s ease;
    position: relative;
}

.nav_list a:after {


  content: '';
   position: absolute;
   bottom: -5px;
   left   :       0;
  width: 0;
    height: 2px;
    background: #64b5f6;
   transition: width 0.3s ease;
	}

.nav_list a:hover {
	color :   #64b5f6;
}

.nav_list a:hover:after {
     width: 100%;

     }

.burger_menu {

	   display: none;
  flex-direction: column;
    background: none;
   border: none;
   cursor: pointer;
    gap    :      0.5rem;


}

.burger_menu span {
       width: 28px;
  height    :    3px;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger_menu.open span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}



.burger_menu.open span:nth-child(2) {
   opacity: 0; 
	
}

.burger_menu.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger_menu {
        display: flex;
    }

    .nav_list {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        gap: 1rem;
        padding: 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav_list.active {
        max-height: 300px;
    }

    .nav_inner {
        padding: 0 1.5rem;
    }
}.hero_section {
   display  :   flex;
	align-items:      center;
   justify-content :space-between;
  max-width: 1200px;
    margin    :0 auto;
    padding    :    4rem 2rem;
   gap: 3rem;
}

.hero_content 
 {
   flex: 1;
}

.hero_content h1 {
   font-size: 3rem;
    line-height: 1.2;
               margin-bottom     :     1.5rem;
   color: #1a237e;
	font-weight :   700;
}



.hero_content p {
   font-size: 1.1rem;
   color: #555;
  margin-bottom: 2rem;
 line-height: 1.8;
}

.hero_visual {
 flex     : 1;
    max-width: 500px;
}

.hero_visual img {
                    width: 100%;
   height    :     auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.hero_visual img:hover	{
  transform: translateY(-5px);
}  @media (max-width: 768px) {
    .hero_section {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
    }

    .hero_content h1 {
        font-size: 2rem;
    }
}.cta_button_primary {
    display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
   padding: 0.9rem 2rem;
   border-radius     :     6px;
    text-decoration  :    none;
    font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid transparent;
    cursor  :     pointer;
    font-size: 1rem;
}

.cta_button_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.cta_button_secondary {

	    display: inline-block;
   background: transparent;
   color    :#6366f1;
       padding: 0.9rem 2rem;
   border-radius: 6px;
  text-decoration: none;
    font-weight: 600;
	 border: 2px solid #6366f1;
  transition: all 0.3s ease;
   cursor     :       pointer;

}

.cta_button_secondary:hover {
  background: #6366f1;
    color     :    white;
}

.services_preview {
   max-width: 1200px;

	   margin: 0 auto;

	         padding  :      4rem 2rem;
}

.services_preview h2 {
	font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
   color: #1a237e;
}

.services_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service_card {
  background : white;
    border-radius    :  10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition  :    all 0.3s ease; 

}

.service_card:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);}

.service_card img {
	width: 100%;
  height: 200px;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.service_card:hover img {
  transform: scale(1.05);
}

.service_card h3 {


   padding: 1.5rem 1.5rem 0.5rem;

   font-size: 1.4rem;

   color: #1a237e;
     }

.service_card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
               line-height: 1.6;
}

.features_section

{
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%); 
	  padding: 4rem 2rem; 
				margin: 2rem 0;
}

.features_section h2 {
   max-width: 1200px;
       margin: 0 auto 3rem;
   font-size: 2.5rem;
   color: #1a237e;
}


.features_list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature_item {
	 background: white;
    padding: 2rem;
	 border-radius: 8px;
   border-left: 4px solid #6366f1;
}

.feature_item h3{
    font-size  :    1.2rem;
    margin-bottom: 1rem;
   color  :#1a237e;
}

.feature_item p {
   line-height: 1.7;
   color: #666;
  font-size: 0.95rem;
}

.success_cases {
	 max-width: 1200px;
  margin    :  0 auto;
   padding: 4rem 2rem;
}

.success_cases h2 {
   font-size: 2.5rem;
 text-align: center;
    margin-bottom: 3rem;
    color: #1a237e;


}

.cases_container {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
	}

.case_block {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
   color: white;
  padding: 2.5rem;
 border-radius: 10px;
    transition: all 0.3s ease;
}

.case_block:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(99, 102, 241, 0.3);
}

.case_block h4		{

   font-size: 1.3rem;
   margin-bottom: 1rem;} 

.case_block p {
   font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.9;
}

.offerings_detail {
  background: white;
  padding: 4rem 2rem;
  margin: 2rem 0;


}

.offerings_detail h2

{
   max-width: 1200px;
   margin: 0 auto 3rem;
   font-size     :2.5rem;
  color : #1a237e;
}

.offerings_wrap     {
  display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                    gap: 2rem;
        max-width     :    1200px;
  margin: 0 auto;
}  

.offering_box {
   background: #f9fafb;
  padding: 2rem;
   border-radius: 8px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.offering_box:hover {


   border-color: #6366f1;
  background  :#f3f4f8;
  transform: translateX(5px);}

.offering_box h3 {
	font-size: 1.2rem;
  margin-bottom: 1rem;
  color  :     #1a237e;
}

.offering_box p    {
   color: #666;
  font-size   :     0.95rem;
   line-height: 1.6;
}

.strategy_overview     {
  max-width: 1200px;
	margin: 0 auto;
    padding   :4rem 2rem;
}

.strategy_overview h2	{


	 font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #1a237e;

}

.strategy_steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 2rem;
}

.step_item {


     text-align    :     center;
   padding: 2rem;

}

.step_number {
    display: inline-block; 
   width: 70px; 
 height    :        70px; 
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%); 
   color: white; 
    border-radius: 50%; 
  line-height: 70px; 
   font-size: 1.8rem; 
    font-weight: 700; 
    margin-bottom: 1.5rem;
}

.step_item h4 {
         font-size: 1.2rem;
    margin-bottom:        1rem;
  color:  #1a237e;

}

.step_item p {
	   color: #666;
	 line-height: 1.7;
    font-size: 0.95rem;
	}

.brand_building {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.brand_content   {

	    display: flex;
    align-items: center;
    justify-content: space-between;
       max-width: 1200px;
  margin: 0 auto;
     gap: 3rem;


} 

.brand_content img {

                    flex: 1;
	    max-width: 450px;
	  border-radius: 10px;
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}



.brand_text {
  flex: 1;
}

.brand_text h2 {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	color: #1a237e;
}

.brand_text h3 {
	    font-size: 1.4rem;
   margin-bottom: 1.5rem;
  color: #1a237e;}

.brand_text p {
  font-size: 1rem;
       margin-bottom: 1.5rem;
     line-height : 1.8;
   	color : #666;
}@media (max-width: 768px) {
    .brand_content {
        flex-direction: column;
        gap: 2rem;
    }

    .brand_text h2 {
        font-size: 1.8rem;
    }

    .brand_text h3 {
        font-size: 1.2rem;
    }
}.cta_final  
  {


   text-align: center;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
   color: white;
     }

.cta_final h2 {
    font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta_final p {
  font-size   :        1.1rem;
  margin-bottom: 2rem;
        opacity: 0.9;
}

.contact_section

{
    max-width: 600px;
		 margin  :  0 auto;
         padding: 4rem 2rem;
}

.contact_section h2 {
  text-align: center;
    margin-bottom     :    2.5rem;
        color: #1a237e;
  font-size: 2rem;
	
}

.contact_form {

	               background: white;
    padding: 2.5rem;
          border-radius  :       10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);


}

.form_group {
    margin-bottom: 1.8rem;
}

.form_group label {
      display    :block;
   margin-bottom: 0.7rem;
  font-weight: 600;
   color:       #1a237e;
   font-size: 0.95rem; 

}

.form_group input,
.form_group select,
.form_group textarea  
  {
    width: 100%;
  padding     :     0.8rem;
          border: 2px solid #e5e7eb;
 border-radius: 6px;
  font-family: inherit;
    font-size: 0.95rem;
	 transition: all 0.3s ease;
}  

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {

	    outline: none;
  border-color: #6366f1;
  background-color: #f3f4f8;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
	}

.form_submit {
   width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    border-radius: 6px;
   font-size: 1rem;
    font-weight: 600;
	cursor: pointer;
  transition: all 0.3s ease;
}

.form_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);


}


.form_submit:active {
  transform: translateY(0);
}


.footer_main {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%); 
	  color: white; 
	    padding: 3rem 2rem 1rem; 
	    margin-top: 3rem; 
	
}

.footer_top {
   display: flex;
                    justify-content: space-between;
   align-items: flex-start;
  max-width: 1200px;
    margin: 0 auto 2rem;
  gap: 3rem;
}

.footer_logo_block {
          flex:  0 0 auto;
}

.footer_logo {
    height: 45px;
 width: auto;
	transition: transform 0.3s ease;
}

.footer_logo:hover {
  transform: scale(1.05);
}

.footer_nav,
.footer_legal {
    flex :    1;
}

.footer_nav ul,
.footer_legal ul {
   list-style: none;
}

.footer_nav ul li,
.footer_legal ul li {
  margin-bottom: 0.8rem;
}

.footer_nav a,
.footer_legal a {
	  color: rgba(255, 255, 255, 0.8);
               text-decoration: none;
    transition: color 0.3s ease;
	 font-size: 0.95rem;
	}

.footer_nav a:hover,
.footer_legal a:hover {
  color     :    white;
}

.footer_contact		{


    max-width: 1200px;
      margin: 0 auto 1.5rem;
      padding-top: 2rem;
     border-top: 1px solid rgba(255, 255, 255, 0.2);
     }

.footer_contact p {
   font-size    :    0.95rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
	}

.footer_bottom 
 {
         text-align: center;
   max-width: 1200px;
   margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
   font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
	
}@media (max-width: 768px) {
    .footer_top {
        flex-direction: column;
        gap: 2rem;
    }

    .hero_content h1 {
        font-size: 1.8rem;
    }

    .services_preview h2,
    .success_cases h2,
    .offerings_detail h2,
    .strategy_overview h2 {
        font-size: 1.8rem;
    }

    .cta_final h2 {
        font-size: 1.8rem;
    }

    .contact_section {
        padding: 2rem;
    }

    .contact_form {
        padding: 1.5rem;
    }

    textarea {
        resize: vertical;
    }
}.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;
    }
}.services_hero {

	  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
   color: white;
    padding: 4rem 2rem;
    text-align: center;
   max-width: 1200px;
    margin : 0 auto;}

.services_hero h1 {
     font-size: 2.8rem;
   margin-bottom: 1rem;
     font-weight: 700;


}

.services_hero p {
    font-size: 1.1rem;
   opacity: 0.9;
     line-height: 1.7;
  max-width: 700px;
     margin: 0 auto;
}

.services_main
{
   max-width :   1200px;
         margin: 0 auto;
    padding: 4rem 2rem;
}

.service_detailed {
    margin-bottom: 4rem;
  background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition:    all 0.3s ease;
}

.service_detailed:hover {


  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);


}

.service_detailed.alternate {
   margin-top: 3rem;
}



.service_header {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 2rem;
	display: flex;
    justify-content: space-between;
	align-items: center;
    gap: 1rem;
}

.service_header h2 {
    font-size: 2rem;
   margin:  0;
   flex: 1;
}

.service_badge {
  background: rgba(255, 255, 255, 0.2);
   color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
  font-weight: 600;
   white-space: nowrap;
}

.service_body {
  display: flex;
  gap   :2rem;
   padding: 2rem;
  align-items: flex-start;
}

.service_body img {

       flex  :       0 0 40%;
    height: auto;
    width: 40%;
  transition: transform 0.3s ease;
  border-radius: 8px;
  object-fit    :      cover;
}

.service_body img:hover {
  transform: scale(1.03);
}

.service_description {
    flex: 1;
}

.service_description h3 {
  font-size: 1.5rem;
    color: #1a237e;
   margin-bottom: 1rem;
}

.service_description p     {
    color: #666;
    line-height: 1.7;
  margin-bottom: 1.5rem;
   font-size: 0.95rem;
}

.service_description h4

{
   font-size: 1.1rem;
   color: #1a237e;
  margin-bottom: 1rem;
    margin-top: 1.5rem;}

.service_features {
  list-style     :none;
  margin-bottom: 1.5rem;
}

.service_features li {

		padding: 0.6rem 0 0.6rem 2rem;
     color: #666;
  font-size: 0.95rem;
   position:        relative;
	line-height: 1.6;
     }

.service_features li:before {
	 font-weight: bold;
    color: #6366f1;
   font-size: 1.1rem;
  position: absolute;
	 left:        0;
  content: '✓';
}

.service_duration {
     background: #f3f4f8;
   padding: 1rem;
  border-left: 4px solid #6366f1;
    color: #1a237e;
    font-weight: 600;
  border-radius: 4px;
  margin: 1.5rem 0;}

.service_cta {

	    display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
                    color: white;
    padding: 0.8rem 2rem;
  border-radius: 6px;
    text-decoration: none;
  font-weight    :     600;
  transition: all 0.3s ease;
         margin-top   :       1rem;
}

.service_cta:hover  
  {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}@media (max-width: 768px) {
    .service_header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service_header h2 {
        font-size: 1.5rem;
    }

    .service_body {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service_body img {
        width: 100%;
        flex: 0 0 auto;
    }

    .services_hero h1 {
        font-size: 1.8rem;
    }
}.services_comparison {
	 max-width  : 1200px;
   margin   :    0 auto;
    padding:      4rem 2rem;
        background: white;
}

.services_comparison h2 {
   font-size     :   2.5rem; 
    text-align: center; 
   margin-bottom: 3rem; 
    color: #1a237e;
}

.comparison_table_wrapper {
  overflow-x: auto;

	    border-radius: 10px;

	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison_table {
   width: 100%;
    border-collapse:      collapse;
   background: white;
}

.comparison_table thead {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color  :white;
}

.comparison_table th {
   padding: 1.2rem;
    text-align: left;
  font-weight: 600;
   font-size: 0.95rem;
}

.comparison_table td	{
      padding   :       1rem 1.2rem;
   border-bottom: 1px solid #e5e7eb;
	font-size: 0.95rem;
}

.comparison_table tbody tr:hover {
	   background-color: #f9fafb;

}

.comparison_table .check {


 color: #27ae60;
  font-weight: 600;
	
	}

.comparison_table .cross {
  color: #e74c3c;
    font-weight: 600;}

.comparison_table .partial {
   color: #f39c12;
    font-weight: 600;
}

.comparison_table .high {
    color  :#6366f1; 

}

.comparison_table .medium {
    color: #8b5cf6;
}

.comparison_table .long {
        color: #6366f1;
}  

.comparison_table .flexible
{
	 color: #8b5cf6;
}

.comparison_table .short {
	  color: #6366f1; 
	
	}

.comparison_table .expensive {
   color: #e74c3c;
}

.comparison_table .affordable {
   color: #27ae60;
}

.services_workflow {
  max-width: 1200px;
    margin: 0 auto;
   padding     : 4rem 2rem;
}

.services_workflow h2 {
   font-size     :       2.5rem;
  text-align: center;
  margin-bottom: 3rem;
          color: #1a237e;
}

.workflow_steps     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap:  2rem;
}



.workflow_card {
    background: white;
	padding: 2rem;
   border-radius: 10px;
   text-align: center;
    border: 2px solid #e5e7eb;
	 transition: all 0.3s ease;
  position: relative;
}

.workflow_card:hover {
    border-color: #6366f1;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
  transform: translateY(-5px);
}

.workflow_number {
  display: inline-block;
    width: 60px;
	height: 60px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
    border-radius: 50%;
	 line-height: 60px;
    font-size: 1.5rem;
  font-weight: 700;
    margin-bottom: 1rem;
}

.workflow_card h3 {
    font-size  :1.2rem;
  color    :    #1a237e;
         margin-bottom  :      1rem;
}

.workflow_card p {
	 color: #666;
   line-height: 1.6;
	 font-size: 0.95rem;
}

.services_faq   {
  max-width: 1000px;
    margin     :     0 auto;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.services_faq h2
{
  font-size  :      2.5rem;
   text-align: center;
  margin-bottom: 3rem;
          color: #1a237e;
}

.faq_container    {
       display: grid;
  gap: 1.5rem;}

.faq_item {
    background: white;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #6366f1;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq_item:hover     {

	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);

}

.faq_item h3 {
		font-size: 1.1rem;
    color   :      #1a237e;
  margin-bottom: 1rem;
  cursor: pointer;
} 

.faq_item p {
	                    color: #666;

  line-height: 1.7;

    font-size: 0.95rem;
	}

.services_callout {
   text-align     :center;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
   color: white;
}

.services_callout h2 {
					font-size     :      2.5rem;
   margin-bottom: 1rem;
}

.services_callout p {
	   font-size :   1.1rem;
	   margin-bottom: 2rem;
	   opacity :        0.9;


}

.thankyou_hero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
  color: white;
   padding: 5rem 2rem;
   text-align: center;
}

.thankyou_container {
   max-width    :     800px;
                    margin: 0 auto;
}

.success_icon {
  width: 120px;
   height: 120px;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid white;
   border-radius: 50%;
   margin: 0 auto 2rem;
    display: flex;
   align-items: center;
   justify-content: center;
   font-size: 60px;
  animation : successPulse 0.6s ease-out;
}

.success_icon svg
{
   width: 70%;

   height   :        70%;
}@keyframes successPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
/* Utility classes */
.thankyou_hero h1  {
      font-size: 2.8rem;
  margin-bottom: 1rem;
    font-weight: 700;
}
/* Colors and backgrounds */


/* Colors and backgrounds */


.thankyou_subtitle {
  font-size: 1.1rem;
   opacity: 0.9;
    line-height: 1.7; 
	
}

.thankyou_details     {


  max-width: 800px;
  margin: 3rem auto;
    padding: 2rem;
     }

.thankyou_details h2 {
      font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #1a237e;}

.details_container {
  max-width  :1200px;
  margin: 0 auto;
    padding: 0 2rem;
}

.details_card {
          background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid #e5e7eb;
}

.detail_row {
   display: flex;
    justify-content: space-between;
  align-items   : center;
 padding: 1.2rem 0;
   border-bottom    :    1px solid #e5e7eb;
}

.detail_row:last-child{
    border-bottom: none;
	
}

.detail_label {
	 font-weight: 600;
  color: #1a237e;
    font-size: 0.95rem;
}

.detail_value {
    color: #666;
   font-size: 0.95rem;
}

.service_highlight {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
   padding     : 0.4rem 0.8rem;
	border-radius :        4px;
    font-weight: 600;
}
	/* Development only */

.thankyou_next_steps {
         max-width: 1200px;
   margin :     0 auto;
  padding: 4rem 2rem;


}

.next_steps_container h2 {

	   font-size: 2.2rem;
   text-align: center;
   margin-bottom: 3rem;
   color: #1a237e; 



}

.steps_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap:     2rem;
}

.step_card  {
	background: white;
  padding: 2rem;
  border-radius     :10px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.step_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}
	/* Hack for old browsers */

.step_num {
   display: inline-block;
   width: 70px;
   height: 70px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
                    color: white;
               border-radius: 50%;
    line-height: 70px;
	font-size: 1.8rem;
  font-weight: 700;
   margin-bottom: 1rem;
}

.step_card h3 {
       font-size: 1.3rem;
    color: #1a237e;
    margin-bottom: 1rem;
}

.step_card p {
  color: #666;
   line-height: 1.6;
  font-size   :      0.95rem;
}

.thankyou_resources

{


   max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
   text-align    :      center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
	border-radius    : 12px;
}

.resources_container h2 {
  font-size   :2rem;
			color: #1a237e;
  margin-bottom     :1rem;
}

.resources_container p {
         color: #666;
    font-size: 1.05rem;
   margin-bottom: 2rem;
    line-height: 1.6;
}

.resources_buttons {
	flex-wrap: wrap;
   display: flex;
    gap: 2rem;
  justify-content: center;
}

.resource_btn {
    display: inline-block;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color:  white;
   padding: 0.9rem 2rem;
	border-radius: 6px;
  text-decoration: none;
   font-weight: 600;
    transition   :    all 0.3s ease;
}

.resource_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.resource_btn.alternate {


   background: transparent;
     color: #6366f1;
     border: 2px solid #6366f1;
     }  

.resource_btn.alternate:hover {
      background: #6366f1;
      color: white;
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
}

.thankyou_confidence {
  max-width     : 1200px;
  margin: 3rem auto 0;
         padding: 2rem;
    text-align :     center;
    background: white;
    border-top: 2px solid #e5e7eb;
}

.confidence_container h3 {
   color: #1a237e;
   margin-bottom: 1rem;
  font-size  :        1.2rem;
}


.confidence_container p {
	       color: #666;
   font-size: 0.95rem;
    line-height: 1.7;
	}

.confidence_container a {
  color: #6366f1;
   -moz-transition: color 0.3s ease;
   text-decoration: none;
    font-weight    :      600;
	 -webkit-transition: color 0.3s ease;
		 transition: color 0.3s ease;
	-o-transition: color 0.3s ease;
}
/* Build system output */


.confidence_container a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .details_card {
        padding: 1.5rem;
    }

    .detail_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .resources_buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .resource_btn,
    .resource_btn.alternate {
        width: 100%;
    }

    .comparison_table {
        font-size: 0.85rem;
    }

    .comparison_table th,
    .comparison_table td {
        padding: 0.8rem 0.5rem;
    }

    .services_faq {
        padding: 2rem;
    }

    .faq_item {
        padding: 1.5rem;
    }
}