*

{
   margin: 0;

	  padding: 0;

	   box-sizing: border-box;
}  

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2d3436;
  background: #ffffff;
}

.main-header {
  background :        #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
   z-index: 1000;
  transition: all 0.3s ease;
}

.main-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
 padding: 1rem 2rem;
                    display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-zone .logo-link {
	 display: block;
}

.brand-logo {
	  height: 48px;
  width: auto;}

.primary-nav {
			 display :flex;
    gap: 2.5rem;
    align-items: center;
	

}

.nav-item {
    color: #2d3436;
   text-decoration :     none;
	 font-weight: 500;
   font-size :      15px;
   transition: color 0.3s;
   position: relative;
}

.nav-item:hover {
   color: #0984e3;


}

.nav-item::after {
  content: '';
        position: absolute;
  bottom: -5px;
   left: 0;
        width: 0%;
   height: 2px;
    background     :       #0984e3;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
         width: 100%;
}

.nav-highlight {
	background: #0984e3;

		 color: #fff;

		 padding: 0.6rem 1.4rem;

	   border-radius: 6px;
}

.nav-highlight::after {
    display: none;
}

.nav-highlight:hover {
    background:      #0770c7;
    color: #fff;
}

.menu-toggle {
  display: none;
   flex-direction: column;
  gap: 5px;
  background: transparent;
	border: none;
    cursor: pointer;
   padding: 8px;
}



.toggle-line {
  height: 3px;
  background: #2d3436;
    width: 28px;
  transition: all 0.3s ease;
   border-radius  :2px;
}

.menu-toggle.active .toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-block {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    color: #fff;}

.hero-content {
        max-width: 1280px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}


.hero-heading {
	 font-size: 3.2rem;
 line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-description {

	    font-size: 1.15rem;
  margin-bottom  :        2.5rem;
    line-height: 1.7;
    opacity :    0.95;}

.hero-actions {
  display   :   flex;
   gap: 1.2rem;
	}

.primary-btn, .secondary-btn {
  padding: 0.95rem 2rem;
  text-decoration: none;
  border-radius: 7px;
   font-weight: 600;
    transition: all 0.3s ease;
               display :       inline-block;
  font-size: 16px;
}

.primary-btn   {
   background: #fff;
         color     :     #667eea;
}

.primary-btn:hover	{
  background: #f1f3f5;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15); 
}

.secondary-btn {
    background: transparent;
  color: #fff;
   border: 2px solid #fff;
}

.secondary-btn:hover {

  background: rgba(255,255,255,0.1);
     transform: translateY(-2px);}

.hero-image {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);

}

.intro-section {
	padding: 5rem 2rem;
   background: #f8f9fa;
}

.intro-container {
     max-width: 1280px;
        margin: 0 auto;
	 display     : grid;
  grid-template-columns    :1.2fr 1fr;
  gap: 3.5rem;
    align-items  :      center;
}

.section-title {
  font-size: 2.4rem;
   margin-bottom: 1.5rem;
  color: #2d3436;
   font-weight: 700;
}

.intro-paragraph {
     font-size: 1.05rem;
    margin-bottom: 1.3rem;
   color: #636e72;
  line-height: 1.8;
}

.intro-img {


   width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.services-showcase     {
  padding: 5rem 2rem;
          background: #ffffff;
}

.services-wrapper {
   max-width: 1280px;
          margin: 0 auto;
}

.services-heading {
    font-size: 2.6rem;
    text-align: center;
  margin-bottom: 3.5rem;
       color: #2d3436;
  font-weight: 700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
	 background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 10px;
  transition    :   all 0.3s ease;
  border: 1px solid #e9ecef;

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.1);
               border-color: #0984e3;
}

.service-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3436;
   font-weight   :600;
}

.service-desc {


    color: #636e72;
  line-height: 1.7;
   font-size: 1rem;

}

.methodology-block   {
	 padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.methodology-container {
    max-width: 1280px;
  margin :    0 auto;
}

.methodology-title {
  font-size: 2.5rem;
    text-align: center;
	margin-bottom: 3rem;
  color: #2d3436;
  font-weight: 700;
}

.methodology-layout {
    grid-template-columns: 1fr 1.3fr; 
    display   :  grid; 
    gap: 3rem; 
         align-items   :        start;
}

.method-image {
   width: 100%;
    border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        position  : sticky;
   top: 100px;
}

.method-step {

	  margin-bottom: 2.5rem;
	}

.step-heading {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
   color: #2d3436;
                    font-weight: 600;
}

.step-text		{
	 color: #636e72;
    line-height: 1.8;
   font-size   :        1rem;
}

.cta-banner {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding: 4.5rem 2rem;
  color: #fff;
   text-align: center;


}

.cta-content {
  max-width: 800px;
          margin: 0 auto;
}

.cta-heading {
   font-size: 2.8rem;
         margin-bottom: 1.2rem;
  font-weight: 700;
}

.cta-text {
	    font-size    : 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-button {


    background: #fff;
  color: #f5576c;
   padding: 1rem 2.5rem;
   text-decoration: none;
    border-radius: 7px;
    font-weight:600;
  display: inline-block;
	 transition: all 0.3s ease;
	font-size: 1.05rem;

}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.benefits-area  {
       padding: 5rem 2rem;
   background: #ffffff;
}

.benefits-wrapper {
   max-width  :1280px;
  margin   :     0 auto;
}

.benefits-title {
   font-size: 2.5rem;
   text-align: center;
        margin-bottom: 3.5rem;
    color: #2d3436;
		 font-weight: 700; 
	
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2.5rem;
}

.benefit-item {
  padding: 2rem;
       background: #f8f9fa;
     border-radius: 8px;
     border-left: 4px solid #0984e3;
}

.benefit-heading {
	 font-size: 1.4rem;
   margin-bottom: 1rem;
    color: #2d3436;
   font-weight: 600;


}

.benefit-description {
  color    :     #636e72;
    line-height: 1.7;
   font-size: 1rem;
}

.workspace-showcase {
  padding: 5rem 2rem;
    background: #f8f9fa;
}

.workspace-container {

	  max-width: 1280px;
   margin  :   0 auto;
	display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :     3.5rem;
  align-items  :      center;}

.workspace-heading {
    font-size: 2.3rem;
  margin-bottom: 1.5rem;
		 color     :    #2d3436;
          font-weight: 700;
}

.workspace-text  
  {
 font-size  :   1.05rem; 
    margin-bottom: 1.3rem; 
    color   :       #636e72; 
  line-height: 1.8;
}

.workspace-photo{
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.approach-section    {
	background: #ffffff;
  padding: 5rem 2rem;
}

.approach-wrapper {
  margin: 0 auto;
    max-width: 1280px;
}

.approach-title {
    font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
    color: #2d3436;
    font-weight: 700;
}



.approach-content
	{
   display: grid;
	grid-template-columns: 1fr 1.2fr;
   gap: 3rem;
   align-items: start;
}

.approach-img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
   position: sticky;
   top    :100px;
}

.approach-paragraph {
    font-size: 1.05rem;
   margin-bottom: 1.5rem;
    color: #636e72;
     line-height: 1.8;
}

.contact-zone {
   padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #e9ecef); 
	
}

.contact-container {
	 max-width: 1280px;
  margin: 0 auto;
}

.contact-intro


{
    text-align: center;
    margin-bottom: 3.5rem;
}

.contact-heading {


  font-size: 2.6rem;
	         margin-bottom: 1rem;
	      color: #2d3436;
	   font-weight: 700;
	}

.contact-subtext {
	font-size: 1.1rem;
	  color: #636e72;
	    max-width: 700px;
	  margin: 0 auto;
}

.contact-layout {
   display: grid;
   grid-template-columns: 1.5fr 1fr;
  gap: 3rem;


}

.contact-form {
     background : #fff;
      padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
   display: block;
  margin-bottom: 0.5rem;
    font-weight: 600;
  color: #2d3436;
   font-size: 14px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
   padding: 0.85rem;
               border: 1px solid #dfe6e9;
  border-radius: 6px;
   font-size: 15px;
  font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	outline: none;
       border-color: #0984e3;
}

.form-textarea {

	      resize: vertical;
	}

.form-submit {
  background     :    #0984e3;
   color :   #fff;
  padding: 1rem 2rem;
  border: none;
    border-radius: 7px;
    font-size: 16px;
  font-weight: 600;
   cursor: pointer;
    width :  100%;
   transition     : all 0.3s ease;
}

.form-submit:hover {
  background: #0770c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 132, 227, 0.3);
}

.contact-info-area {
	display: flex;
   flex-direction :     column;
   gap    :      2rem;
}

.info-block


{


   background: #fff;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
	}

.info-heading {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #2d3436;
  font-weight: 600;
}

.info-text {
  color: #636e72; 
   line-height: 1.8; 
  font-size: 1rem;
}

.site-footer {
  background: #2d3436;
   color: #b2bec3;
   padding: 3.5rem 2rem 2rem;
}  

.footer-container    {
   max-width: 1280px;
   margin   :        0 auto;
} 

.footer-top {
   display: grid;

  grid-template-columns: 1.5fr 1fr 1fr 1fr;

  gap: 2.5rem;

       margin-bottom: 3rem;

   padding-bottom: 2.5rem;

  border-bottom: 1px solid #636e72;
}



.footer-logo {
  height: 42px;
     margin-bottom     :1rem;
  filter: brightness(0) invert(1); 

}

.footer-tagline {
   font-size: 14px;
    line-height: 1.7;
    color: #b2bec3;
}

.footer-nav-title, .footer-legal-title, .footer-contact-title {
   font-size: 1.1rem;
       margin-bottom    : 1rem;
  color: #fff;
        font-weight: 600;
}  

.footer-link {
  display: block;

  color: #b2bec3;

  text-decoration: none;

    margin-bottom: 0.7rem;

  font-size: 14px;

  transition: color 0.3s;
}

.footer-link:hover {
       color: #fff;
     }

.footer-address, .footer-phone{
 font-size    :  14px;
                    line-height: 1.7;
        color   :   #b2bec3;
	 margin-bottom  :       0.5rem; 

}

.footer-bottom	{
   text-align: center;
}

.footer-copyright {
  font-size: 14px;
  color: #b2bec3;

}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        display: none;
        gap: 0;
    }
    
    .primary-nav.active {
        display: flex;
    }
    
    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #e9ecef;
        width: 100%;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-highlight {
        background: transparent;
        color: #0984e3;
        padding: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .intro-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-layout {
        grid-template-columns: 1fr;
    }
    
    .method-image {
        position: static;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .workspace-container {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .approach-img {
        position: static;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.page-hero-area {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
     padding: 4rem 2rem;
      text-align: center;
                  color: #fff;
}

.page-hero-content

{
          max-width: 900px;
    margin: 0 auto;
}

.page-main-title {
      margin-bottom: 1rem;
	font-size: 3rem;
               font-weight: 700;}

.page-hero-text {
   font-size: 1.2rem;
       opacity     :  0.95;
      line-height    :    1.7;

}

.story-section {
    padding    :        5rem 2rem;
        background: #ffffff;
}

.story-wrapper {
  max-width: 1280px;
  margin: 0 auto;
   display: grid;
	 grid-template-columns: 1.3fr 1fr;
  gap: 3.5rem;
        align-items  : center;
}

.story-heading {
    font-size: 2.4rem;
  margin-bottom   :      1.5rem;
  color: #2d3436;
    font-weight: 700;
}

.story-para {


    font-size: 1.05rem;
  margin-bottom    :    1.4rem;
    color: #636e72;
   line-height: 1.8;
     }

.story-img		{
    width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}  

.mission-vision-area {
    background :       #f8f9fa;
        padding: 5rem 2rem;
}

.mission-vision-container {
    max-width: 1280px;
   margin     :0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
	
	}

.mission-box, .vision-box {
   background  :       #fff;
  padding: 2.5rem;
  border-radius:  10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.mission-title, .vision-title {
	 font-size: 2rem;
  margin-bottom: 1.2rem;
  color: #2d3436;
    font-weight: 700;
}

.mission-text, .vision-text {
    font-size: 1.05rem;
  margin-bottom: 1.2rem;
    color: #636e72;
    line-height: 1.8;
}  

.values-area {
    padding: 5rem 2rem;

	  background: #ffffff;
} 

.values-container {

    max-width: 1280px; 
	    margin: 0 auto;


}

.values-heading {
  font-size: 2.6rem;
    text-align   :  center;
   margin-bottom: 3.5rem;
   color  : #2d3436;
	 font-weight: 700;
}

.values-layout {

    display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2rem;


}

.value-card
	{
    border-left: 4px solid #667eea;
   padding:2.5rem;
  transition: all 0.3s ease;
   border-radius :      10px;
   background: #f8f9fa;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);


}

.value-name    {
  font-size: 1.5rem;
  margin-bottom: 1rem;
    color: #2d3436;
    font-weight: 600;
}

.value-description {
  color     :       #636e72;
          line-height: 1.7;
   font-size: 1rem;
}

.approach-philosophy {
  padding  : 5rem 2rem;
  background: #f8f9fa;
}

.philosophy-wrapper {
    max-width: 1280px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1.2fr;
	gap :  3.5rem;
	 align-items: start;
}

.philosophy-img {
    width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
       position: sticky;
  top:       100px;
}  

.philosophy-heading {
    font-size: 2.3rem;
   margin-bottom     : 1.5rem;
    color   :   #2d3436;
  font-weight: 700;


}

.philosophy-paragraph {
   font-size :        1.05rem;
  margin-bottom: 1.4rem;
  color :      #636e72;
  line-height: 1.8;
}

.experience-showcase {
   padding   : 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.experience-container {
  max-width: 1280px;
               margin:     0 auto;
}

.experience-heading {
    font-size: 2.6rem;
   text-align: center;
  margin-bottom :      3.5rem;
				 font-weight     :      700;
}

.experience-grid {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.experience-stat {
   text-align: center;
    padding: 2rem;
  background: rgba(255,255,255,0.1);
   border-radius: 10px;
  backdrop-filter: blur(10px);
}

.stat-number {

  font-size: 3rem;
    font-weight: 700;
      margin-bottom: 0.8rem;
	

}

.stat-label {
    opacity: 0.95;

        font-size: 1rem;

    line-height: 1.5;
}

.expertise-section {
      padding: 5rem 2rem;
     background: #ffffff;
}

.expertise-wrapper {
   max-width: 1280px;
	margin: 0 auto;
  display     :  grid;
   grid-template-columns: 1.3fr 1fr;
	gap: 3.5rem;
	align-items: center;
}

.expertise-title {

	    font-size: 2.4rem;
  margin-bottom: 1.5rem;
    color: #2d3436;
  font-weight: 700;
}

.expertise-para {
	          font-size: 1.05rem;
  margin-bottom: 1.4rem;
    color  :        #636e72;
   line-height: 1.8;
	}

.expertise-image {
          width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.commitment-area {

   padding: 5rem 2rem;
    background: #f8f9fa; 
	
     }

.commitment-container {
	max-width: 1280px;
  margin: 0 auto;

}

.commitment-heading{
    font-size: 2.6rem;
   text-align: center;
        margin-bottom: 2rem;
    color: #2d3436;
    font-weight: 700;
}

.commitment-text {
   font-size: 1.15rem;
    text-align :   center;
   max-width  :   900px;
                    margin: 0 auto 3rem;
   color: #636e72;
  line-height: 1.8;
}

.commitment-promises   {
    display     :      grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.promise-item {
  background: #fff;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.promise-heading {
	font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color   : #2d3436;
   font-weight: 600; 

}

.promise-text {
  color: #636e72;
	 line-height: 1.7;
  font-size  :     1rem; 

}

.journey-cta {
   padding: 4.5rem 2rem;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color    :        #fff;
    text-align: center;
}

.journey-cta-content {
  max-width   :      800px;
   margin: 0 auto;
}

.journey-cta-heading {
      font-size: 2.8rem;
					margin-bottom: 1.2rem;
  font-weight: 700;
}

.journey-cta-text {
    font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.95;
		 line-height: 1.7;
}

.journey-cta-btn {
   background   :    #fff;
    color   :#f5576c;
     padding   :        1rem 2.5rem;
	 text-decoration: none;
   border-radius   :    7px;
   font-weight: 600;
	display: inline-block;
   transition: all 0.3s ease;
   font-size: 1.05rem;
}

.journey-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.thankyou-main {
  padding: 5rem 2rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
		 min-height     :     70vh;
}

.thankyou-wrapper {
    max-width: 1280px;
    margin:      0 auto;
	display: grid;
   grid-template-columns: 1.3fr 1fr;
    gap   :        4rem;
   align-items: center;
}

.thankyou-content {
 text-align: left; 
	
}

.success-icon-area {
	 margin-bottom: 2rem;
}

.success-checkmark {
   width:80px;
    height: 80px;
    position: relative;
}

.check-circle {


    width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   animation: scaleIn 0.5s ease-in-out;}

.check-mark {
	 position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
   width: 35px;
    height: 20px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
  animation: drawCheck 0.5s ease-in-out 0.3s forwards;
       opacity: 0;
}@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes drawCheck {
    to { opacity: 1; }
}.thankyou-heading {
  font-size: 2.8rem;
  margin-bottom: 1.2rem;
   color: #2d3436;
   font-weight    :700;


}

.thankyou-message {
  margin-bottom: 3rem;
  color: #636e72;
    font-size: 1.15rem;
	line-height: 1.8;
}

.next-steps-area {
   margin-bottom  :        3rem;
}  

.next-steps-title {
                    font-size: 1.8rem;
   margin-bottom: 2rem;
    color: #2d3436;
   font-weight   :  600;
}

.steps-list {
	display: flex;
   flex-direction: column;
		gap: 1.5rem;
}

.step-item {
  display: flex;
   gap: 1.5rem;
  align-items: start;
	
}

.step-number {
	       width: 45px;
  height:     45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
    border-radius: 50%;
  display: flex;
    align-items: center;
	justify-content   :   center;
	font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;}  

.step-details {
	   flex: 1;}

.step-title {
	 font-size: 1.2rem;
    margin-bottom: 0.5rem;
  color: #2d3436;
   font-weight: 600;
}

.step-description {
  font-size: 1rem;
  color: #636e72;
  line-height: 1.7;
}

.thankyou-actions {
	display: flex;
	 gap: 1.2rem;
   margin-bottom: 2.5rem;
}

.thankyou-btn-primary, .thankyou-btn-secondary {
   padding   :      0.95rem 2rem;
   text-decoration: none;
	border-radius: 7px;
	font-weight     :   600;
   transition: all 0.3s ease;
   display: inline-block;
	font-size     :     16px;


}

.thankyou-btn-primary {
  background: #0984e3;
  color :    #fff;
} 

.thankyou-btn-primary:hover {
    background: #0770c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(9, 132, 227, 0.3);
}

.thankyou-btn-secondary {
    background: transparent;
        color: #0984e3;
   border: 2px solid #0984e3; 
	
}

.thankyou-btn-secondary:hover {
   background: #0984e3;
   color    :       #fff;
  transform: translateY(-2px); 

}

.additional-info {

   background: #f8f9fa;
  padding     :    1.5rem;
    border-radius   : 8px;
   border-left: 4px solid #667eea;

}

.info-text {
   font-size: 1rem;
  color: #636e72;
    margin-bottom: 0.5rem;
}

.contact-phone {
  font-size: 1.3rem;
      color:      #2d3436;
                    font-weight: 700;

} 

.thankyou-image {
	width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.testimonial-preview {
   padding: 5rem 2rem;
  background: #ffffff;
}

.testimonial-container {
  max-width: 1280px;
  margin: 0 auto;
} 

.testimonial-heading {
  font-size: 2.5rem;
  text-align: center;
        margin-bottom: 3rem;
    color: #2d3436;
  font-weight  :        700;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap :2rem;
}

.testimonial-card {
    background     :   #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 1rem;

	   color: #636e72;

	    line-height: 1.7;

	    margin-bottom: 1.5rem;

	    font-style: italic;
}

.testimonial-author {
                    font-size  :      0.95rem;
    color: #2d3436;
     font-weight  :        600;
}@media (max-width: 768px) {
    .page-main-title {
        font-size: 2.2rem;
    }
    
    .story-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
    }
    
    .philosophy-wrapper {
        grid-template-columns: 1fr;
    }
    
    .philosophy-img {
        position: static;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expertise-wrapper {
        grid-template-columns: 1fr;
    }
    
    .commitment-promises {
        grid-template-columns: 1fr;
    }
    
    .thankyou-wrapper {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.policySection 
 {
    padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
        font-weight :  700;
}

.policyContainer p {
	color: #7f8c8d;

	  margin-bottom: 1.5rem;

	  line-height: 1.7;

	    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}