* {
   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;
}

a {

	  text-decoration: none; 
	    color   :inherit; 
	  transition: color 0.3s ease;}

.nav_container {
     background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 1rem 0;
  position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

}

.nav_wrapper {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   justify-content: space-between;
    align-items: center;
}

.nav_brand {
    display: flex;
  align-items: center;
}

.nav_logo {
    height: 45px;
       width: auto;
  filter: brightness(0) invert(1);
}

.nav_burger {
    display: none;
  flex-direction: column;
  background    :      none;
   border: none;
        cursor: pointer;
  gap: 0.35rem;
}

.burger_line {
	width    :25px; 
  height: 3px; 
   background-color :        #fff; 
   border-radius: 2px; 
    transition: all 0.3s ease;
}  

.nav_burger.active .burger_line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav_burger.active .burger_line:nth-child(2)

{
  opacity: 0;
}

.nav_burger.active .burger_line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav_menu {
	  display   :   flex;
  list-style: none;
   gap:     2.5rem;


}

.nav_link {
  color: #fff;
    font-weight: 500;
   padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
    transition   : border-color 0.3s ease;
	
}

.nav_link:hover {
  border-bottom-color: #3498db;
}

.hero_section {

	        display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
	max-width    :    1200px;
   margin: 0 auto;
    padding:4rem 2rem;
  background: linear-gradient(to right, #ecf0f1, #fff);
	}

.hero_content {

	    flex-direction: column;
   display: flex;
    gap: 1.5rem;
	}

.hero_title {
         font-size: 2.8rem;
   line-height: 1.2;
    color     :  #2c3e50;
  font-weight: 700; 

}

.hero_subtitle {
   font-size: 1.2rem;
  color: #555;
  line-height:1.5;
}

.hero_cta {
   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #fff;
	padding: 1rem 2rem;
   border-radius: 6px;
    font-weight  :600;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
  transition: all 0.3s ease;
}

.hero_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.hero_image {


               width: 100%;
          height: 400px;
   object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	}

.section_title {
    font-size   :     2.2rem;

	  text-align: center;

	  color: #2c3e50;

	    margin-bottom: 3rem;

		font-weight: 700;

	       position    :        relative;

	   padding-bottom: 1rem;
	
}

.section_title::after {
  content: '';
  position: absolute;
  bottom: 0;
			left: 50%;
  transform: translateX(-50%);
	 width   :80px;
	height: 4px;
  background: linear-gradient(90deg, #3498db, #2980b9);
    border-radius: 2px;

}

.about_section {
    max-width: 1200px;

	       padding :4rem 2rem;

	  margin: 0 auto;
}

.about_grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 2.5rem;
}

.about_card {
 background: #fff;
    border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.about_card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card_image {
    height: 250px;
      object-fit  :  cover;
   width: 100%;
}

.card_title {
  font-size: 1.4rem;
  color: #2c3e50;
   padding    :      1.5rem 1.5rem 0.5rem;
		 font-weight: 600;
}

.card_text

{
      padding : 0 1.5rem 1.5rem;
   color: #555;
   line-height: 1.7;
}

.services_preview {
    max-width: 1200px; 
	    margin: 0 auto; 
	   padding: 4rem 2rem; 
	   background    :    #f0f3f5;
}

.services_items {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;

}

.service_item {
	 background: #fff;
    border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.service_image {
        width: 100%;
  height     :  200px;
  object-fit: cover;
}

.service_name {
     font-size: 1.3rem;
   color: #2c3e50;
     padding: 1.2rem 1.2rem 0.5rem;
   font-weight: 600;
}

.service_desc{
	padding: 0 1.2rem 1.2rem;
    color: #666;
   font-size: 0.95rem;
    line-height: 1.6; 

}

.benefits_section {
  margin: 0 auto;
   padding: 4rem 2rem;
          max-width: 1200px;
}

.benefits_wrapper {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding: 3rem;
        border-radius  :10px;
}

.benefits_list {
    list-style: none;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit_item {
    padding: 1.2rem;
   background    :        #fff;
       border-left: 4px solid #3498db;
	border-radius: 4px;
	color: #2c3e50;
          font-weight: 500;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.conference_section {
    max-width: 1200px;
    margin   :   0 auto;
   padding: 4rem 2rem;
}

.conference_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.conference_card {
   background: #fff;
	border-radius: 10px;
	overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.conference_card:hover
	{
  transform: scale(1.03);
}

.conf_image {

    height: 220px;
      object-fit   :  cover;
    width: 100%;


}



.conf_title {
  font-size: 1.3rem;
  color: #2c3e50;
   padding  :      1.3rem 1.3rem 0.5rem;
   font-weight: 600;
}

.conf_text {
 padding: 0 1.3rem 1.3rem;
    color: #555;
	font-size: 0.95rem;
	 line-height: 1.6; 


}

.cta_section  
  {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
         padding: 4rem 2rem;
               text-align: center;
  margin    : 2rem 0;
}

.cta_content {
   max-width: 800px;
   margin: 0 auto;
}

.cta_title   {
    font-size: 2.2rem;
     color: #fff;
   margin-bottom: 1rem;
  font-weight: 700; 

}

.cta_text {
    font-size: 1.1rem;

  color: #ecf0f1;

  margin-bottom: 2rem;

  line-height: 1.6;
}



.cta_button {
    display: inline-block;
    background: #3498db;
    color: #fff;
  padding: 1rem 2.5rem;
    border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta_button:hover {
	background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}


.contact_section {
   padding: 4rem 2rem;
   margin: 0 auto;
      max-width: 1200px;
}


.contact_title {
   font-size: 2.2rem;
    text-align: center;
  color: #2c3e50;
	margin-bottom: 3rem;
   font-weight     :    700;
}

.contact_wrapper {
               display     :    grid;
    grid-template-columns  :    1fr 1fr;
     gap: 3rem;
    background: #f8f9fa;
	 padding: 2.5rem;
    border-radius: 10px;
}

.contact_form {
	       display: flex;
       flex-direction: column;
	gap: 1.5rem;


}

.form_group {
    display :flex;
    flex-direction: column;
   gap: 0.5rem;
}

.form_label {
   color: #2c3e50;

	font-size: 0.95rem;

 font-weight: 600;
}


.form_input,
.form_textarea {
    padding: 0.75rem 1rem;
  border: 2px solid #e0e0e0;
   border-radius:    6px;
 font-size: 0.95rem;
   font-family: inherit;
    transition  :     border-color 0.3s ease;
     } 

.form_input:focus,
.form_textarea:focus {
   border-color: #3498db;
  outline: none;
}

.form_textarea {
    resize: vertical;
}

.form_button {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: #fff;
    padding: 1rem;
		border: none;
      border-radius: 6px;
          font-weight: 600;
    font-size: 1rem;
  cursor: pointer;
	transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.form_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.contact_info_area {
   display: flex;
  flex-direction: column;
   gap: 2rem;
}

.info_heading {
    font-size: 1.5rem;

	    color: #2c3e50;

	  font-weight: 600;

	  margin-bottom: 1rem;
} 

.info_block
	{

  background: #fff;
  padding: 1.5rem;
  border-radius: 8px;
   border-left  :  4px solid #3498db;

}

.info_label {
   font-weight: 600;
                    color: #2c3e50;
	 font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info_value {
  color: #555;
  line-height: 1.6;
}

.footer_main {
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: #ecf0f1;
    padding    : 3rem 2rem 1rem;
	margin-top: 4rem;


}

.footer_container {


    max-width    :        1200px;
  margin :0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-bottom    :    2rem;}

.footer_block {
  display: flex;
   flex-direction: column;
    gap :  1rem;
}

.footer_brand {
   align-items: flex-start;
}

.footer_logo {
	   height: 50px;
     width    :      auto;
  filter: brightness(0) invert(1);


}

.footer_heading {
  font-size:    1.1rem;
   font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer_menu {
   list-style :     none;
    display: flex;
  flex-direction: column;
  gap  :   0.7rem;
}

.footer_link {
   color: #bdc3c7;
   transition: color 0.3s ease;
        font-size: 0.95rem;
}

.footer_link:hover {
    color: #3498db;
}

.footer_text {
    color: #bdc3c7;
  font-size: 0.9rem;
    line-height:       1.5;
}

.footer_bottom {
	  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
		text-align: center;
     }

.footer_copyright {
   color: #95a5a6;
  font-size: 0.85rem;
}@media (max-width: 768px) {
    .nav_menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #2c3e50;
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .nav_menu.active {
        display: flex;
    }

    .nav_burger {
        display: flex;
    }

    .hero_section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero_title {
        font-size: 2rem;
    }

    .hero_image {
        height: 300px;
    }

    .section_title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .about_grid,
    .services_items,
    .conference_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact_wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .footer_container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta_title {
        font-size: 1.8rem;
    }

    .benefits_list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero_title {
        font-size: 1.6rem;
    }

    .section_title {
        font-size: 1.5rem;
    }

    .nav_wrapper {
        padding: 0 1rem;
    }

    .nav_menu {
        padding: 1rem;
    }

    .nav_logo {
        height: 35px;
    }

    .footer_logo {
        height: 40px;
    }

    .contact_form {
        gap: 1rem;
    }
}.policySection 
 {
    padding: 80px 2rem;
      background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
    margin: 0 auto;
  text-align  :  left;
}

.policyContainer h2 {
    font-weight: 700;
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom:   1.5rem;
}

.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, #2c3e50 0%, #34495e 100%);
       padding: 5rem 2rem;
  text-align: center;
    color: #fff;
}

.services_hero_content {
   max-width  :   900px;
   margin: 0 auto;
}

.services_hero_title {
  font-size: 2.8rem;
	 font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}


.services_hero_text {
	        font-size: 1.2rem;
  color     :    #ecf0f1;
   line-height:        1.6;


}

.services_main {
   max-width  :     1200px;
  margin: 0 auto;
  padding  :   4rem 2rem;
}

.services_container {
          display: flex;
	flex-direction    :       column;
	gap: 4rem;
}



.service_detail {
        display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
     align-items    :       center;
  background: #f8f9fa;
  padding: 2.5rem;
               border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}



.service_detail_reverse {
    direction: rtl;
}

.service_detail_reverse > * {
         direction  :        ltr;
}

.service_detail_header {
    overflow: hidden;

	   border-radius: 8px;
}

.service_detail_image {
  transition: transform 0.3s ease;
   width: 100%;
   object-fit: cover;
  height: 350px;
}

.service_detail:hover .service_detail_image {
  transform: scale(1.05);
}

.service_detail_content {
    display  :     flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service_detail_title {

   font-size: 1.8rem;
    color: #2c3e50;
    font-weight: 700;
     }

.service_detail_intro {
  font-size: 1.1rem;
   color: #555;
  font-weight :        500;
    line-height:     1.6;

}

.service_detail_description {
  margin: 1rem 0;
}

.detail_subheading {
  font-size: 1rem;
   font-weight     :   600;
  color   :   #2c3e50;
  margin-bottom: 0.8rem;}

.detail_list {
  list-style: none;
         padding: 0;
  display: flex;
    flex-direction: column;
   gap   :        0.7rem;
}

.detail_list li {
  padding-left: 1.5rem;
    position: relative;
                    color: #555;
      line-height: 1.5;
}

.detail_list li::before {
  content: '•';
    position: absolute;
       left: 0;
  color: #3498db;
  font-weight: bold;
               font-size: 1.2rem; 
	
}

.service_duration {
   border-top    :  1px solid #e0e0e0;
     color    :  #7f8c8d;
  padding-top:  1rem;
    font-weight    :    500;
  font-size: 0.9rem;
}

.services_pricing_overview {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding: 3rem 2rem;
    max-width: 1200px;
  margin: 2rem auto;
    border-radius: 10px;
}

.pricing_title {
   font-size: 2rem;
   	text-align: center;
       color: #2c3e50;
     margin-bottom  :       2rem;
       font-weight: 700;
}

.pricing_info {
	max-width: 800px;
	margin: 0 auto;
    text-align: center;
}

.pricing_text {
  font-size: 1rem;
   color: #555;
         line-height: 1.7;
    margin-bottom: 1rem;


}

.pricing_cta {
    font-size: 1.1rem;
   color: #2c3e50;
       font-weight: 600;
  line-height: 1.6;
}

.services_process {
    max-width: 1200px;

	    margin: 0 auto;

	    padding: 4rem 2rem;
}

.process_steps {
    display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap    :      2rem;
}



.process_step {

   background: #fff;
  padding: 2rem 1.5rem;
   border-radius  :  8px;
    text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;}

.process_step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	


}

.step_number {
   display: flex;
  align-items     :   center;
   justify-content: center;
  width: 50px;
    height   :  50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
   border-radius  :       50%;
      font-size: 1.5rem;
  font-weight: 700;
	margin    :0 auto 1rem;
}

.step_title     {
    margin-bottom: 0.8rem;
  font-weight: 600;
   font-size: 1.2rem;
	 color: #2c3e50;}

.step_text {
    color: #555;
  line-height     :       1.6;
    font-size: 0.95rem;
}

.services_contact_cta		{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 3.5rem 2rem;
    text-align: center;
	 max-width: 1200px;
   margin: 2rem auto;
  border-radius: 10px;
}

.contact_cta_title {
    font-size: 2rem;
  color: #fff;
    font-weight: 700;
  margin-bottom: 1rem;

}

.contact_cta_text{
   font-size: 1.1rem;
   color: #ecf0f1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact_cta_button {
    display: inline-block;
  background: #3498db;
   color: #fff;
   padding: 1rem 2.5rem;
	 border-radius: 6px;
  font-weight :      600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);


}

.contact_cta_button:hover {
    background :        #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4); 

}

.thankyou_hero {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  padding: 5rem 2rem;
   text-align     :center;
  color: #fff;
}

.thankyou_container {
   max-width: 600px;
  margin: 0 auto;
}

.thankyou_content {
  display: flex; 
		flex-direction: column; 
	   align-items   :   center; 
	    gap: 1.5rem;
}

.thankyou_icon {
         width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
	 animation: scaleIn 0.6s ease-out;
}

.success_icon  
  {
	 width: 50px;
    height: 50px;
     color: #fff;
    stroke-width: 2; 
	
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou_title{
   font-size  :2.5rem; 
	          font-weight  : 700; 
	    margin: 0;
}
/* Production ready */

.thankyou_subtitle {
    font-size :  1.3rem;
	 color: #ecf0f1;
   margin     :    0;
}

.thankyou_message {
	color: #ecf0f1;
  font-size: 1rem;
   line-height: 1.7;
    margin-top: 1rem;
}

.whatsnext_section {
    max-width :  1200px;
    margin: 0 auto;
   padding: 4rem 2rem;


}

.whatsnext_title {
        font-size: 2.2rem;

	text-align: center;

   color: #2c3e50;

    margin-bottom: 3rem;

    font-weight: 700;
}

.whatsnext_grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.whatsnext_card {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%); 
         padding: 2rem; 
	 border-radius  : 8px; 
   text-align: center; 
  border-left     :4px solid #27ae60; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
   transition: transform 0.3s ease;
}

.whatsnext_card:hover {

  transform: translateY(-4px);}

.card_step {
   justify-content: center;
    width: 45px;
      display: inline-flex;
   height: 45px;
    align-items: center;
    font-weight: 700;
    border-radius: 50%;
  font-size: 1.2rem;
   margin-bottom:  1rem;
    background: #27ae60;
     color: #fff;
}

.card_heading {


   color: #2c3e50;
      font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;

}

/* Performance critical */


.card_description {
    color: #555;

    line-height: 1.6;

	font-size: 0.95rem;
}

.thankyou_info {
	max-width: 1200px;
    padding: 3rem 2rem;
   margin: 0 auto;
  background: #f0f3f5;
}

.info_wrapper {
   display: flex;
   flex-direction: column;
    gap: 2rem;
}


.info_title    {
    font-size: 1.8rem; 
		color: #2c3e50; 
	    font-weight :700; 
	    text-align: center;
}

.info_content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem; 

}
	/* Browser compatibility */
.info_column {

	    background   :    #fff;
          padding: 1.5rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);}

.info_subheading  
  {
    font-size :  1.1rem;
  color: #2c3e50;
     font-weight    :        600;
	 margin-bottom: 0.8rem;
}
	/* Layout styles */


/* Vendor-specific */
.info_text {
   color: #555;
  line-height   :     1.7;
   font-size: 0.95rem;
}
/* Temporary fix */


/* State modifiers */


.info_link


{
  color: #3498db;
      font-weight    :500;
    transition: color 0.3s ease;
}

.info_link:hover
{
   color: #2980b9;
}

.thankyou_resources {
  padding: 4rem 2rem;
  max-width   :    1200px;
    margin: 0 auto;
}

.resources_title {
    font-size: 2.2rem;
         text-align: center;
    color: #2c3e50;
  margin-bottom: 3rem;
        font-weight :   700; 
	
}

.resources_items {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap    :        2rem;
}

.resource_card {
          background: #fff; 
               padding: 2rem; 
  border-radius: 8px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
  display: flex; 
   flex-direction: column; 
   gap   : 1rem; 
   transition: all 0.3s ease;}

.resource_card:hover   {
	  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	}

.resource_heading {
  font-size: 1.2rem;
  color: #2c3e50;
  font-weight: 600;
}

.resource_text {

	 color: #555;
  line-height: 1.6;
  font-size: 0.95rem;
    flex-grow: 1;

}

.resource_link {


     -webkit-transition: color 0.3s ease;
    display: inline-block;
   color: #3498db;
   font-weight   :  600;
    transition    :   color 0.3s ease;
   align-self: flex-start;

} 

.resource_link:hover {
  color: #2980b9;
}

/* Animation and transitions */
.thankyou_cta {


  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding: 3.5rem 2rem;
  text-align: center;
     }

.cta_wrapper {
      max-width     :  800px;
	margin: 0 auto;
}

.cta_heading {
   font-size  :  2rem;
    color: #fff;
   font-weight: 700;
    margin-bottom: 1rem;
}

.cta_text {
    font-size     :  1.05rem;
	 color: #ecf0f1;
	 line-height: 1.7;
     margin-bottom: 2rem; 
	
}

.cta_home_button {
  display: inline-block;
      background: #3498db;
          color: #fff;
  padding: 1rem 2.5rem;
    border-radius: 6px;
     font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Typography */

.cta_home_button:hover {
    background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}
@media (max-width: 900px) {
    .service_detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service_detail_reverse {
        direction: ltr;
    }

    .services_hero_title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .service_detail_image {
        height: 250px;
    }

    .service_detail_title {
        font-size: 1.5rem;
    }

    .services_hero_title {
        font-size: 1.8rem;
    }

    .whatsnext_grid {
        grid-template-columns: 1fr;
    }

    .info_content {
        grid-template-columns: 1fr;
    }

    .resources_items {
        grid-template-columns: 1fr;
    }

    .process_steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou_title {
        font-size: 2rem;
    }

    .services_contact_cta {
        padding: 2.5rem 1.5rem;
    }

    .contact_cta_title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .service_detail {
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .service_detail_image {
        height: 200px;
    }

    .services_hero_title {
        font-size: 1.5rem;
    }

    .service_detail_title {
        font-size: 1.3rem;
    }

    .process_steps {
        grid-template-columns: 1fr;
    }

    .resources_items {
        grid-template-columns: 1fr;
    }

    .whatsnext_grid {
        grid-template-columns: 1fr;
    }

    .thankyou_title {
        font-size: 1.6rem;
    }

    .services_main {
        padding: 2rem 1rem;
    }
}