* {
    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: #ffffff;
}

.header-section {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
    top: 0;
   width    :  100%;
   z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.header-section.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navigation-wrapper   {
       max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}  

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand-logo {
    height    : 45px;
  width: auto; 
	
	}

.nav-links {
   display: flex;
  gap: 30px;
}

.nav-item {
   text-decoration: none;
  color: #333;
   font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
                    color: #2c5aa0;
}

.nav-item.active::after {
  content: '';
    position: absolute;
  bottom   :    -5px;
	left    :  0;
  width: 100%;
   height: 2px;
   background-color: #2c5aa0;
}

.mobile-toggle {
  display: none;
    cursor     :    pointer;
  flex-direction: column;
  gap: 4px;
}

.burger-line
	{
  width :  25px;
  height: 3px;
   background-color: #333;
        transition:       all 0.3s ease;
}

.mobile-toggle.active .burger-line:nth-child(1) {

  transform: rotate(45deg) translate(6px, 6px);}

.mobile-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu    {
  display: none;
  flex-direction: column;
  background :       white;
   padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-nav-item {
	text-decoration: none;
   color: #333;
  padding  :   15px 0;
    border-bottom: 1px solid #f5f5f5;
  font-weight: 500; 

}

.content-wrapper {
  margin-top: 70px;
}

.hero-banner {
  padding  :    80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
  margin: 0 auto;
  grid-template-columns: 1fr 1fr;
    display: grid;
 max-width: 1200px;
  gap: 50px;
    align-items: center;
}

.main-heading
{
   font-size: 3.2rem;
   font-weight: 700;
    color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description 
 {
  font-size: 1.2rem;
  color: #666;
    margin-bottom: 30px;
  line-height: 1.6;
}

.hero-actions {
    display: flex;
  gap: 20px;
   flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
  font-weight:       600;
	transition: all 0.3s ease;
          display: inline-block;
}

.primary-button {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.secondary-button {
	         background: transparent;
   color     :       #2c5aa0;
  border: 2px solid #2c5aa0;
	}

.secondary-button:hover {
  background: #2c5aa0; 
	   color: white;
}

.hero-image {


   width: 100%;
    height: auto;
       border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);


}

.services-overview {
	padding: 100px 20px;
    background: white;
}

.section-container
{
   max-width: 1200px;
	margin: 0 auto;
}

.section-title {
    color: #1a1a1a;
  font-size: 2.5rem;
    text-align: center;
  margin-bottom: 60px;
        font-weight   :    700;
}

.services-grid		{
   display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
  background  :        white;
   border-radius: 15px;
 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-title {
   font-size: 1.5rem;
    font-weight  :        600;
	margin: 25px 25px 15px;
    color: #2c5aa0;
}

.service-text {


    padding: 0 25px 25px;
    color: #666;
    line-height:    1.6;


}

.methodology-section {
   background: #f8f9fa;
  padding: 100px 20px; 
	
}

.methodology-content {
  display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items  :   center;
}

.methodology-description {
   font-size: 1.1rem;
    color: #666;
   margin-bottom: 40px;
   line-height: 1.7;
}

.methodology-points {
    display: flex;
    flex-direction: column;
	gap     :25px;
}

.method-point
{
       padding: 20px;
  background: white;
        border-radius: 10px;
   border-left: 4px solid #2c5aa0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.point-title     {
    font-size :  1.2rem;
   font-weight: 600;
   color: #2c5aa0;
    margin-bottom: 8px;
}

.point-description {
       color: #666;
   line-height: 1.5;
	}

.methodology-image {
    width: 100%;
	height  :   auto;
    border-radius     :        12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section {
        padding: 80px 20px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
          color: white;
    text-align: center;
}

.cta-title 
 {
   font-size   :  2.5rem;
   font-weight: 700;
   margin-bottom: 20px;
}

.cta-description {
    margin-right: auto;
  margin-left: auto;
  max-width: 600px;
  margin-bottom: 30px;
    opacity: 0.9;
		font-size: 1.2rem;
}

.cta-button {
  display   :    inline-block;
 padding: 18px 40px;
	 background: white;
    color: #2c5aa0;
  text-decoration: none;
   border-radius: 8px;
     font-weight   :600;
	 font-size: 1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.cta-button:hover    {
  transform: translateY(-2px); 
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.contact-section {
   padding: 100px 20px;
     background: white;
}

.contact-content {

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
    margin-top: 50px;

}

.contact-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
    margin-bottom :     30px;
	 color: #2c5aa0;
}

.contact-details {
   display: flex;
       flex-direction: column;
   gap: 25px;
}

.contact-item strong {
	   color: #2c5aa0;
    display: block;
   margin-bottom: 5px;
	}

.contact-item p {
   color: #666;
    line-height   :    1.5;
}

.contact-form {
  display: flex;
       flex-direction: column;
     gap: 20px;
}

.form-group {
	  display: flex;
    flex-direction: column;
     }

.form-input,
.form-select,
.form-textarea {
   padding: 15px;
   border: 2px solid #e1e5e9;
   border-radius: 8px;
    font-size: 1rem;
  transition  :border-color 0.3s ease;
  background: white;
	
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus{
    outline  :        none;
    border-color: #2c5aa0;
     }

.form-input.error,
.form-select.error,
.form-textarea.error

{
    border-color: #dc3545;
}

.submit-button {
    padding: 15px 30px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
  color: white;
   border: none;
    border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
	 cursor: pointer;
               transition: all 0.3s ease;
}

.submit-button:hover

{


  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);

}

.footer-section {
  background: #1a1a1a;
  color: white;
    padding    :      60px 20px 20px;}

.footer-container {


          max-width: 1200px;
    margin: 0 auto;

}

.footer-content {
    display: grid;
               grid-template-columns: 1fr 2fr;
   gap: 50px;
       margin-bottom: 40px;
}

.footer-logo {
  height: 40px;
  width: auto;
   margin-bottom: 20px;
  filter: brightness(0) invert(1); 

}

.footer-description {
	  line-height: 1.6;
    max-width: 300px;
   color: #ccc;

}

.footer-links {

	   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;
	}


.footer-heading {
   font-size: 1.2rem;
                    font-weight: 600;
    margin-bottom   :        20px;
   color: white;
}

.footer-nav {
   display: flex;
  flex-direction: column;
         gap: 10px; 

}

.footer-link {
  color: #ccc;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
   color: #2c5aa0;
}

.contact-info-footer {
  display: flex;
    flex-direction: column;
   gap: 10px;
}

.footer-contact  {
  color: #ccc;
    line-height     :    1.5;
}

.footer-bottom {
   border-top  :     1px solid #333;
  padding-top: 20px;
    text-align: center;
}

.copyright {
   color: #999;
  font-size:   0.9rem;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-banner {
        padding: 60px 15px;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 60px 15px;
    }
    
    .cta-section {
        padding: 60px 15px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-card {
        margin: 0 auto;
        max-width: 350px;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    padding: 120px 20px 80px;
  color: white;
   text-align: center;
}

.about-main-title {
   line-height: 1.1;
  font-size    :    3.5rem;
  font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
   font-size  : 1.3rem; 
	   opacity: 0.9; 
	    font-weight: 300;
}

.mission-section{
   padding: 100px 20px;
  background: white;
}

.mission-content  {

	display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
	align-items: center;}

.section-heading {
  font-size: 2.3rem;
  font-weight: 700;
   margin-bottom: 30px;
    color:#1a1a1a;
}

.center-text {
  text-align: center;
}

.mission-description {
    font-size: 1.1rem;
  line-height: 1.7;
    margin-bottom: 25px;
  color: #555;
}

.mission-image {
  width: 100%;
   height: auto;
    border-radius  : 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.values-section {
	padding: 100px 20px;
      background: #f8f9fa;
}

.values-grid {
   display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:   35px;
   margin-top: 60px;


}

.value-item {
       background: white;
  padding: 40px 30px;
	border-radius: 12px;
   text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
          opacity: 0;
  transform: translateY(30px);
	}

.value-item.animate-in {
  -ms-transform: translateY(0);
    opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}

.value-item:hover {
     transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
	}

.value-title {
  font-size: 1.4rem;

	  font-weight: 600;

	   color: #2c5aa0;

	    margin-bottom: 15px;
}

.value-description {
   color     :     #666;
   line-height: 1.6;
}

.expertise-section {
        padding: 100px 20px;
  background: white;
}

.expertise-content {
	     display: grid;
   grid-template-columns: 1fr 1.2fr;
  gap     :  60px;
   align-items: flex-start;
     }

.expertise-image    {
  width: 100%;
   height: auto;
   border-radius :    15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.expertise-intro {
   font-size: 1.1rem;
  color: #555;
    line-height    :    1.7;
    margin-bottom: 40px;
}

.expertise-areas {
  display: flex;
     flex-direction: column;
    gap: 25px;
}

.expertise-area {
     padding: 20px;
	border-left: 4px solid #2c5aa0;
   background: #f8f9fa;
   border-radius: 8px;
}

.area-title {
    font-size: 1.2rem;
   font-weight: 600;
    color     :   #2c5aa0;
    margin-bottom: 10px;
}

.area-description {

   color: #666;
  line-height: 1.5;
	}

.approach-section {
    padding   :        100px 20px;
   background :        #f8f9fa;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
	margin-top: 60px;
}

.approach-step {
	text-align: center;
  position    :      relative;
   opacity: 0;
  transform: translateY(20px);
    transition: all 0.5s ease;
}

.approach-step.animate-in {
    opacity: 1;
  transform: translateY(0);
}

.step-number {
   width   :      60px;
   height: 60px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
  color:  white;
   border-radius: 50%;
   display :    flex;
    align-items: center;
    justify-content: center;
    font-size    :   1.5rem;
     font-weight: 700;
   margin: 0 auto 25px;
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.step-title {
   font-size: 1.3rem;
  font-weight: 600;
   color: #2c5aa0;
    margin-bottom: 15px;
}


.step-description {
    color: #666;
    line-height: 1.6;
}

.experience-section {
   padding: 100px 20px;
  background: white; 

}

.experience-intro {
    font-size: 1.1rem;
   color: #555;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.7;
	
}

.stats-grid   {
    display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
  margin-top: 40px;
}

.stat-item {
   text-align: center;
  opacity: 0;
  transform: scale(0.8);
   transition: all 0.6s ease; 
	
}

.stat-item.animate-in {
    opacity    :     1;
  transform: scale(1);
     }

.stat-number     {
  color    :#2c5aa0;
   font-weight: 700;
   display: block;
 font-size: 3rem;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
   font-weight: 500;
}

.philosophy-section {
   padding: 100px 20px;
    background: #f8f9fa;
}

.philosophy-wrapper  {
   display: grid;
   grid-template-columns     :  1fr 1.2fr;
   gap: 60px;
    align-items: center;
}

.philosophy-image {
	width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.philosophy-quote {
    font-size: 1.3rem;
   font-style: italic;
   color: #2c5aa0;
   border-left: 4px solid #2c5aa0;
  padding-left: 25px;
  margin: 30px 0;
    line-height: 1.6;
}

.philosophy-text {
   font-size: 1.1rem;
    color: #555;
   line-height: 1.7;
    margin-bottom: 20px;
}

.commitment-section {
  padding   : 100px 20px;
   background:white;
}

.commitment-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
      margin-top: 60px; 
	
}

.commitment-item	{
       text-align: center;
   padding  :  30px;
  border-radius: 12px;
   background: #f8f9fa;
    transition: all 0.3s ease;

}

.commitment-item:hover {

		 background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.commitment-title
	{
  font-size: 1.3rem;
  font-weight:      600;
          color: #2c5aa0;
  margin-bottom: 15px;
}

.commitment-description  
  {
    color: #666;
    line-height: 1.6;
}

.thankyou-hero   {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
         padding: 120px 20px;
 color    :  white;
   text-align: center;
    min-height: 60vh;
  display: flex;
   align-items: center;
}

.thankyou-container {
    max-width: 800px;
  margin: 0 auto; 

}

.success-icon {

    margin-bottom: 30px;


}

.checkmark-circle {
  width: 100px;
  height: 100px;
   border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto;
    display: flex;
  align-items: center;
  justify-content:  center;
    animation: pulse 2s infinite;
}


.checkmark {
  width: 30px;
  height     :  15px;
   border: 4px solid white;
  border-top: none;
   border-right  :     none;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-title {
  font-size :        3rem;
   font-weight: 700;
    margin-bottom: 20px;
}

.thankyou-message {
	 font-size: 1.2rem;
  opacity :0.9;
   line-height: 1.6;
}

.next-steps-section {

    padding: 100px 20px;
   background:white;


}

.steps-timeline {
    max-width: 800px;
   margin: 60px auto 0;
}

.timeline-item {
               display: flex;
	gap: 30px;
  margin-bottom: 50px;
   opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline-item.animate-in {
   opacity: 1;
  transform: translateX(0);
}

.timeline-icon {
  width: 50px;
	 height: 50px;
   background  :     #2c5aa0;
	 color: white;
    border-radius: 50%;
  display: flex;
         align-items: center;
	justify-content: center;
    font-weight: 600;
  flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-title {
   font-size: 1.3rem;
  font-weight: 600;
  color: #2c5aa0;
  margin-bottom: 10px;
}

.timeline-description {
   color: #666;
    line-height: 1.6;
 margin-bottom: 8px;
}

.timeline-time {
    font-size: 0.9rem;
   color: #999;
    font-style: italic;
} 

.resources-section {
    padding: 100px 20px;
   background: #f8f9fa;
}

.resources-intro {
	 text-align: center;
  font-size: 1.1rem;
    color: #555;
    margin-bottom: 60px;
  line-height: 1.7;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 40px;
   margin-top: 40px; 

}

.resource-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0;
  transform: translateY(20px);
}

.resource-card.animate-in {
   opacity: 1;
  transform: translateY(0);
}

.resource-image-wrapper  {
  height: 200px;
   overflow   :        hidden;
}

.resource-image {
   width: 100%;
   height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.resource-card:hover .resource-image {
  transform: scale(1.05); 

}

.resource-content {
   padding: 25px;
}

.resource-title {
   font-size: 1.3rem;
  font-weight: 600;
   color: #2c5aa0;
  margin-bottom: 15px;
}

.resource-description {
    color :#666;
          line-height: 1.6;
    margin-bottom    :      20px;
}

.resource-meta {

  display: flex;
				gap: 15px;
     }

.resource-type,
.resource-size {
   font-size: 0.9rem;
        color: #999;
    padding: 5px 10px;
   background: #f8f9fa;
   border-radius: 4px;
}

.testimonial-section {
    padding: 100px 20px;
	background: white;
}

.testimonials-wrapper {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 40px;
  margin-top: 60px;
} 

.testimonial-item {
   background: #f8f9fa;
  padding: 40px;
   border-radius: 15px;
    border-left:       5px solid #2c5aa0;
    opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
	}

.testimonial-item.animate-in {
   opacity: 1;
  transform: translateY(0);
}

.testimonial-text {


   font-size: 1.1rem;

	   color    : #333;

	  line-height: 1.7;

		 margin-bottom: 25px;

	   font-style: italic;
	}

.testimonial-author {
   display    :  flex;
	 flex-direction: column;
	 gap: 5px;
}

.author-name    {
       color: #2c5aa0;
    font-size: 1.1rem;
	
}

.author-role {
    color :    #999;
  font-size: 0.9rem;
}

.contact-reminder {
   padding: 80px 20px;
   background: #f8f9fa;
	
}

.reminder-content {

  text-align: center;
   max-width: 800px;
    margin: 0 auto;


}

.reminder-title {
	font-size: 2.2rem;
    font-weight: 700;
   color: #2c5aa0;
    margin-bottom: 20px;
}

.reminder-text {
    font-size: 1.1rem;
    color: #555;
     margin-bottom: 40px;
        line-height: 1.7;
}

.contact-options {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;
	}

.contact-option {

    text-align :     center;
  padding:  30px;
    background: white;
	 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-method {
   margin-bottom: 10px;
  color: #2c5aa0;
  font-size: 1.2rem;
   font-weight: 600;
	}

.contact-detail {
  color   : #333;
    margin-bottom: 10px;
  line-height: 1.5;
}

.availability {
	font-size: 0.9rem;
  color: #999;
}

.return-home {
  padding: 60px 20px;
    background: white;
   text-align  :       center;
}

.return-content {
  display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap  :  wrap;
}

.return-button,
.learn-more-button {
    padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition     :all 0.3s ease;
  display: inline-block;
}

.return-button {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.return-button:hover    {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
}

.learn-more-button     {
    background: transparent;
   color: #2c5aa0;
   border: 2px solid #2c5aa0;
}

.learn-more-button:hover {
    background: #2c5aa0;
  color: white;
}

.redirect-banner {
      position: fixed;
  bottom: 20px;
   left: 50%;
  transform: translateX(-50%);
  background: rgba(44, 90, 160, 0.95);
	color: white;
	padding: 15px 25px;
    border-radius: 8px;
  z-index: 1000;
          animation: slideUp 0.5s ease;
}

.redirect-link {
   color: white;
        text-decoration: underline;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-content,
    .expertise-content,
    .philosophy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .resources-grid,
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .return-content {
        flex-direction: column;
        align-items: center;
    }
    
    .return-button,
    .learn-more-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 15px 60px;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .values-grid,
    .approach-grid,
    .commitment-grid,
    .contact-options {
        grid-template-columns: 1fr;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .thankyou-title {
        font-size: 1.8rem;
    }
}