* {
  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: #fefefe;
}

.container {
      max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;

}

.primary-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
   top: 0;
   width     :  100%;
   z-index   :    1000;
   border-bottom: 1px solid #e8e8e8;
}

.nav-container {
  display    :     flex;
  margin: 0 auto;
   max-width: 1200px;
  height: 70px;
	 align-items: center;
         justify-content: space-between;
    padding: 0 20px;
	
}

.company-logo {
   height :       45px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
  -webkit-transition: color 0.3s ease;
    text-decoration: none;
   color: #2c3e50;
  font-weight: 500;
      transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
  content: '';
    position: absolute;
   width: 0;
    height: 2px;
   bottom: -5px;
	left     :  0;
   background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.burger-toggle  {
  display: none;
       flex-direction: column;
      cursor: pointer;
      gap: 4px;
}

.burger-line {
   width: 25px;
   height: 3px;
  background-color: #2c3e50;
    transition     :  0.3s;


}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-toggle.active .burger-line:nth-child(2) {
  opacity   : 0; 

}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);


}

main

{
   margin-top: 70px;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  padding: 80px 0;
   min-height: 600px;
   display: flex;
    align-items: center;
     }

.hero-content {
    max-width: 1200px;
  margin: 0 auto;
	padding: 0 20px;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.hero-text h1 {
   font-size: 3.2em;
   font-weight   :       700;
   margin-bottom: 24px;
    line-height: 1.2;
     }

.hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
		line-height: 1.7;
}

.hero-buttons
	{
	display: flex;
   gap: 20px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
	  text-decoration   :       none;
    transition: all 0.3s ease;
   border-radius: 8px;
    display: inline-block;
  font-weight: 600;
   padding: 14px 28px;}

.primary-btn {
   background-color  : #e74c3c;
   color: white;
   border: 2px solid #e74c3c;
}

.primary-btn:hover {
	 background-color: #c0392b;
  border-color: #c0392b;
  transform: translateY(-2px);
}  

.secondary-btn {
 background-color: transparent;
    color: white;
  border: 2px solid white;
}

.secondary-btn:hover {
   background-color: white;
  color     :     #667eea;
}

.hero-img {
    width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
	 padding: 80px 0;
     background-color: #f8f9fa;
}

.services-overview h2 {
  text-align: center;
    font-size   : 2.5em;
   margin-bottom: 50px;
         color: #2c3e50;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
    background: white;
   border-radius    :  12px;
    overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 220px;
    object-fit: cover;
}

.service-card h3 {
   padding   :     20px 25px 10px;
    font-size: 1.4em;
     color: #2c3e50; 

}

.service-card p    {
   padding: 0 25px 25px;
   color: #666;
  line-height:     1.6;
}

.about-preview {
   padding: 80px 0; 

}

.about-content    {
    display: grid;
        grid-template-columns: 1fr 1fr;
    gap    :    60px;
    align-items: center; 

}

.about-text h2
	{
  font-size    :    2.3em;
	 margin-bottom: 20px;
    color: #2c3e50;
}

.about-text p {
   margin-bottom: 20px;
  color:   #555;
    font-size :       1.1em;
   line-height: 1.7;
}

.stats-grid {
   gap: 30px;
		display: grid;
	 margin-top :  40px;
	  grid-template-columns: repeat(3, 1fr);
}

.stat-item{
          text-align: center;
}

.stat-number {
  display: block;
	font-size     : 2.5em;
    font-weight: 700;
  color: #3498db;
	margin-bottom: 5px;
}

.stat-label {
      color: #666;
   font-size: 0.9em;


}

.about-img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color   : white;
     padding: 60px 0;
      text-align: center;
}

.cta-content h2 {
    font-size: 2.2em;
  margin-bottom: 20px;
}

.cta-content p		{

	  font-size: 1.1em;
   margin-bottom: 30px;
   opacity: 0.9;
   max-width: 600px;
       margin-left: auto;
    margin-right: auto;
	}

.cta-button {
	background-color: #e74c3c;
    color: white;
	padding: 16px 32px;
      text-decoration: none;
	border-radius: 8px;
  font-weight: 600;
  transition:      all 0.3s ease;
      display: inline-block;
}

.cta-button:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.contact-section  {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-section h2 {
      margin-bottom: 50px;
   text-align     :        center;
          font-size: 2.3em;
  color: #2c3e50;
     }

.contact-wrapper


{
    gap: 50px;
    grid-template-columns: 1fr 2fr;
    display   :  grid;
}

.contact-info h3 {
   margin-bottom: 30px;
  color: #2c3e50;
  font-size: 1.4em;
}


.contact-item {
     margin-bottom: 25px;

}

.contact-item strong {
   color: #2c3e50;
   display: block;
  margin-bottom: 5px;
}

.contact-form {
  background: white;
  padding    :     40px;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group  {
    margin-bottom: 25px;
}

.form-group label {
  display: block;
    margin-bottom:   8px;
    color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 15px;
	 border: 2px solid #e1e8ed;
	 border-radius: 6px;
         font-size: 16px;
  transition: border-color 0.3s ease;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #3498db;
}

.submit-btn {
  background-color: #3498db;
  color  :     white;
	padding: 14px 30px;
	border: none;
   border-radius: 6px;
    font-size: 16px;
   font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
   width: 100%;
}

.submit-btn:hover {
  background-color: #2980b9;
}

.main-footer {
	background-color: #2c3e50;
    color: white;
   padding: 50px 0 20px;
}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
   padding    :0 20px;
    display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 40px;
	
}

.footer-brand p {
  margin-top: 15px;
    opacity: 0.8;
   line-height: 1.6;
}

.footer-logo {


  height: 40px;
  filter: brightness(0) invert(1);}

.footer-column h4 {
   margin-bottom: 20px;

    color: #ecf0f1;
}

.footer-column ul  {
   list-style: none;
}

.footer-column ul li  
  {
   margin-bottom: 10px;
}

.footer-column a
{
	   color: #bdc3c7;
   -o-transition :     color 0.3s ease;
   -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
   text-decoration: none;
  transition: color 0.3s ease;

}

.footer-column a:hover {
   color   :       #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
   margin-top: 30px;
               padding-top: 20px;
  text-align: center;
    opacity: 0.7;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2em;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 25px;
    }
}.active-page {
  color: #3498db !important;
}

.active-page::after {


   width: 100% !important;

}

.page-hero    {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
  text-align: center;
}

.hero-content-about h1 {
   	font-size: 3em;
  margin-bottom: 20px;
  font-weight: 700;


}

.hero-subtitle {
   font-size :    1.3em;
  opacity: 0.9;
   max-width: 600px;
    margin: 0 auto;
}

.company-story {
    padding: 80px 0;
  background-color: #fff;
}

.story-layout{

	   display: grid;
               grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items    :        center;

}

.story-text h2 {
    font-size: 2.4em;
	margin-bottom: 30px;
    color: #2c3e50;
}

.story-text p {
	margin-bottom   :   25px;
	font-size: 1.1em;
   line-height: 1.7;
    color: #555;
}

.story-image {
	  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);}

.methodology-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.methodology-section h2 {
  text-align :   center;
  font-size: 2.5em;
    margin-bottom: 60px;
    color: #2c3e50;
}

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}



.method-card {
	 background: white;
  padding: 40px 30px;
	border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
    position: relative;
}

.method-card:hover {
  transform: translateY(-8px);
}

.method-number {
   display: inline-block;
   width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
	border-radius: 50%;
  font-size: 1.5em;
    font-weight: 700;
   line-height: 60px;
    margin-bottom: 25px;
}

.method-card h3 {

    font-size: 1.4em;
  margin-bottom: 20px;
  color :       #2c3e50;

}

.team-values {
  padding: 80px 0;
  background-color: #fff;
}

.values-content {
	display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: flex-start;
}

.values-text h2 {
      font-size: 2.4em;
       margin-bottom: 40px;
    color: #2c3e50;}

.value-item {
  margin-bottom: 35px;
   padding-left: 20px;
       border-left: 4px solid #3498db;
}

.value-item h4 {
  font-size: 1.2em;
    color: #2c3e50;
   margin-bottom: 10px;
}

.value-item p {
    color: #666;
	 line-height    :  1.6;
}

.values-img {
	 width: 100%;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.experience-showcase {
        padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.experience-showcase h2 {
    text-align :   center;
    font-size: 2.5em;
   margin-bottom: 60px;
}

.experience-layout {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items     :      center;
}

.experience-text p {
   margin-bottom: 25px;

    font-size: 1.1em;

  line-height: 1.7;

	 opacity: 0.95;
}

.experience-stats	{
    display: flex;
  gap     : 40px;
     margin-top :40px;
}

.exp-stat {


  text-align: center;
     }

.stat-value {
   display  :block;
    font-size: 2.2em;
  font-weight: 700;
 margin-bottom: 8px;
}

.stat-desc {
   font-size     :    0.9em;
  opacity: 0.8;
}

.experience-image {
    width: 100%; 
   border-radius: 15px; 
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.approach-details {
         padding  :   80px 0;
    background-color: #f8f9fa;
}

.approach-details h2 {
  text-align: center;
   font-size: 2.5em;
  margin-bottom    :      60px;
    color: #2c3e50;
     }

.approach-grid {

  display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px; 

     }

.approach-item {
    background: white;
    padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}


.approach-item h3 {
	font-size: 1.3em;
   color: #2c3e50;
  margin-bottom: 18px;
}

.approach-item p {
    line-height: 1.6;
	color: #666;
}

.final-showcase
	{
  padding: 80px 0;
    background-color: #fff;
}

.final-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.final-text h2 {
      font-size    :        2.4em;
  margin-bottom: 25px;
  color: #2c3e50;


}


.final-text p {
   font-size: 1.1em;
  line-height: 1.7;
    margin-bottom: 25px;
  color: #555;
}

.final-img {
   width: 100%;
   border-radius   :   15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
   padding: 120px 0 80px;
  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;
    position: relative;
    display: flex;
   align-items: center;
    justify-content: center;
}

.checkmark {
   width: 25px;
   height: 45px;
         border: solid white;
	border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.thankyou-content h1 {
   font-size: 2.8em;
    margin-bottom: 25px;
        font-weight: 700;
}

.thankyou-message {
   font-size: 1.2em;
   line-height: 1.6;
   opacity     :0.95; 
	
}

.next-steps {
  padding: 80px 0;
    background-color: #f8f9fa;
	
}

.next-steps h2 {
    text-align:  center;
	font-size     :    2.4em;
    margin-bottom: 60px;
	color: #2c3e50;


}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.step-item{


   background: white;
               padding :  35px;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
     }

.step-number {
 width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
   border-radius:       50%;
    font-size:    1.3em;
  font-weight: 700;
  line-height: 50px;
   margin: 0 auto 25px;
}

.step-item h3 {
	 font-size: 1.3em;
       margin-bottom: 15px;
  color: #2c3e50;
	
}

.while-waiting {
  padding: 80px 0;
   background-color: #fff;


}

.waiting-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.waiting-text h2 {
   font-size: 2.3em;
   margin-bottom  : 25px;
  color: #2c3e50;
}

.waiting-text p {
    font-size: 1.1em;
	line-height: 1.7;
	margin-bottom: 20px;
    color: #555;
}

.waiting-tips {
  margin-top: 35px;
}

.tip-item {
   margin-bottom: 25px;
    padding: 20px;
         background: #f8f9fa;
   border-radius: 8px;
   border-left: 4px solid #3498db;
}

.tip-item h4 {
    font-size :      1.1em;
    margin-bottom: 8px;
  color: #2c3e50;
}

.tip-item p {
	color: #666;
    margin: 0;
      font-size: 1em;
}

.waiting-image {


          width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.return-options {

	   padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     }

.return-options h2 {
  text-align: center;
    font-size: 2.3em;
  margin-bottom: 50px;
  color: #2c3e50;
}

.options-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 40px;
}

.option-card {
   background: white;
   padding: 40px;
      border-radius: 12px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.option-card h3 {
   font-size: 1.4em;
   margin-bottom: 15px;
	 color: #2c3e50;
}

.option-card p 
 {
         margin-bottom: 25px;
    color: #666;
  line-height: 1.6;

}

.option-link {
    display    :inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 12px 25px;
   text-decoration: none;
  border-radius     :       6px;
    font-weight: 600;
   transition     :transform 0.3s ease;
}

.option-link:hover {
  transform: translateY(-2px);
}

.contact-reminder {
   padding: 60px 0;
  background-color: #fff;
    text-align: center;
}

.reminder-content h2	{
    font-size: 2.2em;
    margin-bottom    :       20px;
    color: #2c3e50;
}

.reminder-content p {
	 font-size: 1.1em;
      margin-bottom: 30px;
    color: #666;
    max-width: 500px;
  margin-left: auto;
	margin-right :     auto;
}

.emergency-contact {
   display: flex; 
    justify-content: center; 
   gap: 60px; 
    flex-wrap: wrap;
}

.contact-details  {
  font-size: 1.1em;
}

.contact-details strong {
    color: #2c3e50;
   display: block;
         margin-bottom: 5px;
}@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.2em;
    }
    
    .story-layout,
    .values-content,
    .experience-layout,
    .final-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .experience-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .methodology-grid,
    .approach-grid,
    .steps-grid,
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2em;
    }
    
    .emergency-contact {
        flex-direction: column;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .hero-content-about h1 {
        font-size: 1.8em;
    }
    
    .thankyou-hero {
        padding: 100px 0 60px;
    }
    
    .thankyou-content h1 {
        font-size: 1.9em;
    }
    
    .method-card,
    .approach-item,
    .step-item,
    .option-card {
        padding: 25px;
    }
}.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;
    }
}