*    {

	   margin: 0;
      padding     :   0;
    box-sizing: border-box;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height     :     1.6;
    color: #333;
    background   :       #ffffff;
}  

.navigation-wrapper {


   position: fixed;
  top: 0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
	border-bottom: 1px solid #e0e0e0;
  transition :        all 0.3s ease;
	}

.navigation-wrapper.scrolled {

	  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
   display: flex;
  justify-content: space-between;
  align-items: center;
  padding  :     15px 20px;
}



.company-logo {
   height: 45px;
  width: auto;
}

.menu-list		{
   display: flex;
    list-style: none;
   gap: 35px;
}

.menu-list li a {
    text-decoration: none;
  color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.menu-list li a::after {
  -moz-transition   :   width 0.3s ease;
  content: '';
  position: absolute;
    -webkit-transition: width 0.3s ease;
  width: 0;
   height: 2px;
    bottom: -5px;
   left: 0;
   background: #2563eb;
    transition: width 0.3s ease;
}

.menu-list li a:hover::after 
 {
    width: 100%;
}

.burger-icon {
   display: none;
   flex-direction: column;
	cursor: pointer;
  gap: 4px;
}

.burger-icon span {
  height: 3px;
  width: 25px;
    transition: 0.3s;
    background: #333;
}

.burger-icon.active span:nth-child(1)		{
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-icon.active span:nth-child(2) {
   opacity: 0;
}

.burger-icon.active span:nth-child(3)    {
  transform: rotate(45deg) translate(-5px, -6px);

	}

.mobile-menu {
          display: none;
	background: white;
   position: absolute;
    top: 100%;
  left: 0;
        width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	}

.mobile-menu ul {
 list-style   :  none;
  padding: 20px;
}

.mobile-menu li {
       margin-bottom  :15px;
}

.mobile-menu a {

	  text-decoration: none;
    color: #333;
    font-size: 18px;
  font-weight: 500;}

.hero-section {
   margin-top: 80px;
    padding:   80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  display:     flex;
   align-items: center;
                    min-height: 600px; 

}

.hero-content {
    max-width: 1200px;
	 margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.hero-content h1 {

	   font-size: 3.2em;
    font-weight: 700;
	line-height: 1.2;
   margin-bottom: 25px;
	} 

.hero-content p {
    font-size: 1.3em;
               margin-bottom: 35px;
      opacity: 0.9;
}

.hero-actions {
  display :flex;
   gap  :       20px;
   flex-wrap :wrap;

}

.primary-button, .secondary-button, .cta-button {
	padding: 15px 35px;

    text-decoration:none;

    border-radius: 8px;

  font-weight: 600;

   transition: all 0.3s ease;

 display  :     inline-block;

   cursor: pointer;
}

.primary-button {

    background: #f59e0b;
   color: white;}

.primary-button:hover{
	 background: #d97706;
  transform: translateY(-2px);
}

.secondary-button {
    background :transparent;
    color: white;
 border: 2px solid white;
}

.secondary-button:hover {
   background: white;
  color: #667eea;
}

.hero-visual img {
    width: 100%;
    border-radius     :      15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.services-showcase {
    padding     :      100px 20px;
   background: #f8fafc;
}

.section-container {
    max-width: 1200px;
   margin: 0 auto;
}

.services-showcase h2 {
         text-align: center;

  font-size: 2.5em;

    margin-bottom: 60px;

    color: #1e293b;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
   background: white; 
   border-radius: 15px; 
   overflow: hidden; 
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img		{
   width  :    100%;
  height: 200px;
   object-fit: cover;
}

.service-card h3 {
    font-size  : 1.4em;
  padding: 25px;
   padding-bottom: 15px;
	color: #1e293b;
}

.service-card p {
    padding: 0 25px 25px;

  color: #64748b;

    line-height: 1.7;
}

.transformation-benefits {
  padding: 100px 20px;
    background: white;
}

.benefits-container {
    max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items     :       center;
}

.benefits-content h2 {
   font-size: 2.3em;
   margin-bottom: 40px;
    color: #1e293b;




}

.benefit-item {
  margin-bottom: 35px;
}

.benefit-item h4 {
	  color: #2563eb;
    margin-bottom: 10px;
   font-size: 1.2em;
	}  

.benefit-item p {
    color    :      #64748b;
  line-height: 1.7;
}

.benefits-visual img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
   text-align : center;
}  

.cta-container {
  max-width  :    800px;
   margin: 0 auto;
}

.cta-container h2 {
  font-size: 2.5em;
    margin-bottom: 20px;
}

.cta-container p {
  font-size: 1.2em;
  margin-bottom: 35px;
   opacity: 0.9;
}

.cta-button {
  background: #f59e0b;
   color: white;
   font-size: 1.1em;
	
}

.cta-button:hover {
          background: #d97706;
  transform: translateY(-3px);
}

.contact-section {
    padding :        100px 20px;
    background: #f1f5f9;
}

.contact-container {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2     {
  font-size: 2.3em;
    margin-bottom :  25px;
  color: #1e293b;
}

.contact-info p {
    margin-bottom: 35px;
	font-size    :1.1em;
   color: #64748b;
    line-height: 1.7;
}


.contact-details     {
  margin-top: 30px;
}

.contact-item {
   margin-bottom: 15px;
    color: #475569;
	font-size: 1.1em;
}

.contact-form {

  background: white;
  padding:     40px;
      border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
     }

.form-group {
	    margin-bottom  :      25px;
    position: relative;
	}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
  border-radius: 8px;
   font-size: 16px;
   transition: border-color 0.3s ease;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  outline: none; 
	    border-color: #2563eb;
}

.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
	  border-color     :        #2563eb;

}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
	border-color: #ef4444;
}

.submit-button {
   width: 100%;
	padding    :       15px;
   background: #2563eb;
    color: white;
   border     :       none;
   border-radius: 8px;
	font-size    :        1.1em;
    font-weight: 600;
          cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {

	background: #1d4ed8;
  transform: translateY(-2px);}

.footer-section {
         background: #1e293b;
          color: white;
	 padding: 50px 20px 20px;

}

.footer-container {
  gap  : 40px;
        grid-template-columns: 1fr 3fr;
   margin   :     0 auto;
   max-width: 1200px;
	display: grid;
}

.footer-logo {
   height  :        40px;
  filter: brightness(0) invert(1);
}

.footer-content {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4    {
   margin-bottom: 20px;
  color: #f1f5f9;
} 

.footer-column ul {
   list-style: none;
}

.footer-column li {
	 margin-bottom: 10px;
}

.footer-column a  
  {
   color: #94a3b8;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-column a:hover {
   color: white;
}

.footer-column p {
    color: #94a3b8;
   line-height: 1.6;
}

.footer-bottom {


  margin-top    :30px;
  padding-top: 20px;
  border-top: 1px solid #334155;
  text-align: center;

}

.footer-bottom p


{
  color: #94a3b8;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .burger-icon {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2em;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 1.8em;
    }

    .services-showcase,
    .transformation-benefits,
    .contact-section {
        padding: 60px 15px;
    }

    .contact-form {
        padding: 25px;
    }
}.hero-actions a:hover
{
     text-decoration: none;
}

.about-hero-section {
    margin-top: 80px;
  padding :        120px 20px 80px;
  background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
  color: white;
   text-align: center;
} 

.about-hero-content h1 {
  font-size: 3.5em;
	font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
   font-size: 1.4em;
  opacity: 0.9;
	max-width: 600px;
  margin: 0 auto;
}

.company-story {
	padding: 100px 20px;
    background:      white;
}

.story-container {
   max-width     :     1200px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
  align-items:      center;
}

.story-content h2 {
  font-size: 2.5em;
   color: #1e293b;
  margin-bottom: 30px;
}

.story-content p {
	color    :     #64748b;
    font-size: 1.1em;
      line-height  :    1.8;
      margin-bottom: 25px;
}

.story-visual img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
	
}


.expertise-section {
     padding : 100px 20px;
    background: #f8fafc;
     }

.expertise-container {
   max-width: 1200px;
    margin: 0 auto; 
	
}

.expertise-container h2 {
  text-align: center;
  color: #1e293b;
  font-size: 2.5em;
   margin-bottom: 60px;
}

.expertise-grid {

	               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
     }

.expertise-card {
   background: white;
    padding: 35px;
   border-radius   :    15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px); 
	
}

.expertise-card h3 {
  color: #2563eb;
       font-size: 1.3em;
    margin-bottom: 15px;
}  

.expertise-card p {
	  color: #64748b;
    line-height: 1.7;
	
}

.values-section {
   padding:   100px 20px;
   background: white;}

.values-container {
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
	 grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items :center;
}

.values-content h2 {
    font-size: 2.3em;
    color: #1e293b;
    margin-bottom: 40px;
}

.value-item		{


   margin-bottom: 30px;
     }

.value-item h4

{
  color: #f59e0b;
    font-size: 1.2em;
    margin-bottom: 10px;
}

.value-item p {
    color: #64748b;
  line-height: 1.7;
}

.values-visual img

{


    width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.approach-methodology {
   padding: 100px 20px;
  background: #f1f5f9;
}

.approach-container {
   max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
   text-align: center;
  font-size: 2.5em;
   color: #1e293b;
   margin-bottom: 60px;


}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.step-item {
  background: white;
         padding: 30px;
  border-radius: 15px;
    text-align:center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    position: relative;


}

.step-number {
	    background: #2563eb;
    color: white;
  width: 60px;
   height: 60px;
  border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
  font-size: 1.5em;
   font-weight: bold;
  margin  :       0 auto 20px;


}

.step-item h3 {
   color: #1e293b;

	   margin-bottom: 15px;

	   font-size     :  1.2em;
} 

.step-item p {
  color: #64748b;
    line-height: 1.6;
}

.success-metrics {
    padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
	text-align: center;
}

.metrics-container {
   max-width: 1200px;
   margin: 0 auto;
}

.metrics-container h2   {
  font-size: 2.5em;
  margin-bottom: 60px;
}


.metrics-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.metric-card {
    padding: 20px;
}

.metric-number

{
          font-size: 3.5em;
	 font-weight: bold;
    margin-bottom: 10px;
    color: #f59e0b;
}

.metric-label {
               font-size: 1.1em;
   opacity: 0.9;
}

.why-choose-us {
      padding: 100px 20px;
   background: white; 
	}

.choice-container {
	  gap: 60px;
   display: grid;
    margin: 0 auto;
   align-items: center;
    max-width: 1200px;
    grid-template-columns: 1fr 1fr;}

.choice-content h2 {
    font-size: 2.3em;
    color: #1e293b;
   margin-bottom: 30px;
}

.benefits-checklist {
                    list-style: none;
     padding: 0;
}

.benefits-checklist li {
	padding: 12px 0;
 color: #64748b;
   font-size: 1.1em;
    position    :       relative;
  padding-left: 30px;
}

.benefits-checklist li::before {
  content: "✓";
   position: absolute;
  left: 0;
	 color: #22c55e;
    font-weight: bold;
  font-size: 1.2em;
}

.choice-visual img {
         width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.conference-workshops {
  padding: 100px 20px;
    background: #f8fafc;
}

.events-container {
   max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.events-container h2 {
    font-size    :    2.5em;
  color   :      #1e293b;
   margin-bottom: 20px;
}

.events-intro {
   font-size :     1.2em;
    color: #64748b;
      margin-bottom: 50px;
	max-width: 600px;
   margin-left: auto;
   margin-right: auto; 

}

.events-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap:     40px;
	text-align: left;
}

.event-card {
   background: white;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
}  

.event-card img {
  width: 100%;
	 height: 200px;
  object-fit :    cover;
}

.event-content {
   padding: 30px;
}

.event-content h3   {
   color: #1e293b;
    font-size: 1.4em;
   margin-bottom: 15px;
}

.event-content p {
   color    :        #64748b;
  line-height: 1.7;
}

.thankyou-hero
{
  margin-top: 80px;
    padding   : 80px 20px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color    :    white;
   min-height   :  70vh;
   display: flex;
  align-items: center;
}

.thankyou-container {
	max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.thankyou-content {
  text-align: center;
}

.success-indicator {
	   margin-bottom: 40px;}


.checkmark-circle {
        width: 80px;
  height: 80px;
               border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
                    margin: 0 auto 20px;
   display    :  flex;
   align-items: center;
        justify-content: center;

}

.checkmark

{
  width :    30px;
         height: 15px;
    border: 3px solid white;
	 border-top: none;
  border-right     :    none;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
   font-size: 3em;
   font-weight: 700;
    margin-bottom: 15px;
}

.thankyou-subtitle {


    font-size: 1.3em;
    opacity: 0.9;
    margin-bottom: 40px;
	
     }

.thankyou-visual img {
   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.confirmation-details {
  background: rgba(255, 255, 255, 0.1);
   padding: 40px;
  border-radius: 15px;
   margin: 40px 0;
    text-align: left;
}

.confirmation-details h3 {
       font-size: 1.8em;
  margin-bottom: 25px;
    text-align: center;
	
}

.next-steps {
    display: grid;
    gap     :     25px;
}

.step-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
    border-radius: 10px;
}

.step-box h4 {
  color: #fef3c7;
    font-size: 1.1em;
   margin-bottom: 10px;
}

.step-box p {
    opacity :0.9;
   line-height: 1.6;
}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
   border-radius: 15px;
  margin: 30px 0;
   text-align: left;
}

.additional-info h3 {

  margin-bottom: 15px;

	text-align: center;
}

.preparation-list {

   list-style: none;
  padding:  0;
    margin-top  :20px;
     }

.preparation-list li {
    padding   :      8px 0;
   padding-left: 25px;
  position: relative;
}

.preparation-list li::before {
  left: 0;
   color  :#fef3c7;
  content: "•";
  position: absolute;
   font-size: 1.2em;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.return-home-btn,
.learn-more-btn {
    padding    :15px 30px;
   text-decoration: none;
   border-radius     :        8px;
   font-weight: 600;
   transition: all 0.3s ease;
}

.return-home-btn {
         background: white;
    color: #22c55e;
}

.return-home-btn:hover {
    background: #f0f0f0;
  transform: translateY(-2px);
}

.learn-more-btn {
  background: transparent;
  color: white;
    border: 2px solid white;
}

.learn-more-btn:hover {


       background: white;
  color: #22c55e;


}

.contact-reminder {
    padding: 60px 20px;
               background: #f8fafc;
      text-align: center;
}

.reminder-container {
                    max-width: 800px;

        margin: 0 auto; 

}

.reminder-container h3 {
   font-size: 2em;
    color: #1e293b;
  margin-bottom: 40px; 
	
}

.contact-info-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;

}

.contact-method {
   background  :white;
	padding: 30px;
          border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-method h4 {
   color: #2563eb;
   margin-bottom: 10px;
    font-size: 1.2em;
}

.contact-method p 
 {
    color: #1e293b;
	    font-weight: 500;
	   margin-bottom: 5px;
}

.contact-method span {
   color: #64748b;
		 font-size: 0.9em;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5em;
    }

    .story-container,
    .values-container,
    .choice-container,
    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .methodology-steps,
    .metrics-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2.2em;
    }

    .confirmation-details,
    .additional-info {
        padding: 25px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .return-home-btn,
    .learn-more-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .thankyou-hero {
        padding: 60px 15px;
    }

    .company-story,
    .expertise-section,
    .values-section,
    .approach-methodology,
    .why-choose-us,
    .conference-workshops {
        padding: 60px 15px;
    }

    .confirmation-details,
    .additional-info {
        padding: 20px;
    }
}