* {
    margin: 0;
               padding: 0;
	box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif; 
    line-height    :      1.6; 
   color: #333; 
	background-color: #ffffff;

}

.container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.main-navigation {
    background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
   top: 0;
  width: 100%;
	z-index: 1000;
}

.nav-container {
   max-width: 1200px;
 margin: 0 auto;
 display: flex;
        justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;
} 

.brand-section .site-logo {
   height: 45px;
    width: auto;
}

.nav-links {
   display: flex;
  list-style   :  none;
	gap: 2rem;
}

.nav-links a {

    text-decoration: none;
   color: #333;
   font-weight: 500;
    transition: color 0.3s ease;}

.nav-links a:hover {
   color: #2563eb;
}

.mobile-menu-toggle {
  display: none;
   flex-direction    :column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span
{
       width: 25px;
    height: 3px;
	background: #333;
   transition: 0.3s;

}

.hero-section {

	margin-top: 80px;
   display: flex;
    align-items: center;
    min-height: 600px;
    padding: 4rem 20px;
  max-width: 1200px;
       margin-left :      auto;
	margin-right: auto;
	}

.hero-content {
   flex: 1;
   padding-right: 2rem;
} 

.hero-content h1 {
  font-size: 3.2rem;
    font-weight: 700;
  color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle     {
  font-size: 1.25rem;

    color: #6b7280;

    margin-bottom: 2.5rem;

   line-height: 1.6;
}

.hero-actions 
 {
  display: flex;
    gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 14px 28px;
   text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
   transition   :      all 0.3s ease;
   display: inline-block;
}

.primary-btn {

	background: #2563eb;
		color: white;}

.primary-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
}

.secondary-btn {
  background  :      transparent;
   color: #2563eb;
   border: 2px solid #2563eb;
}

.secondary-btn:hover {
   background     : #2563eb;

  color: white;
}

.hero-visual {
  flex: 1;
}

.hero-visual img {
         width: 100%;
  height     :    auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}  

.services-showcase {
  background: #f8fafc;
    padding   :     5rem 0;
}

.services-showcase h2 {
               text-align    : center;
   font-size: 2.5rem;
                    color :      #1f2937;
   margin-bottom : 3rem;
}

.services-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap     :2rem;
}

.service-card {
  background: white;
   border-radius: 12px;
   padding:2rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%; 
	   height :    200px; 
	    object-fit: cover; 
	    border-radius: 8px; 
	  margin-bottom: 1.5rem;
}

.service-card h3
{
  font-size: 1.5rem;
    color: #1f2937;
  margin-bottom     :        1rem;
	}


.service-card p {

  color: #6b7280;
      line-height: 1.6;


}

.workshop-section {
    padding: 5rem 0;
}

.workshop-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.workshop-text h2


{
    font-size: 2.5rem;
   color: #1f2937;
    margin-bottom     :     1.5rem;
}

.workshop-text p {
   font-size: 1.1rem;
   color: #6b7280;
  margin-bottom: 2rem;
   line-height: 1.7;
}

.workshop-benefits {
    list-style: none;
	}

.workshop-benefits li {
   padding: 0.5rem 0;
	 color: #374151;
   position: relative;
  padding-left :     1.5rem;
}

.workshop-benefits li:before {

  content: "✓";
  position: absolute;
	left: 0;
  color: #10b981;
  font-weight: bold;
	
}

.workshop-image img {
         width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
   color: white;
   padding: 4rem 0;
	text-align: center;
}

.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: #2563eb;
   padding: 16px 32px;
     text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
        transition: all 0.3s ease;
	display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.about-preview {
  padding: 5rem 0;
 background: #f8fafc;
}

.about-preview h2 {
	text-align: center;
  font-size: 2.5rem;
   color: #1f2937;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.feature-item {
   background: white;
   padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);


}

.feature-item h3 {
  font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 1rem;
}



.feature-item p {
        color  :    #6b7280;
  line-height: 1.6;
}

.contact-section {

    padding: 5rem 0;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
    color: #1f2937;
	 margin-bottom: 3rem;
}

.contact-wrapper {
      display: grid;
	 grid-template-columns    :    2fr 1fr;
	 gap: 3rem;}

.contact-form


{
   background: #f8fafc;
   padding: 2.5rem;
    border-radius  :   12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label 
 {
    display: block;
    margin-bottom: 0.5rem;
    color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 12px;
   border: 1px solid #d1d5db;
  border-radius: 6px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline:none;
      border-color: #2563eb;
}



.submit-btn {
  background: #2563eb;
   color: white;
    padding: 14px 28px;
   border: none;
    border-radius: 8px;
  font-size: 1rem;
    font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
	width:    100%;

}

.submit-btn:hover  
  {
  background: #1d4ed8;

  transform: translateY(-2px);
}

.contact-info


{
   padding: 2rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #1f2937;
  margin-bottom: 2rem;
}

.contact-details p {
  margin-bottom: 1.5rem;
    color: #6b7280;
   line-height: 1.6;
}

.contact-details strong {
     color: #374151;
}

.site-footer {
    background: #1f2937;
          color: white;
	 padding: 3rem 0 1rem; 
	
}

.footer-container 
 {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
  display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 3rem;
}


.footer-brand {
   display: flex;
   flex-direction: column;
}

.footer-logo {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-brand p {
    color: #9ca3af;
   line-height: 1.6;
}

.footer-links     {
	   display     :grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

}

.footer-column h4 {

	    margin-bottom: 1rem;
   color: white;

} 

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
	
}

.footer-column ul li a {
   color: #9ca3af;
   text-decoration    :     none;
   transition: color 0.3s ease;
}

.footer-column ul li a:hover {
   color: white;
}

.footer-column p {
    color: #9ca3af;
		line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #374151;
    margin-top: 2rem;
   padding-top: 1rem;
                    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 20px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .workshop-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero    {
  margin-top :  80px;
   padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center;
}

.about-hero-content h1 {
               font-size :    3rem;
    margin-bottom: 1.5rem;
  font-weight     :       700;
}

.about-subtitle {
  font-size: 1.3rem;
   max-width: 800px;
   margin: 0 auto;
  opacity: 0.9;
   line-height: 1.7;


}

.our-story {


  padding: 5rem 0;


}

.story-content
{
       display: grid;
   grid-template-columns: 1fr 1fr;
  gap     :        3rem;
    align-items: center;
     }

.story-text h2 {
       font-size: 2.5rem;
        color: #1f2937;
  margin-bottom: 2rem;


}

.story-text p {
    font-size: 1.1rem;
  color: #6b7280;
   line-height     :  1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-expertise {
  padding   :5rem 0;
       background     :    #f8fafc;

}

.team-expertise h2 {
	 text-align: center;
    font-size: 2.5rem;
  color: #1f2937;
   margin-bottom: 3rem;
}

.expertise-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
	

}

.expertise-card {
  background    : white;
        padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
}



.expertise-card h3 {
    font-size:      1.4rem;
  color: #1f2937;
   margin-bottom: 1rem;
}

.expertise-card p {
    color: #6b7280;
    line-height: 1.7;
}  

.achievements {

	    padding:  5rem 0;}



.achievements h2 {
  text-align   :   center;
  font-size  :      2.5rem;
    color   :       #1f2937;
   margin-bottom: 3rem; 
	
}

.achievements-content {
    align-items: center;
  gap: 3rem;
    grid-template-columns: 1fr 1fr;
  display: grid;
}

.achievement-stats {
	display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;


}  

.stat-item {
   text-align: center;
    padding: 1.5rem;
}

.stat-number {
	font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
               margin-bottom: 0.5rem;
}

.stat-label {
   font-size: 1rem;
  color: #6b7280;
          font-weight: 500; 

}

.achievement-image img {


  width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.methodology {
   padding: 5rem 0;
          background: #f8fafc;
}

.methodology h2 {
  text-align: center; 
	   font-size: 2.5rem; 
	  color: #1f2937; 
	  margin-bottom: 3rem;
}

.methodology-content {

	   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;


}

.method-image img {
	 width: 100%;
  border-radius   :12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.method-text h3 {
   font-size: 2rem;
   color: #1f2937;
  margin-bottom: 1.5rem;
	
}

.method-text p {
    font-size:     1.1rem;
  color: #6b7280;
  line-height: 1.8;
   margin-bottom   : 2rem;
}

.process-steps    {
  display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.step 
 {
   padding    :   1.5rem;
  background: white;
  border-radius: 8px;
   border-left: 4px solid #2563eb; 
	
}

.step h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step p
	{
  color: #6b7280;
  margin: 0;
   font-size: 0.95rem;


}

.why-choose-us {
     padding: 5rem 0;}

.why-choose-us h2 {
   text-align: center;
    font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
}

.reasons-grid {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
	}



.reason-card {
   background: #f8fafc;
        padding: 2.5rem;
    border-radius: 12px;
    border-top   :   4px solid #2563eb;
}

.reason-card h3	{
    font-size: 1.4rem;
  color :       #1f2937;
  margin-bottom: 1rem;

}

.reason-card p {
  color: #6b7280;
    line-height: 1.7; 

}

.testimonials {
   padding: 5rem 0;
    background: #f8fafc; 

}

.testimonials h2 {
  text-align: center;
   font-size: 2.5rem;
  color: #1f2937;
    margin-bottom: 3rem;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background: white;
    padding: 2.5rem;
	 border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.testimonial-card p {
   font-style   :      italic;
   color:     #6b7280;
  line-height: 1.7;
   margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.testimonial-author strong {
  color: #1f2937;
   display: block;
  margin-bottom :0.25rem;
}

.testimonial-author span {
	color: #9ca3af;
    font-size: 0.9rem;
}

.thankyou-hero {
  margin-top: 80px;
 padding: 5rem 0;
  text-align: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	color: white;
}

.thankyou-content {

  max-width: 800px;
   margin: 0 auto;
}

.success-icon {

	  margin-bottom:   2rem;} 

.checkmark {
  width     :   80px;
   height: 80px;
   border-radius: 50%;
  background: rgba(255,255,255,0.2);
   display   :     flex;
   align-items: center;
   justify-content: center;
     margin: 0 auto;
    font-size: 2.5rem;
	font-weight: bold;
}

.thankyou-content h1 {
   font-size: 3rem;

	    margin-bottom: 1.5rem;

	  font-weight: 700;
}  

.thankyou-subtitle {
  font-size: 1.3rem;
   opacity: 0.9;
  line-height: 1.7;
    margin-bottom: 3rem;
}

.next-steps {

	    background: white;
    color: #333;
	 border-radius: 12px;
   margin: 3rem 0;
    padding: 3rem;
    text-align     :left;
	}

.next-steps h2 {
  text-align: center;
    font-size   :   2rem;
  color  :       #1f2937;
               margin-bottom: 2rem;
}

.steps-timeline {
               display: flex;
  flex-direction: column;
    gap: 2rem; 

}

.timeline-step   {
    display    :        flex;
  gap: 1.5rem;
    align-items: flex-start;
}

.step-number    {
    -moz-border-radius: 50%;
   width: 40px;
   height: 40px;
  background: #2563eb;
  color: white;
	 -webkit-border-radius: 50%;
    border-radius: 50%;
   display: flex;
  align-items: center;
  justify-content: center;
    font-weight:    bold;
  flex-shrink: 0;
}

.step-content h3 {
   color: #1f2937;
       margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-content p  
  {
    color: #6b7280;
					line-height: 1.6;
   margin     :   0;
}

.additional-resources {
	 background   :      #f8fafc;
   padding: 3rem;
	border-radius: 12px;
  margin: 3rem 0;
  color: #333;
}

.additional-resources h2 {
  text-align: center;
  font-size:   2rem;
         color: #1f2937;
  margin-bottom: 1rem;
}

.additional-resources > p {
    text-align: center; 
	  color: #6b7280; 
	   margin-bottom  :  2rem;
}



.resources-grid


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.resource-card {
    background: white;
        padding  :  2rem;
    border-radius: 8px;
  text-align  :   center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.resource-card img {
  width: 100%;
    height: 150px;
   object-fit: cover;
     border-radius: 6px;
    margin-bottom: 1rem;
}

.resource-card h3 {
  color: #1f2937;
  margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.resource-card p {
  color: #6b7280;
    line-height: 1.5;
          font-size: 0.9rem;
     margin: 0;


	}

.contact-reminder {
    background: #fef3c7;
   padding: 2rem;
    border-radius: 8px;
    margin: 3rem 0;
   border-left   : 4px solid #f59e0b;}

.contact-reminder h3 {
      color: #92400e;
    margin-bottom: 1rem;}

.contact-reminder p {
    margin-bottom: 1rem;
    color :     #78350f;
}

.emergency-contact {
  background: rgba(255,255,255,0.5);
    padding: 1rem;
    border-radius: 6px;
}

.emergency-contact p{
  margin: 0.5rem 0;
    color: #78350f;
  font-size     :        0.95rem;
}

.return-actions {
  display: flex;
  gap: 1rem;
	justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content,
    .achievements-content,
    .methodology-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .achievement-stats {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .steps-timeline {
        gap: 1.5rem;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 1rem;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .return-actions {
        flex-direction: column;
        align-items: center;
    }

    .return-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .expertise-grid,
    .reasons-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}