*
	{
   margin: 0;

   padding :     0px;

  box-sizing: border-box;
}

body {
	  font-family: 'Arial', sans-serif;
  line-height: 1.6;
   color     :    #2c2c2c;
   background: #fafafa;
	}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
          top: 0;
  width: 100%;
    z-index: 1000;
    padding   :1rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
	display: flex;
    justify-content:space-between;
         align-items:      center;
    padding: 0 2rem;
}

.company-logo {
   height: 45px;
   transition: transform 0.3s ease;
       width: auto;
}

.company-logo:hover


{
  transform: scale(1.05);
}

.nav-menu {
                    display   :       flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a   {
  text-decoration: none;
     color: #333;
   	font-weight: 500;
     font-size: 1.1rem;
       transition: color 0.3s ease;
     position    :      relative;
}

.nav-menu li a::after  {
  content: '';
	position    :        absolute;
  bottom: -5px;
   left: 0;
  width     :      0%;
	 height: 2px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  transition: width 0.3s ease;
}

.nav-menu li a:hover {
  color: #e74c3c;
}

.nav-menu li a:hover::after {
   width: 100%;
}

.burger-menu {

	    display: none;
  flex-direction: column;
   cursor: pointer;
   gap: 4px;


}

.burger-menu span {
  width:25px;
    height: 3px;
  background: #333;
  transition: 0.3s;
}

.hero-section {
 min-height: 100vh;
  display: flex;
    align-items: center;
  padding: 120px 2rem 4rem;
    max-width: 1200px;
    margin  : 0 auto;
   gap: 4rem;
}

.hero-content {

	  flex: 1;
	}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight   : bold;
  color:#2c3e50;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
   color: #666;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button, .cta-button, .submit-button {
  padding: 1rem 2rem;

	border-radius: 8px;

  text-decoration: none;

    font-weight: 600;

    font-size: 1.1rem;

  transition: all 0.3s ease;

  border: none;

  cursor: pointer;

               display: inline-block;
}

.primary-button, .cta-button, .submit-button {
  background: linear-gradient(135deg, #e74c3c, #c0392b);

  color: white;

  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primary-button:hover, .cta-button:hover, .submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.secondary-button {
 background: transparent;
  color: #e74c3c;
    border: 2px solid #e74c3c;
}  

.secondary-button:hover {
   background: #e74c3c;
    color: white;
  transform: translateY(-2px);
}

.hero-visual {
    flex: 1;
	}

.hero-image {
    width: 100%;

	    height: auto;

		border-radius: 15px;

	  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

	  transition: transform 0.3s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.container {
   max-width: 1200px;
   margin: 0 auto;
         padding: 0 2rem;


} 

.features-section {
    padding: 5rem 0;
    background: white;
}

.features-section h2    {
	text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 3rem;
}

.features-grid {

		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap :       2.5rem;
  margin-top: 3rem;}

.feature-card {
   background: #fff;
   padding    :    2.5rem;
     border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card h3 {
      font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 1rem;
	}

.feature-card p {
   color: #666;
  line-height: 1.7;
}

.services-section {
                    padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.services-section h2 {
   text-align: center;

   font-size   :  2.8rem;

   color: #2c3e50;

  margin-bottom  :   4rem;
}

.services-layout {
  display   :  flex;
  flex-direction: column;
	gap: 4rem;
}

.service-item {
    display: flex;
  align-items     :  center;
   gap: 3rem;
	background: white;
   padding     :        2.5rem;
       border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-item.reverse 
 {
  flex-direction: row-reverse;
}

.service-img {
    width: 400px;
  height: 300px;
   object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

.service-content h3 {
    font-size: 1.8rem;
	 color :    #2c3e50;
    margin-bottom: 1rem;
}

.service-content p 
 {


                    color: #666;
  margin-bottom: 1.5rem;
    line-height: 1.7;}

.service-content ul {
     list-style     :  none;
    padding-left: 0;
}

.service-content li {
  color: #666;
   margin-bottom: 0.5rem;
  padding-left: 1.5rem;
   position: relative;
}

.service-content li::before {
  content: '✓';
   color: #e74c3c;
               font-weight   :       bold;
   position: absolute;
  left: 0;
}

.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;


}

.cta-section .container {
   display   :flex;
      align-items: center;
   gap: 4rem;
}

.cta-content {
    flex: 1;
}

.cta-section h2		{
   font-size: 2.5rem;
	   margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
   opacity :       0.9;
}

.cta-visual {
    flex: 1;
}

.cta-image  
  {
	    width: 100%;
    border-radius    : 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);}


.testimonials-section {
    padding: 5rem 0;
   background: white;
}

.testimonials-section h2 {
  text-align: center;
  font-size: 2.8rem;
   color: #2c3e50;
                    margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2.5rem;
   border-radius: 12px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
   font-size: 4rem;
   color :     #e74c3c;
   position: absolute;
   top: 1rem;
   left: 2rem;
  font-family: serif;
}

.testimonial-card p {
   font-style: italic;
			color: #555;
  margin-bottom  :       1.5rem;
   padding-top: 2rem;
   line-height: 1.7;
}

.testimonial-author strong {
   color: #2c3e50;
   					display: block;
       margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

.contact-section {


    padding: 5rem 0;
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);


}

.contact-section h2 {
  text-align :    center;
  font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom  :        4rem;

}

.contact-layout {
  grid-template-columns: 1fr 2fr;
   display: grid;
    gap    :        4rem;
  align-items: start;
}

.contact-info h3 {
   margin-bottom: 2rem;
        color :      #2c3e50;
   font-size: 1.8rem;
}

.contact-item


{
               margin-bottom: 2rem;
}

.contact-item strong {
    color: #e74c3c;
    display: block;
    margin-bottom: 0.5rem;
} 

.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;
   color: #2c3e50;
   font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
     padding: 1rem;
   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  : #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
	}

.form-group textarea{
   resize: vertical;
     min-height: 120px;
}

.main-footer {
       background: #2c3e50;
  color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
	padding: 0 2rem;
    display :      grid;
  grid-template-columns: 1fr 2fr;
   gap: 3rem;
  align-items: start;
}

.footer-logo {
		height: 50px;
  filter: brightness(0) invert(1);
}

.footer-info {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
	 color: #e74c3c;
  margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section ul

{


	list-style: none;}

.footer-section ul li{
   margin-bottom: 0.5rem;
}

.footer-section ul li a {
   color: #bdc3c7;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;

}

.footer-bottom {
	  text-align: center;
  padding-top   :   2rem;
   margin-top    :     2rem;
   border-top: 1px solid #34495e;
   max-width  :    1200px;
  margin-left: auto;
    margin-right: auto;
                    color: #95a5a6;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 1rem 2rem;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .service-item, .service-item.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .service-img {
        width: 100%;
        max-width: 400px;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .primary-button, .secondary-button, .cta-button, .submit-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
         padding: 140px 0 80px;
  text-align: center;
}

.about-hero-content h1 {
   font-size: 3.2rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-desc {
  font-size: 1.3rem;
   max-width: 800px;
  margin: 0 auto;
   line-height: 1.7;
    opacity: 0.95;
}

.story-section {
   padding: 5rem 0;
                    background: white;
}

.story-layout {
         align-items: center;
   gap: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.story-content h2 {

   font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 2rem;}

.story-content p {
   color: #666;
   line-height: 1.8;
         margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image {
    width: 100%;
          height: 400px;
   object-fit: cover;
                    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.mission-section  {
   padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.mission-section h2 {
    text-align: center;
  font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 3rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
}

.mission-card {
   background: white;
    padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align: center;
    border-top: 4px solid #e74c3c;
}  

.mission-card h3 {

	  font-size: 1.6rem;
	 color: #2c3e50;
   margin-bottom: 1.5rem;

}

.mission-card p {


  color  :   #666;
    line-height: 1.7;
    margin-bottom: 1rem;
     }

.values-list {
               list-style: none;
   padding: 0;
  text-align: left;


}

.values-list li
	{
   color: #666;
   margin-bottom: 0.8rem;
   padding-left: 1.5rem;
    position: relative;


}

.values-list li::before
	{
  content: "●";
	color: #e74c3c;
  position: absolute;
    left: 0;
    font-weight: bold;
}

.approach-section {
    padding: 5rem 0;
	background: white;
	}

.approach-section h2 {
    text-align: center;
    font-size: 2.8rem;
        color: #2c3e50;
   margin-bottom: 3rem;
}

.approach-content    {
    display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.approach-text p    {
   font-size: 1.2rem;
               color: #666;
  line-height: 1.7;
	margin-bottom: 2.5rem;
}

.approach-pillars {
    display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
   padding: 1.5rem;
    border-left: 3px solid #e74c3c;
   background: #f8f9fa;
 border-radius: 0 8px 8px 0;
}

.pillar h4 {
	color: #2c3e50;
   font-size: 1.3rem;
    margin-bottom: 1rem;
}

.pillar p {
    color: #666;
    line-height: 1.6;
  margin : 0;
}

.approach-image {
  width: 100%;
   height: 350px;
   object-fit  : cover;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12); 
}



.expertise-section {
    padding: 5rem 0;
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
}

.expertise-section h2    {
    text-align: center;
   font-size: 2.8rem;
	color: #2c3e50;
   margin-bottom   :  3rem;
}

.expertise-grid

{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.expertise-item    {

   background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

.expertise-item:hover {

  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
     }

.expertise-item h3 {
   margin-bottom: 1rem;
	font-size: 1.4rem;
  color: #2c3e50;
} 

.expertise-item p		{
    color: #666;
   line-height: 1.7;
}

.achievements-section {
  padding   :       5rem 0;
      background: white;
}

.achievements-section h2 
 {
    text-align     :center;
    font-size: 2.8rem;
 color: #2c3e50;
   margin-bottom: 3rem;


}

.achievements-layout {
   display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
   align-items   :center;
}

.achievement-image {
   width: 100%;
  height: 400px;
   object-fit: cover;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom   :       2.5rem;
}

.stat-item {
  text-align:        center;
  padding :       1.5rem;
    background: #f8f9fa;
  border-radius: 10px;
}

.stat-number {
   font-size: 2.5rem;
   font-weight: bold;
  color: #e74c3c;
   margin-bottom: 0.5rem;
}

.stat-label {
       color  :       #666;
    font-weight: 500;
	 font-size: 0.95rem;}

.achievements-text p     {


	color: #666;
   font-size: 1.1rem;
  line-height: 1.7;
     }



.why-choose-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  color: white;
}


.why-choose-section h2 {
    text-align: center;
    font-size: 2.8rem;
  margin-bottom: 3rem;
}

.reasons-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap    :     2.5rem;
}

.reason-item {
  background: rgba(255, 255, 255, 0.1);
     padding: 2.5rem;
       border-radius: 12px;
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
}

.reason-item h3 
 {
  font-size: 1.5rem;
    margin-bottom: 1rem;
     color: #ecf0f1;
}

.reason-item p {
    line-height: 1.7;
   opacity: 0.9;
}

.location-section	{
   padding: 5rem 0;
    background: white;
}

.location-content {
  gap: 4rem;
  grid-template-columns: 2fr 1fr;
    display  : grid;
   align-items: center;
}

.location-info h2 {
	font-size: 2.5rem;
       color: #2c3e50;
      margin-bottom     :    2rem;

}

.location-info p {
   color:        #666;
    line-height: 1.7;
  margin-bottom: 1.5rem;
        font-size: 1.1rem;


}

.contact-details {
  margin-top: 2rem;
   padding     :     1.5rem;
   background: #f8f9fa;
   border-radius   :8px;
   border-left: 4px solid #e74c3c;
}

.contact-row {
  display   :      flex;
    margin-bottom: 1rem;
   align-items    :center;
  gap: 1rem;
}

.contact-row:last-child {
   margin-bottom: 0;
}

.contact-row strong {
  color: #2c3e50;
	min-width: 80px;}  

.contact-row span {
    color: #666;
}

.location-image {
    width: 100%;
         height: 350px;
     object-fit  :     cover;
      border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.thankyou-hero {
	  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
         padding: 140px 0 80px;
   text-align: center;
     }

.thankyou-content {
       max-width: 600px;
    margin: 0 auto;
} 

.success-indicator {
   margin-bottom: 2rem;
}

.check-circle {
   width    :  80px;
   height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
	 display: flex;
     align-items: center;
  justify-content: center;
   margin: 0 auto;
    position: relative;
  backdrop-filter: blur(10px);
}

.check-mark {
      width: 25px;
   height: 15px;
  border-left: 3px solid white;
  border-bottom: 3px solid white;
  transform: rotate(-45deg);
    margin-top: -5px;
}

.thankyou-hero h1 {
  font-size: 3.2rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-subtitle {


   font-size: 1.3rem;
    line-height: 1.7;
  opacity: 0.95;

}

.next-steps-section {
    padding: 5rem 0;
  background: white;
}  

.next-steps-section h2     {
  text-align: center;
    font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.steps-timeline {
  margin: 0 auto;
   max-width: 800px;
}

.timeline-item {
  display: flex;
  gap: 2rem;
    margin-bottom: 3rem;
  align-items   :  flex-start;
}

.timeline-item:last-child {
		margin-bottom: 0;
}

.timeline-number {
    width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
 border-radius: 50%;
   display: flex;
    align-items: center;
   justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
  flex-shrink   :     0;
}

.timeline-content h3 {
                    color :#2c3e50;
	   font-size: 1.5rem;
	  margin-bottom: 1rem;
}

.timeline-content p {
	  color: #666;
  line-height: 1.7;
 margin-bottom: 1rem; 

     }

.timeline-duration {
               color: #27ae60;
    font-weight: 500;
    font-size: 0.95rem;

}



.while-waiting-section {
   padding    :        5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.while-waiting-section h2  {
       text-align: center;
  font-size: 2.8rem;
               color: #2c3e50;
    margin-bottom: 3rem;
	}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.resource-card {
    background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
	
}

.resource-card h3 {
       font-size: 1.5rem;
    color: #2c3e50;
         margin-bottom: 1rem;


}

.resource-card p {
   color:    #666;
    line-height: 1.7;
   margin-bottom: 1.5rem;
}

.resource-link     {
    color: #e74c3c;
  text-decoration: none;
   font-weight: 500;
         border-bottom: 2px solid transparent;
	 transition: border-color 0.3s ease;
}

.resource-link:hover {
	    border-bottom-color: #e74c3c; 



}

.testimonial-preview 
 {
   padding: 5rem 0;
	background: white;


}


.testimonial-preview h2 {
  text-align: center;
   font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.testimonials-carousel {
  max-width: 800px;
   margin: 0 auto;
   display  :       grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-slide {
   background     : #f8f9fa;
   padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #27ae60;
}

.testimonial-slide blockquote {
   font-size: 1.1rem;
  color: #555;
    font-style: italic;
    line-height: 1.7;
  margin-bottom: 1.5rem;
    margin    :  0 0 1.5rem 0;
}

.testimonial-slide cite {
       font-style: normal;
}

.testimonial-slide cite strong {

	   color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem; 
	
}

.testimonial-slide cite span {
    color: #666;
   font-size: 0.9rem;
}

.urgent-contact {
  padding: 5rem 0;
  background: linear-gradient(135deg, #e67e22, #d35400);
   color: white;
    text-align: center;
}

.urgent-contact h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
}

.urgent-contact p {
  font-size: 1.2rem;
     margin-bottom: 2rem;
                       opacity:  0.95;
}

.phone-highlight {
    margin: 2rem 0;
}

.phone-highlight a {
    font-size: 2.5rem;
  color: white;
    text-decoration: none;
   font-weight: bold;
  padding: 1rem 2rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
   border-radius: 15px;
	display: inline-block;
    transition: all 0.3s ease;
}

.phone-highlight a:hover {
  background: rgba(255, 255, 255, 0.1); 
  border-color: rgba(255, 255, 255, 0.5);
}

.availability-info {
    font-size: 1rem;
  opacity: 0.8;
   font-style: italic;
}

.return-home {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
  text-align: center;
}

.return-home h2 {
     font-size:      2.5rem;
  color: #2c3e50;
   margin-bottom: 2.5rem;
}

.nav-options   {
		 display: flex;
   gap: 1.5rem;
	 justify-content: center;
   flex-wrap: wrap;
}

.nav-button {
  padding: 1rem 2rem;
    border-radius: 8px;
   text-decoration: none;
    font-weight: 600;
  font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-button.primary {
     background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
	}

.nav-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); 
	
}

.nav-button.secondary {
    border: 2px solid #2c3e50;
    color: #2c3e50;
    background: transparent;
}

.nav-button.secondary:hover {
   background: #2c3e50;
				 color: white;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .about-hero-content h1, .thankyou-hero h1 {
        font-size: 2.5rem;
    }

    .story-layout, .approach-content, .achievements-layout, .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-image, .approach-image, .achievement-image, .location-image {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .phone-highlight a {
        font-size: 2rem;
        padding: 0.8rem 1.5rem;
    }

    .nav-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-desc, .thankyou-subtitle {
        font-size: 1.1rem;
    }

    .mission-grid, .expertise-grid, .reasons-grid, .resources-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;
    }
}