* {
  box-sizing    :  border-box;
	 margin: 0;
    padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
  color: #333;
  background: #fff;
}

.main-navigation {
   position   :       fixed;
   top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
  border-bottom: 1px solid #e1e5e9;
         transition: all 0.3s ease;


}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}  

.navigation-wrapper {
          max-width: 1200px;
                    margin: 0 auto;
  display: flex;
     justify-content :space-between;
   align-items: center;
	 padding: 1rem 2rem;
}

.company-logo {

   height: 45px;
      width: auto;
	}

.nav-menu {
   display: flex;
   list-style  :    none;
   gap: 2rem;
}

.nav-menu a {
   text-decoration: none;
       color: #333;
  font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {

	  color: #d63384;

}

.nav-menu a::after {
  content: '';
   position: absolute;
   bottom: -5px;
  left: 0;
    width :    0;
  height: 2px;
    background :    #d63384;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
	width: 100%;
}

.burger-menu {
  display: none;

  flex-direction: column;

    cursor: pointer;

  gap    :4px;
}

.burger-menu span {
   width: 25px;
   height   :       3px;
   background: #333;
   transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2)
{
    opacity  : 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-segment {
  padding: 120px 2rem 80px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	    color: white; 
	   text-align: center; 
		min-height: 100vh; 
	  display: flex; 
	    align-items: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h1 {
  margin-bottom: 1.5rem; 
	   font-weight: 700; 
	  font-size  :        3.5rem; 
	    line-height   :     1.2;
}

.hero-description {
  font-size    :       1.3rem;
 margin-bottom   :    2.5rem;
	opacity: 0.9;
   max-width: 600px;
	margin-left: auto;
    margin-right   :     auto;
	}

.hero-image {
   width: 100%;

	   max-width: 500px;

	  height: 300px;

	   object-fit: cover;

	   border-radius: 15px;

	   margin   : 2rem 0;

	  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.primary-button
{
    display: inline-block;
  background: #ff6b6b;
   color: white;
  padding: 15px 35px;
    text-decoration: none;
   border-radius: 50px;
   font-weight: 600;
    font-size :1.1rem;
   transition: all 0.3s ease;
     text-transform: uppercase;
   letter-spacing: 1px;
}

.primary-button:hover  {
    background:     #ee5a52;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

.secondary-button {
   display: inline-block;
  background: transparent;
   color: #333;
   border: 2px solid #333;
  padding: 12px 30px;
    text-decoration: none;
        border-radius: 25px;
    font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-button:hover {

    background: #333;
	 color   :        white;


}

.container 
 {
  max-width: 1200px;
	    margin: 0 auto;
		padding: 0 2rem;
}

.services-overview {
  padding: 100px 0;
  background: #f8f9fa;

}

.services-overview h2


{
     text-align: center;
   font-size: 2.8rem;
    margin-bottom :       3rem;
  color     :    #2c3e50;
     }

.service-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 3rem;
  margin-top   :     3rem;
}

.service-item {
   background: white;
  padding: 2.5rem;
    border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
 opacity: 0;
  transform: translateY(30px);
}

.service-item.animate {
   opacity: 1;
  transform: translateY(0); 

}

.service-item:hover {
  transform: translateY(-10px);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-img {
  object-fit: cover;
    height :        200px;
    border-radius: 10px;
    margin-bottom: 1.5rem;
   width: 100%;
}

.service-item h3		{
    font-size: 1.6rem;
   margin-bottom: 1rem;
  color: #34495e;
}

.service-item p {
   color: #6c757d;
    line-height: 1.8;
}

.transformation-process {
	padding: 100px 0;
    background   :   white;
}

.transformation-process h2 {
  text-align: center;
    font-size: 2.8rem;
  margin-bottom: 4rem;
   color: #2c3e50;
	
}

.process-steps     {
          display     :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
   text-align     :    center;
	 padding: 2rem;
    opacity: 0;
  transform: translateY(20px);
   transition: all 0.5s ease;
}

.step.animate {

	 opacity: 1;

  transform: translateY(0);

}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :     white;
          border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
  font-size  :        1.8rem;
  font-weight: bold;
   margin     :  0 auto 1.5rem;
}

.step h4 {
	        font-size: 1.4rem;
                    margin-bottom: 1rem;
    color: #34495e;}

.step p  
  {
    color: #6c757d;
  line-height: 1.7;
}

.cta-segment {
  padding    :    100px 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
   text-align: center;
}

.cta-content  
  {
	 max-width: 700px;
  margin: 0 auto;
   opacity: 0;
  transform: translateY(30px);
  transition :all 0.6s ease;
}


.cta-content.animate{
    opacity: 1;
  transform: translateY(0);
}

.cta-content h2 {
	   font-size: 2.5rem;
        margin-bottom: 1.5rem;
   color: #2c3e50;


}

.cta-content p

{
    font-size     :1.2rem;
   margin-bottom: 2rem;
  color: #5a6c7d;
   line-height: 1.8;

}

.cta-image {
    width: 100%;
  max-width: 400px;
    height     :        250px;
  object-fit: cover;
    border-radius: 15px;
    margin    :      2rem 0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-section   {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-section h2 {
    text-align :     center;
  font-size: 2.8rem;
	margin-bottom: 3rem;
   color: #2c3e50;
}



.contact-wrapper {
  display    :   grid;
   grid-template-columns: 1fr 2fr;
  gap  :  4rem;
    align-items: start;
}

.contact-info h3 {
   font-size: 1.8rem;
   margin-bottom: 2rem;
  color: #34495e;
}

.contact-details p {
   color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-form {
          background: white;
   padding    :       3rem;
    border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea 
 {
    width: 100%;
    padding:       15px;
          border: 2px solid #e1e5e9;
   border-radius     : 10px;
   font-size: 1rem;
   transition     :        all 0.3s ease;
       font-family    :    inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #dc3545;
	
}

.submit-btn  
  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
	border: none;
   padding: 15px 40px;
  border-radius: 25px;
  font-size    :     1.1rem;
	font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
    text-transform: uppercase;
 letter-spacing: 1px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
    padding: 60px 0 20px;
  background: #2c3e50;
   color: white;
}

.footer-content {
    max-width: 1200px;
       margin: 0 auto;
  padding: 0 2rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;


}

.footer-logo {
   height: 50px;
  filter: brightness(0) invert(1); 

}

.footer-info h4,
.footer-links h4,
.footer-legal h4 {
    margin-bottom: 1.5rem;
   font-size: 1.3rem;
}

.footer-info p {

	margin-bottom :  0.8rem;
	opacity: 0.9;}

.footer-links ul,
.footer-legal ul {
  list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-legal a {
   color: white;
   text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
      opacity: 1;

}

.footer-bottom {
	 text-align: center;
  padding-top: 3rem;
          margin-top     :        3rem;
   border-top: 1px solid #34495e;
}

.footer-bottom p {
   opacity: 0.8;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px 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 h1 {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
        padding: 2rem;
    }
}.about-hero {
  padding  :    120px 0 80px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
   text-align: center; 
	
}

.about-hero h1 {
    font-size: 3.2rem;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.about-intro {
  font-size: 1.3rem;
   max-width: 800px;
        margin: 0 auto 2.5rem;
  opacity: 0.95;
    line-height    :      1.7;
}

.about-hero-image {
   width: 100%;
    max-width: 600px;
    height: 350px;
	object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.company-story  {
    padding: 100px 0;
   background: white;
}

.story-content {
  display: grid;
   grid-template-columns: 1fr 400px;
	gap: 4rem;
   align-items: center;


}

.story-content h2 {
    font-size:   2.8rem;
   color: #2c3e50;
  margin-bottom: 2rem;
}

.story-text p {
	 font-size: 1.1rem;
  line-height: 1.8;
   color: #5a6c7d;
  margin-bottom: 1.5rem;
}

.story-image {
   width: 100%;
   height: 300px;
	 object-fit: cover;
  border-radius:    15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.methodology-section {
  padding    : 100px 0;
  background: #f8f9fa; 

}

.methodology-section h2 {
	text-align: center;
	    font-size: 2.8rem;
	   color  :     #2c3e50;
	   margin-bottom: 4rem;

}

.method-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap     :   3rem;
}

.method-card {

	   background: white;
		 padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition: all 0.4s ease;}

.method-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.method-card h3 {
   font-size: 1.6rem;
  color: #34495e;
    margin-bottom: 1.5rem;
}

.method-card p {
  color: #6c757d;
    line-height: 1.8;
   margin-bottom: 2rem;
}

.method-image {
   width: 100%;
  height: 200px;
   object-fit: cover;
  border-radius: 10px;
}

.values-principles {
      padding: 100px 0;
   background: white;
	}

.values-principles h2 {
    text-align: center;
   font-size    :2.8rem;
  color: #2c3e50;
   margin-bottom: 4rem;
}

.values-list {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;


}

.value-item {
   display: flex;
    gap: 2rem;
  align-items: flex-start;
}

.value-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   width: 60px;
    height:      60px;
  border-radius    : 50%;
   display: flex;
          align-items: center;
    justify-content: center;
    font-weight: bold;
  font-size: 1.3rem;
   flex-shrink: 0;
}

.value-item h4 {
        font-size   :        1.4rem;
  color: #34495e;
  margin-bottom: 1rem;
}

.value-item p{
  color: #6c757d;
   line-height: 1.7;
}

.experience-section	{
   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center;
}

.experience-section h2 {
    font-size: 2.8rem;
  margin-bottom: 4rem;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.stat-item {
       padding   :   2rem;
}

.stat-number {
  font-size: 3.5rem;
	font-weight: 900;
  color: #ff6b6b;
   margin-bottom: 1rem;
  display: block;
}

.stat-item p {
    font-size: 1.1rem;
   opacity     :    0.9;
    color     :   #fff;
    line-height:        1.6;


}

.thankyou-hero {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   color: white;
   text-align: center;
}

.thankyou-content h1 {

  font-size: 3.2rem;
  margin-bottom: 1.5rem;
	 font-weight: 700; 
	}

.thankyou-message {

	    font-size: 1.3rem;
	 max-width: 700px;
   margin   :      0 auto 2.5rem;
    opacity: 0.95;
   line-height: 1.7;}

.thankyou-image  
  {
  width: 100%;
       max-width: 500px;
    height: 300px;
    object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.next-steps  {
    padding: 100px 0;
    background :  white;
}

.next-steps h2 {
    text-align: center;
        font-size: 2.8rem;
  color:     #2c3e50;
   margin-bottom: 4rem;
}

.steps-timeline {

	  display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 3rem;
    position: relative;
     }

.timeline-step {
    background: #f8f9fa;
       padding: 2.5rem;
       border-radius: 20px;
      text-align: center;
        position: relative;
    transition: all 0.3s ease;
}

.timeline-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);


}

.step-icon {
               width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
       color: white;
  border-radius: 50%;
   display: flex;
  align-items  :  center;
    justify-content: center;
   font-size: 1.8rem;
  font-weight: bold;
    margin: 0 auto 1.5rem;


}

.timeline-step h3 {
  font-size: 1.5rem;
  color: #34495e;
    margin-bottom: 1rem;
}

.timeline-step p {
    color: #6c757d;
    line-height: 1.7;
}

.success-preview {
    padding: 100px 0;
   background: #f8f9fa;
}

.success-preview h2
{
 text-align: center;
    font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 4rem;
}

.success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap :    3rem;
}

.success-item {
  background: white;
    padding: 2.5rem;
               border-radius: 20px;
      text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition: all 0.4s ease;
}

.success-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.success-img {
   width     :       100%;
	height: 180px;
  object-fit: cover;
    border-radius: 10px;
  margin-bottom: 1.5rem;
}

.success-item h4 {
    font-size: 1.4rem;
         color: #34495e;
   margin-bottom: 1rem;
}

.success-item p {
    color     :     #6c757d;

		 line-height    :  1.7;
}

.meantime-resources {
   padding:       100px 0;
    background: white;
}

.meantime-resources h2 {
  text-align: center;
    font-size: 2.8rem;
   color: #2c3e50;
	margin-bottom: 4rem;
}

.resources-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
}

.resource-item {
  padding: 2rem;
    border-left: 4px solid #4facfe;
  background: #f8f9fa;
  border-radius: 0 15px 15px 0;
}

.resource-item h4 {
    font-size: 1.3rem;
      color: #34495e;
  margin-bottom: 1rem;
}

.resource-item p {
    color: #6c757d;
    line-height  :  1.7;
}

.contact-reminder {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.reminder-content {
               display: grid;

  grid-template-columns: 400px 1fr;

  gap     :4rem;

  align-items    :  center;}

.reminder-image {
  width: 100%;
  height    :300px;
   object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); 


}

.reminder-text h3 {
        font-size: 2rem;
  color: #34495e;
        margin-bottom: 1.5rem;
}

.reminder-text p {
        font-size: 1.1rem; 
   color: #6c757d; 
   line-height   :   1.7; 
    margin-bottom   :  2rem;
}

.contact-info p {
    font-size:   1.1rem;
    margin-bottom: 0.8rem;
  color: #34495e;
}@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-hero h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .value-item {
        flex-direction: column;
        text-align: center;
    }

    .reminder-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }
}.container h1 {
   font-size: 2.8rem;
    margin-bottom: 2rem;
   color: #2c3e50;
  text-align: center;
}

.container h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #34495e;
}

.container p {
  font-size: 1.1rem;
    color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;

}

.container ul    {
   margin: 1rem 0 2rem 2rem;
   list-style: disc;
}

.container ul li {
    margin-bottom: 0.8rem;
   font-size: 1.1rem;
  color: #6c757d;
}

.pol {
   margin: 7% 15%;
}