*


{
   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;
     }

.navbar_container {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
                    position     :      sticky;
  top: 0;
  z-index: 1000;
	
}

.navbar_wrapper {
 max-width: 1200px;
        margin: 0 auto;
  padding: 1rem 2rem;
    display: flex;
	 justify-content: space-between;
   align-items: center;
}

.navbar_logo_section {
  flex-shrink: 0;
}

.navbar_logo {
	  display     :    flex;
    align-items: center;
   text-decoration :none;
   transition: transform 0.3s ease;
	}

.navbar_logo:hover {
  transform: scale(1.05);
	
}

.logo_image {
    height  :   45px;
    width: auto;
  filter: brightness(0) invert(1);
	
}

.burger_toggle {
   display: none;
  flex-direction: column;
 background: none;
   border :  none;
   cursor: pointer;
    padding: 0.5rem;
                    gap:  0.5rem;
}

.burger_line {
   width     :  28px;
  height: 3px;
	background-color: white;
   border-radius: 2px;
    transition: all 0.3s ease;
	
}

.burger_toggle.active_state .burger_line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger_toggle.active_state .burger_line:nth-child(2) {

   opacity: 0;


}

.burger_toggle.active_state .burger_line:nth-child(3) {
  transform: rotate(-45deg) translate(10px, -10px);
}

.navbar_menu {
	   display: flex;
    list-style: none;
    gap: 2rem;
	align-items: center;
}

.nav_item {
    margin   :       0;
}

.nav_link    {
   color  :  white;
   text-decoration   :none;
    font-weight: 500;
   transition: all 0.3s ease;
  padding: 0.5rem 1rem;
    border-radius: 4px;
}


.nav_link:hover {

	  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
} 

.hero_section {
   max-width: 1200px;
                    margin: 0 auto;
   padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap    :        3rem;
   align-items:    center;
}

.hero_content {
		 animation   :        fadeInLeft 0.8s ease;}  

.hero_title {
  font-size: 2.8rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
  color   :      #1e3a5f;
  line-height: 1.2;
}

.hero_subtitle  {
   color: #555;
    margin-bottom    :     2rem;
  font-size: 1.1rem;
   line-height: 1.8;
}

.cta_button {

	display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
   color: white;
        padding: 0.75rem 2rem;
    border-radius: 6px;
               text-decoration: none;
   font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.cta_button:hover  
  {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.hero_image {
         animation   :      fadeInRight 0.8s ease;
}

.responsive_image {
                    width:    100%;
    height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services_preview {
    max-width: 1200px;
    margin: 3rem auto;
               padding: 3rem 2rem;
   background:    white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}

.section_header
	{
          text-align  : center;
   margin-bottom: 3rem;
}

.section_title {
  font-size:2.2rem;
    color:       #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section_description {
   font-size: 1rem;
    color: #666; 
	
}

.services_grid


{

	    display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
	}

.service_card {
   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    border-radius: 8px;
  transition  :    all 0.3s ease;
	text-align: center;
  border-left :  4px solid #0066cc;
}

.service_card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.service_icon_wrapper {
   margin-bottom: 1.5rem;
   display: flex;
  justify-content: center;

}

.service_icon {
    width: 48px; 
	    -moz-transition: all 0.3s ease; 
	   height: 48px; 
	  stroke    :   #0066cc; 
	    fill:     none; 
	    stroke-width: 2; 
	  stroke-linecap: round; 
	  stroke-linejoin: round; 
	  transition  :        all 0.3s ease;
}

.service_card:hover .service_icon {
  transform: scale(1.15) rotate(10deg);
  filter: drop-shadow(0 0 8px rgba(0, 102, 204, 0.4));
}

.service_name {
   font-size  :   1.3rem;
  color    :  #1e3a5f;
       margin-bottom: 1rem;
    font-weight: 600;
}

.service_description{

	       color: #666;
  line-height: 1.7;
   font-size: 0.95rem;
}

.portfolio_section  {
                    max-width: 1200px;
	 margin: 3rem auto;
  padding: 2rem;


}

.portfolio_wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2.5rem;
}

.portfolio_item {
   background: white;
  border-radius  :10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.portfolio_item:hover    {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.portfolio_image {
	 width: 100%;
  height: 200px;
   object-fit: cover;
    transition :transform 0.4s ease;
}

.portfolio_item:hover .portfolio_image {

	  transform: scale(1.08);

}

.portfolio_content   {


  padding: 2rem;
     }

.portfolio_title  {
   margin-bottom: 0.8rem;
   font-size: 1.2rem;
	 font-weight     :        600;
  color: #1e3a5f;
}

.portfolio_text {
    color: #666;
    font-size     :0.95rem;
   line-height: 1.7;
}

.benefits_section  {
   max-width     :1200px;
    margin: 3rem auto;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
  border-radius: 12px;
    color: white;
}

.benefits_title     {
    font-size: 2.2rem;
   text-align: center;
   margin-bottom: 3rem;
  font-weight: 700;
}

.benefits_container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;


}

.benefit_item {
    padding:  1.5rem;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  transition: all 0.3s ease;


     }



.benefit_item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px); 

}

.benefit_number	{
  font-size: 2.5rem;
	font-weight     :        700;
   margin-bottom: 0.5rem;
    opacity: 0.8;
}

.benefit_heading {
   font-size: 1.1rem; 
               margin-bottom: 0.8rem; 
    font-weight: 600;
}

.benefit_text {
   font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
}

.cta_section    {
	  max-width    : 1200px;
    margin: 3rem auto;
	padding: 3rem 2rem;
  background: linear-gradient(135deg, #f0f3f8 0%, #e8ecf3 100%);
  border-radius: 12px;
   text-align: center;


}

.cta_wrapper {
   animation: fadeIn 0.8s ease;
}

.cta_title {
  font-size    :2rem;
  color: #1e3a5f;
  margin-bottom: 1rem;
       font-weight: 700;
}

.cta_description {
	  font-size: 1.05rem;
  color: #666;
			margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
  margin-right: auto;}

.cta_button_primary {
   display: inline-block;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
   color: white;
  padding: 1rem 2.5rem;
          border-radius: 8px;
   text-decoration:   none;
         font-weight: 700;
                    font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.3);
}

.cta_button_primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

.contact_section


{
         max-width: 900px;
   margin: 3rem auto;
      padding     :   3rem 2rem;
    background: white;
   border-radius :12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact_title {
    font-size: 2rem;
  color  :#1e3a5f;
    text-align: center;
    margin-bottom    :0.5rem;
  font-weight: 700;
}  

.contact_description {
   text-align: center;
   color:        #666;
   margin-bottom: 2.5rem;
}

.contact_form

{
     gap : 1.5rem;
  flex-direction: column;
    display: flex;
}

.form_group {
    display: flex;

		flex-direction: column;
}

.form_label {

    font-weight    :    600;
   color: #2c3e50;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form_input,
.form_textarea  
  {
   padding: 0.75rem 1rem;
          border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family:  inherit;
       font-size: 1rem;
	transition: all 0.3s ease;
   color  :     #2c3e50;
}

.form_input:focus,
.form_textarea:focus {
    outline: none;
    border-color :#0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    background-color: #f8fafb;

}

.form_textarea{
    resize: vertical;
   min-height: 120px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form_submit_btn {
	  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
   border: none;
	 border-radius: 6px;
	font-weight: 700;
  font-size: 1rem;
	 cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    margin-top :       0.5rem;
}

.form_submit_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.form_submit_btn:active {
	  transform: translateY(-1px);
	}

.footer_container {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
  color:  white;
   margin-top: 4rem;
}

.footer_content {
    max-width: 1200px;
               margin: 0 auto;
	padding: 3rem 2rem;
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
}

.footer_section {
  animation: fadeInUp 0.6s ease;
} 

.footer_logo_wrapper {
   margin-bottom: 1rem;

}

.footer_logo {


  height: 50px;
                    width: auto;
  filter: brightness(0) invert(1);
    transition: transform 0.3s ease; 



}

.footer_logo:hover {
  transform: scale(1.05);
}

.footer_heading {


		font-size: 1.1rem;
       margin-bottom: 1.2rem;
      font-weight: 700;
     }

.footer_links {
   list-style: none;


}

.footer_link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration:   none;
  transition: all 0.3s ease;
    display: block;
  margin-bottom   :      0.6rem;
}

.footer_link:hover {
    color: white;
  margin-left: 5px;
}

.footer_text_item {
    margin-bottom: 0.8rem;
    line-height:        1.6;
  color: rgba(255, 255, 255, 0.9);
}

.footer_text {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
 font-size: 0.95rem;
}

.footer_bottom {
    text-align: center;
    padding    :2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.footer_copyright {
  margin: 0;
    font-size: 0.9rem;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .burger_toggle {
        display: flex;
    }

    .navbar_menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
        gap: 0.5rem;
        padding: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .navbar_menu.active_state {
        max-height: 300px;
    }

    .nav_item {
        width: 100%;
    }

    .nav_link {
        display: block;
        padding: 1rem;
        text-align: left;
    }

    .hero_section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero_title {
        font-size: 2rem;
    }

    .hero_subtitle {
        font-size: 1rem;
    }

    .services_grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio_wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .benefits_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section_title {
        font-size: 1.6rem;
    }

    .cta_title {
        font-size: 1.5rem;
    }

    .contact_form {
        gap: 1.2rem;
    }

    .footer_content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer_logo {
        display: inline-block;
    }

    .footer_link:hover {
        margin-left: 0;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .navbar_wrapper {
        padding: 1rem;
    }

    .logo_image {
        height: 40px;
    }

    .hero_title {
        font-size: 1.5rem;
    }

    .hero_subtitle {
        font-size: 0.95rem;
    }

    .section_title {
        font-size: 1.4rem;
    }

    .cta_title {
        font-size: 1.3rem;
    }

    .benefits_container {
        grid-template-columns: 1fr;
    }

    .cta_button,
    .cta_button_primary {
        width: 100%;
        padding: 0.7rem 1.5rem;
    }

    .contact_form {
        gap: 1rem;
    }

    .form_input,
    .form_textarea {
        padding: 0.65rem 0.8rem;
    }
}.policySection {
    background: #f8f9fa;
    padding: 80px 2rem;
}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
  text-align: left;
}
	/* Debug styles */

/* Legacy code */


.policyContainer h1		{
   font-size: 2.8rem;
    color: #1e3a5f;
  margin-bottom: 2rem;
		 font-weight   :       700;
    text-align: center;
}

.policyContainer h2	{
  font-size     :   2.5rem;
    color: #2c3e50;
   margin: 2.5rem 0 1.5rem 0;
    font-weight: 700;
	border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
}

.policyContainer h3  {
    font-size: 1.8rem;
          color: #1e3a5f;
   margin: 2rem 0 1rem 0;
  font-weight    :    600;
}

.policyContainer p {
     color: #7f8c8d;
       margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 1.1rem;

}

.policyContainer ul{
  margin: 1rem 0 1.5rem 1.5rem;
   color: #555;
}

.policyContainer ul li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.policyContainer strong
{
    color:     #1e3a5f;
}
@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.5rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.7rem;
    }

    .policySection {
        padding: 40px 0.5rem;
    }
}.services_header_section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    color: white;
     padding: 4rem 2rem;
  text-align: center;

}

.services_header_content {
  max-width: 900px;
    margin: 0 auto;
    animation: fadeIn 0.8s ease;
}

.services_main_title {
  font-size: 3rem;
    font-weight: 700;
   margin-bottom: 1rem;
	 line-height: 1.2;
}


.services_subtitle {
  font-size: 1.3rem;
    opacity: 0.95;
  line-height: 1.6;
}

.services_detailed_section {
     max-width: 1200px;
    margin: 3rem auto;
	padding: 0 2rem;
}

.services_detailed_wrapper {
    display: flex;
   flex-direction  :       column;
    gap: 3rem;
}

.service_full_card {
   background: white;
          padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
  border-left: 5px solid #0066cc;
  animation: fadeInUp 0.6s ease;
}

.service_full_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.service_full_header {
  display: flex;
	    align-items: center;
	   margin-bottom: 1.5rem;
	  gap    :        1.5rem;
}

.service_full_icon {
   flex-shrink    :     0;
}

.full_icon {
    fill: none;
    stroke-linejoin: round;
  transition: all 0.3s ease;
       stroke-width: 1.8;
  stroke     :#0066cc;
	width: 60px;
   stroke-linecap     : round;
	height: 60px;
}

.service_full_card:hover .full_icon {
  transform: scale(1.15);
  filter: drop-shadow(0 0 8px rgba(0, 102, 204, 0.3));
}

.service_full_title {

   font-size     :     1.8rem;
	 color:      #1e3a5f;
   margin: 0;
    font-weight: 700;
	}  

.service_full_description {
   font-size:    1rem; 
	  color: #555; 
	  line-height: 1.8; 
	   margin-bottom: 2rem;
}

.service_features	{
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
  padding: 1.5rem;
        border-radius: 8px;
   margin-top: 1.5rem;
}

.features_title

{
       font-size: 1.1rem;
                    color: #1e3a5f;
  margin-bottom: 1rem;
   font-weight: 600;
}

.features_list {
   list-style: none;
    padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 0.8rem;
}

.feature_item {
   line-height: 1.6;
  position     :   relative;
  color: #333;
    padding-left: 1.5rem;
	font-size: 0.95rem;
}

.feature_item::before  
  {

  content: "•"; 
	   left: 0; 
	    font-size: 1.3rem; 
	  font-weight :       700; 
		position     :    absolute; 
	   color: #0066cc;
}

.pricing_section {
    max-width:    1200px;
   margin: 4rem auto;
       padding: 3rem 2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);}

.pricing_title {
         font-size: 2.2rem;
  text-align: center;
    color: #1e3a5f;
    margin-bottom: 3rem;
   font-weight: 700;
	
}

.pricing_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
     }

.pricing_card {
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
  padding    :     2rem;
    border-radius: 10px;
  text-align: center;
	transition: all 0.4s ease;
    position: relative;
  border: 2px solid transparent;
}

.pricing_card:hover {
  transform: translateY(-10px);
   border-color: #0066cc;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.pricing_featured {
	  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
  color: white;
  transform: scale(1.05);
	}

.pricing_featured:hover {

  transform: scale(1.05) translateY(-10px);}

.pricing_badge 
 {
   position: absolute;
    top: -12px;
  right     :  20px;
         -moz-border-radius: 20px;
    background    :     #ff6b6b;
    color:white;
  padding    :     0.4rem 1rem;
   border-radius: 20px;
         font-size: 0.85rem;
   font-weight: 700;
}

.pricing_name {
  font-size: 1.4rem;
    font-weight: 700;
   margin-bottom: 0.5rem;
   color: #1e3a5f;
}

.pricing_featured .pricing_name {
  color :  white;


}

.pricing_desc {
  font-size: 0.95rem; 
	  margin-bottom: 1.5rem; 
	  color :        #666; 
	    opacity: 0.9;
}

.pricing_featured .pricing_desc {
  color: rgba(255, 255, 255, 0.9);
}

.pricing_amount {


   font-size: 1.8rem;
                    font-weight: 700;
    color : #0066cc;
   margin-bottom   :  1.5rem;
     }

.pricing_featured .pricing_amount {
  color: white;
}

.pricing_items {
      list-style: none;
  margin-bottom:       2rem;
  text-align   :        left;
}

.pricing_item
{
    padding:        0.7rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
   color  :       #555;
     font-size: 0.95rem;
   position     :   relative;
   padding-left: 1.8rem;
}

.pricing_featured .pricing_item {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
	
}

.pricing_item::before {
  content: "✓";
	position :   absolute;
   left     :     0;
  color: #0066cc;
  font-weight: 700;
}

.pricing_featured .pricing_item::before {
               color: #fff;
}

.pricing_button
{
  display: inline-block;
   padding:     0.85rem 2rem;
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
   color: white;
	text-decoration: none;
	border-radius: 6px;
               font-weight: 600;
	 transition: all 0.3s ease;
  width   : 100%;
	text-align: center;
  border     :none;
    cursor: pointer;
  font-size    :      0.95rem;
}

.pricing_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.pricing_button_primary

{
   background: white;
		color: #0066cc;
         font-weight: 700;

}

.pricing_button_primary:hover {
	  background: #f5f7fa;
}

.faq_section {
  max-width: 1000px;
  margin :   3rem auto;
	padding: 3rem 2rem;
  background    :    white;
	 border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.faq_title {

		font-size: 2.2rem;

   text-align: center;

  color: #1e3a5f;

  margin-bottom: 2.5rem;

                    font-weight: 700;
     }

.faq_container {
     display: flex;
  flex-direction: column;
	gap: 1rem;
     }

.faq_item  {
     border: 1px solid #e0e0e0;
   border-radius: 8px;
  overflow: hidden;
  transition   :   all 0.3s ease;
}

.faq_item:hover


{
          border-color: #0066cc;
  box-shadow: 0 3px 10px rgba(0, 102, 204, 0.1); 

}

.faq_question {
    width: 100%;
    padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
    border: none;
   text-align :left;
   cursor: pointer;
  display: flex;
	justify-content: space-between;
   align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
   font-size     :    1.05rem;
  font-weight: 600;
  color   : #1e3a5f;
}

.faq_item.active_faq .faq_question {
  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
   color: white;
}

.faq_text {
   flex: 1;
}

.faq_toggle	{
	transition: transform 0.3s ease;
    font-size: 1.5rem;
} 

.faq_item.active_faq .faq_toggle {
  transform: rotate(45deg);
}

.faq_answer {
       max-height: 0;
   overflow: hidden;
               transition: max-height 0.3s ease;
        background: white;
}

.faq_item.active_faq .faq_answer {
   max-height   :       400px; 

}

.faq_answer p

{
   padding: 1.5rem;
   color   :  #555;
     line-height: 1.8;
          font-size: 0.95rem;
}

.thankyou_section {
     max-width: 800px;
    margin: 4rem auto;
    padding: 3rem 2rem;


}

.thankyou_container {
  background: white;
       padding: 3rem;
    border-radius:    12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                    text-align: center;
   animation: fadeInUp 0.8s ease;
}

.thankyou_icon_wrapper {
  margin-bottom: 2rem;
}

.thankyou_icon_img {
   width: 80px;
  height: 80px;
  stroke: #2ecc71;
 fill    :       none;
   -moz-animation  :    scaleIn 0.6s ease;
   stroke-width: 1.8;
   -webkit-animation  :       scaleIn 0.6s ease;
  animation: scaleIn 0.6s ease;


}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou_title {
	    font-size: 2.5rem;
  color: #1e3a5f;
   margin-bottom   :     0.5rem;
    font-weight   :      700;

}

.thankyou_subtitle
	{

	    font-size: 1.3rem;
	 color: #0066cc;
         margin-bottom: 2rem;
   font-weight: 600;
	}

.thankyou_message {
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
	padding: 2rem;
  border-radius: 8px;
   margin-bottom: 2rem;
}

.thankyou_text {
  font-size     :       1rem;
	color   : #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}  

.thankyou_text:last-child  
  {
   margin-bottom: 0;
}

.thankyou_next_steps {
   -moz-border-radius: 8px;
   text-align: left;
   margin: 2.5rem 0;
   background: white;
  -webkit-border-radius :8px;
  padding: 2rem;
	 border-left: 4px solid #0066cc;
   border-radius: 8px;
}

.next_steps_title {
    font-size: 1.4rem;
   color  :   #1e3a5f;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.next_steps_list {


  list-style-position: inside;
  padding:   0;
	}

.next_step_item {
  padding :   0.8rem 0;
   color: #555;
   line-height: 1.7;
   font-size: 0.95rem;
}

.next_step_item::marker{
   color: #0066cc;
  font-weight: 700;
}

.thankyou_additional {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
   color: white;
   padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem; 

}

.additional_title {
   font-size: 1.2rem;
   margin-bottom: 1rem;
	font-weight   :      700;
}

.additional_text {
  font-size: 0.95rem;
	margin-bottom: 0.8rem;
    line-height: 1.6;
}

.additional_text:last-child {
   margin-bottom: 0;
}

.additional_text strong {

   color: #fff;
    font-weight     : 600;
}

.thankyou_actions {

	     gap: 1rem;
  margin-bottom: 2rem;
    flex-wrap: wrap;
   display    :     flex;

}

.thankyou_button_primary,
.thankyou_button_secondary {
    display: inline-block;
    padding :  0.9rem 2rem;
       border-radius: 6px;
   text-decoration: none;
    font-weight     :     600;
  transition: all 0.3s ease;
  flex: 1;
       min-width: 200px;
   text-align: center;
}  

.thankyou_button_primary {

  background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);}

.thankyou_button_primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4); 

}

.thankyou_button_secondary {
  background: linear-gradient(135deg, #e8ecf3 0%, #d8e4ed 100%);
   color: #1e3a5f;
	 border: 2px solid #0066cc;
}

.thankyou_button_secondary:hover {
  background: linear-gradient(135deg, #d8e4ed 0%, #c8d4dd 100%);
  transform: translateY(-2px);
}

.thankyou_faq_preview {
    text-align: left;
  background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f8 100%);
   padding:  2rem;
    border-radius: 8px;
}

.faq_preview_title {
  font-size     :  1.2rem;
  color: #1e3a5f;
	 margin-bottom: 1.5rem;
   font-weight: 700;
}


.faq_preview_content {
               display:   grid;
                    gap :   1.5rem;
}

.faq_preview_item
{
	background     :    white;
	padding: 1rem;
    border-left: 3px solid #0066cc;
   border-radius: 4px;
}

.faq_preview_q {
   font-weight: 600;
	color: #1e3a5f;
    margin-bottom:        0.5rem;
} 

.faq_preview_a {
     color: #555;
   font-size: 0.9rem;
  line-height: 1.6;
    margin :  0;}@media (max-width: 768px) {
    .services_main_title {
        font-size: 2rem;
    }

    .services_subtitle {
        font-size: 1rem;
    }

    .service_full_card {
        padding: 1.5rem;
    }

    .service_full_header {
        flex-direction: column;
        text-align: center;
    }

    .service_full_title {
        font-size: 1.4rem;
    }

    .features_list {
        grid-template-columns: 1fr;
    }

    .pricing_grid {
        grid-template-columns: 1fr;
    }

    .pricing_featured {
        transform: scale(1);
    }

    .pricing_featured:hover {
        transform: translateY(-10px);
    }

    .thankyou_container {
        padding: 2rem 1.5rem;
    }

    .thankyou_title {
        font-size: 1.8rem;
    }

    .thankyou_actions {
        flex-direction: column;
    }

    .thankyou_button_primary,
    .thankyou_button_secondary {
        width: 100%;
        min-width: unset;
    }
}

@media (max-width: 480px) {
    .services_header_section {
        padding: 2rem 1rem;
    }

    .services_main_title {
        font-size: 1.5rem;
    }

    .service_full_card {
        padding: 1rem;
    }

    .service_full_title {
        font-size: 1.2rem;
    }

    .features_list {
        gap: 0.6rem;
    }

    .pricing_title {
        font-size: 1.6rem;
    }

    .faq_question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .thankyou_icon_img {
        width: 60px;
        height: 60px;
    }

    .thankyou_title {
        font-size: 1.5rem;
    }

    .thankyou_container {
        padding: 1.5rem;
    }
}