* {
   margin: 0;
   padding: 0;
   box-sizing     :   border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
    color    :   #333;
}

.navbar-container {

	  background: rgba(255, 255, 255, 0.95); 
	  backdrop-filter: blur(10px); 
	    position: fixed; 
	    top: 0; 
	    width: 100%; 
	   z-index :  1000; 
	     border-bottom    :       1px solid #e0e0e0;

}

.nav-wrapper {
  max-width  : 1200px;
	margin  :   0 auto;
   display: flex;
   justify-content     :     space-between;
	align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
	width: auto;
  height    :       45px;
}

.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   :    #6c5ce7;
}

.burger-menu {
   display: none;
  flex-direction: column;
    cursor: pointer;
    gap: 4px;
}  

.burger-menu span {
   width: 25px;
	height: 3px;
    background: #333;
    transition: 0.3s;
}

.mobile-menu {

	  display: none;
    flex-direction: column;
    background: white;
    position     :     absolute;
    top: 100%;
          width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mobile-menu a {
    color: #333;
   border-bottom: 1px solid #f0f0f0;
   padding: 1rem 2rem;
    text-decoration: none;
}

.hero-section {
    margin-top: 80px;
    padding: 80px 2rem;
  max-width: 1200px;
    margin-left: auto;
   margin-right: auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
   min-height: 70vh;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: #2d3436;
  margin-bottom: 1.5rem;
 line-height: 1.2;
	
}

.hero-subtitle {
   font-size: 1.2rem;
  color: #636e72;
    margin-bottom: 2rem;
}

.hero-buttons {
        display: flex;
    gap: 1rem;
  flex-wrap:     wrap;
}

.btn-primary, .btn-secondary	{
	 padding: 12px 24px;
  text-decoration: none;
   border-radius: 8px;
     font-weight: 600;
    transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
    color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4); 

}

.btn-secondary {
         border: 2px solid #6c5ce7;
    color: #6c5ce7;
  background: transparent;
}

.btn-secondary:hover {
   color: white;
   background: #6c5ce7;
}

.hero-image img {
  width: 100%;
   height: auto;
    border-radius:        12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);}

.services-overview {
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9ff, #e8eeff);
}

.container     {
  max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
  color: #2d3436;
	 margin-bottom: 3rem;
}

.services-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
	}

.service-card {
  background: white;
		border-radius: 16px;
		padding: 2rem;
	    text-align: center;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	 transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img		{
   width: 100%;
   height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom     :  1.5rem;
}

.service-card h3 {
   font-size: 1.5rem;
   color: #2d3436;
   margin-bottom: 1rem;

}

.service-card p {
    color: #636e72;
    line-height: 1.6;
}

.cta-section {
    padding: 100px 2rem;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
}

.cta-container {
  max-width: 1200px;
  margin  :       0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
	 align-items: center;
}

.cta-content h2 {
   font-size: 2.5rem;
   color: white;
   margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom:     2rem;

}

.cta-button {
          background    : white;
    color: #6c5ce7;
    padding: 15px 30px;
  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 8px 25px rgba(255,255,255,0.3);
}

.cta-image img {
  width: 100%;
   border-radius: 12px;
}

.methodology-section {
   padding: 80px 2rem;
}

.methodology-section h2 {

  text-align:    center;
    font-size: 2.5rem;
   color: #2d3436;
    margin-bottom: 3rem;
     }

.methodology-content {
    display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.method-item {
    padding: 2rem;
  border-left: 4px solid #6c5ce7;
   background: #f8f9ff;
}

.method-item h3 {
               color: #2d3436;
  font-size: 1.3rem;
	margin-bottom: 1rem;
}

.method-item p {


	color: #636e72;
	}

.contact-section {
  padding: 80px 2rem;
    background: #f8f9fa;
}

.contact-section h2 {
   text-align: center;
   font-size   :  2.5rem;
    color: #2d3436;
  margin-bottom: 3rem;
}

.contact-wrapper {
   	grid-template-columns: 2fr 1fr;
    gap: 4rem;
  max-width: 1000px;
   margin: 0 auto;
    display   : grid;


}


.contact-form{
  background: white;
	padding: 2.5rem;
   border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group     {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
   margin-bottom: 0.5rem;
    color: #2d3436;
         font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
  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: #6c5ce7;
}

.submit-btn {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
   border: none;
   padding: 15px 30px;
    border-radius: 8px;
   font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover     {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.3);
}

.contact-info {

    background: white;
  padding: 2.5rem;
    border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height     :    fit-content;
}

.contact-info h3  {
   color: #2d3436; 
                    margin-bottom: 2rem;
}

.info-item {
	margin-bottom: 2rem;
}

.info-item strong {

    color: #6c5ce7;
    display: block;
               margin-bottom: 0.5rem;
     }

.footer {
   background     :        #2d3436;
    color: white;
    padding: 3rem 2rem 1rem;


}

.footer-content {
	max-width: 1200px;
 margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 1rem;
  color: #a29bfe;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.5rem;
}

.footer-section a {
   color: #b2bec3;
  text-decoration    : none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #a29bfe;
	
}


.footer-bottom {
  text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
		border-top: 1px solid #636e72;
   color: #b2bec3;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .nav-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .methodology-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}.nav-links a.active {
               color: #6c5ce7;
  position  :  relative;
}

.nav-links a.active:after {
  content: '';
    position: absolute;
 bottom :  -8px;
   left: 0;
   width: 100%;
  height: 2px;
    background: #6c5ce7;
}

.about-hero {
   padding: 60px 2rem;
    align-items: center;
    margin-right     :      auto;
    margin-top: 80px;
          max-width: 1200px;
    margin-left: auto;
  display: grid;
  grid-template-columns     :    1fr 1fr;
  gap: 3rem;
}

.about-hero-content h1 {
  font-size: 2.8rem;
          color: #2d3436;
   margin-bottom: 1.5rem;
   line-height :      1.3;
}

.about-subtitle {
    font-size: 1.1rem;
	 color  :    #636e72;
   line-height: 1.7;
}

.about-hero-image img {
    width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mission-section {
  padding :        80px 2rem;
   background: #f8f9ff;
}

.mission-section h2 {
    margin-bottom : 2rem;
	 color: #2d3436;
	 text-align: center;
    font-size: 2.3rem; 
	
}

.mission-content > p   {
   font-size: 1.1rem;
  color: #636e72;
  text-align: center;
    max-width: 800px;
  margin: 0 auto 3rem;
   line-height: 1.7;
}

.mission-values {


   display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  margin-top    :    3rem;


}

.value-item {
     background: white;
  padding: 2rem;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;


}

.value-item:hover {
  transform: translateY(-3px);
}

.value-item h3 {
  color: #6c5ce7;
	 font-size: 1.3rem;
  margin-bottom: 1rem;

}

.value-item p {
    color :        #636e72;
	line-height: 1.6;
}

.team-section {
   padding: 80px 2rem;
}

.team-section h2 {
   text-align     :     center;
	 font-size: 2.3rem;
               color: #2d3436;
    margin-bottom: 3rem; 

}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
	max-width: 1000px;
               margin: 0 auto; 

}

.team-member {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-info h3 {
    color: #2d3436;
  font-size: 1.4rem;
	margin-bottom    :     0.5rem;
}

.member-role {
  margin-bottom: 1rem;
	color: #6c5ce7;
  font-weight: 600;
          font-size: 1rem;
}

.member-info p:last-child {
   color: #636e72;
  line-height: 1.6;
}

.approach-section {
    padding    :       80px 2rem;
  background: linear-gradient(135deg, #f8f9ff, #e8eeff);
}

.approach-section h2 {
	  text-align: center;
   font-size: 2.3rem;
	 color: #2d3436;
  margin-bottom: 3rem;
	}

.approach-content {
  display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 3rem;
                    align-items: center;

}

.approach-text h3 {
  color: #2d3436;
    font-size :    1.4rem;
    margin-bottom: 1rem;
  margin-top: 2rem;
} 

.approach-text h3:first-child {
    margin-top: 0;
}

.approach-text p {
    color: #636e72;
    line-height: 1.7;
	 margin-bottom: 1.5rem;
}

.approach-list {
    list-style   :     none;
	padding: 0;
}

.approach-list li {
   color: #636e72;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
  position    :       relative;
   line-height: 1.6;
}

.approach-list li:before {
  content: "→"; 
   color: #6c5ce7; 
	font-weight: bold; 
	position: absolute; 
  left: 0;
}

.approach-image img {
   width: 100%;
  border-radius :       12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.experience-section {
  padding: 80px 2rem;
}

.experience-section h2 {
               text-align     :     center;
    font-size: 2.3rem;
    color  : #2d3436;
  margin-bottom: 3rem;
}



.experience-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-bottom: 3rem; 

}

.stat-item {
   text-align: center;
    background: white;
               padding   :   2rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 2.5rem;
  font-weight: bold;
   color: #6c5ce7;
					margin-bottom: 0.5rem;
}

.stat-label {
    color     :  #636e72;
    font-size: 0.9rem;
    text-transform    :  uppercase;
   letter-spacing: 1px;
}

.experience-description {
          max-width: 800px;
   margin: 0 auto;
   text-align:center;
}

.experience-description p {
  font-size: 1.1rem;
	color: #636e72;
  line-height:     1.7; 
	
}


.certification-section

{
  padding: 80px 2rem;
   background: #f8f9ff;
}



.certification-section h2 {
      text-align   :       center;
  font-size: 2.3rem;
  color: #2d3436;
    margin-bottom: 3rem;


}

.cert-content {
    display: grid;
 grid-template-columns: 1fr 1fr;
    gap  : 3rem;
   align-items: center;
}

.cert-text h3 {
    margin-top: 2rem;
   font-size    :      1.4rem;
   color: #2d3436;
  margin-bottom: 1rem;
}

.cert-text h3:first-child {
  margin-top: 0;
}

.cert-text p{
   color: #636e72;
   line-height: 1.7;
	 margin-bottom: 1.5rem;
}

.cert-list {


    list-style: none;
   padding: 0;

}

.cert-list li {
    color  : #636e72;
  margin-bottom: 0.8rem;
	 padding-left: 1.5rem;
   position: relative;
	line-height     :        1.6;
}

.cert-list li:before {
  content: "✓";
  color: #6c5ce7;
  font-weight: bold;
  position: absolute;
        left: 0;
}

.cert-image img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.thankyou-hero {
    margin-top: 80px;
  padding: 60px 2rem;
    min-height: 70vh;
      display     :       flex;
   align-items: center; 

}

.thankyou-container {
    max-width: 1200px;
  margin: 0 auto;
  display: grid;
        grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items  :  center;
}

.thankyou-content {
	 text-align: center;
}

.success-icon  
  {
    margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
    height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
   margin: 0 auto;
   position: relative;
	animation: scaleIn 0.5s ease-out;
}

.checkmark {
	 position: absolute;
   top:      50%;
  left: 50%;
  transform: translate(-50%, -50%);
    width: 25px;
          height: 15px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: translate(-50%, -60%) rotate(-45deg);
  animation: drawCheck 0.8s ease-out 0.3s forwards;
  opacity    :  0;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes drawCheck {
    0% { opacity: 0; transform: translate(-50%, -60%) rotate(-45deg) scale(0); }
    100% { opacity: 1; transform: translate(-50%, -60%) rotate(-45deg) scale(1); }
}.thankyou-content h1 {


   font-size: 2.5rem;
    color: #2d3436;
   margin-bottom:  1.5rem;


}

.thankyou-subtitle {
	font-size: 1.1rem;
    color: #636e72;
    margin-bottom :    3rem;
   line-height: 1.7;
}

.next-steps   {
       text-align     :  left;
  margin: 3rem 0;
}

.next-steps h2 {
   font-size: 1.8rem;
   color: #2d3436;
    margin-bottom: 2rem;
   text-align: center;
}

.steps-grid {
  grid-template-columns: 1fr;
   gap: 1.5rem;
    display: grid;
}

.step-item {
    display: flex;
    align-items: flex-start;
  gap   :     1rem;
    padding: 1.5rem;
  background: #f8f9ff;
	 border-radius  :       8px;
}

.step-number {
  background: #6c5ce7;
    color: white;
    width: 30px;
  height: 30px;
  border-radius: 50%;
 display: flex;
		align-items: center;
    justify-content: center;
    font-weight  :       bold;
  flex-shrink: 0;


}

.step-item h3 {
   color: #2d3436;
   margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.step-item p {
   color: #636e72;
    line-height: 1.5;
         font-size: 0.95rem;
}

.thankyou-actions {
   margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-info-section {

	  padding  :    60px 2rem;
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
	
}

.contact-info-section h2 {
  text-align: center;
  color: white;
      font-size: 2rem;
  margin-bottom: 2rem;
}

.quick-contact {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  max-width: 800px;
   margin: 0 auto;

}

.contact-option {

	  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
   border-radius: 12px;
   text-align :    center;
  backdrop-filter: blur(10px);}

.contact-option h3 {
  color: white;
  margin-bottom   :1rem;
    font-size: 1.2rem;
}

.contact-detail {
    margin-bottom: 0.5rem;
 font-size: 1.3rem;
    color: white;
   font-weight: 600;
}

.contact-option p:last-child {
  color: rgba(255, 255, 255, 0.8);
		font-size: 0.9rem;
}

.faq-preview {
  padding: 60px 2rem;
    background: #f8f9fa;
}

.faq-preview h2 {
    text-align     :    center;
    font-size: 2rem;
    color: #2d3436;
    margin-bottom   :        2rem;
}

.faq-items {
  max-width: 800px;
    margin: 0 auto;
	display: grid;
    gap: 1.5rem;
}

.faq-item {
      background    :        white;
  padding: 1.5rem;
   border-radius :8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);


}

.faq-item h3 {
   color: #2d3436;
    margin-bottom: 0.8rem;
  font-size: 1.1rem;

}

.faq-item p {
   color: #636e72; 
   line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero,
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .approach-content,
    .cert-content {
        grid-template-columns: 1fr;
    }
    
    .mission-values,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .next-steps {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}