* {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
     line-height: 1.6;
  color: #333;
    background: #fff;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
          width: 100%;
  top: 0;
	z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);

}

.navigation-container {
  align-items: center;
   justify-content: space-between;
  padding: 1rem 2rem;
	 margin   :  0 auto;
  display: flex;
   max-width: 1200px;
}

.nav-brand .logo-image {
     height: 45px;
  width: auto;
}

.nav-menu {

                    display: flex;
  gap: 2rem;
}

.nav-link {
   text-decoration  :none;
  color: #333;
  font-weight  :     500;
	 transition: color 0.3s ease;
   position: relative;


}

.nav-link:hover,
.nav-link.active {
  color: #6366f1;
}

.nav-link.active::after {
  content: '';
       position: absolute;
  bottom: -5px;
  left: 0;
   width: 100%;
   height:    2px;
    background: #6366f1;
}

.burger-menu {
  display: none;
      flex-direction: column;
  cursor: pointer;
    gap: 4px;
}


.burger-menu span {
    height: 3px;
  -webkit-transition: 0.3s;
    transition: 0.3s;
   background:#333;
  width    :        25px;


}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

main {
   margin-top: 80px; 
	
}

.hero-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.hero-content {
   max-width: 1200px;
   margin: 0 auto;
	display: grid;
    grid-template-columns     :       1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
     font-size: 3rem;
  font-weight: 700;
}

.hero-text p {
  margin-bottom: 2rem;
  opacity :       0.9;
   font-size: 1.2rem;
}

.hero-buttons  {
    display: flex;
  gap: 1rem;
}

.btn-primary, .btn-secondary, .btn-cta {
  padding: 12px 30px;
  -moz-border-radius :      8px;
 border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
   transition:       all 0.3s ease;
  display: inline-block;
}

.btn-primary {
    background: #fff;
      color: #6366f1;
}

.btn-primary:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3); 
	
}

.btn-secondary {
   background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
 background: #fff;
   color: #6366f1;
}

.hero-image img {


        width: 100%;
	height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);


}

.container {
   max-width: 1200px;
   margin    :      0 auto;
 padding: 0 2rem;
}  

.services-section {


   padding: 5rem 0;
  background: #f8fafc;
}

.services-section h2 {
  text-align: center;
  font-size: 2.5rem;
               margin-bottom: 3rem;
    color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.service-card {
	 background: #fff;
   padding: 2rem;
 border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition  :  transform 0.3s ease;
  text-align :      center;
}

.service-card:hover {
  transform: translateY(-5px);


}

.service-card img {
         width: 100%;
    height: 200px;
  object-fit: cover;
  border-radius: 8px;
 margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
	color: #1e293b;
	font-size    :       1.5rem;
}

.service-card p {
         color   : #64748b;
       line-height: 1.6;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: #fff;
}

.cta-content {
    display     :        grid;
    gap: 3rem;
   grid-template-columns: 1fr 1fr;
	 align-items: center;
}

.cta-content h2 {

	   margin-bottom: 1.5rem;
  font-size: 2.5rem;


}

.cta-content p {
  font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-cta {
   background: #10b981;
       color: #fff;
  font-size:  1.1rem;
}

.btn-cta:hover {
 background: #059669;
  transform: translateY(-2px);
}

.cta-image img {
  width: 100%;
		height: auto;
  border-radius: 12px;
}

.about-preview {
    padding: 5rem 0;
    background: #fff;
}

.about-content {
    display    : grid;
   grid-template-columns: 2fr 1fr;
  gap  :        4rem;
  align-items: start;
}

.about-text h2 {
       font-size: 2.2rem;
    margin-bottom: 1.5rem;
   color: #1e293b;}

.about-text p {
    font-size: 1.1rem;
	margin-bottom: 2rem;
  color: #64748b;
}

.benefits-list {
  list-style: none;
   padding: 0;
}

.benefits-list li {
  padding:0.5rem 0;
    color: #475569;
    position: relative;
   padding-left: 2rem;
}

.benefits-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
	color: #10b981;
  font-weight: bold;
}

.stats-grid {
    display: grid;
    gap: 2rem;
}

.stat-item
{

   text-align: center;
  padding: 2rem;
    background: #f1f5f9;
    border-radius :        12px;
}

.stat-item h3 {
	font-size: 2.5rem;

	   color: #6366f1;

	  margin-bottom: 0.5rem;
}



.stat-item p {
   color: #64748b;
   font-weight: 500;
}

.contact-section	{
		 padding: 5rem 0;
    background: #f8fafc;
}

.contact-section h2 {

	    text-align: center;
					font-size: 2.5rem;
   margin-bottom: 3rem;
  color   :#1e293b;

}

.contact-content {
    display: grid;
	grid-template-columns: 2fr 1fr;
  gap: 3rem;


}

.contact-form{
  background: #fff;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {


	margin-bottom: 1.5rem;


}

.form-group input,
.form-group select,
.form-group textarea {
   width : 100%;
	padding: 12px 16px;
   border: 2px solid #e2e8f0;
    border-radius: 8px;
        font-size: 1rem;
	transition: border-color 0.3s ease;
               font-family: inherit;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color  :       #6366f1;
}

.form-group textarea {
    resize: vertical;
      min-height: 120px;}  

.submit-btn{
    width    :100%;
	    padding: 14px;
	    background: #6366f1;
	    color: #fff;
	    border: none;
	   border-radius: 8px;
	    font-size: 1.1rem;
	    font-weight: 600;
	    cursor: pointer;
	    transition     :  background 0.3s ease;
}

.submit-btn:hover {
   background: #4f46e5;
}

.contact-info {
  background  :        #fff;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
	height: fit-content;
}

.contact-info h3 {
   font-size: 1.5rem;
    margin-bottom: 2rem;
    color     :        #1e293b;
}

.contact-item {
	margin-bottom: 2rem;


}

.contact-item strong {
   display: block;
    color: #6366f1;
  margin-bottom: 0.5rem;
   font-weight: 600;
}

.contact-item p {
    color: #64748b;
	margin : 0;
}

.main-footer {
   background: #1e293b;
    color: #fff;
  padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
  padding  :        0 2rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    : 2rem;
}

.footer-section h3
{
    margin-bottom: 1rem;
   color: #f1f5f9;
}

.footer-section p {
    color: #94a3b8;
   line-height: 1.6;
}

.footer-logo {
    height: 40px;
   width :  auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-links {
   list-style: none;
	padding: 0;
}

.footer-links li {
    margin-bottom   :     0.5rem;
}

.footer-links a {
   color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover  {
   color: #f1f5f9;
}

.footer-bottom {
   border-top :   1px solid #334155;
   margin-top: 2rem;
   padding-top: 1rem;
  text-align: center;
   color: #94a3b8;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navigation-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .services-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}.about-hero {
       padding: 4rem 0;
  background: linear-gradient(135deg, #334155 0%, #475569 100%);
   color   :       white;
}

.about-hero-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-hero h1 {
   font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;

}

.about-hero p     {
    font-size: 1.2rem;
  line-height   :   1.7;
	opacity: 0.9; 
	
}

.about-hero-image img {
  width: 100%;
  height     :     auto;
    border-radius :   12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.our-story {
    padding: 5rem 0;
  background: #fff;
}

.story-content {
         display: grid;
  grid-template-columns: 2fr 1fr;
   gap     :   4rem;
    align-items    :center;
}

.story-text h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
   color   : #1e293b;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
   margin-bottom: 1.5rem;
   color: #475569;
}

.story-image img	{
     width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.team-section {
   padding: 5rem 0;
    background: #f8fafc;
}

.team-section h2 {
   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #1e293b;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
   background: #fff;
  padding: 2.5rem;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	text-align: center;
    transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-info h3 {

	   font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #1e293b;

}

.member-role {
  color: #6366f1;
  font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;

}

.member-info p:last-child {
   color:#64748b;
   line-height: 1.6;
}

.methodology-section {


               padding: 5rem 0;
  background :  #fff;}

.methodology-content {
    display: grid;
  grid-template-columns: 2fr 1fr;
    align-items: start;
  gap: 4rem;
}

.method-text h2 {
    font-size :  2.5rem;
	margin-bottom: 2rem;
    color: #1e293b;
}

.method-text > p {
  margin-bottom: 3rem;
  color   :    #475569;
   font-size: 1.2rem;
 line-height: 1.7;
}

.methodology-steps {
  display: grid;
   gap: 2rem;
}

.method-step {
  padding: 2rem;
   background: #f1f5f9;
    border-radius: 10px;
    border-left: 4px solid #6366f1;

}

.method-step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
   color   : #1e293b;
}

.method-step p  {
    color: #64748b;
   line-height: 1.6;
}

.method-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section    {
  padding: 5rem 0;
    background: #f8fafc;
}

.values-section h2   {
    text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2rem; 
	
}

.value-item {
    background: #fff;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
       text-align: center;
    border-top:       4px solid #10b981;
}

.value-item h3 {
   font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.value-item p  {
  color: #64748b;
   line-height: 1.6;
}  

.achievements-section {
   padding: 5rem 0;
   background: #fff;
}

.achievements-section h2 {
  font-size: 2.5rem;
	color: #1e293b;
   margin-bottom: 3rem;
   text-align:       center;
}

.achievements-content {
   display: grid; 
	  grid-template-columns: 2fr 1fr; 
	    gap: 4rem; 
	   align-items: center;
}

.achievement-stats {
    display:       grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.stat-box {
   transition: all 0.3s ease;
   background: #f8fafc;
    border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
    border  :     2px solid #e2e8f0;
}

.stat-box:hover {
  border-color: #6366f1;
  transform: translateY(-3px);
}

.stat-box h3 {
  font-size: 2.5rem; 
	    color: #6366f1; 
	    margin-bottom: 0.5rem; 
	   font-weight: 700;
}

.stat-box p


{
  color: #64748b;
  font-weight: 500;
}

.achievements-image img
{
   width:  100%;
	 height    :        auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-about {
		padding: 4rem 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
   text-align   :  center;
}

.cta-about h2 {
  font-size  :     2.5rem;
	margin-bottom: 1.5rem;
}

.cta-about p {
   font-size: 1.2rem;
   margin-bottom    :     2rem;
   opacity: 0.9;
         max-width: 600px;
	 margin-left: auto;
    margin-right: auto;
}

.thankyou-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    text-align: center;
}

.thankyou-content {
		 max-width: 600px;
   margin: 0 auto;
}

.thankyou-icon {

		 margin-bottom: 2rem;

}

.success-checkmark {
    width: 80px;
    height: 80px;
   border-radius: 50%;
    display: block;
   stroke-width: 2;
    stroke: #fff;
   stroke-miterlimit: 10;
    margin: 0 auto;
	box-shadow: inset 0px 0px 0px #10b981;
	animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.success-checkmark .check-icon		{
  width: 56px;
    height: 56px;
	 position: relative;
   -webkit-border-radius: 50%;
	 -moz-border-radius: 50%;
  border-radius: 50%;
  box-sizing: content-box;
   border: 4px solid #fff;
  margin: 8px auto;
}

.success-checkmark .check-icon::before {
   top: 3px;
  left: -2px;
  width: 30px;
    transform-origin: 100% 50%;
   border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
  top: 0px;
                    left: 30px;
	 width    :   60px;
   transform-origin: 0% 50%;
  border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before, 
.success-checkmark .check-icon::after {
  content: '';
    height: 100px;
  position: absolute;
  background: #10b981;
  transform: rotate(-45deg);
} 

.success-checkmark .icon-line {
    height  :  5px;
    background-color: #fff;
   display: block;
    border-radius: 2px;
	 position   :      absolute;
    z-index: 10;
}

.success-checkmark .icon-line.line-tip {

     top: 46px;
   left: 14px;
    width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;

}

.success-checkmark .icon-line.line-long {
  top: 38px;
   right   :    8px;
    width:        47px;
  transform: rotate(-45deg);
                    animation: icon-line-long 0.75s;
}

.success-checkmark .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(255, 255, 255, .5);
	}

.success-checkmark .icon-fix {
   top: 8px;
   width: 5px;
  left: 26px;
   z-index: 1;
   height: 85px;
   position: absolute;
  transform: rotate(-45deg);
        background-color: #10b981;


	}



.thankyou-hero h1    {
  font-size: 2.8rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.thankyou-message {
  font-size: 1.2rem;
  line-height: 1.7;
  opacity: 0.9;
	}

.next-steps {
   padding: 5rem 0;
  background  :      #f8fafc;
}

.next-steps h2 {
     font-size: 2.5rem;
    text-align: center;
  color:    #1e293b;
    margin-bottom :  3rem; 
	


}

.steps-grid {
  display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-item 
 {

  background: #fff;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: center;
          position: relative;

}

.step-number {
  border-radius: 50%;
    height: 50px;
        font-size: 1.5rem;
	background: #6366f1;
   display: flex;
   align-items: center;
    color: #fff;
  font-weight: 700;
        width: 50px;
    margin: 0 auto 1.5rem;
    justify-content: center;
}

.step-item h3 {
        font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.step-item p {
    color: #64748b;
   line-height: 1.6;
}

.while-waiting {
	background: #fff;
   padding: 5rem 0;
} 

.waiting-content {
 display: grid;
  grid-template-columns:     1fr 1fr;
   gap: 3rem;
    align-items: center;
}  

.waiting-text h2   {

		font-size: 2.2rem;
  margin-bottom: 1.5rem;
    color: #1e293b;


}

.waiting-text p {
	font-size: 1.1rem;
   line-height     :    1.7;
    margin-bottom: 2rem;
  color: #475569;
}

.waiting-actions {
  display: flex;
  flex-wrap: wrap;
   gap: 1rem;
}

.waiting-image img {
  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-reminder {
  padding: 3rem 0;
   background: #f8fafc;
	
}

.reminder-box {
             background: #fff;
	padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
  max-width     : 600px;
    margin: 0 auto;


}

.reminder-box h3 {
  font-size  : 1.5rem;
   margin-bottom: 1rem;
  color: #1e293b;
}

.reminder-box > p   {
    color: #64748b;
  margin-bottom: 2rem;
   line-height: 1.6;

}  

.contact-details{
   display: grid;
	 gap: 1rem;
}

.contact-item {
	padding: 1rem;
    align-items: center;
  justify-content: space-between;
                    background: #f8fafc;
    display: flex;
  border-radius   :   8px;
}

.contact-item strong {
   color: #6366f1;
  font-weight: 600;
}

.contact-item span  {
    color: #475569;
}@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #10b981;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@media (max-width: 768px) {
    .about-hero-content,
    .story-content,
    .methodology-content,
    .achievements-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-hero h1,
    .thankyou-hero h1 {
        font-size: 2.2rem;
    }
    
    .story-text h2,
    .method-text h2,
    .next-steps h2,
    .values-section h2,
    .achievements-section h2,
    .team-section h2 {
        font-size: 2rem;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
    }
    
    .waiting-actions {
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 3rem 0;
    }
    
    .our-story,
    .team-section,
    .methodology-section,
    .values-section,
    .achievements-section,
    .next-steps,
    .while-waiting {
        padding: 3rem 0;
    }
    
    .team-member,
    .value-item,
    .step-item,
    .contact-form,
    .reminder-box {
        padding: 2rem;
    }
    
    .about-hero h1,
    .thankyou-hero h1 {
        font-size: 1.8rem;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-checkmark .check-icon {
        width: 40px;
        height: 40px;
        margin: 6px auto;
    }
}