* {
  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: #fafafa;


}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
   position: fixed;
  width: 100%;
    top: 0;
                    z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
   max-width:    1200px;
  margin: 0 auto;
    padding   :      0 2rem;
   display: flex;
    justify-content: space-between;
  align-items: center;
}

.brand-section {
		display: flex;
   align-items: center;

}

.logo-image {
   height: 45px;
  width: auto;
}

.nav-links {
	  display: flex;
    list-style: none;
  gap: 2rem;


}

.nav-item {
	 color: white;
    text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 1rem;
	 border-radius: 25px;


}

.nav-item:hover,
.nav-item.active {
  background-color: rgba(255,255,255,0.2);
               color: #fff;
} 

.menu-toggle {
    display: none;
   flex-direction :       column;
  cursor: pointer;
   gap: 4px; 

}

.burger-line {
  width: 25px;
   height: 3px;
  background-color: white;
    transition   :    0.3s;
   border-radius: 2px;
}

.hero-banner {
	margin-top: 80px;
  padding: 4rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
     min-height: 60vh;
    display: flex;
  align-items: center;
}

.hero-content {


   max-width: 1200px;
   margin  : 0 auto;
    padding: 0 2rem;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
	align-items: center;}  

.hero-text-area {
   color: white;
}

.primary-heading {
	font-size: 3rem;
    font-weight: 700;
       margin-bottom: 1.5rem;
    line-height: 1.2;
}  

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}

.hero-actions {
       display    :    flex;
   gap: 1rem;
   flex-wrap: wrap;

}

.primary-action-btn {
    background-color  :    #ff6b6b;
   color    :        white;
   padding: 1rem 2rem;
  text-decoration: none;
    border-radius  :50px;
   font-weight     :  600;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
  display  :    inline-block;
}

.primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.secondary-action-btn {
       padding: 1rem 2rem;
    text-decoration   :   none;
   color: white;
  border: 2px solid white;
   transition: all 0.3s ease;
    font-weight: 600;
  border-radius   :  50px;
  background-color: transparent;
  display: inline-block;}

.secondary-action-btn:hover {
  background-color: white;
    color: #667eea;
}

.hero-visual {
		display: flex;
   justify-content: center;
}

.hero-image {
          width:   100%;
  max-width: 500px;
  height: auto;
    border-radius    :     20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	
}

.benefits-showcase {

	   padding: 5rem 0;
   background-color: #f8f9fa;


}

.content-container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
	color: #2c3e50;
    font-weight  :     700;

}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap:   2rem;
}

.benefit-card {
        background   : white;
     border-radius: 15px;
   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;
}

.benefit-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-image {
	width: 100%;
    height: 200px;
    object-fit: cover;
   border-radius: 10px;
   margin-bottom: 1.5rem;
}

.benefit-title {
       font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #2c3e50;
  font-weight: 600;

}

.benefit-text {
  color     :     #666;
               line-height: 1.7;
}

.workshop-invitation {
    padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.workshop-container {
   max-width: 1200px;
   margin: 0 auto;
	padding: 0 2rem;
   display     :     grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.workshop-heading {
  font-size: 2.5rem;
	 margin-bottom: 1rem;
	font-weight: 700;
}

.workshop-subtitle {
    font-size: 1.2rem;
        opacity: 0.9;
	margin-bottom  :   2rem; 
	
}

.workshop-features {
  flex-direction: column;
    gap: 1.5rem;
   display :      flex;
}

.feature-item {
  background: rgba(255,255,255,0.1);
	padding: 1.5rem;
               border-radius: 10px;
  backdrop-filter: blur(10px);
}

.feature-name
	{
    font-size    : 1.3rem;
    margin-bottom: 0.5rem;
	font-weight: 600;
}

.feature-desc {


    opacity: 0.9;
     }

.workshop-image	{
  width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-section

{
   padding: 4rem 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
	 text-align: center;
}

.cta-content {
       max-width: 800px;
        margin: 0 auto;
  padding: 0 2rem;
	}

.cta-heading {
  color: #2c3e50;
  font-size:  2.5rem;
                    font-weight: 700;
   margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.2rem;
	 margin-bottom: 2rem;
   color: #555;
}

.cta-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 1.2rem 3rem;
  text-decoration: none;
  border-radius: 50px;
	font-weight: 600;
    font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102,126,234,0.4); 
	
}

.contact-area{


   padding: 5rem 0;
  background-color: #f8f9fa;}

.contact-wrapper {
    margin: 0 auto;
  max-width: 1200px;
    padding: 0 2rem;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
}

.contact-title{
    font-size: 2.5rem;
      color: #2c3e50;
  margin-bottom    :    1rem;
	font-weight    :  700;
}

.contact-description {
    font-size: 1.1rem;
  margin-bottom: 2rem;
     color: #666;
  line-height  : 1.7;
}

.contact-details {
        display: flex;
	 flex-direction: column;
  gap: 1.5rem;
}

.detail-item h4 {
	 font-size:     1.2rem;
   margin-bottom:       0.5rem;
   color: #2c3e50;
    font-weight   :    600;
}

.detail-item p {
  color: #666;

}

.contact-form {
   background: white;
   padding: 2.5rem;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
   display   :       block;
  margin-bottom: 0.5rem;
    font-weight:600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
   padding: 0.8rem;
  border: 2px solid #e9ecef;
  border-radius:  8px;
	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: #667eea;
}

.submit-button
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
	padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
  font-size: 1.1rem;
  font-weight     :   600;
   cursor   :     pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.submit-button:hover  {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}

.site-footer {
	background-color: #2c3e50;
    color: white;
   padding: 3rem 0 1rem;
}

.footer-content
{
  max-width   :   1200px;
	margin     :    0 auto;
    padding  :   0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo {
  height: 50px;
  filter: brightness(0) invert(1); 

}

.footer-links {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap   :      2rem;
}

.link-group h4 {
    font-size: 1.2rem;
    margin-bottom   : 1rem;
  color: #ecf0f1;
}

.link-group ul {
 list-style: none;

}

.link-group ul li {
  margin-bottom: 0.5rem;
}

.link-group ul li a {
   color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-group ul li a:hover {
   color: #ecf0f1;
}

.link-group p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
  border-top    :        1px solid #34495e;
   margin-top: 2rem;
   padding-top: 1rem;
    text-align: center;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .primary-heading {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .workshop-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .primary-heading {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action-btn,
    .secondary-action-btn {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}.about-hero {
    margin-top: 80px;
         padding: 4rem 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
   text-align: center;
}

.about-hero-content {

  max-width: 800px;
  margin: 0 auto;
               padding: 0 2rem;
     }



.about-main-title {
  font-size: 3rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.about-intro-text {
  font-size: 1.3rem;
    color :   #555;
   line-height: 1.7;
}

.company-story {
  padding: 5rem 0;
    background-color: white;
}

.story-container {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
        display: grid;
    grid-template-columns :     1fr 1fr;
   gap: 4rem;
	 align-items: center;
}

.story-heading {

	  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom   :2rem;
    font-weight :       700;
     }

.story-paragraph {
  font-size: 1.1rem;
        color: #666;
  margin-bottom: 1.5rem;
   line-height: 1.8;
}

.story-image {
	 width: 100%;
	height: auto;
   border-radius     :  15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-areas {
	    padding: 5rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
     }

.expertise-wrapper {
       max-width: 1200px;
    margin:  0 auto;
   padding: 0 2rem;
}

.expertise-title {
  text-align: center;
    font-size  :2.5rem;
   color: white;
  margin-bottom: 3rem;
   font-weight: 700;}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :  2rem;
}

.expertise-item {
  background: rgba(255,255,255,0.95);
  border-radius     :15px;
   padding: 2rem;
   text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.expertise-img {
    -webkit-border-radius: 10px;
   width: 100%;
  height: 200px;
  -moz-border-radius: 10px;
    object-fit: cover;
	border-radius: 10px;
                    margin-bottom: 1.5rem;
}

.expertise-name {
    font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 600;
}  

.expertise-description {
    color     :   #666;
    line-height: 1.7;


}

.methodology-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.methodology-container {
   max-width: 1200px;
   margin: 0 auto;
    padding :      0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap:   4rem;
  align-items  :       center;
}

.methodology-heading {
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom :    1.5rem;
   font-weight: 700;
} 

.methodology-intro {
    font-size: 1.2rem;
   color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.methodology-steps {
  display: flex;
   flex-direction: column;
    gap: 1.5rem;
}

.method-step {
   display: flex;
  gap: 1rem;
  align-items: flex-start;
} 

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
    height:        50px;
    border-radius: 50%;
   display: flex;
  align-items    :       center;
    justify-content: center;
  font-weight: 700;
    font-size: 1.2rem;
  flex-shrink :       0;
}

.step-title {
   font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
 font-weight    :      600;
}

.step-text {
   color: #666;
    line-height: 1.6;
}

.methodology-image {
               width: 100%;
	height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-mission {

       padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;

     }

.values-content {
        max-width: 1200px;
  margin: 0 auto;
    padding   : 0 2rem;
}

.values-heading {


    text-align: center;
  font-size: 2.5rem;
	margin-bottom: 3rem;
         font-weight: 700;

}

.values-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
}

.value-item {
  background: rgba(255,255,255,0.1);
    padding :      2rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
   text-align: center;
}

.value-name {
                    font-size: 1.4rem;
   font-weight: 600;
  margin-bottom: 1rem;
}

.value-desc {
  opacity: 0.9;
   line-height: 1.7;
}

.cta-about {
    padding: 4rem 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
  text-align    :   center; 
	
}

.cta-about-content  
  {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
	
}

.cta-about-title {
	font-size: 2.5rem;
  color: #2c3e50;
                    margin-bottom: 1rem;
   font-weight: 700;
}

.cta-about-text {


  font-size: 1.2rem;
  line-height: 1.7;
  color: #555;
     margin-bottom     :      2rem;
     }

.cta-about-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.2rem 3rem;
  text-decoration:none;
    border-radius :   50px;
   font-weight     :        600;
	font-size    :     1.1rem;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.cta-about-button:hover {
	  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102,126,234,0.4);


}

.thankyou-hero {

   margin-top: 80px;
    padding: 4rem 0;
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    min-height: 70vh;
  display: flex;
   align-items: center;
	

}

.thankyou-container    {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
	display: grid;
    grid-template-columns:  1fr 1fr;
	gap: 3rem;
	align-items: center;
}

.thankyou-content {
	    text-align: center;


}

.success-icon
	{

	    margin-bottom: 2rem;


}

.checkmark-circle {
	 width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
    border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content :  center;
   margin: 0 auto;
  animation: checkmarkPulse 2s infinite;
}

.checkmark {
  width: 30px;
   height: 20px;
    border: 4px solid white;
	border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-title {
  font-size :3rem;
	color: #2c3e50;
   margin-bottom   :    1rem;
  font-weight: 700;
}

.thankyou-subtitle {
        color: #666;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}

.thankyou-message {
  background: rgba(255,255,255,0.8);
                    padding: 2rem;
	 border-radius     :15px;
    margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.message-text {
	font-size: 1.1rem;
	  color: #555;
		line-height: 1.7;
}

.next-steps {
  margin-bottom: 2rem;
}

.steps-title {
   font-size  :        1.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 600;
}

.steps-list {
       display: flex;
 flex-direction: column;
    gap: 1rem;
}

.step-item {

  display: flex;
   align-items: center;
                    gap: 1rem;
  background: rgba(255,255,255,0.6);
  padding: 1rem;
               border-radius: 10px;}

.step-icon {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
                    width: 30px;
  height: 30px;
    border-radius: 50%;
  display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 700;
    flex-shrink: 0;
}

.step-description
	{
	 color: #555;
  line-height: 1.6;
  text-align: left;
}



.thankyou-actions    {
    justify-content   :    center;
	 display: flex;
    gap:      1rem;
	 flex-wrap: wrap;
	
}


.primary-return-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.primary-return-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,126,234,0.4);
}

.secondary-return-btn  
  {
    text-decoration: none;
    border: 2px solid #667eea;
    transition: all 0.3s ease;
   color: #667eea;
   background:        transparent;
   border-radius: 50px;
   padding: 1rem 2rem;
    display: inline-block;
        font-weight: 600;
}

.secondary-return-btn:hover		{
	background: #667eea;
    color: white;
}

.thankyou-image {
   width: 100%; 
	                    height: auto; 
	   border-radius :  15px; 
	  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.additional-info {
    padding: 4rem 0;
    background-color :  #f8f9fa;
}


.info-wrapper {
   max-width: 1200px;
   margin: 0 auto;
   padding   :       0 2rem;
}

.info-heading {
  text-align: center;
		font-size: 2.5rem;
	   color: #2c3e50;
	    margin-bottom: 3rem;
	    font-weight: 700;
}

.preparation-tips {
   display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;

}

.tip-card {
   background: white;

    padding: 2rem;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.1);

  text-align   : center;

    transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-title {
	    font-size    :        1.3rem;

  color: #2c3e50;

	margin-bottom: 1rem;

  font-weight: 600;
     }

.tip-text {
		color: #666;
	line-height    :    1.7;
	}

.emergency-contact 
 {
    padding: 3rem 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
  color: white;
   text-align: center;
}

.emergency-content {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}

.emergency-title {
      font-size: 2rem; 
	   margin-bottom: 1rem; 
	   font-weight: 700;
}

.emergency-text {
                    font-size:       1.1rem;
   margin-bottom: 1.5rem;
   opacity: 0.95;
	
}

.emergency-phone {
  margin-bottom   :      1rem; 
	
}  

.phone-link {
  background: rgba(255,255,255,0.2);
    color: white;
  padding: 1rem 2rem;
   text-decoration: none;
   border-radius: 50px;
  font-size: 1.3rem;
   font-weight: 700;
   transition: background 0.3s ease;
  display: inline-block;
}

.phone-link:hover {

  background: rgba(255,255,255,0.3);
	}

.emergency-note {
  font-size: 0.9rem;
	opacity    :       0.8;
}@media (max-width: 768px) {
    .story-container,
    .methodology-container,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-main-title,
    .thankyou-title {
        font-size: 2.5rem;
    }
    
    .expertise-grid,
    .values-list,
    .preparation-tips {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-return-btn,
    .secondary-return-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-main-title,
    .thankyou-title {
        font-size: 2rem;
    }
    
    .section-title,
    .expertise-title,
    .values-heading,
    .info-heading {
        font-size: 2rem;
    }
}