* {
                    margin: 0;
  padding: 0;
        box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
  background: #ffffff;
}

.main-navigation {
   background: #1a1a2e;
               padding: 1rem 0;
   position: sticky;
    top: 0;
         z-index:      1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
	  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
   display: flex;
    justify-content: space-between;
  align-items: center;
	}

.logo-section .site-logo {
   height: 45px;
  width: auto;
}

.burger-menu {
   display:     none;
    flex-direction: column;
   background: none;
    border:   none;
   cursor: pointer;
   padding:       5px;
}

.burger-menu span {
  width: 25px;
   height :       3px;
   background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

.nav-links {
	 display: flex; 
	   gap: 2rem;
}

.nav-links a {
    color   :      #ffffff;
   text-decoration: none;
   -webkit-transition: color 0.3s;
    font-weight: 500;
  transition: color 0.3s;
   padding: 0.5rem 1rem;
}

.nav-links a:hover {
  color: #4ecdc4; 

}

.hero-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 100px 20px;
    display: flex;
   align-items: center;
  justify-content: space-between;
   max-width: 1200px;
  margin  :    0 auto;
    gap: 50px; 
	
}

.hero-content-wrapper {
    flex: 1;
   color :        #ffffff;
}

.hero-main h1 {
	    font-size  : 3rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;

}

.hero-subtitle {
	 font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.95;
}


.cta-primary {
  display: inline-block;
   background: #ffffff;
    color  :   #667eea;
   padding: 15px 40px;
   text-decoration: none;
  border-radius: 50px;
	font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-visual {
    flex: 1; 

}

.hero-visual img {
  width: 100%;

	    height: auto;

	   border-radius: 15px;

	  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	
}

.benefits-showcase, .methodology-section, .programs-overview, .contact-section {
   padding: 80px 20px;
}

.section-wrapper {
    max-width  :  1200px;
   margin: 0 auto;
}

.benefits-showcase h2, .methodology-section h2, .programs-overview h2, .contact-section h2 {
	text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #1a1a2e;
}

.benefit-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap:    40px;
}

.benefit-card {
  background: #f8f9fa;
   padding: 40px 30px;
    border-radius  :12px;
			transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.icon-holder {

	    width: 70px;
  height: 70px;
   margin-bottom :        20px;
	}  

.icon-holder svg {
		width: 100%;
    height: 100%;
    fill: #667eea; 

}

.benefit-card h3 {
   font-size: 1.5rem;
    margin-bottom: 1rem;
  color: #1a1a2e;


}

.benefit-card p {
    color: #555;
     line-height: 1.8;
}

.methodology-section {
	background     :        #f0f3f7;
}

.method-content     {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
	align-items: start;
}

.method-intro     {
      font-size:     1.1rem;
      color: #555;
   margin-bottom: 2rem;
    grid-column: 1 / -1;}

.method-steps  {
      grid-column: 1;}

.step-item {
	 margin-bottom: 2.5rem;
  padding-left: 80px;
	position: relative;
}

.step-number {
   position: absolute;
    left: 0;
 top: 0;
    font-size: 2.5rem;
	font-weight: 700;
    color: #667eea;
					opacity: 0.3;
}

.step-item h3 {
   font-size: 1.4rem;
    margin-bottom: 0.8rem;
	 color: #1a1a2e;
}

.step-item p {
  color: #555;
    line-height: 1.7;


}

.method-visual  
  {

	  grid-column: 2;

}

.method-visual img {
  width: 100%;
    border-radius:        15px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.programs-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
}

.program-box {
    background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition    :        transform 0.3s;
}

.program-box:hover {
	  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);}


.program-box img {
   width: 100%;
                    height: 220px;
    object-fit: cover;
}

.program-box h3 {
   padding: 25px 25px 10px;
     font-size:        1.5rem;
          color     :        #1a1a2e;
}

.program-box p {
    padding: 0 25px;
   color: #555;
                    margin-bottom: 1.5rem;
}

.program-features
	{
  list-style: none;
  padding: 0 25px 30px;
} 

.program-features li {
    padding: 8px 0;
  color: #667eea;
  position:relative;
    padding-left: 25px;
}

.program-features li:before
	{
    left: 0;
  font-weight: 700;
    position: absolute;
  content: '✓';
}

.cta-banner {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding: 80px 20px;
   text-align: center;
	color: #ffffff;
}

.cta-content h2		{

    font-size: 2.5rem;
	margin-bottom: 1rem;

}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity   :    0.95;
}

.cta-button {
	  display: inline-block;
  background: #ffffff;
  color: #11998e;
    padding: 15px 50px;
   text-decoration: none;
   border-radius: 50px;
   font-weight   :   600;
   transition: all 0.3s;


}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
	
}

.contact-section {
   background: #f8f9fa;
}

.contact-intro {
  text-align: center;
  font-size: 1.1rem;
          color     :        #555;
    margin-bottom: 3rem;
}

.contact-form {
   max-width: 800px;
                    margin: 0 auto;
  background: #ffffff;
    padding: 50px;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08); 

}

.form-row {
	display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-group
{
   display: flex;
    flex-direction:    column;
}

.form-group label     {
        font-weight: 600;
  margin-bottom  :   8px;
    color: #1a1a2e;


}

.form-group input, .form-group select, .form-group textarea {
  padding: 12px 15px;
      border: 2px solid #e0e0e0;
      border-radius:       8px;
       font-size: 1rem;
      transition: border-color 0.3s;
       font-family :  inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
   border-color: #667eea;
}

.submit-btn {
   background: #667eea;
   color: #ffffff;
    padding: 15px 50px;
	 border: none;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 600;
	cursor: pointer;
   transition: all 0.3s;
  width: 100%;
}

.submit-btn:hover     {
     background    :  #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
   background: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
    max-width: 1200px;
          margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
   height  :        40px;
  width: auto;
  margin-bottom:      15px;
  filter: brightness(0) invert(1);
}

.footer-desc {
   color :#b0b0b0;
        line-height: 1.7;
}

.footer-col h4 {
    margin-bottom: 20px;
   font-size: 1.2rem;

}

.footer-col ul {
   list-style: none;


}

.footer-col ul li {
   margin-bottom  : 10px;
}


.footer-col ul li a 
 {

    color  : #b0b0b0;
    text-decoration: none;
  transition: color 0.3s;

}

.footer-col ul li a:hover {
	 color: #4ecdc4;
}

.footer-col p {
    color  : #b0b0b0;
	line-height    :       1.8;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
	 text-align: center;
	 padding-top: 30px;
    border-top: 1px solid #333;
  color: #888;
}@media (max-width: 768px) {
.burger-menu {
display: flex;
}
.nav-links {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #1a1a2e;
flex-direction: column;
padding: 20px;
display: none;
gap: 0;
}
.nav-links.active {
display: flex;
}
.nav-links a {
padding: 15px;
border-bottom: 1px solid #333;
}
.hero-main {
flex-direction: column;
padding: 60px 20px;
}
.hero-main h1 {
font-size: 2rem;
}
.method-content {
grid-template-columns: 1fr;
}
.method-steps {
grid-column: 1;
}
.method-visual {
grid-column: 1;
}
.form-row {
grid-template-columns: 1fr;
}
.contact-form {
padding: 30px 20px;
}
}svg {


    stroke: #667eea;
    fill: none;
   stroke-width: 2;
				 stroke-linecap: round;
    stroke-linejoin: round;
	}

* {
  margin: 0;
       padding: 0;
      box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
               line-height: 1.6;
        color: #2c3e50;
   background: #ffffff;
} 

.main-navigation {
  background: #1a1a2e;
    padding: 1rem 0;
		 position: sticky;
    top: 0;
        z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	
}

.nav-container {
     max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
    display: flex;
  justify-content: space-between;
   align-items: center;
     } 

.logo-section .site-logo {
    height: 45px;
  width   :  auto;
	
}

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
  border: none;
   cursor: pointer;
  padding: 5px;
}

.burger-menu span {
    width: 25px;
   height: 3px;
  background: #ffffff;
   margin   :       3px 0;
   transition  :0.3s;
}

.nav-links {
	display: flex;
  gap    :       2rem;
}

.nav-links a {
    color: #ffffff;
  font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
	 padding    :      0.5rem 1rem;
}

.nav-links a:hover {
                  color: #4ecdc4;
     }

.hero-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
  display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
  margin: 0 auto;
   gap: 50px;
}

.hero-content-wrapper {
		 flex: 1;
    color: #ffffff;
}

.hero-main h1 {
    font-size: 3rem;
	  margin-bottom: 1.5rem;
	    line-height: 1.2;
}

.hero-subtitle {
      font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-primary {
  display: inline-block;
	 background: #ffffff;
          color   :#667eea;
  padding: 15px 40px;
                    text-decoration    :       none;
   border-radius: 50px;
  font-weight    : 600;
  transition: transform 0.3s, box-shadow 0.3s;
}



.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
                    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); 
	
} 

.benefits-showcase, .methodology-section, .programs-overview, .contact-section {


   padding: 80px 20px;
	}

.section-wrapper	{
    max-width: 1200px;
  margin: 0 auto;
}

.benefits-showcase h2, .methodology-section h2, .programs-overview h2, .contact-section h2 {

	    text-align: center;
	 font-size: 2.5rem;
	margin-bottom: 3rem;
  color: #1a1a2e;
	}  

.benefit-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
	}

.benefit-card {
   background: #f8f9fa;
    padding: 40px 30px;
         border-radius: 12px;
    transition: transform 0.3s;
}

.benefit-card:hover {


  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

}

.icon-holder {

	  width:   70px;
  height: 70px;
  margin-bottom: 20px;}

.icon-holder svg {
   width: 100%;

  height    :        100%;

  fill  :       #667eea;
}

.benefit-card h3 {
    font-size: 1.5rem;
  margin-bottom: 1rem;
    color: #1a1a2e;
}

.benefit-card p
	{
  color: #555;
    line-height   :  1.8;
} 

.methodology-section {
	background: #f0f3f7;
	
}

.method-content {

	    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: start;

}

.method-intro {
	 font-size :    1.1rem;
  color  :     #555;
  margin-bottom: 2rem;
  grid-column: 1 / -1;
	
}

.method-steps {

	       grid-column     :    1;
     }

.step-item {
    margin-bottom  :     2.5rem;
       padding-left: 80px;
   position    :relative;
}

.step-number  {
  position: absolute;
    left: 0;
   top: 0;
    font-size:        2.5rem;
  font-weight: 700;
   color: #667eea;
   opacity: 0.3;

}

.step-item h3 {
        font-size: 1.4rem;
   margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.step-item p {
   color     :   #555;
	 line-height :   1.7;
}

.method-visual {
   grid-column    : 2;
}

.method-visual img
	{
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.programs-grid  
  {

		display :grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap:      40px;}

.program-box {
  background: #ffffff;
    border-radius: 15px;
          overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s;

}

.program-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

.program-box img {
    width: 100%;
   height: 220px;
   object-fit: cover;
}

.program-box h3 {
   padding: 25px 25px 10px;
    font-size: 1.5rem;
   color    :    #1a1a2e;
}

.program-box p {
  padding: 0 25px;
  color :   #555;
     margin-bottom: 1.5rem;
}

.program-features {
  list-style: none;
    padding: 0 25px 30px;
} 

.program-features li {
	padding: 8px 0;
  color: #667eea;
    position: relative;
    padding-left: 25px;
}

.program-features li:before {
  content: '✓'; 
  position: absolute; 
	left: 0; 
   font-weight: 700;
}

.cta-banner		{
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
	 padding :     80px 20px;
	 text-align    :  center;
   color: #ffffff;
}

.cta-content h2 {
  font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}



.cta-button {
    display: inline-block;
  background: #ffffff;
   color: #11998e;
          padding: 15px 50px;
   text-decoration: none;
   border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-section {
  background: #f8f9fa;
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
  color: #555;
  margin-bottom: 3rem;
}

.contact-form {
   max-width:   800px;
                    margin: 0 auto;
                    background:        #ffffff;
    padding: 50px;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
          display     :  grid;
  grid-template-columns    :     1fr 1fr;
    gap: 25px;
  margin-bottom: 25px;
}

.form-group {
  display: flex;
     flex-direction :     column;
}

.form-group label {
  margin-bottom: 8px;
    font-weight: 600;
         color: #1a1a2e;
}



.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;

   border: 2px solid #e0e0e0;

  border-radius: 8px;

   font-size: 1rem;

    transition: border-color 0.3s;

    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus
	{
    border-color: #667eea;
  outline: none;


}

.submit-btn {
	border-radius: 50px;
   color: #ffffff;
  padding: 15px 50px;
   border: none;
    width: 100%;
               cursor: pointer;
		 transition: all 0.3s;
   background: #667eea;
 font-size: 1.1rem;
    font-weight: 600;
}

.submit-btn:hover {
		background: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);

}

.site-footer {
  background: #1a1a2e;
   color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
     height: 40px;
		 width: auto;
    margin-bottom: 15px;
  filter: brightness(0) invert(1);

}

.footer-desc  
  {
  color :  #b0b0b0;
   line-height: 1.7;
}

.footer-col h4 {
    margin-bottom :      20px;
	 font-size: 1.2rem;
}

.footer-col ul


{
  list-style: none;
}

.footer-col ul li {
   margin-bottom: 10px;
}

.footer-col ul li a {
   color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
   color: #4ecdc4;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-bottom {
	    max-width:      1200px;
    margin: 0 auto;
    text-align: center;
	 padding-top: 30px;
  border-top: 1px solid #333;
  color: #888;
     }@media (max-width: 768px) {
.burger-menu {
display: flex;
}
.nav-links {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: #1a1a2e;
flex-direction: column;
padding: 20px;
display: none;
gap: 0;
}
.nav-links.active {
display: flex;
}
.nav-links a {
padding: 15px;
border-bottom: 1px solid #333;
}
.hero-main {
flex-direction: column;
padding: 60px 20px;
}
.hero-main h1 {
font-size: 2rem;
}
.method-content {
grid-template-columns: 1fr;
}
.method-steps {
grid-column: 1;
}
.method-visual {
grid-column: 1;
}
.form-row {
grid-template-columns: 1fr;
}
.contact-form {
padding: 30px 20px;
}
}svg {
       stroke   :   #667eea;
	fill: none;
    stroke-width: 2;
					stroke-linecap :    round;
    stroke-linejoin: round;
}

.policySection {
    padding: 80px 2rem; 
		 background   :     #f8f9fa;
}

.policyContainer {
  max-width     :  800px;
   margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
    color: #2c3e50;
       font-weight: 700;
     margin-bottom: 1.5rem;
       font-size: 2.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, #11998e 0%, #38ef7d 100%);
          padding: 120px 20px 80px;
	 text-align: center;
   color: #ffffff; 
	
}

.services-hero-content h1 {

   font-size    :3.5rem;
    margin-bottom: 1.5rem;
}

.services-subtitle


{
   font-size: 1.3rem;
  max-width: 700px;
    margin: 0 auto;
	 opacity: 0.95;
}



.services-intro-section {
  padding: 80px 20px;
      background: #f8f9fa;


}

.intro-text-block {

	    max-width: 900px;
    margin:    0 auto;
   text-align :      center;
     }

.intro-text-block h2 {
    color :        #1a1a2e;
    margin-bottom: 2rem;
	font-size: 2.5rem;
}

.intro-text-block p {
	font-size: 1.15rem;

		line-height: 1.9;

	   color   :#555;

		margin-bottom: 1.5rem;
}

.detailed-services 
 {
    padding: 80px 20px;
}

.service-detail-card {
	  display: grid;
     grid-template-columns: 1fr 1fr;
    gap: 60px;
   margin-bottom: 100px;
	align-items  :   center;
	}

.service-detail-card.reverse

{
  direction: rtl;

}  

.service-detail-card.reverse > * {
   direction: ltr;
}

.service-detail-image img {
					width: 100%;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-detail-content h2 {
  margin-bottom: 1.5rem;
	 font-size :     2.2rem;
    color: #1a1a2e; 
	
}

.service-lead {
  font-size: 1.2rem;
	 color: #555;
   margin-bottom: 2.5rem;
  line-height :   1.8;
}

.service-features-list
	{
    margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
   gap: 20px;
   margin-bottom: 2rem;
  align-items: start;
}

.feature-icon {
  width: 50px;
   height: 50px;
  flex-shrink  :  0;
}

.feature-icon svg {
   height:    100%;
   fill: #11998e;
        width: 100%;
}

.feature-text h4 {
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
    color: #1a1a2e;
}

.feature-text p {
    color: #666;
   line-height: 1.7;
} 

.service-cta-btn {
     background: #667eea;
    border-radius: 50px;
  font-weight: 600;
    transition: all 0.3s;
   padding: 15px 45px;
  display: inline-block;
  color: #ffffff;
    text-decoration: none;
}

.service-cta-btn:hover {
  background: #764ba2;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	
}

.additional-offerings{
    background: #f0f3f7;
	padding: 80px 20px;
}

.additional-offerings h2 {
     text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #1a1a2e;
}


.additional-grid {

    display   :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap    :40px;


}

.additional-card {
  background: #ffffff; 
	  padding: 40px 30px; 
	  border-radius: 15px; 
	  box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
	    text-align: center; 
	  transition    :    transform 0.3s;
}

.additional-card:hover {


  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15); 



}

.additional-icon {
        width: 70px;
      height: 70px;
      margin: 0 auto 25px;
}

.additional-icon svg	{
    width: 100%;
   height: 100%;
    fill: #667eea;
}

.additional-card h3 {
	 font-size: 1.5rem;
    margin-bottom: 1rem;
  color: #1a1a2e;
}

.additional-card p {
    color: #666;
	 line-height  :    1.8;
}

.process-timeline {
         padding: 80px 20px;
}

.process-timeline h2


{

    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 4rem;
   color: #1a1a2e;

}

.timeline-container {
	   max-width    :    900px;
    margin : 0 auto;
   position: relative;




}

.timeline-container::before {
  content: '';
    position  :   absolute;
   left: 40px;
   top: 0;
   bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #667eea, #764ba2); 
	
}

.timeline-step {
     display: flex;
  gap: 30px;
	margin-bottom  :    50px;
	 position: relative;
	}

.timeline-number
{
   width: 80px;
    height  :        80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color  :     #ffffff;
    border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
	 font-size: 2rem;
   font-weight: 700;
   flex-shrink: 0;
  position  :     relative;
    z-index: 1;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.timeline-content{
   flex: 1;
	padding-top: 10px;
}

.timeline-content h3 {
               font-size: 1.6rem;
 margin-bottom: 0.8rem;
          color: #1a1a2e;
}



.timeline-content p {
        color    :        #666;
  line-height: 1.8;
}

.testimonials-section {
    background: #f8f9fa;
         padding :     80px 20px;


}

.testimonials-section h2 {
	text-align  :       center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a2e;
}

.testimonials-grid {
       display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
       gap     :   40px;


}

.testimonial-card {
      background: #ffffff;
  padding   :   40px 35px;
               border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
   position: relative;
     }

.testimonial-text {
    font-size   :    1.1rem;
   line-height: 1.8;
   color: #555;
     margin-bottom: 2rem;
    font-style: italic;
	
}  

.testimonial-author {
   flex-direction: column;
   display: flex;
  gap: 5px;
}

.testimonial-author strong {
  color: #1a1a2e;
    font-size: 1.1rem;
	
}

.testimonial-author span
{
	color: #888;
	    font-size: 0.95rem;
}

.final-cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 100px 20px;
  text-align: center;
} 

.final-cta-wrapper {
     max-width: 800px;
   margin: 0 auto;
	color: #ffffff;
	}

.final-cta-wrapper h2 {
    font-size: 2.8rem;
  margin-bottom   :1.5rem;
}  

.final-cta-wrapper p {

	  font-size: 1.2rem;
  margin-bottom: 2.5rem;
    opacity: 0.95;

}

.final-cta-button {
   display: inline-block;
  background: #ffffff;
        color: #667eea;
    padding: 18px 55px;
  text-decoration: none;
  border-radius: 50px;
   font-weight: 700;
                    font-size: 1.1rem;
   transition     :all 0.3s;


}

.final-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.thankyou-main {
    padding: 100px 20px;
    min-height: 70vh;
   display   :       flex;
    align-items: center;
   justify-content: center;
}

.thankyou-container {
    max-width: 800px;
	margin: 0 auto;
     text-align: center; 



}

.thankyou-icon {
   width: 100px;
	height: 100px;
   margin: 0 auto 30px;
    color: #11998e;
}

.thankyou-icon svg  
  {
    width: 100%;
    height  :    100%;
}

.thankyou-container h1 {
   font-size: 3rem;
  color: #1a1a2e;
 margin-bottom: 1.5rem;
}

.thankyou-message {
    font-size: 1.2rem;
    color: #555;
     line-height: 1.9;
   margin-bottom: 3rem;
}

.thankyou-next-steps {
   background:      #f8f9fa;
  padding: 50px 40px;
  border-radius: 20px;
  margin-bottom: 3rem;
    text-align: left;
}

.thankyou-next-steps h2 {
				 font-size: 2rem;
 margin-bottom: 2.5rem;
  color: #1a1a2e;
  text-align  :        center;
}

.next-step-item {


       display: flex;
  gap: 25px;
	margin-bottom: 2.5rem;
  align-items: start;

}

.next-step-item:last-child {
   margin-bottom: 0;
}

.step-icon {
    width :  60px;
    height: 60px;
			flex-shrink: 0;
}

.step-icon svg {
	width: 100%;
   height: 100%;
    fill: #667eea;

}

.step-text h3 {
   font-size :1.4rem; 
	    margin-bottom: 0.6rem; 
	    color: #1a1a2e;


}

.step-text p     {
  color: #666;
  line-height  :      1.7;
}

.thankyou-actions {
  display: flex;
    gap: 20px;
          justify-content     :        center;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-block;
   padding: 15px 40px;
   text-decoration :   none;
   border-radius: 50px;
	font-weight: 600;
	transition: all 0.3s;
}

.action-btn.primary {
    background: #667eea; 
	    color: #ffffff;
}

.action-btn.primary:hover {
  background: #764ba2;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);

}

.action-btn.secondary {

	  background: #ffffff;
    color: #667eea;
  border: 2px solid #667eea;
	}

.action-btn.secondary:hover {

	  background: #667eea;
  color :       #ffffff;
  transform: translateY(-3px);
     }

.thankyou-info-section {
      background: #f0f3f7;
    padding: 80px 20px;
     }

.thankyou-info-section h2 {
	text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
    color   :      #1a1a2e;
}

.info-cards-grid {
    display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 40px;
}

.info-card {
    background    :  #ffffff;
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.info-card img {
    width: 100%;
  height: 200px;
	object-fit: cover;
}

.info-card h3 {

	 padding: 25px 25px 15px;
	font-size: 1.5rem;
 color: #1a1a2e;
}

.info-card p {
       padding: 0 25px 20px;
	color: #666;
  line-height: 1.8;
	}

.info-link {
    display: inline-block;
   margin :     0 25px 25px;
  color: #667eea;
 text-decoration: none;
   font-weight: 600;
    transition: color 0.3s; 

}  

.info-link:hover {
  color: #764ba2; 
	
}

.contact-info-section    {
                    padding: 80px 20px;
}

.contact-info-box {
    max-width: 700px;
   margin: 0 auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          padding: 60px 50px;
  border-radius: 20px;
	color: #ffffff;
          text-align: center;
}

.contact-info-box h2


{

  font-size: 2.2rem;
          margin-bottom: 1rem;


}

.contact-info-box > p {

         font-size:  1.1rem;
    margin-bottom: 2.5rem;
   opacity: 0.95;


}

.contact-details {
  display   :   flex;
  flex-direction:        column;
  gap: 25px;
}

.contact-item {
  display: flex; 
   gap: 20px; 
  align-items: center; 
  justify-content  :      center; 
    text-align: left;
}

.contact-item svg

{
      width: 40px;
  height: 40px;
    fill: #ffffff;
   flex-shrink :       0;}

.contact-item strong {
   display: block;
  font-size: 1.1rem;
 margin-bottom: 5px;
}

.contact-item p   {
         margin   :   0;
  opacity: 0.95;
}@media (max-width: 768px) {
.services-hero-content h1 {
font-size: 2.2rem;
}
.services-subtitle {
font-size: 1.1rem;
}
.service-detail-card {
grid-template-columns: 1fr;
margin-bottom: 60px;
}
.service-detail-card.reverse {
direction: ltr;
}
.timeline-container::before {
left: 20px;
}
.timeline-number {
width: 60px;
height: 60px;
font-size: 1.5rem;
}
.timeline-step {
gap: 20px;
}
.thankyou-container h1 {
font-size: 2rem;
}
.thankyou-next-steps {
padding: 30px 20px;
}
.contact-info-box {
padding: 40px 25px;
}
.thankyou-actions {
flex-direction: column;
}
.action-btn {
width: 100%;
text-align: center;
}
}