:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-color: #4f46e5;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white-pure: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --shadow-light: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-heavy: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	line-height: 1.6;
  color: var(--text-dark);
  background: var(--white-pure);
}

.wrapper-container {
	  max-width: 1200px;
  margin: 0 auto;
  padding   :        0 20px;
	}

#nav-section {
     background: var(--white-pure);

  box-shadow: var(--shadow-light);

    position: fixed;

    top: 0;

        width: 100%;

	z-index: 1000;

}

.main-navigation {
    display: flex;
   justify-content:    space-between;
  align-items: center;
    padding :  1rem 0;
}

.brand-identity img.brand-logo {
    height: 45px;

   width: auto;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
   display: none;
	 cursor: pointer;
   padding: 15px;
   z-index: 2;
}

.hamburger {
  width: 30px;
   height: 3px;
  background: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger:before,
.hamburger:after {
  content: '';
    position: absolute;
   width: 30px;
   height: 3px;
  background: var(--text-dark);
   transition: all 0.3s ease;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    top    :       8px;
}

.navigation-links {
     display: flex;
   	 list-style: none;
       gap: 2rem;
     align-items: center;


}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight  :   500;
   transition   :    color 0.3s ease;
}

.nav-link:hover {
     color: var(--accent-color); 


}@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white-pure);
        transition: all 0.3s ease;
        padding-top: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navigation-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }
}.hero-banner {
  background: var(--primary-gradient);
  color: var(--white-pure);
   padding: 120px 0 80px;
    margin-top: 70px;
}

.hero-content-area {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.hero-text-block h1 {
  font-size: 3.2rem;
   line-height: 1.2;
    font-weight: 700;
   margin-bottom    :    1.5rem;
}

.hero-text-block p {
   	 font-size    :      1.2rem;
  margin-bottom: 2rem;
    opacity: 0.9;


}

.hero-actions {

	   display: flex;
                    gap: 1rem;
  flex-wrap: wrap;}

.primary-cta-button, .secondary-cta-button {
   padding: 12px 24px;
     border-radius: 8px;
   text-decoration: none;
  font-weight: 600;
	transition: all 0.3s ease;
    display  :      inline-block;

}

.primary-cta-button {
  background: var(--white-pure);
  color: var(--accent-color);
}

.primary-cta-button:hover
	{
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.secondary-cta-button {
    background: transparent;
  color: var(--white-pure);
  border: 2px solid var(--white-pure);
}



.secondary-cta-button:hover {
  background: var(--white-pure);
  color: var(--accent-color);
}

.hero-visual img {
    width: 100%;
    height: auto;
   border-radius   :    12px;
  box-shadow: var(--shadow-heavy);
}

.about-preview {


    padding: 80px 0;
  background: var(--background-light);
     }

.about-preview h2 {
   text-align     :   center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--text-dark);
}

.about-grid {


  display :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.about-card   {
  background: var(--white-pure);
   padding: 2rem;
    border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.about-card:hover {
     transform: translateY(-5px);}

.about-card h3 {

    font-size: 1.5rem;
    margin-bottom: 1rem;
  color: var(--accent-color);
}  

.services-overview {
   padding: 80px 0;
}

.services-header {
     text-align: center;
  margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
          margin-bottom: 1rem;
  color: var(--text-dark);
}  

.services-header p {
    font-size     :        1.1rem;
  color: var(--text-light);
}

.services-grid     {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
	  background: var(--white-pure);
               border-radius: 12px;
  overflow     :     hidden;
  box-shadow: var(--shadow-light);
    transition: transform 0.3s ease;
	}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.service-visual img {
   width: 100%;
   height: 250px;
  object-fit: cover;
}

.service-item h3 {
   padding    :  1.5rem 1.5rem 0;
       font-size: 1.5rem;
  color: var(--text-dark);
}

.service-item p {


          padding: 1rem 1.5rem;
  color: var(--text-light);
}

.service-item ul {

	  padding: 0 1.5rem 1.5rem;
   margin-left: 1rem;

}

.service-item ul li {
  color: var(--text-light);
   margin-bottom: 0.5rem;
}

.benefits-showcase {
   padding: 80px 0;
  background: var(--background-light);
}

.benefits-showcase h2 {
   text-align: center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
  color: var(--text-dark);
}

.benefits-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-block {
  background: var(--white-pure);
    padding: 2rem;
    border-radius: 12px;
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--accent-color);
}

.benefit-block h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  color: var(--accent-color);
}

.testimonials-area{
  padding: 80px 0;
}

.testimonials-area h2
{
    text-align: center;
   font-size:    2.5rem;
   margin-bottom  :3rem;
  color: var(--text-dark);
}

.testimonial-grid		{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :  2rem;
}

.testimonial-card {
  background: var(--background-light);
  padding: 2rem;
    border-radius: 12px;
  position: relative;


}

.testimonial-card p {
   font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  color: var(--text-dark);
}

.testimonial-card cite {
  font-weight: 600;
  color: var(--accent-color); 
	
}

.cta-section {
  background: var(--secondary-gradient);
  color: var(--white-pure);
  padding: 80px 0;
     text-align     : center;
}

.cta-content h2 {
  font-size: 2.5rem;
    margin-bottom: 1rem;

}

.cta-content p {
	   font-size: 1.2rem;
    margin-bottom    : 2rem;
   max-width: 600px;
       margin-left: auto;
   margin-right: auto;


}

.cta-action-btn {
  background: var(--white-pure);
  color: var(--accent-color);
  padding: 15px 30px;
    border-radius: 8px;
    text-decoration   :    none;
   font-weight: 600;
    font-size: 1.1rem;
   transition: transform 0.3s ease;
    display: inline-block;
}

.cta-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.workshop-calendar {
  padding: 80px 0; 
	  background: var(--background-light);
}

.workshop-calendar h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--text-dark);
}

.events-list {
    max-width: 800px;

	 margin: 0 auto;
}

.event-item {
  background: var(--white-pure);
   border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
  box-shadow: var(--shadow-light);
    display: flex;
    gap: 2rem;
  align-items: center;
}

.event-date {
  background: var(--accent-color);
  color: var(--white-pure);
  border-radius     :      8px;
    padding: 1rem;
    text-align: center;
    min-width: 80px;
}

.event-date .month {
   display: block;
    font-size: 0.9rem;
    font-weight: 600;
}

.event-date .day {
   display     :      block;
    font-size: 2rem;
    font-weight: 700;
} 

.event-details h3 {
    margin-bottom: 0.5rem;
  color: var(--text-dark);
	
}

.event-details p {
  color: var(--text-light);
    margin-bottom   :0.5rem;
}

.event-time {
  font-weight: 600;
  color: var(--accent-color);
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-section h2 {
  text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.contact-layout {
  display: grid;
    grid-template-columns: 1fr 2fr;
   gap: 4rem;
  align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.info-block {
    margin-bottom: 1.5rem;
	}

.info-block p {
  color: var(--text-light);
}

.contact-form {
  background: var(--background-light);
   padding   : 2rem;
   border-radius   :        12px;
  box-shadow: var(--shadow-light);
}

.form-row {

	  grid-template-columns: 1fr 1fr;
   display: grid;
   gap: 1rem;
     }

.form-field {
                    margin-bottom: 1.5rem;
}

.form-field label {
  display: block;
	 margin-bottom: 0.5rem;
	font-weight: 600;
  color: var(--text-dark); 

}

.form-field input,
.form-field select,
.form-field textarea {
	 width: 100%;
    padding:   12px;
  border: 1px solid var(--border-color);
	 border-radius: 6px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
   outline: none;
  border-color: var(--accent-color);
}

.submit-btn	{
  background: var(--accent-color);
  color: var(--white-pure);
   padding: 12px 24px;
  border: none;
	border-radius: 6px;
    font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
	transition: background-color 0.3s ease;


}

.submit-btn:hover {


   background: #3730a3;

}

.site-footer {
  background: var(--text-dark);

  color: var(--white-pure);

  padding: 60px 0 20px;
}

.footer-content{
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :  2rem;
    margin-bottom: 2rem;

}

.footer-brand img.footer-logo {
  height  :    40px;
   margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
}

.footer-links h4,
.footer-contact h4 {
      margin-bottom: 1rem;
  color: var(--white-pure);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color:      #9ca3af;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover  {
  color: var(--white-pure);
}

.footer-contact p {
   color: #9ca3af;

	    margin-bottom    :      0.5rem;
}


.footer-bottom {
    border-top:     1px solid #374151;
    padding-top: 1rem;
   text-align: center;
   color: #9ca3af;
}

.page-hero-section {
  background: var(--primary-gradient);
  color: var(--white-pure);
	 padding   : 120px 0 80px;
	margin-top: 70px;
    text-align: center;
}

.page-hero-content h1 {
   font-size   : 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-hero-content p {
   font-size: 1.2rem;
  max-width: 600px;
    margin: 0 auto;
   opacity   :   0.9;


}

.company-story {
   padding    :  80px 0;


}

.story-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 4rem;
    align-items: center;
}

.story-text h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
  color: var(--text-dark);
}

.story-text p {
    margin-bottom: 1.5rem;
  color: var(--text-light);
   font-size: 1.1rem;
}

.achievement-stats {

  display: flex;
    gap: 2rem;
   margin-top: 2rem;


}

.stat-item {

	  text-align: center;
     } 

.stat-number   {
   display: block;
    font-size: 2.5rem;
    font-weight: 700;
  color: var(--accent-color);
}

.stat-label {
    display: block; 
   font-size: 0.9rem; 
  color: var(--text-light); 
	 margin-top: 0.5rem;
}

.story-visual img    {
    width: 100%;
   height: auto;
  border-radius   :     12px;
  box-shadow: var(--shadow-medium);
}

.mission-vision-values {
    padding: 80px 0;
  background: var(--background-light);

}

.mission-vision-values h2 {

	  text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-dark);
	}

.mvv-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {

  background: var(--white-pure);
   padding :        2rem;
  border-radius   :  12px;
  box-shadow: var(--shadow-light);
   height:  100%;
}

.mvv-card h3 {
       font-size :       1.5rem;
     margin-bottom     :1rem;
  color: var(--accent-color);
}

.mvv-card ul {
   margin-left: 1rem;
}

.mvv-card ul li {
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.team-experts {
  padding  :    80px 0;

}

.team-experts h2 {
   text-align: center;
    font-size: 2.5rem;
	 margin-bottom:  1rem;
  color: var(--text-dark);
}

.team-intro {
  text-align: center;
       font-size: 1.1rem;
     color: var(--text-light);
       margin-bottom: 3rem;
}

.team-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
   gap: 2rem;
}

.team-member {


  background: var(--background-light);
   padding: 2rem;
    border-radius :   12px;
   text-align: center;}

.member-photo {
        margin-bottom: 1.5rem;
}

.member-photo img  
  {
	width: 200px;
  height: 200px;
  object-fit: cover;
     border-radius :   50%;
    margin :    0 auto;
}

.team-member h4 {
       font-size:1.3rem;
          margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.member-role {
   font-weight: 600;
  color: var(--accent-color);
		 margin-bottom: 1rem;
}

.team-member p:last-child  {
  color: var(--text-light);
   line-height :       1.6;
	
}

.methodology-approach {
    padding: 80px 0;
  background: var(--background-light);
}

.methodology-approach h2 {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--text-dark);
}

.method-text h3 {
	font-size: 1.8rem;
   margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.method-text p {
        font-size: 1.1rem;
  color: var(--text-light);
	 margin-bottom: 2rem;
     }

.pillars-list {
    display  :grid;
     gap    :1.5rem;
}

.pillar-item {
  background: var(--white-pure);
  padding     :  1.5rem;
    border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.pillar-item h4 {
  color: var(--accent-color);
          margin-bottom: 0.5rem;
}

.pillar-item p {
	  color: var(--text-light);
        margin: 0;
     }

.certifications-partnerships {
  padding: 80px 0;
}

.certifications-partnerships h2 {
	text-align: center;
        font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--text-dark);

}

.cert-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.cert-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.cert-list
{
	list-style: none;
  margin-left: 0;
}

.cert-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-light);
}

.partnerships p {
  color: var(--text-light);

    margin-bottom: 1rem;

   line-height :      1.6;
}

.why-choose-us {
  padding: 80px 0;
  background: var(--background-light);
}

.why-choose-us h2 {
   text-align: center;
    font-size: 2.5rem;
       margin-bottom: 3rem;
  color: var(--text-dark);
}  

.reasons-grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}


.reason-card {
  background: var(--white-pure);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}

.reason-card h4 {
   font-size: 1.3rem;
				 margin-bottom: 1rem;
  color: var(--accent-color);
}

.reason-card p {
  color: var(--text-light);
   line-height: 1.6;
}

.thankyou-hero {
  background: var(--secondary-gradient);
  color: var(--white-pure);
  padding: 120px 0 80px;
	margin-top: 70px;
  text-align: center;
     }

.thankyou-content h1 {
  font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1rem;
}

.thankyou-content p {
 font-size: 1.2rem;
                    margin-bottom: 2rem;
   opacity: 0.9;
}

.next-steps {
   padding: 80px 0;
}

.next-steps h2 {
    text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: var(--text-dark);
}

.steps-grid {
    display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}



.step-item {


  background: var(--background-light);
     padding: 2rem;
       border-radius: 12px;
     text-align: center;}

.step-number		{
  display    :       inline-block;
       width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--white-pure);
   border-radius: 50%;
    line-height: 50px;
   font-size: 1.5rem;
         font-weight: 700;
                    margin-bottom: 1rem;
}

.step-item h3 {
         margin-bottom: 1rem;
  color: var(--text-dark);
}

.step-item p {
  color: var(--text-light);
}

.confirmation-details {
  background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
   border-radius: 8px;
  margin-top: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.confirmation-details p {
    margin: 0.5rem 0;
  font-size: 1rem;
}

.immediate-resources {
   padding: 80px 0;
  background: var(--background-light);
}

.immediate-resources h2 {
	text-align: center;
                    font-size: 2.5rem;
	margin-bottom: 1rem;
  color: var(--text-dark);
} 

.section-intro   {

   text-align:      center;
    font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom :      3rem;
     }

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {


  background: var(--white-pure);
  padding :  2rem;
   border-radius: 12px;
  box-shadow: var(--shadow-light);
   text-align: center;

}

.resource-card h4 {
		font-size: 1.3rem;
	 margin-bottom: 1rem;
  color: var(--accent-color);
}

.resource-card p {
  color: var(--text-light);
    line-height: 1.6;
}

.contact-reminder {
   padding: 80px 0;
} 

.contact-reminder-content {
   text-align: center;
}

.contact-reminder h2 {
	font-size: 2.5rem;
    margin-bottom: 1rem;
  color: var(--text-dark);
	
}

.contact-reminder p {
   font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.urgent-contact-info {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap: 2rem;

	    max-width: 600px;

	   margin: 0 auto;
}

.contact-method {
  background: var(--background-light);
   padding    : 2rem;
	 border-radius: 12px;
}


.contact-method h4 {
   font-size: 1.3rem;
   margin-bottom: 1rem;
  color: var(--accent-color);
}

.contact-method p {
   font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
   margin-bottom     : 0.5rem;
}

.availability {
   font-size  :  0.9rem;
  color: var(--text-light);
   font-style: italic;
}

.testimonial-preview  {
	 padding: 80px 0;
  background: var(--background-light);
}

.testimonial-preview h2 {
   text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
  color: var(--text-dark); 
	
}

.testimonial-highlight	{
                    max-width: 800px;
  margin: 0 auto;
   text-align: center; 
	
}

.testimonial-highlight blockquote {
  font-size: 1.3rem;
   font-style: italic;
  color: var(--text-dark);
  margin-bottom: 2rem;
  line-height: 1.6;
  padding   :2rem;
  background: var(--white-pure);
	border-radius: 12px;
  box-shadow: var(--shadow-light);
   position: relative;
}

.testimonial-highlight cite{
	   font-size: 1rem;
				 font-weight :600;
  color: var(--accent-color);
  font-style: normal;

}

.legal-content

{
   padding: 80px 0;
}

.legal-text {
  max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
  color: var(--accent-color);
   margin-bottom: 1rem;
    margin-top: 2rem;
	
}

.legal-text h2:first-child {
   margin-top: 0;
}



.legal-text h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.legal-text p  
  {
  color: var(--text-light);
       line-height: 1.7;
       margin-bottom: 1rem;
     font-size: 1rem;

}

.last-updated {
    margin-top: 2rem;
    padding: 1rem;
  background: var(--background-light);
   border-radius: 6px;
                    font-style: italic;

}@media screen and (max-width: 768px) {
    .hero-content-area {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .event-item {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}