* {
    margin :        0;
       padding: 0;
      box-sizing:  border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height    :       1.6;
 color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-header     {
   background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
  top: 0;
  width: 100%;
        z-index: 1000;
}

.navigation-container {
  max-width: 1200px;

	   margin: 0 auto;

		display: flex;

	    justify-content: space-between;

	    align-items: center;

	    padding: 1rem 2rem;
}

.brand-logo

{
   height    :       50px;
  width: auto;
}

.nav-links {
    gap: 2rem;

	   display: flex;

	                    list-style    : none;
}

.nav-links a  
  {
   text-decoration: none;
    color: #333;
    font-weight: 500;
	transition: color 0.3s;
}

.nav-links a:hover {
    color: #e74c3c;
}

.burger-menu


{
  display: none;
  flex-direction: column;
    cursor: pointer;
}

.burger-menu span {
      width: 25px;
   -o-transition: 0.3s;
  height: 3px;
    background-color: #333;
                    margin: 3px 0;
    transition   :       0.3s; 
	}

.hero-section{
    margin-top: 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 100px 0;
}

.hero-content {
    max-width   :1200px;

    margin: 0 auto;

   display: grid;

   grid-template-columns: 1fr 1fr;

  gap: 60px;

    align-items: center;

   padding: 0 20px;
}

.hero-text h1 {
  font-size  :       3.2rem;
  margin-bottom  :  1.5rem;
    color: #2c3e50;
  font-weight  :     700;
}

.hero-text p


{
   font-size: 1.2rem;
    margin-bottom: 2rem;
  color: #555;
}

.hero-buttons {
   display: flex;
    gap: 20px;
               margin-top: 30px;
}

.primary-btn {
	 background-color: #e74c3c;
  color: white;
    padding: 15px 30px;
    text-decoration: none;
	 border-radius: 5px;
    font-weight: 600;
   transition: background-color 0.3s;
}

.primary-btn:hover {
	background-color: #c0392b;
}

.secondary-btn {
      background-color: transparent;
    color: #e74c3c;
  padding:    15px 30px;
   text-decoration  :       none;
  border :    2px solid #e74c3c;
   border-radius: 5px;
  font-weight  :    600;
   transition: all 0.3s;
	}

.secondary-btn:hover {


    background-color: #e74c3c;
    color: white;
	}

.hero-image img {
  width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}

.services-overview {
    padding: 80px 0;
	 background-color:  #fff;
}

.services-overview h2 {

    font-size: 2.8rem; 
	   margin-bottom: 60px; 
	    color: #2c3e50; 
	    text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
    background: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
   transition :   transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);


}

.service-card img {
	 width: 100%;
   height: 200px;
  object-fit: cover;
   border-radius: 8px;
   margin-bottom: 20px;
}

.service-card h3 {
   font-size: 1.5rem;
  margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
	color: #666;
  line-height: 1.6;
}

.about-preview {
  padding: 80px 0;
   background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items    :       center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
   color: #2c3e50;
}

.about-text p     {
  margin-bottom: 20px;
    color: #555;
   font-size: 1.1rem;


}

.statistics {
  display: flex;
   gap: 40px;
  margin-top   :30px;
}

.stat-item {
    text-align  :        center;
}

.stat-number {

  display: block;
   font-size: 2.5rem;
   font-weight: 700;
  color: #e74c3c;
	}

.stat-label {
    display: block;
  color: #666;
  font-size: 0.9rem;
               margin-top: 5px;
}

.about-image img {
   width: 100%;
  border-radius: 10px;
     height: auto;
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.cta-content {
   text-align: center;
  max-width: 700px;
   margin: 0 auto;
}

.cta-content h2 {
    font-size  :        2.5rem;
   margin-bottom: 20px;
}

.cta-content p {

	    font-size: 1.2rem;
   margin-bottom: 30px;


}

.cta-button {
   background-color: white;
   color: #e74c3c;
    padding: 18px 35px;
    text-decoration: none;
   border-radius    :      5px;
   font-weight: 600;
  font-size:      1.1rem;
   transition : all 0.3s;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-section {
                    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section h2 {


  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 60px;
   color: #2c3e50;}

.contact-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
       gap: 60px;
}

.contact-info h3 {
                    font-size:    1.8rem;
    margin-bottom    :        20px;
   color: #2c3e50;
}

.contact-info p {
     margin-bottom: 25px;
   color: #555;
  font-size: 1.1rem;


}

.contact-details {
    margin-top:  30px;
	}

.contact-item {
          margin-bottom: 15px;
      color: #666;
}

.contact-form {
  background: white;
   padding: 40px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom :20px;
}

.form-group input,
.form-group select,
.form-group textarea     {
   width: 100%;
  padding    :      15px;
    border: 2px solid #e9ecef;
   border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline  :        none; 
	   border-color: #e74c3c;
}

.form-group textarea {
    height    :  120px;
	resize: vertical;


}

.form-submit-btn {
  background-color :    #e74c3c; 
    color: white; 
          padding: 15px 30px; 
	border: none; 
    border-radius: 5px; 
    font-size: 1.1rem; 
   font-weight: 600; 
    cursor: pointer; 
      width: 100%; 
  transition: background-color 0.3s;
}

.form-submit-btn:hover {
         background-color: #c0392b; 
	
}

.site-footer {
    background-color: #2c3e50;
	color: white;
    padding: 60px 0 20px;
}

.footer-content {
        max-width: 1200px;
       margin: 0 auto;
   	display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     padding: 0 20px;
}

.footer-section h4 {
        margin-bottom: 20px;
	color: #ecf0f1;
   font-size: 1.2rem;
}

.footer-section p,
.footer-section li {
    color: #bdc3c7;
  margin-bottom: 10px;
}

.footer-section ul {
   list-style : none;
}

.footer-section a     {
    color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover {
  color   :     #ecf0f1;
}

.footer-logo img
{
   height: 40px;
      margin-bottom: 15px;
}

.footer-bottom {
    border-top   :       1px solid #34495e;
  padding-top: 20px;
    margin-top: 40px;
    text-align: center;
   color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .statistics {
        justify-content: center;
    }

    .services-overview h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navigation-container {
        padding: 1rem;
    }

    .hero-section {
        padding: 60px 0;
    }

    .services-overview,
    .about-preview,
    .cta-section,
    .contact-section {
        padding: 60px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.about-hero-section {
    margin-top: 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding  :     100px 0 80px;
    text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
   font-weight: 700;
}

.about-hero-content p  
  {

	   font-size: 1.3rem;
    max-width: 800px;
   margin: 0 auto;
    opacity: 0.9;
	}

.company-story {
	 padding: 80px 0;
   background-color: #fff;
}

.story-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.story-text h2 {
  color: #2c3e50;
  margin-bottom: 25px;
   font-size: 2.5rem;
}

.story-text p {
   margin-bottom: 20px;
    color: #555;
   font-size: 1.1rem;
   line-height  :1.7;
}

.story-image img {
    width: 100%;
   height: auto;
    border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.methodology-section {
   padding :        80px 0;
    background: #f8f9fa;
}

.methodology-section h2 {
   text-align: center;
    font-size: 2.8rem;
                    margin-bottom    :  60px;
  color: #2c3e50;
} 

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 30px;
}

.method-card    {
         background   :white;
    padding: 35px 25px;
               border-radius: 8px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;


}

.method-card:hover

{
  transform: translateY(-3px);
}

.method-icon {
       font-weight: 700;
  width: 60px;
   border-radius: 50%;
   height: 60px;
   display: inline-block;
    margin-bottom    :   20px;
  font-size : 1.5rem;
  line-height: 60px;
  color: white;
   background: #e74c3c;
}

.method-card h3 {
	font-size: 1.4rem;
    margin-bottom: 15px;
   color  :   #2c3e50;
}

.method-card p {
	 color: #666;
    line-height: 1.6;
	}

.team-experience {

		 padding: 80px 0;
  background-color: #fff;
	}

.experience-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
} 

.experience-text h2 {
   font-size :     2.5rem;
   margin-bottom: 25px;
    color: #2c3e50;
}

.experience-text p {
  margin-bottom: 30px;
  color: #555;
   font-size: 1.1rem;
    line-height:    1.7; 

}

.qualifications
	{
  display: flex;
   flex-direction: column;
   gap: 25px;

}

.qualification-item h4 {
   font-size  :     1.2rem;
          color :       #e74c3c;
   margin-bottom     : 8px;
}

.qualification-item p
	{
    color: #666;

	  margin: 0;

	    font-size     :  1rem;
}

.experience-image img {
     width: 100%;

  height: auto;

   border-radius: 8px;
	}

.values-section		{
    padding: 80px 0;
   background: #f8f9fa;
} 

.values-section h2 {
  text-align   :        center;
    font-size: 2.8rem;
  margin-bottom: 60px;
   color: #2c3e50;
}

.values-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	   gap: 40px;
}

.value-card {
	  background: white;
   padding: 30px;
  border-radius: 8px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);}

.value-card img {
   width: 100%;
	 height: 200px;
   object-fit: cover;
	border-radius :    6px;
  margin-bottom: 20px;
}

.value-card h3	{
   font-size: 1.5rem;
   margin-bottom: 15px;
  color: #2c3e50;
}

.value-card p {
   color: #666; 
	                    line-height: 1.6;
}

.results-section {
   padding: 80px 0;
	background-color: #fff;
} 

.results-section h2
{
    text-align: center;
	font-size: 2.8rem;
    margin-bottom: 50px;
    color   :       #2c3e50;
}

.results-stats
	{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
  margin-bottom    :      60px;
}

.result-item {
    text-align: center;
}

.result-number {
  display: block;
    font-size: 3rem;
  font-weight: 700;
   color: #e74c3c;
    margin-bottom: 10px;
	
}

.result-label {
    display :     block;
  color: #666;
	 font-size: 1rem;
}

.testimonial-preview     {
	max-width  :800px;
    margin: 0 auto;
    text-align: center;
   background: #f8f9fa;
    padding: 40px;
    border-radius   :        8px;
}

.testimonial-preview blockquote {
	    font-size: 1.3rem;
  font-style: italic;
  color     :     #2c3e50;
   margin-bottom: 20px;
  line-height: 1.6;
     }

.testimonial-preview cite {
  color: #e74c3c;
               font-weight: 600;


}

.mission-statement {
     padding   :   80px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
}

.mission-content {
    max-width: 800px;
       margin: 0 auto;
     text-align: center;
}

.mission-content h2 {
  font-size: 2.5rem;
	    margin-bottom: 30px;
	}

.mission-content p {
  font-size: 1.2rem;
   margin-bottom: 25px;
   line-height: 1.7;
}

.thankyou-hero {
   margin-top: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding: 100px 0;
    text-align: center; 
	
}

.thankyou-content {
  max-width: 600px;
    margin: 0 auto;
}

.success-icon   {
          margin-bottom: 30px;
}

.checkmark-circle {
	width    :80px;
  height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
   margin: 0 auto;
	display: flex;
	 align-items: center;
   justify-content: center;
		 position  :relative;
     }

.checkmark {
          width: 25px;
   height: 15px;
  border: 4px solid white;
   border-top: none;
  border-right: none;
  transform: rotate(-45deg);
	}

.thankyou-content h1  {
   font-size: 3rem;
  margin-bottom: 20px;
          font-weight: 700;
}  

.lead-text {
    font-size: 1.3rem;

   opacity: 0.95;

    line-height: 1.6;
}

.next-steps{
    padding: 80px 0;
   background-color: #fff;
}

.next-steps h2 {

	    text-align: center;
   font-size: 2.8rem;
   margin-bottom: 60px;
    color: #2c3e50;

}

.steps-timeline {
	max-width: 800px; 
		margin: 0 auto;


}

.timeline-step  
  {
     display  :     flex;
    gap: 30px;
    margin-bottom: 50px;
        align-items: flex-start;
}

.step-number {
  width: 50px;
    height: 50px;
   background: #e74c3c;
  color: white;
	border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
  font-weight :700;
   font-size: 1.2rem;
   flex-shrink: 0;
}

.step-content h3 {

    font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 10px; 

     }

.step-content p {
  color: #555;

    margin-bottom     :        8px;

	 line-height: 1.6;
}

.step-time {
  color   :     #e74c3c;
    font-weight: 600;
        font-size: 0.9rem;
}

.while-waiting{
        padding :  80px 0;
    background: #f8f9fa;
}

.waiting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
               align-items: center;
}

.waiting-text h2 {
  font-size     : 2.5rem;
    margin-bottom   :25px;
    color: #2c3e50;}

.waiting-text p {
         margin-bottom: 30px;
   color: #555;
   font-size: 1.1rem;
	 line-height: 1.7;
}

.resource-list {
   display: flex;
    flex-direction: column;
   gap: 25px;
}

.resource-item h4 {
  font-size: 1.2rem;
   color: #e74c3c;
  margin-bottom: 8px;
}

.resource-item p {
    color: #666;
          margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.waiting-image img {
   width: 100%;
    height: auto;
    border-radius: 8px; 

}

.emergency-contact {
  padding: 80px 0;
    background-color: #fff;
}

.emergency-info {
	max-width: 800px;
	margin: 0 auto;
   text-align: center;
}


.emergency-info h2 {

	   margin-bottom: 20px;
   color: #2c3e50;
   font-size: 2.5rem;}

.emergency-info p {
    font-size: 1.2rem;
	  margin-bottom: 40px;
	   color: #555;
}

.contact-methods {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
  margin-top: 40px;
}

.contact-method	{


   background: #f8f9fa;
   padding    :      30px;
 border-radius: 8px;
   text-align: center; 

}

.contact-method h4{
    color   :        #e74c3c;
          font-size: 1.3rem;
	 margin-bottom: 10px;
}

.contact-method p    {
  font-size: 1.1rem;
     color: #2c3e50;
   margin-bottom: 8px;
    font-weight: 600;
}

.contact-method span {
  font-size: 0.9rem;
   color: #666;
}

.return-navigation
{
   padding: 60px 0;
  background: #f8f9fa;
}

.navigation-options {
  text-align: center;
}

.navigation-options h3 {
   font-size  :1.8rem;
    margin-bottom: 30px;
   color: #2c3e50; 
	
}

.nav-buttons {
  display: flex;
   justify-content: center;
  gap: 20px;
}

.nav-button {
	    padding     :   15px 30px;
  text-decoration: none;
    border-radius  :   5px;
  font-weight: 600;
  transition: all 0.3s;
    display: inline-block;

}

.nav-button.primary {
   background-color: #e74c3c;
    color: white;
}

.nav-button.primary:hover {
  background-color: #c0392b;
}

.nav-button.secondary {
  background-color: transparent;
    color: #e74c3c;
    border:2px solid #e74c3c;
}

.nav-button.secondary:hover {
    background-color   :     #e74c3c;
     color: white;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .story-content,
    .experience-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}