* {

	   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-wrapper {
    max-width: 1200px;
               margin: 0 auto;
   padding: 0 20px;
  display: flex;
 justify-content: space-between;
    align-items: center;
}

.brand-section .site-logo {
    height: 45px;
                    width: auto;
}

.nav-toggle {
  display: none;
   background: none;
       border: none;
  cursor: pointer;
   flex-direction: column;
    gap     :        4px;
}

.nav-toggle span {
  width: 25px;
    height: 3px;
   background: #ffffff;
    display: block;
    transition: all 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #ffffff;
  text-decoration: none;
   font-weight: 500;
    transition     :        color 0.3s;
	padding: 0.5rem 0;
}

.nav-links a:hover{

	  color: #3498db;
     }



.hero-section {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  padding: 80px 20px;

	 display: grid;

	    grid-template-columns: 1fr 1fr;

	   gap: 40px;

	   max-width: 1200px;

	    margin: 0 auto;

	    align-items: center;

}

.hero-content h1 {
	   font-size: 2.5rem;
   line-height: 1.2;
				 color: #ffffff;
   margin-bottom: 1.5rem;


}


.hero-text {
  font-size: 1.1rem;
   color: #f0f0f0;
   margin-bottom: 2rem;
}

.hero-actions {
               display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-action, .secondary-action   {
    font-weight: 600;
         transition: all 0.3s;
    border-radius: 5px;
    display: inline-block;
  text-decoration   :        none;
  padding: 12px 30px;
}

.primary-action {
    background: #3498db;
               color  :    #ffffff;
}

.primary-action:hover {


   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
	}

.secondary-action		{
      background: transparent;
    color: #ffffff;
   border: 2px solid #ffffff;
}

.secondary-action:hover {
  background: #ffffff;
	color: #667eea;
}

.hero-visual img {


  width: 100%;
     height: auto;
               border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

} 

.intro-section {
   padding: 60px 20px;
  background: #f8f9fa;
}

.intro-container {

 max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.intro-text h2 {
   font-size: 2rem;
    color: #1a1a2e;
   margin-bottom  :     1.5rem;
}

.intro-text p {
   	margin-bottom: 1rem;
        color: #555;
    font-size: 1.05rem;
     }

.intro-image img {
    width: 100%;
    border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.offerings-section {

	   padding: 70px 20px;
    max-width     :   1200px;
 margin: 0 auto;


}

.offerings-section h2{
		 text-align   :   center;
	font-size: 2.2rem;
    margin-bottom: 50px;
    color: #1a1a2e;

}

.offerings-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.offer-card {
   background  :   #ffffff;
  padding: 30px;
	border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s, box-shadow 0.3s;
}

.offer-card:hover	{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.offer-card h3 {

	   color: #667eea; 
	   margin-bottom     :       15px; 
	    font-size: 1.4rem;}

.offer-card p {
   color: #666;

	 line-height   :  1.7;
}

.methodology-area {
  background: linear-gradient(to right, #f093fb 0%, #f5576c 100%);
    padding :     70px 20px;
}

.method-container {
	 align-items: center;
	 max-width: 1200px;
  display: grid;
   grid-template-columns: 1fr 1.3fr;
  margin: 0 auto;
   gap     :  50px;
}

.method-container img {


 width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);}

.method-description	{
    color: #ffffff;
}

.method-description h2 {
		font-size: 2.1rem;
  margin-bottom: 1.5rem; 

}

.method-description p {
    margin-bottom    :  1.2rem;
 font-size: 1.05rem;
    line-height: 1.8;
}



.cta-banner		{

   background: #1a1a2e;
  padding   :    60px 20px;
                    text-align: center;

}

.cta-content {
   	max-width:     800px;
  margin: 0 auto;
     }

.cta-content h2 {
    color: #ffffff;
       font-size: 2rem;
   margin-bottom  :    1rem;
}

.cta-content p {
        color: #d0d0d0;
   font-size: 1.1rem;
  margin-bottom: 2rem;


}

.cta-button 
 {
	    background: #3498db;
   color: #ffffff;
   padding  :     15px 40px;
    text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
   display: inline-block;
  transition: all 0.3s;
	}

.cta-button:hover {
   background: #2980b9;
  transform: scale(1.05);
}

.benefits-zone

{
    padding: 70px 20px;
  background: #f8f9fa;
} 

.benefits-zone h2 {
  text-align: center;
    font-size: 2.2rem;
   margin-bottom: 50px;
    color: #1a1a2e;

}

.benefits-layout {
  max-width    :        1200px;
			margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.benefit-item {
      background     :       #ffffff;
    padding     :  25px;
   border-left: 4px solid #667eea;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);


}

.benefit-item h3		{
    color: #1a1a2e;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.benefit-item p

{

          color: #666;
   line-height: 1.6;

}  

.showcase-area {
   max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}  

.showcase-area img {
  width  :       100%;
    border-radius:        10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.showcase-text h2 {

  margin-bottom: 1.5rem;
     color: #1a1a2e;
   font-size: 2rem;

}

.showcase-text p {
  color:  #555;
  margin-bottom  :       1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.contact-section {

   background: #ecf0f1;
    padding: 70px 20px;
     }

.contact-wrapper {
	max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info h2 {
   font-size  :      2rem;
        color: #1a1a2e;
  margin-bottom: 1.5rem;
}



.contact-info p {
    color  :       #555;
   margin-bottom: 2rem;
                    line-height   : 1.7;
}

.info-details
{
    display: flex;
   flex-direction: column;
    gap: 1.5rem;
}

.detail-item h4 {
   color: #667eea;
       margin-bottom :    0.5rem;
   	font-size: 1.1rem;


}

.detail-item p {
   margin: 0;
	color: #555; 
	
}

.contact-form-container {
  background: #ffffff;
       padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     }

.contact-form {

	   display: flex;
   flex-direction:  column;
    gap:20px;


}

.form-group


{
   display: flex;
   flex-direction: column;
}

.form-group label     {
	 margin-bottom: 8px;
   color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px;
  border   :     1px solid #ddd;
  border-radius    :     5px;
   font-size: 1rem;
  font-family: inherit;
	transition    :    border-color 0.3s; 

}

.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 30px;
    border :none;
    border-radius: 5px;
  font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
    transition  :  background 0.3s;
}



.submit-btn:hover {
  background: #5568d3;
}

.site-footer {
  background: #1a1a2e;
	color   :  #ffffff;
	padding: 50px 20px 20px;
}

.footer-content  {

		 max-width: 1200px;
	    margin: 0 auto;
		display: grid;
	   grid-template-columns: 1.5fr 2fr;
	   gap: 50px;
	    margin-bottom: 30px;
	}

.footer-brand img {
	  margin-bottom: 15px;
    height: 50px;}

.footer-brand p {
  color:       #b0b0b0;
} 

.footer-links	{
	  display  :        grid; 
	  grid-template-columns: repeat(3, 1fr); 
		gap: 30px;
}

.footer-column h4
{
   margin-bottom : 15px; 
  color: #ffffff; 
  font-size: 1.1rem;
}

.footer-column a {
  display: block;
  color: #b0b0b0;
	text-decoration: none;
	 margin-bottom  :      8px;
   transition: color 0.3s;


}

.footer-column a:hover		{
  color: #3498db; 

}

.footer-column p {
   	color: #b0b0b0;
   margin-bottom: 5px;


}

.footer-bottom {


   max-width   : 1200px;
  margin     :    0 auto;
    padding-top: 20px;
	 border-top:     1px solid #333;
   text-align: center;
   color: #888;



}@media (max-width: 768px) {
.nav-toggle {
display: flex;
}
.nav-links {
position: fixed;
top: 70px;
left: -100%;
background: #1a1a2e;
width: 100%;
flex-direction: column;
padding: 20px;
transition: left 0.3s ease;
}
.nav-links.active {
left: 0;
}
.hero-section {
grid-template-columns: 1fr;
padding: 50px 20px;
}
.hero-visual {
order: -1;
}
.intro-container {
grid-template-columns: 1fr;
}
.method-container {
grid-template-columns: 1fr;
}
.contact-wrapper {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
}
.footer-links {
grid-template-columns: 1fr;
}
.showcase-area {
grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
.hero-content h1 {
font-size: 1.8rem;
}
.offerings-grid {
grid-template-columns: 1fr;
}
.benefits-layout {
grid-template-columns: 1fr;
}
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa; 
	
}

.policyContainer {
  max-width: 800px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {

		 font-size: 2.5rem;
   margin-bottom: 1.5rem;
        font-weight: 700;
    color: #2c3e50;
     }  

.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;
    }
}.page-header-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 20px;
  text-align:      center;
}

.header-content-wrap h1		{
    color: #ffffff;
  font-size: 3rem;
	margin-bottom: 15px;
}

.header-content-wrap p {
    color: #f0f0f0;
  font-size: 1.2rem; 

}

.story-section {

   padding: 70px 20px;
    background: #ffffff;

}

.story-wrapper {
	  max-width: 1200px;
    margin: 0 auto;
	display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
       align-items: center;
}

.story-content h2	{
  font-size: 2.1rem;
  color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.story-content p {
	    color: #555;
  margin-bottom: 1.2rem;
    line-height: 1.7;
    font-size     :      1.05rem;
	
	}

.story-visual img {
    width: 100%;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mission-block {
  background: #f8f9fa;
  padding: 70px 20px;


}

.mission-container  {
	max-width  :    1200px;
  margin: 0 auto;
}

.mission-container h2 {
   text-align: center;
    font-size: 2.2rem;
    color: #1a1a2e;
	margin-bottom: 20px;
}

.mission-statement {
  text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.15rem;
  color: #555;
	line-height: 1.8;
}

.mission-values {
  display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; 
	
}

.value-box{
	background: #ffffff;
   padding: 30px;
  border-radius     :8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.value-box h3 {
         color     :   #667eea;
    margin-bottom: 12px;
          font-size: 1.4rem;
}

.value-box p {
  line-height: 1.6;
        color :      #666;
}

.approach-area {
     padding: 70px 20px;
    background: #ffffff;}

.approach-layout
{
    max-width: 1200px;
  margin: 0 auto;
    display  :   grid;
    grid-template-columns: 1fr 1.2fr;
    gap:       50px;
      align-items: center;
	
}



.approach-layout img {
  width: 100%;
	border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.approach-text h2  
  {
  font-size: 2rem;
   color: #1a1a2e;
   margin-bottom: 1.5rem;
}

.approach-text p {
  color: #555;
                    line-height: 1.7;
  font-size: 1.05rem;
   margin-bottom: 1.2rem;
}

.team-showcase {
  background: linear-gradient(to right, #f093fb 0%, #f5576c 100%);
	padding: 70px 20px;
}

.team-intro {
   max-width :  1200px;
   margin: 0 auto 40px;
    text-align     :        center;
}

.team-intro h2 {
    color: #ffffff;
	font-size    :     2.2rem;
  margin-bottom: 20px;
} 

.team-intro p {
   color: #f0f0f0;
   font-size: 1.1rem;
    line-height: 1.7;
	max-width: 900px;
	margin: 0 auto;
}

.team-image-block	{
	max-width: 1200px;
   margin: 0 auto;
}

.team-image-block img
	{

	    width :100%;
    border-radius   :    10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.methodology-details {
     background: #f8f9fa;
	 padding   :      70px 20px; 
	
} 

.methodology-wrap {


     max-width: 1200px;

   margin  : 0 auto; 
	


}

.methodology-wrap h2 {
  text-align: center;
     font-size: 2.2rem;
   color: #1a1a2e;
   margin-bottom: 50px;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;




}

.step-item {
  background: #ffffff;
    padding: 30px;
    border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
  font-size: 3rem;
   font-weight: 700;
    color: #667eea;
         opacity  :    0.2;
  position: absolute;
       top: 20px;
    right: 20px; 

}

.step-item h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 1.3rem;
  position: relative;
   z-index     :      1;
}

.step-item p {

	   color: #666;
  line-height: 1.6;
	 position:    relative;
    z-index: 1;} 

.achievements-zone {
   background: #1a1a2e; 
	        padding :       70px 20px;


}

.achievements-content {


    max-width: 1200px;
   margin: 0 auto;}

.achievements-content h2 {
    text-align    :  center;
    color: #ffffff;
    font-size :       2.2rem;
   margin-bottom: 50px;
}

.stats-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-block {
  text-align: center;
}

.stat-number {
  font-size: 3.5rem;
    font-weight: 700;
		color: #3498db;
	margin-bottom     :   10px;
}

.stat-block p


{
   color: #d0d0d0;
	 font-size: 1.1rem;
}

.philosophy-segment {
	 padding: 70px 20px;
   background: #ffffff;
}

.philosophy-container {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
    grid-template-columns    :   1.2fr 1fr;
     gap: 50px;
    align-items  :     center;
}

.philosophy-text h2     {
  margin-bottom: 1.5rem;
    font-size: 2rem;
  color: #1a1a2e;
}

.philosophy-text p {
  margin-bottom  :1.2rem;
      color: #555;
   line-height    : 1.7;
   font-size     :       1.05rem;
     }

.philosophy-image img {

	   width  :  100%;
         border-radius    :  10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);

}

.cta-segment {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 60px 20px;
	text-align     :        center;
}

.cta-wrapper{
    max-width: 800px;
	   margin: 0 auto;
	
}

.cta-wrapper h2 {
  color: #ffffff;
    font-size: 2.2rem;
		margin-bottom: 15px;
}

.cta-wrapper p {
  color: #f0f0f0;
    font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-link-btn {
   background: #3498db;
	color: #ffffff;
   padding: 15px 40px;
    text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  display  : inline-block;
  transition  :  all 0.3s;

}

.cta-link-btn:hover {
   background     :       #2980b9;
  transform: scale(1.05);
}

.thankyou-main {
	padding     : 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 70vh;
  display: flex;
	align-items: center;
   justify-content: center;
}

.thankyou-container 
 {
  max-width: 800px;
    margin: 0 auto;
    background:     #ffffff;
	 padding: 60px 40px;
   border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
	text-align     :   center;
}

.success-icon-wrapper {
   margin-bottom: 30px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
      margin: 0 auto;
  position: relative;


}

.check-icon {
 width: 80px;
  height  : 80px;
	 position: relative;
  border-radius:  50%;
   box-sizing: content-box;
	 border: 4px solid #4caf50;
}

.icon-line {
	display: block;
    position    :absolute;
   height: 5px;
    z-index: 10;
  border-radius: 2px;
	 background-color: #4caf50;
}

.line-tip {
   top: 46px;
  left: 14px;
   width :        25px;
  transform: rotate(45deg);
} 

.line-long {


   top: 38px;
    right: 8px;
  width: 47px;
  transform: rotate(-45deg);
     }

.icon-circle {
   top: -4px;
 left: -4px;
   z-index: 10;
  width: 80px;
				 height: 80px;
    border-radius: 50%;
  position: absolute;
  box-sizing: content-box;
  border: 4px solid rgba(76, 175, 80, 0.5);
}

.icon-fix {
    top: 8px;
	width: 5px;
	 left:  26px;
        z-index    :     1;
	 height: 85px;
   position: absolute;
  transform: rotate(-45deg);
   background-color  :      #ffffff;
}

.thankyou-container h1 {
    font-size: 2.5rem;
    color     :   #1a1a2e;
   margin-bottom: 20px;
}

.thankyou-message{
   font-size: 1.2rem;

	   color: #555;

	               margin-bottom     :      30px;

	  line-height :  1.6;
}

.message-details p
	{
   color: #666;
    margin-bottom: 30px;
	font-size: 1.05rem;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :    20px;
  margin-bottom: 40px;
}

.step-box {
                    background    :#f8f9fa;

	   padding: 25px;

	  border-radius: 8px;

	   text-align: left;
}

.step-box h3 {
    color: #667eea;
  margin-bottom:  10px;
   font-size: 1.2rem;
}

.step-box p {
	color: #666;
   margin-bottom: 15px;
    line-height: 1.5;
	}

.step-link {
  color: #3498db;
   text-decoration: none;
    font-weight: 600;
        transition: color 0.3s;
}

.step-link:hover 
 {
    color: #2980b9; 
    text-decoration : underline;
}

.contact-info-box {
   background: #f0f4ff;
   padding: 25px;
    border-radius: 8px;
  border-left: 4px solid #667eea;
}

.contact-info-box h3  {
   margin-bottom: 10px;
    font-size: 1.3rem;
  color: #1a1a2e;
}

.contact-info-box p {
  color: #555;
   margin-bottom     :     8px;
} 

.phone-number {

	   font-size: 1.3rem;
    font-weight: 700;
 color: #667eea;
          margin   :  15px 0;

}

.address-info {
   font-size: 0.95rem;
    color  :    #888;
}

.additional-info-section {
    padding     :70px 20px; 
	   background:        #ffffff;
}

.info-wrapper {
	  max-width: 1000px;
  margin  :     0 auto;


}

.info-wrapper h2  {
   text-align     :     center;
   font-size : 2.2rem;
  color: #1a1a2e;
   margin-bottom   :       50px;
}

.timeline-steps {
  position: relative;
}

.timeline-item {
  display: grid;
	grid-template-columns    :       60px 1fr;
    gap    :        20px;
  margin-bottom: 30px;
}

.timeline-marker    {
   width: 60px;
  height: 60px;
  background: #667eea;
  color: #ffffff;
	border-radius   :   50%;
    display: flex;
   align-items: center;
	justify-content :      center;
     font-size: 1.5rem;
    font-weight: 700;
	 flex-shrink: 0;
}

.timeline-content


{
  padding-top: 8px;
}

.timeline-content h4 {
    color     :  #1a1a2e;
	margin-bottom: 8px;
    font-size: 1.2rem;
}

.timeline-content p   {
   color: #666;
   line-height     : 1.6;
}@media (max-width: 768px) {
.story-wrapper {
grid-template-columns: 1fr;
}
.approach-layout {
grid-template-columns: 1fr;
}
.philosophy-container {
grid-template-columns: 1fr;
}
.header-content-wrap h1 {
font-size: 2rem;
}
.thankyou-container {
padding: 40px 25px;
}
.thankyou-container h1 {
font-size: 2rem;
}
.next-steps {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: repeat(2, 1fr);
gap: 25px;
}
}

@media (max-width: 480px) {
.method-steps {
grid-template-columns: 1fr;
}
.mission-values {
grid-template-columns: 1fr;
}
.stats-grid {
grid-template-columns: 1fr;
}
}