* {
  margin     :   0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #333;
}

.container


{
  max-width: 1200px;
   margin: 0 auto;
    padding    :        0 20px;
}

.main-header {

	  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
	 top: 0;
  left: 0;
    right     :0;
	 z-index     :   1000;
   transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
	
}

.navigation-wrapper {
	    padding: 1rem 0;}



.nav-container {
   max-width: 1200px;
  margin: 0 auto;
	 padding    :       0 20px;
  display: flex;
    justify-content: space-between;
	align-items: center;
}

.company-logo


{
  height: 45px;
  width: auto;
}

.navigation-links     {
       gap: 2rem;
   display: flex;
    list-style: none;

}

.nav-link {
          text-decoration: none;
   color: #333;
   font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active
{
	    color: #2c5aa0;


}

.nav-link::after {
  position: absolute;
  left: 0;
  transition: width 0.3s ease;
   bottom: -5px;
  width: 0;
    background: #2c5aa0;
  height: 2px;
  content: '';
}

.nav-link:hover::after, .nav-link.active::after {
     width: 100%;

}

.menu-toggle {
    display: none;
          flex-direction: column;
                    cursor: pointer;
          gap: 4px;
}

.burger-line {
	  width: 25px;
		height     :   3px;
      background: #333;
   transition: all 0.3s ease;}

.menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);


}

.menu-toggle.active .burger-line:nth-child(2)   {
	 opacity :        0;
}

.menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-banner {
   margin-top    :       80px;
    padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
  max-width:1200px;
    margin: 0 auto;
   padding  :      0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.hero-text h1    {
    font-size: 3rem;
   font-weight: 700;
  color: #2c3e50;
    margin-bottom: 1.5rem;
	 line-height :     1.2;
}

.hero-description {
  font-size: 1.2rem;
    color     :  #5a6c7d;
  margin-bottom :2.5rem;
}

.hero-buttons {
	    display: flex; 
  gap    :    1rem;}

.primary-btn, .secondary-btn {
  padding: 12px 30px;
  text-decoration: none;
   border-radius:       50px;
  font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn
	{
 background: #2c5aa0;
   color: white;
}


.primary-btn:hover {
          background: #1e3f73;
  transform: translateY(-2px);
}

.secondary-btn {
   background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.secondary-btn:hover {
       background: #2c5aa0;
   color: white;


}

.hero-image img {
    width: 100%;
       height: auto;
  border-radius    : 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {

	    padding: 5rem 0;
  background: white;
	}

.services-overview h2 {
  text-align: center;
    font-size: 2.5rem;
				 color: #2c3e50;
    margin-bottom: 3rem;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
}

.service-card {
   background: white;
  border-radius  :       15px;
    padding: 2rem;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
   	 width    :   100%;
     height: 200px;
   object-fit:        cover;
    border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.5rem;
	 color: #2c3e50;
 margin-bottom: 1rem;
}

.service-card p {
               color     :       #5a6c7d;
        line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
   text-align: center;
  color: white;
}

.cta-content h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p   {
  font-size: 1.2rem;
    margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
   background: white;
    color: #667eea;
  padding :    15px 35px;
         text-decoration: none;
	 border-radius: 50px;
   font-weight: 600;
  transition     :       all 0.3s ease;
   display: inline-block;
}

.cta-button:hover     {


  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
     }

.benefits-section {
    padding  :       5rem 0;
   background: #f8f9fa;
}

.benefits-section h2 {
  text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.benefits-wrapper {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-item {
   background: white;
    padding: 2.5rem;
	 border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.benefit-item h3     {
    font-size: 1.5rem;
    color: #2c5aa0;
					margin-bottom: 1rem;
}

.benefit-item p {
   color: #5a6c7d;
	  line-height: 1.6;
}

.seminar-info {
  background:    white;

	    padding: 5rem 0;
}

.seminar-content {
   max-width: 1200px;
    margin    :     0 auto;
  padding: 0 20px;
  display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.seminar-text h2 {
    font-size:   2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.seminar-text p {
   font-size    :1.1rem;
   color: #5a6c7d;
    margin-bottom :      2rem;
    line-height   :        1.7;
}

.seminar-features	{
    list-style: none;
}

.seminar-features li {
    padding: 0.5rem 0;
  color: #5a6c7d;
        position: relative;
  padding-left: 1.5rem;
	
}


.seminar-features li::before {


  content: '✓';
    position  :    absolute;
    left: 0;
    color: #2c5aa0;
        font-weight: bold;
     }

.seminar-image img

{
  width: 100%;
   height: auto;
  border-radius  :  15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;

}

.contact-wrapper {
    display: grid;
  grid-template-columns: 1fr 2fr;
    gap:      4rem;
   align-items: start;
}

.contact-info h3 {
   margin-bottom     :      2rem;
    font-size: 1.5rem;
    color: #2c5aa0;
}

.contact-details p {
    margin-bottom: 1.5rem;
       color: #5a6c7d;
  line-height: 1.6;

}

.contact-form {
   background: white;
	 padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group  
  {
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   -o-transition: border-color 0.3s ease;
  width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
	border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #2c5aa0;
}

.submit-btn

{
  background:      #2c5aa0;
	color: white;
  padding: 12px 30px;
   border: none;
    border-radius: 50px;
    font-size: 1rem;
   font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
    width :100%;
}

.submit-btn:hover {

    background  :   #1e3f73;
  transform: translateY(-2px);
     }

.site-footer {
 background: #2c3e50;
	color: white;
  padding     :     3rem 0 1rem;
}

.footer-content {

	          max-width : 1200px;
    margin: 0 auto;
   padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;

}

.footer-logo {
   height: 40px;
          width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-section h4 {
   font-size: 1.2rem;

  margin-bottom: 1rem;

    color: #ecf0f1;
}

.footer-section p {
   color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-links {
   list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem; 

}

.footer-links a {
  color    :        #bdc3c7;
   text-decoration  :  none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
	 max-width: 1200px;
    margin    : 2rem auto 0;
  padding: 2rem 20px 0;
  border-top: 1px solid #34495e;
  text-align: center;
   color: #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navigation-links {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navigation-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .seminar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .benefits-section h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}.about-hero {
    margin-top:        80px;
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
       color   :  white;


} 

.about-hero-content {
    max-width: 800px;
  margin   :        0 auto;
  padding: 0 20px;
}

.about-hero h1 {
   font-size: 3.5rem;
    font-weight: 700;
   margin-bottom: 1.5rem;
}

.about-hero-text {
               font-size: 1.3rem;
    opacity: 0.95;
   line-height: 1.7;
}

.company-story {


  padding: 6rem 0;
        background   :        white;}



.story-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
	 color: #2c3e50;
    margin-bottom: 2rem;
}

.story-text p  
  {

   font-size: 1.1rem;
   color: #5a6c7d;
  line-height: 1.8;
    margin-bottom: 1.5rem;}

.story-image img {
   width: 100%;
    height: auto;
				 border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-section {
    padding: 6rem 0;
  background: #f8f9fa;
}

.team-section h2 {
  text-align    :        center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
   padding: 2.5rem;
    border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
   transition: transform 0.3s ease;
}

.team-member:hover {

  transform: translateY(-8px);}

.member-info h3 {
   font-size: 1.5rem;
    color :      #2c5aa0;
        margin-bottom: 0.5rem;
}

.member-role {
   font-weight: 600;
  color: #667eea;
    margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.member-description {
   color  :   #5a6c7d;
    line-height: 1.7;
}

.methodology-section {
  padding: 6rem 0;
   background: white;
}

.methodology-content {
  display: grid;
    grid-template-columns:       1fr 1fr;
    gap: 4rem;
 align-items: center;
}

.methodology-text h2 {
  margin-bottom: 2rem;
    color: #2c3e50;
  font-size: 2.5rem;
	
}

.methodology-text > p


{
	font-size: 1.2rem;
	color: #5a6c7d;
    margin-bottom: 3rem;
  line-height: 1.7;
}

.methodology-pillars {
   display: flex;
   flex-direction: column;
  gap: 2rem;
}  

.pillar	{
  padding: 1.5rem;
    background:        #f8f9fa;
    border-radius    :       15px;
  border-left: 4px solid #2c5aa0;
}

.pillar h4 {
    font-size: 1.3rem;
    color: #2c5aa0;
                    margin-bottom: 0.8rem;
}

.pillar p     {
    color: #5a6c7d;
  line-height: 1.6;

}

.methodology-image img {
  width: 100%;
          height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.achievements-section		{
  padding: 6rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.achievements-section h2 {
   text-align: center;
    font-size: 2.5rem;
  margin-bottom: 4rem;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap :  2rem;
} 

.achievement-card {
    text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.15);
   border-radius: 20px;
  backdrop-filter: blur(10px);
}

.achievement-number {
   font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.achievement-text {
  font-size: 1.1rem;

   opacity: 0.9;
}

.values-section {
  padding: 6rem 0;
    background:        #f8f9fa;
}

.values-section h2 {
  text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
        margin-bottom: 4rem;
}

.values-content {
	display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items :    center;
}

.value-item {
    margin-bottom: 3rem; 
	   padding: 2rem; 
	    background :white; 
	         border-radius: 15px; 
	  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	}

.value-item h3 {
        font-size: 1.4rem;
    color: #2c5aa0;
  margin-bottom: 1rem;
}

.value-item p {
   color: #5a6c7d; 
    line-height: 1.7;
}

.values-image img {
   width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.mission-section {

	    padding: 6rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
                    text-align: center;


}

.mission-content h2 {
  font-size: 2.8rem;
  margin-bottom: 2rem;
}

.mission-text {
  font-size: 1.3rem;
   line-height   : 1.8;
   max-width: 900px;
   margin: 0 auto 3rem;
  opacity: 0.95;
}

.mission-image-wrapper {
  max-width: 600px;
       margin: 0 auto;
}

.mission-image-wrapper img {
  width: 100%;
    height: auto;
	 border-radius   :   15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.thankyou-hero {
    margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 60vh;
	 display: flex;
    align-items: center;
}

.thankyou-container {
    max-width: 800px;
      margin: 0 auto;
                    padding: 0 20px;
}

.thankyou-content {
    text-align: center;
  color: white; 
	
}

.success-icon {
   margin-bottom: 2rem;
}

.checkmark-circle {
        width: 80px;
      height     : 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
   display: inline-flex;
  align-items: center;
    justify-content: center;
    position: relative;
    animation: scaleIn 0.6s ease-out; 

}

.checkmark {
   width: 25px;
  height: 15px;
    border: 3px solid white;
       border-top :      none;
      border-right   : none;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.4s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 25px; height: 15px; }
}.thankyou-content h1 {
 margin-bottom: 1.5rem;
      font-size: 3rem;
   font-weight: 700;
}

.thankyou-message {
   font-size  :     1.2rem;
    opacity: 0.95;
   line-height: 1.7;
   margin-bottom: 3rem;
}

.next-steps {
  background: rgba(255,255,255,0.1);
   padding: 3rem;
    border-radius: 20px;
  margin-bottom    :       3rem;
  backdrop-filter: blur(10px);
}

.next-steps h2 {
   font-size: 2rem;
  margin-bottom: 2rem; 

}

.steps-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
	 margin-top: 2rem;
     }

.step-item {
    text-align: center;
    padding: 1.5rem;
}

.step-number {
    width: 50px;
    height: 50px;
   background: white;
	 color: #667eea;
	 border-radius: 50%;
    display: inline-flex;
    align-items    :    center;
   justify-content: center;
   font-size: 1.5rem;
         font-weight: 700;
  margin-bottom  :   1rem;
}

.step-item h3 {
          font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-item p {
  opacity: 0.9;
  line-height: 1.6; 

}

.additional-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-bottom: 3rem;
}

.info-card {
  background: rgba(255,255,255,0.1);
    padding :  2rem;
    border-radius: 15px;
  backdrop-filter: blur(10px);
}

.info-card h3 {

 font-size: 1.3rem;
  margin-bottom: 1rem;

}

.info-card p {
  opacity: 0.9;
  margin-bottom: 1rem;
}

.phone-link     {


  color: white;
    text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  border-bottom: 2px solid rgba(255,255,255,0.5);
   transition: border-color 0.3s ease;

}

.phone-link:hover {
    border-color: white;

}

.info-link {
  color: white;
     text-decoration: none;
     font-weight: 600;
     border-bottom: 2px solid rgba(255,255,255,0.5);
      transition: border-color 0.3s ease;
}  

.info-link:hover  {
   border-color: white;
}

.return-actions {
   display: flex;
   gap: 1.5rem;
    justify-content: center;
   flex-wrap :       wrap;
}

.testimonial-preview {
   padding: 5rem 0;
   background: #f8f9fa;
}

.testimonial-preview h2 {
   text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
                    margin-bottom: 3rem;
}

.testimonials-wrapper 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.testimonial-card {
    background: white;
        padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}  

.testimonial-card p {
    margin-bottom: 1.5rem;
  color: #5a6c7d;
   font-style: italic;
    line-height: 1.7;
}



.testimonial-author strong		{

    margin-bottom: 0.3rem;
    color: #2c5aa0;
       display: block;
	}

.testimonial-author span {
    color: #667eea;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-text {
        font-size: 1.1rem;
    }
    
    .story-content,
    .methodology-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-message {
        font-size: 1.1rem;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .next-steps {
        padding: 2rem 1rem;
    }
    
    .mission-content h2 {
        font-size: 2.2rem;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
}