* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body
{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
    background-color: #ffffff;
}  

.primary-navigation
	{
  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  position: fixed;

  top: 0;

    width:  100%;

   z-index: 1000;

    padding: 1rem 0;

   transition    :    all 0.3s ease;

  border-bottom: 1px solid rgba(0,0,0,0.05);}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
  padding: 0 20px;
  justify-content: space-between;
    margin: 0 auto;
  display: flex;
  align-items: center;
    max-width: 1200px;
}

.brand-section .brand-logo {
  height: 45px;
   width :     auto;
}

.navigation-links {
   display: flex;
	gap   :     2rem;
}

.nav-item {
   font-weight    :  500;
 color: #2c3e50;
			text-decoration: none;
    position: relative;
               transition: all 0.3s ease;


}

.nav-item::after {
  content: '';
  position :   absolute;
    width: 0;
    height: 2px;
   bottom: -5px;
  left: 0;
   background: #3498db;
   transition: width 0.3s ease;
}

.nav-item:hover::after {
	width: 100%;
}

.mobile-trigger {
    display: none;
	 flex-direction: column;
	cursor: pointer;
   padding: 5px;
}

.mobile-trigger span {

	  width: 25px;
  height: 3px;
    background: #2c3e50;
   margin  :    3px 0;
    transition: 0.3s;

}

.mobile-trigger.active span:nth-child(1) {
     transform: rotate(-45deg) translate(-5px, 6px);
     }

.mobile-trigger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-trigger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-navigation		{
   display: none;
    background: white;
	position    :        absolute;
	 top: 100%;
    left: 0;
    width: 100%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding    :1rem 0;
}

.mobile-navigation.active  {
   display: block;
}

.mobile-navigation a {

	  display: block;
               padding: 0.8rem 20px;
   text-decoration: none;
  color: #2c3e50;
  border-bottom :1px solid #ecf0f1;
	transition: background 0.3s ease;

}

.mobile-navigation a:hover 
 {
  background: #f8f9fa;


}

.hero-banner {
    margin-top: 80px; 
	    padding: 4rem 20px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	               color: white;
}

.hero-content {
        max-width: 1200px;
  margin: 0 auto;
    display: grid;
       grid-template-columns: 1fr 1fr;
     gap: 3rem;
  align-items: center;
}

.hero-text h1 {
   font-size: 3rem;
	font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle

{
  font-size: 1.2rem;
   margin-bottom     :  2rem;
    opacity: 0.9;
}

.primary-cta  {
    display: inline-block;
  background: #e74c3c;
  color: white;
   padding: 1rem 2rem;
    text-decoration: none;
	 border-radius: 50px;
    font-weight :       600;
 transition   :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primary-cta:hover {
   background: #c0392b; 
	  transform: translateY(-2px); 
	  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.hero-visual img {

	 width     :     100%;
      height: auto;
      border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.2);


}

.content-container {
   max-width: 1200px;

  margin: 0 auto;

  padding: 0 20px;
}

.expertise-showcase {
    padding: 5rem 0;
    background  :   #f8f9fa;
}

.expertise-showcase 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: 2rem;
}

.service-card {
    background: white;

	  padding: 2rem;

	    border-radius: 15px;

	    text-align    :  center;

	  box-shadow: 0 5px 15px rgba(0,0,0,0.08);

	  transition: all 0.3s ease;
}

.service-card img {
    width: 100%;
  height: 200px;
   object-fit: cover;
    border-radius: 10px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-card p {
  color: #7f8c8d;
    line-height: 1.6;
}

.transformation-process {
	 padding: 5rem 0;
}


.process-content  
  {
  display  : grid;
	 grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.process-text h2 {
       font-size: 2.5rem;
	margin-bottom: 1.5rem;
   color: #2c3e50;
	}

.process-text > p {
  font-size : 1.1rem;
    margin-bottom: 2rem;
  color: #7f8c8d;
}

.process-points {
  display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.point h4  {
                    color: #3498db;
	margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.point p {
    color     : #7f8c8d;
}

.process-visual img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.consultation-offer {
    padding: 4rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  text-align: center;
}

.cta-content h2 {


  font-size: 2.5rem;
  margin-bottom: 1.5rem;}

.cta-content p {
	  font-size: 1.2rem;
	    margin-bottom: 2rem;
	    opacity: 0.9;
	    max-width: 600px;
	    margin-left  :        auto;
		margin-right: auto;

}

.cta-button {
    display: inline-block;
   background     :      #e74c3c;
   color:     white;
 padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
   font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {

	   background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
	}

.contact-section {
  padding: 5rem 0;
  background: #f8f9fa;
}

.contact-section h2 {
     text-align: center;
         font-size  :        2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;

}

.contact-wrapper {
  display    :       grid;
    grid-template-columns  :     2fr 1fr;
                    gap: 3rem;
}

.contact-form


{
       background: white;
     padding: 2.5rem;
        border-radius     : 15px;
  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;
   font-weight: 600;
  color: #2c3e50; 

}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.8rem;
   border: 2px solid #ecf0f1;
   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     : #3498db;
} 

.submit-btn {

	   background: #3498db;
  color: white;
   padding: 1rem 2rem;
   border: none;
   border-radius:   8px;
  font-size: 1.1rem;
   font-weight: 600;
    cursor:      pointer;
   transition: all 0.3s ease;
                    width: 100%;}

.submit-btn:hover
	{

  background: #2980b9;
  transform: translateY(-2px);
     }

.contact-info {
    background: white;
  padding: 2.5rem;
 border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   height    :    fit-content;
}

.contact-info h3 {
    color: #2c3e50;
      margin-bottom: 2rem;
   	font-size: 1.5rem;
}

.info-item	{
    margin-bottom: 2rem;
}

.info-item strong {
   color: #3498db;
  display: block;
         margin-bottom   :   0.5rem;
}

.site-footer {
    background: #2c3e50;
  color: white;
   padding: 3rem 0 1rem;
}

.footer-content {
	max-width: 1200px;
    margin: 0 auto;
	 padding: 0 20px;
  display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer-logo {
  height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
       margin-bottom: 1rem;
    color: #3498db;
}

.footer-section a {
   display: block;
	  color: #bdc3c7;
	  text-decoration: none;
	  margin-bottom: 0.5rem;
	  transition: color 0.3s ease;
}

.footer-section a:hover {
   color: white;
}

.footer-bottom {

  margin-top: 2rem;
     padding-top: 2rem;
  border-top: 1px solid #34495e;
    text-align: center;
   max-width: 1200px;
  margin-left: auto;
	 margin-right: auto;
   padding-left: 20px;
    padding-right: 20px;


}@media (max-width: 768px) {
    .navigation-links {
        display: none;
    }
    
    .mobile-trigger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .expertise-showcase h2,
    .process-text h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .primary-cta,
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }
}.nav-item.active
{
  color  :  #3498db;
  font-weight: 600;
}

.nav-item.active::after {
	 width: 100%;
}

.about-hero    {
    margin-top  :       80px;
   padding: 4rem 20px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
         color: white;
  text-align    :   center;
}

.about-intro h1 {
	font-size: 3rem;
   margin-bottom: 1.5rem;
	font-weight: 700;
}

.intro-text {
   font-size: 1.2rem;
	max-width: 800px;
  margin: 0 auto;
  line-height   :   1.7;
    opacity: 0.95;
}



.our-story 
 {
   padding:        5rem 0;
  background: #f8f9fa;
}

.story-layout {
   display: grid;
   grid-template-columns :        2fr 1fr;
  gap  :    3rem;
   align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
    color: #2c3e50;
}

.story-content p {
  font-size   :1.1rem;
    margin-bottom    :    1.5rem;
		color: #7f8c8d;
  line-height: 1.6;
}

.achievements-grid {
  gap :  2rem;
	display: grid;
   margin-top: 2.5rem;
  grid-template-columns: repeat(3, 1fr);
}

.achievement-item {
	   text-align: center;
   padding: 1.5rem;
   background: white;
    border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);


}

.achievement-item h3 {
    font-size: 2.5rem;
    color: #3498db;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.achievement-item p		{
  color    :      #7f8c8d;
  font-size: 0.9rem;
}

.story-visual img {
  width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.methodology-section    {
  padding:      5rem 0;
}

.methodology-section h2 {
   text-align :        center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
    color :     #2c3e50;
}

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;

}

.method-card {
	background :        white;
   padding: 2.5rem;
 border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position    :relative;
   transition: transform 0.3s ease;
}

.method-card:hover   {


  transform: translateY(-5px);
     }

.method-number {
    position: absolute;
   top   :      -20px;
    left     :      30px;
	background :       #3498db;
  color: white;
   width: 60px;
    height: 60px;
  border-radius     :      50%;
  display: flex;
      align-items: center;
    justify-content     :center;
       font-size    :        1.5rem;
   font-weight: 700;
}

.method-card h3 {


  margin-top: 1rem;
  margin-bottom: 1rem;
  color: #2c3e50;
   font-size: 1.3rem;}

.method-card p {
       color: #7f8c8d;
  line-height: 1.6;
}

.expertise-areas {
    background: #f8f9fa;
  padding: 5rem 0;
}

.expertise-areas h2  
  {
  text-align:       center;
	font-size: 2.5rem;
   margin-bottom :     3rem;
         color: #2c3e50;
}

.expertise-layout {
    display: grid;
	     grid-template-columns: 1fr 1fr;
	   gap: 3rem;
	    align-items: center;
}

.expertise-visual img {


   width: 100%;
	    height: auto;
	    border-radius: 15px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

     }

.expertise-list {
    display: flex;

   flex-direction: column;

   gap: 2rem;
}

.expertise-item {


  background: white;
    padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);

}

.expertise-item h4 {
   color: #3498db;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.expertise-item p {
    color: #7f8c8d;
   line-height: 1.6; 
	
}

.values-section {
  padding: 5rem 0;
}



.values-section h2 {
    text-align:center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;


}

.value-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2.5rem;
	border-radius: 15px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
   font-size: 1.5rem; 
	   margin-bottom: 1rem; 
	  font-weight: 600;
}

.value-card p {
    opacity    :    0.9;
  line-height: 1.6;
}

.approach-section {
  padding: 5rem 0;
      background: #f8f9fa;
}

.approach-layout {
  display: grid;
       grid-template-columns: 1fr 1fr;
     gap: 3rem;
       align-items: center;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom:1.5rem;
  color: #2c3e50;
}

.approach-content p {
   font-size    :       1.1rem;
    margin-bottom: 1.5rem;
   color: #7f8c8d;
    line-height: 1.6;
}

.approach-highlights {
	 margin-top  :     2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
    margin-bottom: 1rem;
   gap: 1rem;
}

.highlight-icon {
	  background: #27ae60;
  color: white;
   width: 30px;
   height   :   30px;
    border-radius: 50%;
  display: flex;
    align-items     : center;
  justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.highlight-item p    {
   margin: 0;
        font-weight: 500;
    color: #2c3e50;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius  :     15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.thankyou-hero 
 {
   margin-top: 80px;
    padding: 6rem 20px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
    text-align: center;

}

.thankyou-content {
  max-width: 600px;
   margin: 0 auto;
}

.success-icon     {
   margin-bottom: 2rem;
}

.checkmark-circle {
  width: 100px;
  height: 100px;
    border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
        position: relative;
   display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {


    width: 40px;
	height: 20px;
   border: 4px solid white;
  border-top: none;
     border-right: none;
  transform: rotate(-45deg);}

.thankyou-content h1 {

	   font-size: 3rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-message {
   font-size: 1.2rem;
  line-height: 1.7;
    opacity: 0.95; 

}

.next-steps {
   padding: 5rem 0;
   background: #f8f9fa;
}

.next-steps h2 {


  text-align   :    center;
   font-size     :    2.5rem;
	margin-bottom: 3rem;
  color:  #2c3e50;
}

.steps-grid   {
   gap: 2rem;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.step-item {
    background: white;
       padding: 2.5rem;
      border-radius: 15px;
       text-align    :   center;
     box-shadow: 0 5px 20px rgba(0,0,0,0.08);
       position: relative;
}

.step-number     {
    position: absolute;
    top: -25px;
    left    :    50%;
  transform: translateX(-50%);
  background: #e74c3c;
    color :      white;
   width: 50px;
  height: 50px;
	 border-radius: 50%;
   display: flex;
  align-items :center;
	 justify-content: center;
   font-size: 1.3rem;
    font-weight: 700;
}

.step-item h3 {
   margin-top  :    1rem;
    margin-bottom: 1rem;
   color: #2c3e50;
   font-size: 1.3rem;
}

.step-item p {
    color: #7f8c8d;
  line-height: 1.6;
}

.additional-resources {
   padding: 5rem 0;
}

.resources-layout {
   display  :   grid;
                    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.resources-content h2 {
   font-size: 2.5rem;
		 margin-bottom: 1.5rem;
	   color: #2c3e50;
}

.resources-content p   {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  color: #7f8c8d;
   line-height: 1.6;
}

.preparation-tips h4 {
    color: #3498db;
    margin-bottom: 1rem;
	font-size: 1.3rem;
}

.tips-list {
  list-style: none;
   padding: 0;
}

.tips-list li {
  padding: 0.8rem 0;
   padding-left: 2rem;
     position: relative;
  color: #7f8c8d;
    line-height: 1.5;
}

.tips-list li::before {
  content: '→';
   position: absolute;
  left: 0;
   color: #3498db;
  font-weight  :   600;
}

.resources-visual img {
    width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-reminder {
  padding: 4rem 0;
   background: #f8f9fa; 

}

.reminder-card {
  background: white;
   padding:       3rem;
  border-radius: 20px;
   text-align: center;
    max-width :    600px;
    margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reminder-card h3 {
	  color: #2c3e50;
   font-size: 2rem;
  margin-bottom: 1rem;
     }

.reminder-card p {
   font-size: 1.1rem;
   margin-bottom: 2rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-details {
  display: flex;
  justify-content: space-around;
    margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;


}

.contact-item {
  text-align: center;
}

.contact-item strong {
   display   :block;
     color :  #3498db;
    margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item span {
   color: #2c3e50;
    font-weight: 500;
}

.back-home-btn {
   display: inline-block;
    background: #3498db;
  color: white;
	padding: 1rem 2rem;
    text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3); 

}

.back-home-btn:hover  {
  background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}@media (max-width: 768px) {
    .about-intro h1,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .story-layout,
    .expertise-layout,
    .approach-layout,
    .resources-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .method-card,
    .step-item {
        padding: 2rem;
    }
    
    .value-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .intro-text,
    .thankyou-message {
        font-size: 1rem;
    }
    
    .method-number,
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .reminder-card {
        padding: 2rem;
    }
}.content-section {
	padding: 5rem 0;
}

.content-section h1 {
	   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;



}

.content-section h2 {
  font-size: 1.8rem;
	 color: #2c3e50;
  margin   :        2rem 0 1rem;
}

.content-section p {

   font-size: 1.1rem;
   color: #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.6;
     } 

.content-section ul {


    list-style-type   :   disc;
  margin: 1rem 0 2rem 2rem; 
	


}

.content-section li {
    font-size :   1.1rem;
   color: #7f8c8d;
    margin-bottom: 0.8rem;
}@media (max-width: 768px) {
    .content-section h1 {
        font-size: 2rem;
    }

    .content-section h2 {
        font-size: 1.5rem;
    }

    .content-section p,
    .content-section li {
        font-size: 1rem;
    }
}