* {
    margin:  0;
  padding: 0px;
  box-sizing: border-box;
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #333;
    background: #fff;

}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
	 padding: 1rem 2rem;
	max-width: 1200px;
   margin: 0 auto;
}

.primary-navigation {


  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
      top: 0;
   width: 100%;
          z-index: 1000;
   border-bottom: 1px solid #eee;
	 transition: all 0.3s ease;}



.company-logo {
   height: 45px;
                    width: auto;
}

.nav-links-desktop {
  display: flex;
	gap: 2rem;
}

.nav-item {
	text-decoration     :  none;
   color: #333;
   font-weight: 500;
					-moz-transition: color 0.3s ease;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #4a90e2;
}

.nav-item.active::after {

  content: '';
 position: absolute;
  bottom: -5px;
   left: 0;
  width     :        100%;
  height: 2px;
  background    :      #4a90e2;

}

.mobile-menu-toggle {
 display: none;
	flex-direction: column;
	 cursor: pointer;
   padding: 5px;
	}

.burger-line {
    width: 25px;
   height: 3px;
    background: #333;
    margin: 3px 0;
   transition     :    0.3s;
}

.mobile-nav-menu {
  display: none;
    background:       white;
        padding     : 1rem 2rem;
  border-top    : 1px solid #eee;
}

.mobile-nav-item {
    padding: 0.8rem 0;
  text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
   display: block;
    font-weight: 500;
  color    :#333;
}

.hero-section {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   min-height   :    70vh;
  display: flex;
    align-items: center;


}

.hero-content


{
   max-width: 1200px;
   margin: 0 auto;
   display:  grid;
  grid-template-columns: 1fr 1fr;
 gap: 4rem;
    align-items: center;
}

.main-heading {
  font-size: 3.2rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
	line-height: 1.2;
}



.hero-description	{
	font-size  :   1.3rem;
  margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-actions {
	display: flex;
	gap: 1.5rem;
	
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2rem;
  border-radius     :      50px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
	 display   :        inline-block;
}

.primary-btn {
    background: white;
   color: #667eea;
}

.primary-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.secondary-btn {
   background: transparent;
   color: white;
   border: 2px solid white;

}

.secondary-btn:hover {
   background: white;
   color: #667eea;
}

.hero-image {
    width: 100%;
    border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.section-container {
  max-width: 1200px;
	margin: 0 auto;
   padding: 0 2rem;
}

.features-overview   {


    padding: 100px 0;
      background: #f8f9fa;
     }

.section-title {

	  text-align: center;
  font-size: 2.5rem;
    margin-bottom    :       3rem;
  color: #333;

}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background     :  white;
                    border-radius: 15px;
   padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;


}

.feature-card:hover {
     transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
	}

.feature-image {
   width: 100%;
  height: 200px;
  object-fit: cover;
   border-radius: 10px;
  margin-bottom: 1.5rem;
}

.feature-title   {
               font-size: 1.5rem;
         margin-bottom: 1rem;
   color    :  #333;


}

.feature-desc {
   color: #666;
    line-height  :    1.7;
}

.workshop-section {
    padding: 100px 0;
}

.workshop-content
	{
	display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items :center;
}

.workshop-heading {
    font-size: 2.5rem;
          margin-bottom: 1.5rem;
    color: #333;
}

.workshop-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #666;
     }

.workshop-benefits {
   list-style     :        none;
  margin-bottom: 2.5rem;
}

.workshop-benefits li {
  padding: 0.5rem 0; 
    position  :       relative; 
  padding-left: 2rem; 
  color: #555; 

}

.workshop-benefits li::before  {
  content: '✓';
    position:     absolute;
  left     : 0;
    color: #4a90e2;
    font-weight  :  bold;
}

.workshop-cta-btn {
   background :   #4a90e2;
  color: white;
    padding: 1rem 2rem;
   border-radius     :   50px;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}

.workshop-cta-btn:hover {
  background: #357abd;
  transform: translateY(-2px);
}

.workshop-image {
  width: 100%;
    border-radius:15px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color   :      white;
    text-align: center;

}

.cta-heading {
   font-size :      2.8rem;
    margin-bottom: 1rem;
}

.cta-text  
  {
  font-size: 1.2rem;
	margin-bottom: 2.5rem;
   opacity: 0.9;
   max-width: 600px;
  margin-left: auto;
                    margin-right: auto;
}

.cta-button {
   background :    white;
    color: #ff6b6b;
   padding     : 1.2rem 3rem;
  border-radius: 50px;
 text-decoration     : none;
         font-weight     :    700;
  font-size: 1.1rem;
   transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.contact-section {
  padding     :100px 0;
  background: #f8f9fa;
}

.contact-title {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #333;
}

.contact-wrapper {
	display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-subtitle {
   font-size: 1.8rem;

  color: #333;

    margin-bottom: 2rem;
}

.contact-item {
   margin-bottom: 2rem;
}

.contact-item strong {
               display: block;
	margin-bottom: 0.5rem;
    color: #4a90e2;
    font-size: 1.1rem;
}

.contact-form {
   background: white;
   padding     :    2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-title	{
    font-size   :1.8rem;
	 margin-bottom: 2rem;
  color: #333;
}


.form-row {

	    display: grid; 
    grid-template-columns: 1fr 1fr; 
   gap: 1rem; 
    margin-bottom: 1.5rem;
     }

.form-input,
.form-select,
.form-textarea {
    -webkit-transition :   border-color 0.3s ease; 
   -moz-border-radius: 10px; 
   -o-transition: border-color 0.3s ease; 
  padding: 1rem; 
   -moz-transition :       border-color 0.3s ease; 
   border: 2px solid #eee; 
  border-radius: 10px; 
               font-size: 1rem; 
   transition    :        border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
   border-color: #4a90e2;
}

.form-textarea
{

  min-height: 120px;
          resize: vertical;
   margin-bottom: 2rem;
  grid-column: 1 / -1;

}

.form-submit-btn {
    background: #4a90e2;
    color: white;
    padding: 1rem 3rem;
  border: none;
   border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
 width: 100%;
}

.form-submit-btn:hover {
    background: #357abd;
  transform: translateY(-2px);
}

.site-footer {

	  background: #333;
    color: white;
   padding    :     60px 0 20px;

}

.footer-container


{
   max-width: 1200px;
  margin: 0 auto;
  padding     :   0 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
}

.footer-logo {
   height: 40px;
    width: auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description
{
  color: #ccc;
   line-height: 1.6;
}

.footer-heading {
    font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #4a90e2;
}

.footer-links {
	list-style: none;
}

.footer-links li {
  margin-bottom     :       0.8rem;
}

.footer-links a {
    color     :     #ccc; 
	  text-decoration: none; 
	  transition: color 0.3s ease;

}

.footer-links a:hover {

  color: #4a90e2;


}

.footer-bottom {
  border-top: 1px solid #555;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
   color: #999;
}@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav-menu.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
}.mobile-menu-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .burger-line:nth-child(2)		{
  opacity    :   0;
}  

.mobile-menu-toggle.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.about-hero {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
  text-align: center;
   min-height    :     50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}  

.about-hero-content {
   max-width: 800px;
               margin: 0 auto;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
       line-height: 1.2;

}

.about-hero-desc {
    font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.7;
}

.our-story-section
	{
    padding: 100px 0;
    background :#fff;
}

.story-content {
                    display: grid;
               grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-heading {
	 font-size: 2.5rem;
  margin-bottom:     2rem;
    color: #333;
}

.story-paragraph {
 font-size: 1.1rem;
    line-height: 1.8;
   margin-bottom: 1.5rem;
   color: #555;
}

.story-image
	{
	 width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-section {
 padding: 100px 0;
   background: #f8f9fa;
}

.expertise-title  
  {
                    color: #333;
          text-align: center;
    margin-bottom: 3rem;
	 font-size: 2.5rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.expertise-card {
   background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition     :       transform 0.3s ease;
}

.expertise-card:hover    {
  transform: translateY(-8px);
}

.expertise-image {
   width: 100%;
  height    :    200px;
    object-fit: cover;
}

.expertise-content {
	padding: 2rem;
}

.expertise-name {
    font-size: 1.5rem;
  margin-bottom     :     1rem;
    color :       #333;
}

.expertise-description {
  color: #666;
               line-height: 1.7;
}

.values-section {


         padding: 100px 0;
   background: white;


}

.values-title {
  text-align: center;
   font-size:     2.5rem;
	 margin-bottom: 3rem;
   color: #333;
}

.values-wrapper {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-item {
    text-align: center;
  padding: 2rem;
}

.value-name {
    font-size: 1.6rem;
   margin-bottom: 1.5rem;
   color: #11998e;
}

.value-desc {
   color: #666; 
   line-height: 1.7; 
  font-size: 1rem;
}

.methodology-section {
  padding: 100px 0;
   background: #f8f9fa;
}

.methodology-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.methodology-image {
	width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-heading {
       font-size: 2.5rem;
  margin-bottom: 2rem;
  color    :    #333;

}

.methodology-text-content {
    font-size: 1.1rem;
	   line-height: 1.8;
	    margin-bottom: 2.5rem;
	  color: #555;
}

.methodology-points {

	    display: flex;
  flex-direction: column;
   gap: 1.5rem;
}

.method-point		{
   display: flex;
    flex-direction: column;
   gap: 0.5rem; 
	
}

.method-point strong {
    color: #11998e;
	    font-size    :      1.1rem;
}

.method-point span {
   color: #666;
  font-size: 0.95rem;
}

.thankyou-main {
   min-height: 80vh;
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       display: flex;
   align-items: center;
} 

.thankyou-container {
      max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.thankyou-content {

	  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
   text-align: center; 

	}

.success-icon-wrapper {
   margin-bottom :     2rem;
}

.success-checkmark {
    width: 80px;
   height  :      80px;
  border-radius: 50%;
    background: #27ae60;
   margin: 0 auto;
   position: relative;
}

.success-checkmark::after {
  content: '✓';
	 position: absolute;
   top: 50%;
               left: 50%;
  transform: translate(-50%, -50%);
  color    : white;
    font-size: 2.5rem;
    font-weight: bold;
}


.thankyou-title {
  font-size: 2.8rem;

	          margin-bottom: 1.5rem;

	  color: #333;
}

.thankyou-message {
   font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
  line-height: 1.7;
}

.next-steps-block {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps-title {

	  font-size: 2rem;
    margin-bottom  :        2rem;
	color: #333;
    text-align: center;

}

.steps-list {
  display: flex;
  flex-direction   :  column;
   gap: 2rem;
}

.step-item {
  display: flex;
	gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
    background: #667eea;
        color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
   justify-content: center;
  font-weight: bold;
   flex-shrink:0;
}

.step-content h3 {
    font-size: 1.3rem;
  margin-bottom: 0.5rem;
    color    :   #333;
}

.step-content p {
  color: #666;
          line-height: 1.6;
}

.while-waiting-section {
    margin-bottom: 3rem;
  text-align: left;
}

.waiting-title {
  font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #333;
   text-align: center;
}

.waiting-text {
    font-size: 1.1rem;
   margin-bottom: 2rem;
  color  :       #666;
   line-height: 1.7;
	 text-align: center;
}

.preparation-tips {
    display: flex;
    flex-direction: column;
  gap: 1rem;}

.tip-item {
   display: flex;
        flex-direction: column;
   gap: 0.3rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius    :        10px;
}  

.tip-item strong {
   color: #667eea;
	font-size: 1rem;

}

.tip-item span {


          color: #666;
   font-size: 0.9rem;
	}

.thankyou-actions {
    display: flex;
  gap: 1.5rem;
    justify-content: center;
   margin-bottom: 3rem;
  flex-wrap: wrap;
}

.back-home-btn,
.learn-more-btn {
	 padding: 1rem 2rem;
   border-radius: 50px;
	 text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
  display: inline-block;
}

.back-home-btn {
	  background: #667eea;
   color: white;


}

.back-home-btn:hover {
      background: #5a6fd8;
  transform: translateY(-2px);
}

.learn-more-btn
	{
   background: transparent;
    color  :  #667eea;
  border: 2px solid #667eea;
}

.learn-more-btn:hover {

	   background: #667eea;
  color: white;
	}

.contact-reminder {
    border-top: 1px solid #eee;
    padding-top :    2rem;
}

.reminder-title {
    font-size: 1.5rem;
                    margin-bottom: 1rem;
  color: #333;
}

.reminder-address,
.reminder-phone {
   color     :#666;
  margin-bottom: 0.5rem;
}@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .steps-list {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 1rem 60px;
    }
    
    .thankyou-main {
        padding: 100px 1rem 60px;
    }
    
    .thankyou-content {
        padding: 1.5rem;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-checkmark::after {
        font-size: 2rem;
    }
}.section-content  
  {
 max-width: 800px;
   margin: 0 auto;
                    padding: 2rem 0;
  line-height: 1.8;
  color: #333;
}

.section-content h2 {
      font-size: 1.8rem;
   margin-top: 2rem;
	margin-bottom: 1rem;
    color: #333;}

.section-content p {
        margin-bottom: 1.5rem;
  font-size: 1.1rem;
}