*

{
     margin: 0;
    padding: 0;
	box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

body

{


  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #2c3e50;
  background: #fafbfc;
   line-height: 1.6;

}

a {
    text-decoration: none;
    color: inherit;
}

img  
  {


  display: block;
      max-width  :        100%;
 height    :  auto; 
	
	}

.nav_container{
   position: sticky;
		 top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
   padding: 1rem 2rem;
}

.nav_content {
  max-width: 1200px;
        margin: 0 auto;
    display: flex;
	justify-content: space-between;
    align-items  :    center;
}

.nav_logo_section		{
    flex: 0 0 auto;
}

.nav_logo_img {

   width: 140px;
  filter: brightness(0) invert(1);
         transition     :  0.3s ease;
    opacity: 0.9;
	}

.nav_links {
    display: flex;
   list-style: none;
  gap: 2.5rem;
   margin     :   0;
                    padding: 0;
}

.nav_link {

    font-weight: 500;
   color: #34495e;
   transition: color 0.25s;
  font-size: 0.95rem;
   text-transform: capitalize;

}

.nav_link:hover {
    color: #3498db;
}

.burger_btn {


  display: none;
   background: none;
   border: none;
   cursor: pointer;
	flex-direction :     column;
   gap: 5px;
   padding :  0.5rem;
	}

.burger_btn span     {
 border-radius     : 2px;
	height: 2.5px;
   transition: all 0.3s ease;
         background: #2c3e50;
   width: 24px;


}

.burger_btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 8px);
}

.burger_btn.active span:nth-child(2)   {
  opacity: 0;
}

.burger_btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger_btn {
        display: flex;
    }

    .nav_links {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .nav_links.active {
        max-height: 300px;
    }

    .nav_link {
        padding: 1rem;
        border-bottom: 1px solid #ecf0f1;
    }
}.hero_section {
    padding :    4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :    white; 

}  

.hero_inner {
       max-width:     1200px;
       margin   :        0 auto;
  display :       grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.hero_text h1 {
   font-size: 3rem;
  font-weight  :       700;
	 margin-bottom: 1rem;
	line-height: 1.2;
}

.hero_desc		{
    font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
   max-width: 90%;
}

.hero_img {
       width: 100%;
    border-radius: 8px; 
	}

.cta_button {
  display: inline-block;
  background: #fff;
  color: #667eea;
   padding: 0.9rem 2.2rem;
   border-radius: 6px;
    font-weight  :     600;
                    transition: all 0.3s;
		cursor: pointer;
  font-size: 1rem;
}

.cta_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .hero_inner {
        grid-template-columns: 1fr;
    }

    .hero_text h1 {
        font-size: 2rem;
    }

    .hero_desc {
        font-size: 1rem;
    }
}.services_showcase {
                    padding: 5rem 2rem; 
	max-width: 1200px; 
  margin  :  0 auto;
}

.services_showcase h2 {
      font-size  : 2.5rem;
  margin-bottom: 3rem;
    text-align: center;
    color  :     #2c3e50;}

.services_grid {
	display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap:   2rem;
}

.service_card {


   background:       white;
  border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.35s;
} 

.service_card:hover  {

  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.service_img     {
  width: 100%;
   height: 200px;
   object-fit:        cover;
}

.service_card h3   {
  font-size: 1.3rem;
   margin: 1.5rem;
    color: #2c3e50;
}

.service_card p {
  margin: 0 1.5rem 1.5rem;
    color: #555;
    font-size  :       0.95rem;

}

.benefits_section {
    padding: 5rem 2rem;
   background: #f8f9fa;
    max-width     :       1200px;
   margin: 0 auto;
}

.benefits_section h2 {
	   font-size: 2.5rem;
	margin-bottom: 3rem;
    text-align: center;
	 color: #2c3e50;
     }

.benefits_layout {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.benefit_item {
    border-radius: 8px;
   padding: 2rem;
    background: white;
     }

.benefit_num
{
   font-size: 2.8rem;
    font-weight: 700;
    color: #667eea;
 margin-bottom: 0.5rem;
}

.benefit_item h4 {
   font-size: 1.2rem;
   margin-bottom: 0.8rem;
     color: #2c3e50;
}

.benefit_item p {
   color : #666;
   line-height    :        1.7;
}@media (max-width: 768px) {
    .benefits_layout {
        grid-template-columns: 1fr;
    }
}.cta_section	{
          padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
    text-align: center;
   border-top: 4px solid #e91e63;

}

.cta_section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta_section p {
   opacity: 0.95;
  margin-left: auto;
  font-size: 1.1rem;
    margin-bottom: 2rem;
  max-width: 600px;
    margin-right: auto;
}

.cta_button_alt	{
  background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid white;
   padding     : 0.9rem 2.2rem;
}

.cta_button_alt:hover {
  background: white;
					color: #f5576c;


}

.contact_section {

   padding: 5rem 2rem;
  max-width: 900px;
	margin    : 0 auto;}



.contact_section h2 {
  font-size: 2.2rem; 
	      margin-bottom: 1rem; 
	  text-align: center; 
	    color: #2c3e50;
}

.contact_intro {
  text-align:       center;
  color: #666;
  margin-bottom: 2rem;
   font-size: 1.05rem; 
	
}

.contact_form {
    background: white;
    padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}  

.form_group		{
  margin-bottom: 1.8rem;
}

.form_group label  
  {
   display: block;
   font-weight: 600;
  margin-bottom: 0.6rem;
   color: #2c3e50;
    font-size: 0.95rem;


}

.form_group input,
.form_group textarea,
.form_group select {
   		border-radius: 5px;
   font-size: 1rem;
   transition: border-color 0.3s;
  font-family: inherit;
    border: 1px solid #ddd;
  padding: 0.8rem;
    width: 100%;
}

.form_group input:focus,
.form_group textarea:focus,
.form_group select:focus {
	outline  :none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);


}
	/* Framework override */


/* Custom modifications */
/* TODO: optimize for mobile */
.form_submit {
  width   :      100%;
   padding  :   1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border: none;
  border-radius: 6px;
  font-weight   :    600;
    font-size: 1rem;
    cursor: pointer;
  transition: all 0.3s;
}

.form_submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.footer_main {
	background: #1a252f;
   color     :       #ecf0f1;
   padding: 3rem 2rem 1rem;
}

/* Cross-browser fix */

.footer_wrapper {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2rem;
    margin-bottom: 2rem;
}

.footer_block h4 {
  margin-bottom:  1rem;
    font-size : 1.1rem;
   color: #fff;


}

.footer_logo {
  width: 120px;
  filter: brightness(0) invert(1);
} 

.footer_links {
	list-style: none;
}

.footer_links li {
       margin-bottom: 0.8rem;}

.footer_links a {
    color: #bdc3c7;
	transition: color 0.25s;
		font-size: 0.95rem;
} 

.footer_links a:hover {
   color: #fff;
}

.footer_addr {
	   color    : #bdc3c7;
    line-height    :        1.8;
   font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer_phone {
  color: #667eea;
   font-weight   :600;
	 font-size: 0.95rem;
}

.footer_bottom {

  border-top: 1px solid rgba(255,255,255,0.1);
    padding-top :     1.5rem;
  text-align: center;}

.copyright {
    color: #95a5a6;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .footer_wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .nav_logo_img {
        width: 100px;
    }
}

@media (max-width: 480px) {
    .hero_text h1 {
        font-size: 1.5rem;
    }

    .services_showcase h2,
    .benefits_section h2,
    .cta_section h2,
    .contact_section h2 {
        font-size: 1.8rem;
    }

    .nav_container {
        padding: 0.8rem 1rem;
    }

    .contact_form {
        padding: 1.5rem;
    }
}.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 {
  font-size: 1.1rem;
   margin-bottom: 1.5rem;
          color    :      #7f8c8d;
    line-height: 1.7;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services_hero {

  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color     :   white;
   padding: 5rem 2rem;
   text-align: center;}

.services_hero_content h1 {
    font-size: 2.8rem;
   margin-bottom: 1rem;
   font-weight: 700;
}

.services_hero_content p {
   font-size:        1.15rem;
    opacity    :        0.95;
  max-width: 700px;
    margin    :0 auto;
}

.services_container {
        max-width  :       1200px;
       margin: 0 auto;
                  padding: 5rem 2rem;
}

.service_detail_block {
         background: white;
    border-radius: 12px;
   overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  transition :        all 0.3s;
}

.service_detail_block:hover
{
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service_detail_alt {
  grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.service_detail_alt > * {
	direction    :ltr; 

}

.service_detail_header {
    grid-column: 1 / -1;
  padding: 2rem;
  background :#f8f9fa;
	border-bottom: 2px solid #ecf0f1;
    display: flex;
   justify-content: space-between;
  align-items: center;
}

.service_detail_header h2

{
   font-size: 1.8rem;
 color: #2c3e50;
    margin: 0;
}

.service_badge {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :white;
    padding: 0.4rem 1rem;
  border-radius: 20px;
    font-size: 0.85rem;
  font-weight: 600;
   text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service_detail_img {
  width: 100%;
	 height: 320px;
  object-fit   :      cover;
    grid-column:   1;
	grid-row: 2;
}

.service_detail_alt .service_detail_img     {
   grid-column: 2;
}

.service_detail_text {
  padding: 2rem;
  grid-column: 2;
    grid-row: 2;
    display: flex;
      flex-direction: column;}

.service_detail_alt .service_detail_text {


   grid-column: 1;


}

.service_detail_text h3 {
    font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 1.2rem;
   margin-top: 0;
     }

.service_list {
	     list-style: none;
   padding: 0;
   margin: 0 0 1.5rem 0;


}

.service_list li {
	 padding: 0.6rem 0 0.6rem 2rem;
  position: relative;
  color: #555;
   line-height: 1.6;
}

.service_list li:before {

  content: '';
  position: absolute;
   left: 0;
   top: 1rem;
  width: 8px;
   height     :      8px;
    background: #38ef7d;
          border-radius: 50%;


     }

.service_desc {
    color   :       #666;
    font-size: 0.95rem;
 line-height: 1.7;
    flex-grow: 1; 
	
} 

.service_cta {
    margin-top: 1.5rem;
}

.service_button {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 0.9rem 2rem;
  border-radius: 6px;
          font-weight: 600;
       transition: all 0.3s;
    cursor: pointer;
   font-size: 0.95rem;
    text-align: center;
}

.service_button:hover {
  transform: translateY(-2px); 
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}@media (max-width: 900px) {
    .service_detail_block {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .service_detail_alt {
        direction: ltr;
    }

    .service_detail_img {
        grid-column: 1;
        grid-row: 2;
        height: 280px;
    }

    .service_detail_text {
        grid-column: 1;
        grid-row: 3;
    }

    .service_detail_alt .service_detail_img {
        grid-column: 1;
    }

    .service_detail_alt .service_detail_text {
        grid-column: 1;
    }
}.services_faq {
     padding: 5rem 2rem;
          max-width: 1200px;
          margin: 0 auto;
     background: #f8f9fa;


}

.services_faq h2 {
	    font-size: 2.5rem;

    text-align:   center;

   margin-bottom: 3rem;

    color: #2c3e50;

}

.faq_container {
  max-width: 900px;
    margin: 0 auto;
}

.faq_item {
  margin-bottom: 1.5rem;
   background: white;
  border-radius: 8px;
	 overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq_trigger {
    border     :      none;
    align-items: center;
   font-size: 1.05rem;
   font-weight: 600;
  color :       #2c3e50;
  padding: 1.5rem;
  background: white;
   cursor: pointer;
   justify-content: space-between;
               display: flex;
  width: 100%;
  text-align: left;
    transition: all 0.3s;


} 

.faq_trigger:hover {
   background: #f8f9fa;
  padding-left:      1.8rem;
}

.faq_trigger.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
}


.faq_answer {


   padding: 0 1.5rem;
     max-height: 0;
       overflow: hidden;
       transition: all 0.3s ease;
     }

.faq_answer.active {

   padding: 0 1.5rem 1.5rem 1.5rem;
	max-height: 500px;
}

.faq_answer p {
    color: #555;
   line-height: 1.7;
  margin: 0;
}

.services_cta_final {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
  color: white;
    text-align: center;
}

.services_cta_final h2 {
  font-size:        2.2rem;
       margin-bottom: 1rem;
}

.services_cta_final p {
   font-size: 1.1rem; 
  margin-bottom: 2rem; 
  opacity: 0.95; 
    max-width: 600px; 
    margin-left: auto; 
   margin-right: auto;
}

.cta_button_final {
   background: white;
   color: #f5576c;
}

.cta_button_final:hover {
  background: rgba(255,255,255,0.9);
}

.thankyou_container {
  min-height: calc(100vh - 200px);
   display: flex;
   align-items: center;
   justify-content: center;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thankyou_content {
    background: white;
   border-radius: 16px;
	 padding: 3rem;
    max-width: 700px;
	width  :        100%;
   text-align   :       center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.thankyou_icon
	{
  margin-bottom: 2rem;
}

.thankyou_icon svg {
   width: 80px;
  height :       80px;
         animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou_content h1 {
    font-size: 2.5rem;
   color: #2ecc71;
    margin-bottom: 1rem;
   font-weight: 700;
}

.thankyou_message {
	  color:   #2c3e50;
  margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
     }

.thankyou_details {
  background: #f8f9fa;
          padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align   :      left;
	
}

.thankyou_details p {
   margin-bottom: 1rem;
   margin-top: 0;
   color: #555;
   line-height: 1.8;
}

.thankyou_details p:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.thankyou_list {

	list-style: none;
   padding: 0;
  margin: 1rem 0;


}

.thankyou_list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: #555;
  position     :  relative;
}

.thankyou_list li:before {
  content: ''; 
  position: absolute; 
 left :      0; 
  top: 0.75rem; 
  width: 6px; 
    height: 6px; 
                    background: #667eea; 
   border-radius: 50%;
}

.thankyou_actions {

	    display: flex;
    gap  :    1rem;
   justify-content: center;
  flex-wrap: wrap;

}

.thankyou_button {

		display  :   inline-block;
	 padding: 0.9rem 2rem;
    border-radius: 6px;
	font-weight: 600;
   transition :     all 0.3s;
   cursor: pointer;
   text-align    :       center;
   font-size: 0.95rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.thankyou_button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3); 
	
}

.thankyou_button_alt {
  background: white;
      color     :      #667eea;
    border: 2px solid #667eea;
}

.thankyou_button_alt:hover {

	  background: #f8f9fa;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.2);

}@media (max-width: 768px) {
    .services_hero_content h1 {
        font-size: 2rem;
    }

    .services_faq h2,
    .services_cta_final h2 {
        font-size: 1.8rem;
    }

    .service_detail_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .thankyou_content {
        padding: 2rem;
    }

    .thankyou_content h1 {
        font-size: 1.8rem;
    }

    .thankyou_details {
        text-align: center;
    }

    .thankyou_actions {
        flex-direction: column;
    }

    .thankyou_button {
        width: 100%;
    }
}