*     {
  padding: 0;
   box-sizing: border-box;
  margin: 0px;
}

body {
     font-family: 'Arial', sans-serif;
    line-height: 1.6;
          color: #333;
  background-color: #ffffff;


}

.main-navigation {
  background:   #1a1a2e;
  padding: 1rem 0px;
   position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper{


    max-width: 1200px;
    margin:      0 auto;
    display: flex;
  justify-content: space-between;
  align-items: center;
   padding: 0 20px;
     }

.site-logo {
         height: 45px;
   width: auto;
}

.nav-links {
	 display: flex;

  list-style: none;

   gap: 2rem;
}

.nav-links li a {
     color: #ffffff;
  text-decoration: none;
   font-weight     :   500;
   transition: color 0.3s ease;
}

.nav-links li a:hover {

  color: #4ecdc4; 
	
	}

.burger-menu {
    display: none;
         flex-direction: column;
    background: none;
  border: none;
  cursor: pointer;
    padding: 5px;
}

.burger-menu span {
     width: 25px;
  height :    3px;
   background: #fff;
  margin: 3px 0;
    transition: 0.3s;
}

.hero-section    {
    margin-top: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
       padding: 100px 0;
    min-height:      80vh;
     display: flex;
    align-items: center;
}

.hero-content   {
    max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
   padding: 0 20px;


}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.2rem;
   margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons {
    display: flex;
   gap: 1rem;
    flex-wrap: wrap; 
	
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
   text-decoration: none;
    font-weight: 600;
	border-radius: 5px;
   transition: all 0.3s ease;
    display: inline-block; 

}

.primary-btn {
  background: #4ecdc4;
  color: white;
}

.primary-btn:hover {
	background: #45b7aa;
  transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
   color: white;
	 border:        2px solid white;
}

.secondary-btn:hover {
    background: white;
	 color: #667eea;
}

.hero-image img
	{
    width: 100%;
   height  : auto;
    border-radius: 10px;
}

.services-section {
  padding: 80px 0;
  background   :       #f8f9fa;
}

.container {
  max-width: 1200px;

	    margin: 0 auto;

	 padding:0 20px; 
	
}

.services-section h2 {
               text-align: center;
    font-size:       2.5rem;
	margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :    2rem;
}

.service-card {
    background: white;
	 padding   :      2rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
	transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
   width: 100%;
    height: 200px;
  object-fit   :      cover;
   border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom     :        1rem;
   color     :      #2c3e50;
}

.service-card p {
    color: #666;
               line-height: 1.7;
}

.cta-section {
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
   padding: 60px 0;
  text-align: center;
}

.cta-content
{
   margin: 0 auto;
   padding: 0 20px;
   max-width: 800px; 
	
}

.cta-content h2
	{
    font-size: 2.5rem;
   margin-bottom :    1rem;
}

.cta-content p {
  font-size     :  1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-button {

	   background: white;
  color  :        #ff6b6b;
  padding: 18px 35px;
  text-decoration: none;
	font-weight: 700;
 border-radius: 50px;
    transition   :    all 0.3s ease;
   display: inline-block;
     }

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
     }

.about-preview {
    padding: 80px 0;
  background: white;


}

.about-container {
   max-width: 1200px;
   margin: 0 auto;
   display:        grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
	 padding: 0 20px;
}

.about-text h2 {
        font-size: 2.5rem;
  margin-bottom: 1.5rem;
	color: #2c3e50;
}

.about-text p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  line-height: 1.7;
    color: #555;
}

.benefit-list {

	   list-style   :        none;
	 padding: 0;
}

.benefit-list li {
    padding: 0.5rem 0;
   position: relative;
  padding-left: 25px;
	color: #555;
}

.benefit-list li:before {
  content: '✓';
  position   :absolute;
                    left: 0;
  color: #4ecdc4;
    font-weight: bold;
}

.about-image img {
  width: 100%;
   height: auto;
  border-radius :   15px;
}

.contact-section {
  background: #f8f9fa;
    padding: 80px 0;
}

.contact-container  
  {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   padding   :        0 20px;
}

.contact-info h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-info p {
     font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: #555;

}

.contact-details {
  margin-top: 2rem;
}

.contact-item {
   margin-bottom: 1.5rem;
}

.contact-item strong {
   color: #2c3e50;
    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;
    font-weight: 600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width    :    100%;
    padding: 12px;
	 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: #4ecdc4;
}

.submit-btn {
  background: linear-gradient(45deg, #667eea, #764ba2);
                    color: white;
  padding: 15px 30px;
  border: none;
   border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.main-footer {
    background :#1a1a2e;
   color: white;
  padding: 40px 0 20px;
}

.footer-content
	{
    max-width :        1200px;
  margin: 0 auto;
      display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 2rem;
  padding: 0 20px;
}

.footer-logo img {
  height  :     60px;
	 width     :       auto;
}

.footer-links {
    display: grid;
	  grid-template-columns: repeat(3, 1fr);
	   gap: 2rem;}

.footer-column h4
	{
      margin-bottom: 1rem;
    color: #4ecdc4;}

.footer-column ul 
 {

	    list-style: none;


}

.footer-column ul li {

     margin-bottom    :   0.5rem;
     }

.footer-column ul li a {
    transition: color 0.3s ease;
   text-decoration: none;
     color: #ccc;
}

.footer-column ul li a:hover {

	   color: #4ecdc4;
}

.footer-column p {
   color:        #ccc;
	    line-height   :       1.6;
	
}

.footer-bottom {
     border-top: 1px solid #333;
               margin-top   :   30px;
  padding-top: 20px;
    text-align: center;
   color: #ccc;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 77px;
        left: -100%;
        width: 100%;
        background: #1a1a2e;
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-section h2,
    .cta-content h2,
    .about-text h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
    margin-top: 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  padding: 120px 0;
  text-align: center;
}

.about-hero-content {

	    max-width: 800px;
   margin: 0 auto;
   padding: 0 20px;
     }

.about-hero h1 {
    font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.about-hero p {


  font-size: 1.3rem;
	 opacity: 0.9;
     }

.company-story {
   padding: 100px 0;
   background: white; 
	
}

.story-container {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns : 2fr 1fr;
  gap: 4rem;
  align-items: center;
          padding: 0 20px;
}

.story-content h2 {
   font-size: 2.8rem;
   margin-bottom: 2rem;
         color: #2c3e50;
}

.story-content p {


   font-size: 1.15rem;
  line-height     :       1.8;
	margin-bottom: 1.5rem;
  color: #555;

}

.company-stats {
         display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
	 margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding  :    1.5rem;
   background: #f8f9fa;
  border-radius: 15px;
}

.stat-item h3 {
  font-size: 2.5rem;
   color: #4ecdc4;
    margin-bottom: 0.5rem;
 font-weight: 700;
}

.stat-item p {
   color: #666;
    font-weight: 500;
}

.story-image img {
  width: 100%;
               height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mission-vision    {
  padding:       80px 0;
  background: linear-gradient(45deg, #667eea, #764ba2);
          color: white;
}

.mission-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
    padding: 0 20px;
}

.mission-item, .vision-item {
                    padding  :2rem;
  background: rgba(255,255,255,0.1);
   border-radius: 20px;
  backdrop-filter: blur(10px);
}

.mission-item h2, .vision-item h2 {
    font-size :      2.2rem;
      margin-bottom: 1.5rem;
}

.mission-item p, .vision-item p {
    font-size: 1.1rem;
    line-height: 1.7;
  opacity: 0.95;
     }

.team-section {
   padding: 100px 0;
   background: #f8f9fa;
}  

.team-container {
        max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;

}

.team-container h2 {
   text-align: center;
        font-size:     2.8rem;
    margin-bottom: 4rem;
  color: #2c3e50;
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
}

.member-image {
  height: 250px;
  overflow: hidden;
}

.member-image img {
  width     :100%; 
	  height: 100%; 
	  object-fit:      cover;
}

.member-info {
  padding: 2rem;


}

.member-info h3 {
   font-size: 1.5rem;
	color: #2c3e50;
        margin-bottom: 0.5rem;
}

.member-info h4 {
  color: #4ecdc4;
  margin-bottom: 1rem;
	 font-weight: 600;
}

.member-info p {
   line-height: 1.6;
  color: #666;
}

.values-section {
  padding: 100px 0;
   background: white;
}

.values-container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.values-container h2 {
               text-align :    center;
    font-size: 2.8rem;
  margin-bottom: 4rem;
    color: #2c3e50;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.value-card {
    padding: 2.5rem;

  background: linear-gradient(135deg, #ff6b6b, #feca57);

    color: white;

  border-radius: 20px;

  text-align: center;

          transition: transform 0.3s ease;
}

.value-card:hover {
  transform: scale(1.05);
}

.value-card:nth-child(2) {
  background: linear-gradient(135deg, #4ecdc4, #45b7aa); 

}

.value-card:nth-child(3) {
     background: linear-gradient(135deg, #667eea, #764ba2);
     }

.value-card:nth-child(4) {
  background: linear-gradient(135deg, #ff9a56, #ff6b9d);
}

.value-card h3 {
    font-size: 1.6rem;
  margin-bottom: 1rem;
}

.value-card p {

	  opacity: 0.95;
  line-height: 1.6;


}

.approach-section {


   background: #f8f9fa;
  padding: 100px 0;


}

.approach-container {

	   align-items: center;
   grid-template-columns: 2fr 1fr;
	 display: grid;
	 padding: 0 20px;
    gap: 4rem;
   margin: 0 auto;
   max-width: 1200px;
     }  

.approach-content h2 {
    font-size: 2.8rem;
   margin-bottom: 2rem;
    color: #2c3e50; 

}

.approach-content > p {
    font-size   :    1.15rem;
    line-height: 1.8;
   margin-bottom     :     3rem;
  color: #555;
}

.approach-steps {
   display: grid;
  gap: 2rem;
}

.step-item
{

      display: flex;
    align-items   :   flex-start;
   gap: 1.5rem;
    padding: 1.5rem;
  background: white;
    border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
	}

.step-number {
  background: linear-gradient(45deg, #4ecdc4, #45b7aa);
    color: white;
   width: 50px;
    height: 50px;
  border-radius: 50%;
  display: flex;
    align-items :    center;
   justify-content: center;
   font-weight: 700;
      font-size: 1.2rem;
  flex-shrink: 0;
}

.step-item h3 {

   margin-bottom: 0.5rem;
 color: #2c3e50;
      font-size: 1.3rem;


}

.step-item p	{
                    color: #666;
    line-height  :     1.6;
}

.approach-image img {
	width :        100%;
   height   : auto;
                    border-radius: 20px;
}

.thankyou-hero {
    margin-top    : 80px;
  background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
   color     :        white;
    padding: 120px 0;
  text-align  :center;
}

.thankyou-content {
  max-width: 600px;
               margin: 0 auto;
  padding: 0 20px;
}

.success-icon {

   margin-bottom: 2rem;
}

.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;
    position: relative;
}

.checkmark {
    width: 30px; 
	   height: 15px; 
	         border-left: 4px solid white; 
	  border-bottom:        4px solid white; 
	  transform: rotate(-45deg);
}

.thankyou-content h1 {
  font-size: 3rem;
	margin-bottom     :     1.5rem;
    font-weight  :700;
}

.lead-text {
  font-size: 1.3rem;
  opacity: 0.9;
  line-height: 1.6;
} 

.next-steps {
    padding: 100px 0;
   background: white;
}

.steps-container {
  max-width  :800px;
  margin: 0 auto;
    padding: 0 20px;
}

.steps-container h2 {
     text-align: center; 
               font-size: 2.5rem; 
   margin-bottom: 3rem; 
  color: #2c3e50;
}

.timeline {

  position: relative;
     }

.timeline::before	{
  content: '';
  position: absolute;
  left: 30px;
    top: 0;
  bottom: 0;
   width: 2px;
   background  :        #e0e0e0;
}

.timeline-item {
                    display: flex;
   align-items: flex-start;
    gap: 2rem;
    margin-bottom   :3rem;
   position: relative;
}

.timeline-icon {
   position: relative;
  z-index: 2;
}

.timeline-icon .step-number {
  background: linear-gradient(45deg, #4ecdc4, #45b7aa);
  color    :    white;
  width: 60px;
  height:       60px;
				 border-radius     : 50%;
   display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
	font-size: 1.3rem;
	
}

.timeline-content {
    flex: 1;
  padding    : 1rem 0;
}

.timeline-content h3 {
	 font-size: 1.4rem;
  margin-bottom: 0.5rem;
    color: #2c3e50;

}

.timeline-content p {
	    color: #666;
  line-height: 1.6;
   margin-bottom: 0.5rem;}  

.timeline-duration {
   color: #4ecdc4;
   font-weight: 600;
   font-size: 0.9rem;
}

.while-waiting {
  padding: 80px 0;
   background: #f8f9fa; 
	
}

.waiting-container {
    max-width    :1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.waiting-container h2
{
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
         color: #2c3e50;
}

.waiting-grid

{
   display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
} 

.waiting-card {
    background: white;
  padding: 2rem;
    border-radius :  15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.waiting-card img {
    width: 100%;
    height: 200px;
  object-fit: cover;
   border-radius  :    10px;
   margin-bottom: 1.5rem;
}  

.waiting-card h3 {

  font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #2c3e50; 

}

.waiting-card p {
    color: #666;
  line-height: 1.6;
}

.contact-reminder {
  padding: 80px 0;
    background: white;
}  

.reminder-container {
  max-width: 800px;
    margin: 0 auto;
  padding: 0 20px;
    text-align: center;
}

.reminder-container h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.reminder-container > p {


   font-size: 1.1rem;
  color: #666;
   margin-bottom: 3rem;
    line-height: 1.6;

}

.urgent-contact {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
}

.contact-method {
   background: #f8f9fa;
    padding    :  2rem;
   border-radius: 15px;
}

.contact-method h3 {
  font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-method p {
    font-size: 1.1rem;
    color:   #4ecdc4;
  font-weight   :  600;
   margin-bottom: 0.5rem;
}  

.contact-method span {
  color: #666;
        font-size    :   0.9rem;
}

.return-options {

    padding: 60px 0;
  background: linear-gradient(45deg, #667eea, #764ba2);
   color: white;
    text-align: center; 

     }

.options-container {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 600px;
}

.options-container h2 {
  font-size: 2rem;
   margin-bottom: 2rem;
}

.return-buttons {
   display: flex; 
    gap: 1rem; 
  justify-content: center; 
               flex-wrap: wrap;
}

.return-btn {
   padding: 15px 30px;
    text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
    transition: all 0.3s ease;
 display: inline-block;
}

.return-btn.primary {
   background: white;
   color: #667eea;
}

.return-btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}  

.return-btn.secondary

{
    background: transparent;
    color: white;
  border: 2px solid white; 
	
}

.return-btn.secondary:hover {
  background: white;
	 color: #667eea;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .mission-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-container {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-icon .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .urgent-contact {
        grid-template-columns: 1fr;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .return-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}