* {
    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-color: #f8f9fa;
}

.container {
    margin: 0 auto;
  max-width: 1200px;
    padding: 0 20px;}

.main-header {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   position: fixed;
    width: 100%;
   top: 0;
   z-index: 1000;
}

.navigation-container
	{
	  display: flex;
  justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
     }

.company-logo {
   height: 50px;
  width: auto;
}

.nav-links {
   display:flex;
  list-style:      none;
   gap     :        2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
        font-weight :  500;
  padding: 0.5rem 1rem;
   border-radius: 25px;
   transition: all 0.3s ease;
}

.nav-links a:hover {
  background-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);


}

.burger-menu {
   display: none;
  flex-direction: column;
    cursor: pointer;
  gap: 4px;
}

.burger-menu span {
   transition: 0.3s;

	                    height :3px;

	  width  : 25px;

	  background-color: white;
}

.burger-menu.active span:nth-child(1) {
	  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section

{
    display: flex;
   align-items: center;
   min-height: 100vh;
   padding: 100px 2rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :        white;

}

.hero-content {
  max-width: 600px;
               flex: 1;
   margin-right: 2rem;
}

.hero-content h1 {
   font-size: 3.5rem;
  font-weight: bold;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size   :      1.3rem;
	  margin-bottom: 2.5rem;
	    opacity: 0.9;
}

.hero-actions {
    gap: 1rem;
   flex-wrap: wrap;
    display: flex; 
	
}

.primary-btn, .secondary-btn {
			padding: 15px 30px;
    border-radius: 30px;
   text-decoration: none;
        font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background-color: #ff6b6b;
    color: white;
   border: 2px solid #ff6b6b;
}

.primary-btn:hover {
    background-color: transparent;
	  transform: translateY(-3px);
	  box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.secondary-btn {
    background-color: transparent;
  color: white;
    border: 2px solid white;
}

.secondary-btn:hover


{
    background-color: white;
	color: #667eea;
}

.hero-image {
  flex: 1;
    max-width: 500px;
}

.hero-image img {
  width: 100%;
  height :    auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-section {
  padding: 100px 0;
   background-color: #fff;
}

.services-section h2 {
    text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;


}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
   width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
                    margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.5rem; 
	   color: #2c3e50; 
	  margin-bottom: 1rem;
}

.service-card p {
  color:   #666;
   line-height: 1.6;
}

.cta-section {

  background: linear-gradient(135deg, #ff6b6b, #ffa500); 
	    padding: 80px 2rem; 
	    text-align: center; 
	    color: white;

}

.cta-content h2 {
    font-size: 2.5rem;
	 margin-bottom: 1.5rem; 
	
}

.cta-content p {
   margin-bottom: 2rem; 
    max-width: 600px; 
    font-size :        1.2rem; 
    margin-right: auto; 
  margin-left: auto; 
	
}

.cta-button {
   font-size: 1.1rem;
         border-radius: 30px;
  font-weight: 600;
   padding    :18px 40px;
   text-decoration: none;
  transition: all 0.3s ease;
    display: inline-block;
               background-color: white;
  color     : #ff6b6b;


}

.cta-button:hover {


  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
	}

.workshop-section {
    padding: 100px 0;
       background-color: #f8f9fa;
}

.workshop-content {
	 display: flex;
         align-items: center;
    gap   : 3rem;
}



.workshop-text {
   flex: 1;
}

.workshop-text h2 {
                    margin-bottom  :       1.5rem;
  color: #2c3e50;
    font-size: 2.5rem;
}

.workshop-text p {
  font-size: 1.1rem;
  color: #666;
   margin-bottom: 2rem;
}

.workshop-benefits {
   list-style: none;
}

.workshop-benefits li {
      position: relative;
   padding-left: 2rem;
    margin-bottom  :       0.8rem;
	color: #555;
     }

.workshop-benefits li::before {
  content: '✓';
   position: absolute;
    left: 0;
   color: #28a745;
   font-weight: bold;
   font-size: 1.2rem;
}

.workshop-image		{
    flex: 1;
}

.workshop-image img 
 {
   width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.contact-section h2 {
  text-align   :  center;
    font-size: 2.8rem;
  margin-bottom: 3rem;
}

.contact-wrapper
	{
         display  :      grid;
   grid-template-columns: 1fr 2fr;
   gap: 3rem;
  align-items: start;
}

.contact-info h3 {
	font-size     :       1.5rem;
   margin-bottom: 2rem;


}

.contact-item 
 {
    margin-bottom: 1.5rem;


}

.contact-item strong    {
  display: block;
  margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
                    border-radius: 20px;
  backdrop-filter: blur(10px);
} 

.form-group    {
   margin-bottom: 1.5rem;
}

.form-group label{
   display: block;
   margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px 15px;
   border: none;
   border-radius: 10px;
  font-size: 1rem;
  background: rgba(255,255,255,0.9);
   color: #333;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  background     :   white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

.submit-btn {
 background-color: #ff6b6b;
    color: white;
    padding: 15px 30px;
    border: none;
  border-radius: 30px;
    font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
	 width: 100%;
}

.submit-btn:hover {
	    background-color: #ff5252;
  transform: translateY(-2px);
	}

.main-footer {
    background-color: #2c3e50;
  color: white;
	padding: 3rem 0 1rem;
}

.footer-content


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
	 margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
  height: 60px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  margin-bottom: 1rem;
   font-size: 1.2rem;


}

.footer-section ul {
  list-style: none;
}

.footer-section li {
     margin-bottom: 0.5rem;


}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover


{
   color: white;
}

.footer-bottom {
    text-align: center;
               padding-top: 2rem;
  margin-top: 2rem;
    border-top: 1px solid #34495e;
   color:       #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #2c3e50;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 1rem 2rem;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .workshop-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .navigation-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .services-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
}img {
	opacity: 0;
    transition: opacity 0.3s ease;
}

img.loaded,
img:not([data-src]) {
    opacity: 1;
}

.about-hero	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 150px 0 80px;
   color: white;
    text-align: center;
}

.about-hero-content h1 {
	font-size: 3.2rem;
   margin-bottom   :   1.5rem;
    font-weight: 700;
}

.about-hero-description {
   font-size: 1.2rem;
    max-width :       800px;
   margin: 0 auto;
   opacity: 0.95;
  line-height: 1.7;
}

.company-story {
  padding: 100px 0;
   background-color: #fff;
}

.story-content {
    display: flex;
  align-items: center;
  gap: 3rem;
}

.story-text {
   flex: 1;
}  

.story-text h2 {


   font-size: 2.5rem;
  color: #2c3e50;
         margin-bottom: 2rem;

}

.story-text p {
	    font-size: 1.1rem;
   line-height: 1.8;
	color :       #555;
  margin-bottom  :   1.5rem;}


.story-image {
   flex: 1;
}

.story-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-values {
   padding: 100px 0;
    background-color: #f8f9fa;
}

.mission-values h2		{
     text-align: center;
  font-size :     2.8rem;
    color: #2c3e50;
  margin-bottom: 3rem;}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   margin-top: 3rem;
}

.value-card {
  background: white;
    padding: 2.5rem;
    border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition    :        transform 0.3s ease;
}

.value-card:hover {


  transform: translateY(-8px);
}

.value-card h3 {
  font-size   :       1.5rem;
  color: #667eea;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.6;
    color: #666;
	
}

.expertise-section {
	 padding: 100px 0;
    background-color: #fff;
}

.expertise-content {
    display: flex;
        align-items: center;
  gap: 3rem;
}

.expertise-image {
       flex: 1;
	}

.expertise-image img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-text {
  flex: 1;
}

.expertise-text h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom : 2rem;
}

.expertise-list
{
    display     :grid;
					gap :1.5rem;
}

.expertise-item {

  padding: 1.5rem;
     background: #f8f9fa;
	 border-radius: 10px;
   border-left: 4px solid #667eea;

}

.expertise-item h4 {

   color: #2c3e50;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
     }



.expertise-item p	{
   color: #666;
	  line-height: 1.5;
}

.achievements-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #ff6b6b, #ffa500);
  color: white;
  text-align: center; 

}

.achievements-section h2 {
    font-size: 2.8rem;
  margin-bottom: 3rem;
}

.achievements-stats {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :    2rem;
   margin-top: 3rem;
}



.stat-item {


                    text-align: center;}

.stat-number {
  display: block;
    font-size: 3rem;
    font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label    {
    font-size: 1.1rem;
        opacity   :    0.9;
}

.approach-section {
   padding: 100px 0;
  background-color: #f8f9fa;
}  

.approach-content {
   display: flex;
    align-items: start;
    gap: 3rem;
}

.approach-text {
    flex: 1;
}

.approach-text h2     {
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom:     1.5rem; 

}

.approach-text > p {
  color:        #555;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  line-height: 1.7;
}

.process-steps {
   display: grid;
    gap: 1.5rem;

}

.step		{
	display: flex;
    align-items: center;
   gap: 1.5rem;
   padding: 1.5rem;
    background: white;
   border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
	 width: 50px;
  height: 50px;
   border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
   font-weight: bold;
                    font-size: 1.2rem;
  flex-shrink: 0;

}

.step-content h4 {
    color: #2c3e50;
          margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-content p {
     color: #666; 
	    line-height: 1.5;
}

.approach-image {
    flex: 1;
}

.approach-image img

{
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-info-section {
    padding: 100px 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
   color: white;
	 text-align: center;
}

.contact-info-content h2 {
   margin-bottom: 1.5rem;
  font-size: 2.8rem;
}

.contact-info-content > p {
    font-size: 1.2rem;

   margin-bottom: 3rem;

    max-width: 600px;

   margin-left: auto;

   margin-right: auto;

	opacity: 0.9;
}

.contact-details {
  display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-detail h4 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
   color: #ecf0f1;
}

.contact-detail p {
  font-size: 1.1rem;
   opacity: 0.9;
}

.back-to-home-btn {
  background-color : #ff6b6b;
	color: white;
   padding: 15px 30px;
  border-radius: 30px;
   text-decoration: none;
          font-weight  :        600;
  font-size  :     1.1rem;
   transition: all 0.3s ease;
   display: inline-block;
}

.back-to-home-btn:hover {
    background-color: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,107,107,0.3);
	}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding :   150px 0 80px;
   color: white;
}

.thankyou-content {
	 text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.success-indicator {
  margin-bottom: 2rem;
}

.success-checkmark {
    width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
   position: relative;
}

.checkmark-circle {
    width: 80px;
  height: 80px;
   border-radius  : 50%;
  background-color: #28a745;
  position:        relative;
	animation: scaleIn 0.3s ease-in-out;
}

.checkmark-stem,
.checkmark-kick {
  position: absolute;
   background-color: white;
  border-radius: 2px;
}

.checkmark-stem {
    width: 3px;
    height: 15px;
	top: 35px;
    left: 40px;
  transform: rotate(45deg); 
	
}

.checkmark-kick {
   width :   3px;
  height: 8px;
   top: 42px;
    left: 35px;
  transform: rotate(-45deg);
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
   font-size: 3.2rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.thankyou-message

{
  font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    line-height     :     1.7;
}

.next-steps {
	  background: rgba(255,255,255,0.1); 
  padding: 2.5rem; 
    border-radius: 20px; 
        margin-bottom: 3rem; 
  backdrop-filter: blur(10px);

}

.next-steps h3 {
   font-size: 1.8rem;
                    margin-bottom: 2rem;
}

.steps-list {
 display:  grid;
  gap: 1.5rem;
   text-align: left; 
	
}

.step-item {
   display: flex;
    align-items: start;
    gap: 1rem;
	
}

.step-icon {
         background-color: #ff6b6b;
   color: white;
    width: 40px;
   height: 40px;
    border-radius: 50%;
    display: flex;
          align-items: center;
  justify-content: center;
  font-weight: bold;
   flex-shrink: 0;
}

.step-text h4 {
    margin-bottom: 0.5rem; 
	   font-size: 1.1rem;
}

.step-text p {
   opacity: 0.9;
    line-height: 1.5;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius: 15px;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.contact-reminder h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
     }

.contact-reminder p {
   margin-bottom: 1.5rem;
     opacity: 0.9;


}

.urgent-contact {
       display: grid; 
	gap: 0.8rem;

}

.contact-method {
   font-size: 1.1rem;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
  justify-content: center;
   flex-wrap: wrap;
}

.primary-action-btn,
.secondary-action-btn{
    padding: 15px 30px;
		 border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
   font-size: 1.1rem;
 transition: all 0.3s ease;
        display: inline-block;
}

.primary-action-btn {
   background-color: #ff6b6b;
	color: white;
   border: 2px solid #ff6b6b;

}

.primary-action-btn:hover {
	background-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,107,107,0.3);
}

.secondary-action-btn {
   background-color: transparent;
    border: 2px solid white;
  color: white;
}

.secondary-action-btn:hover {
    color: #667eea;
    background-color: white;
}

.thankyou-image {
    margin-top: 3rem;
}

.thankyou-image img {
		 width: 100%;
  max-width: 400px;
      border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.resources-section {
   padding: 100px 0;
  background-color: #f8f9fa;
}

.resources-section h2 {
  text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
}

.resources-intro {
    margin-left: auto;
   text-align: center;
   margin-right: auto;
   font-size: 1.1rem;
	 color: #666;
    margin-bottom: 3rem;
    max-width: 600px; 
	
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem; 
	
}

.resource-item{
    background     :      white;
  border-radius: 15px;
 overflow    :  hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
}

.resource-item img {
   width: 100%;
  height: 200px;
  object-fit: cover;
}

.resource-item h4 {
   padding: 1.5rem 1.5rem 0.5rem;
   color: #2c3e50;
    font-size: 1.2rem;
}

.resource-item p {
   padding: 0 1.5rem 1.5rem;
   color: #666;
   line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .story-content,
    .expertise-content,
    .approach-content {
        flex-direction: column;
        gap: 2rem;
    }

    .values-grid,
    .achievements-stats,
    .contact-details {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .next-steps,
    .contact-reminder {
        padding: 1.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 120px 1rem 60px;
    }

    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .checkmark-circle {
        width: 60px;
        height: 60px;
    }

    .checkmark-stem {
        height: 12px;
        top: 27px;
        left: 30px;
    }

    .checkmark-kick {
        height: 6px;
        top: 32px;
        left: 26px;
    }
}