* {
    margin    :       0;
   padding: 0px;
  box-sizing     :       border-box;
}

body {
	 line-height: 1.6;
          color: #333;
  font-family: 'Arial', sans-serif;
}

.container {
	 max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.navbar {

	  background: #2c3e50;
    padding: 1rem 0;
  position: fixed;
  width: 100%;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);


}

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
  display: flex;
	 justify-content: space-between;
  align-items: center;
	
}

.nav-logo .logo-img {
  height: 40px;
}

.nav-menu {
    display: flex;
    list-style     :  none;
}

.nav-menu li {
	 margin-left: 2rem;
}

.nav-menu li a {
    color: #ecf0f1;
  text-decoration: none;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
   color: #3498db;
}

.hamburger {
   display: none;
    flex-direction: column;
    cursor   :     pointer;
}

.hamburger .bar {
    width: 25px;
  height: 3px;
   background-color: #ecf0f1;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px;
   color: white;
}

.hero-content {
	max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  display: grid;
    grid-template-columns     :       1fr 1fr;
  gap    :  50px;
  align-items: center;
}

.hero-text h1 {
  font-size: 3rem;
    margin-bottom: 1rem;
   font-weight :bold;
}

.hero-text p  
  {
   font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
        display  :flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
   text-decoration: none;
    border-radius   :      5px;
  font-weight: bold;
    transition: all 0.3s ease; 
	
}

.btn-primary {
    background-color: #e74c3c;
  color: white;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
       background-color: transparent;

	    color :  white;

	   border: 2px solid white;

}

.btn-secondary:hover {
    background-color: white;
   color: #667eea;
}

.hero-image img {
  width : 100%;
  height    :   auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-overview {
   padding: 80px 0;
    background-color: #f8f9fa;
}

.services-overview h2 {
  text-align: center;
  font-size   :   2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.services-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
   background: white;
   border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover		{
  transform: translateY(-5px);
}

.service-card img

{
    object-fit: cover;
        margin-bottom :  1.5rem;
  width :    100%;
  height: 200px;
    border-radius: 8px;
}  

.service-card h3 {
      font-size: 1.5rem;
   margin-bottom: 1rem;
   color: #34495e;


}

.service-card p {
       color     :   #7f8c8d;
  line-height: 1.6;}

.workshop-section {
  padding: 80px 0;
   background: #fff;
}

.workshop-content {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
    display: grid;
                    grid-template-columns    :    1fr 1fr;
   gap: 50px;
    align-items: center;
}

.workshop-text h2 {
   font-size: 2.5rem;
   margin-bottom:     1.5rem;
    color: #2c3e50;
}

.workshop-text p {
   font-size: 1.1rem;
  margin-bottom: 2rem;
         color: #555;
}

.benefits-list {
    list-style: none;
}

.benefits-list li  {
    padding: 0.5rem 0;
    position: relative;
  padding-left: 25px;
}

.benefits-list li:before {
  content: "✓";
    position: absolute;
   left : 0;
  color:       #27ae60;
   font-weight: bold;
}

.workshop-image img {
  width :       100%;
  height   :       auto;
    border-radius: 10px;
}

.cta-section {
  background: linear-gradient(45deg, #f39c12, #e67e22);
    padding: 60px 0;
               text-align: center;
  color: white;


}



.cta-content h2  
  {
   font-size: 2.5rem;
               margin-bottom: 1rem; 

}

.cta-content p {
   font-size :   1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.btn-cta {
   background-color: #27ae60;
   color: white;
   padding: 15px 40px;
    text-decoration: none;
    border-radius  :30px;
    font-weight: bold;
   font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-cta:hover {
	background-color: #219a52;
  transform: translateY(-2px);
}

.contact-section {
	padding: 80px 0;
       background-color  : #ecf0f1;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.contact-wrapper {
    display: grid;
 grid-template-columns: 2fr 1fr;
	gap: 50px;
    max-width: 1000px;
        margin: 0 auto;
}  

.contact-form {
   background: white;
         padding   :   2.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
    margin-bottom: 0.5rem;
    color: #555;
  font-weight: 500;
}



.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
     padding: 12px;
         border  :     2px solid #ddd;
               border-radius     :5px;
  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: #3498db;
}

.submit-btn {
  background: #3498db;
   color: white;
  padding: 12px 30px;
  border: none;
	border-radius: 5px;
  font-size: 1rem;
   cursor: pointer;
   transition: background-color 0.3s ease;
}

.submit-btn:hover {
	  background: #2980b9;
}

.contact-info  {
   background: white;
  padding: 2rem;
  border-radius  :        10px;
    height: fit-content;
}

.info-item {
  margin-bottom: 2rem; 

}

.info-item h3 {


                    color: #2c3e50;
    margin-bottom: 0.5rem;}

.info-item p {


   color     : #7f8c8d;
	 line-height: 1.6;


}

.footer {
     background: #2c3e50;
        color: #ecf0f1;
  padding :      50px 0 20px;
	}

.footer-content {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	   gap: 30px;

	  margin-bottom :        30px;
}

.footer-section h3 {
  margin-bottom: 1rem;
    color: #3498db;
}

.footer-logo {
    height: 50px;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
   margin-bottom: 0.5rem;
}

.footer-links li a {
   color   :   #bdc3c7;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links li a:hover {
    color: #3498db;
}

.footer-bottom {
               color: #95a5a6;
	border-top: 1px solid #34495e;
    padding-top: 20px;
  text-align   :  center;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #2c3e50;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .workshop-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .services-overview h2,
    .workshop-text h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}.nav-menu li a.active


{
	color: #3498db;
   font-weight   :      bold;
}

.about-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  padding   :120px 0 80px;
    color: white;
  text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
   font-weight: bold;
}

.hero-subtitle {
  font-size: 1.3rem;
   max-width: 800px;
    margin: 0 auto;
    opacity     :   0.9;
    line-height: 1.6;
}

.company-story {
    padding: 80px 0;
   background: #fff;
}

.story-grid {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
	color: #2c3e50;
   margin-bottom   :       2rem;
}

.story-text p {
    color: #555;
  font-size: 1.1rem;
	margin-bottom: 1.5rem;
  line-height: 1.7;

}

.story-image img {
 width: 100%;
    height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

}

.mission-values {
                  padding: 80px 0;
	background: #f8f9fa;

}



.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}  

.value-card {
   background: white;
    padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align  :      center;
}

.value-card h3 {
  font-size: 1.5rem;
      color: #e74c3c;
    margin-bottom: 1.5rem;


}

.value-card p {
    line-height   : 1.6;
   color   :      #666;
}

.expertise-section
	{
    padding: 80px 0;
    background: white;

}

.section-title {
	text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.expertise-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap    :       50px;
   align-items: center;}

.expertise-text h3 {
  font-size: 2rem;
   color: #34495e;
    margin-bottom: 2rem;
}

.expertise-item {

    margin-bottom: 2rem;


}

.expertise-item h4 {
  font-size: 1.3rem;
    color   :#3498db;
  margin-bottom: 0.5rem;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
}  

.expertise-image img {
       width     :  100%;
        height: auto;
   border-radius: 10px;
}

.methodology-section {
	padding: 80px 0;
   background: #ecf0f1;
     }



.methodology-grid {
   display: grid;
  grid-template-columns: 1fr 1fr;
          gap: 50px;
	 align-items: center;
}

.methodology-text h2  {
  color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.methodology-text p {
   font-size: 1.1rem;
   color: #555;
  margin-bottom: 2rem;
   line-height: 1.6;
}

.methodology-steps {
  margin-top   :        2rem;
	}

.step {
   display: flex;

   align-items: flex-start;

    margin-bottom: 1.5rem;
}

.step-number {
  background: #f39c12;
  color: white;
        width: 40px;
	height: 40px;
  border-radius: 50%;
   display: flex;
  align-items: center;
  justify-content   :     center;
      font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.step-content p {
  line-height: 1.5;
    color: #666;
}

.methodology-image img {
   width: 100%;

   height: auto;

   border-radius: 10px;
}

.achievements-section {
   padding :     80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.achievement-card {
  text-align: center;
  padding: 2rem;


}

.achievement-number {
  color  :      #f39c12;
  font-weight: bold;
   margin-bottom: 1rem;
	font-size: 3rem;
}

.achievement-card h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
}

.achievement-card p {
     opacity: 0.9;
  line-height: 1.5;
}

.why-choose-us {
      padding: 80px 0;
  background: white;
     }

.choose-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 50px;
  align-items: center;
}

.choose-text h2	{
    font-size: 2.5rem;
    color: #2c3e50;
               margin-bottom: 2rem;
}

.reasons-list {
    margin-top: 2rem;
}


.reason-item {
   margin-bottom: 2rem;
}

.reason-item h4 {
    font-size: 1.3rem;
  color: #27ae60;
    margin-bottom:       0.5rem;
}

.reason-item p {
    color: #666;
   line-height: 1.6;
}

.choose-image img {
   width   :   100%;
  height: auto;
        border-radius   :        10px;

}

.thankyou-hero		{
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   padding: 120px 0 80px;
    color: white;
  text-align: center;
    min-height: 60vh;
   display: flex;
  align-items: center;


}

.thankyou-content {
  max-width: 800px;
   margin: 0 auto;
}

.success-icon {

               margin-bottom: 2rem;
}

.checkmark-circle {
   margin: 0 auto 2rem;
   height:    80px;
  width: 80px;
   border-radius: 50%;
    border: 4px solid white;
    position: relative;
   animation: pulse 2s infinite;
}

.checkmark {
  width: 25px;
    height: 45px;
    border: solid white;
   border-width: 0 4px 4px 0;
  transform: rotate(45deg);
   position: absolute;
	top: 10px;
  left: 25px;
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-content h1 {

	  font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight  :   bold;
	


}

.thankyou-subtitle {
   font-size: 1.2rem;

        margin-bottom: 3rem;

    opacity: 0.9;

  line-height: 1.6;
}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
  padding  : 2rem;
   border-radius: 10px;
    margin-bottom:       3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
	}

.steps-container {
	    display: grid; 
	    gap: 1.5rem; 
	   text-align: left;
	}

.step-item {

	display: flex;
   align-items: flex-start;}

.step-item .step-number {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  width: 35px;
	 height: 35px;
  border-radius: 50%;
   display: flex;
   align-items: center;
      justify-content: center;
  font-weight: bold;
  margin-right: 1rem;
    flex-shrink: 0;
}  

.step-item h3 {

   font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-item p  
  {
   opacity :    0.9;
  line-height: 1.5;
}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
        border-radius   :      10px;
   margin-bottom: 3rem;
}

.additional-info h2		{

   font-size: 2rem;

	    margin-bottom: 1rem;
     }

.additional-info > p {
  margin-bottom: 2rem;
	opacity   :   0.9;
}

.info-cards    {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 1.5rem;}

.info-card {
  background: rgba(255, 255, 255, 0.1);
   padding: 1.5rem;
   border-radius: 8px;
          text-align: center;
}

.info-card img
	{
    margin-bottom:        1rem;
  object-fit: cover;
  border-radius: 5px;
  height: 120px;
  width: 100%;
}

.info-card h3 {
  font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.info-card p	{
    font-size: 0.9rem;
  opacity: 0.9;
   line-height: 1.5;

}

.action-buttons {
   display: flex;
  gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-reminder {
    padding: 60px 0;
   background: #f8f9fa;
    text-align    :center; 

}

.reminder-content h2 {

	     font-size    :2rem;
	color: #2c3e50;
  margin-bottom: 1rem;

}

.reminder-content p {
  font-size: 1.1rem;
    color: #555;
  margin-bottom: 2rem;
  max-width: 600px;
   margin-left: auto;
  margin-right: auto;
}

.contact-details {
    display: flex; 
  justify-content: center; 
    gap: 3rem; 
   flex-wrap: wrap;
}

.contact-item h3 {
  font-size: 1.3rem;
	 color: #3498db;
  margin-bottom: 0.5rem;

}

.contact-item p {
   color: #666;
   font-size: 1rem;
         line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle,
    .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .story-grid,
    .expertise-content,
    .methodology-grid,
    .choose-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .values-grid,
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        gap: 1rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-item .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-title,
    .story-text h2,
    .methodology-text h2,
    .choose-text h2 {
        font-size: 2rem;
    }

    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .value-card,
    .achievement-card {
        padding: 1.5rem;
    }

    .next-steps,
    .additional-info {
        padding: 1.5rem;
    }
}