*		{
  margin: 0;
        padding: 0px;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

.container {
  max-width: 1200px;
         margin: 0 auto;
   padding: 0 20px;
}

.main-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding   : 1rem 0;
   position: fixed;
    width: 100%;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {


  padding: 0 20px;
  max-width:   1200px;
    justify-content: space-between;
  display: flex;
  align-items: center;
   margin: 0 auto;

}

.site-logo {
    height: 45px;
    width: auto;
}

.nav-menu {
       gap: 2rem;
    display: flex;


}

.nav-link {
 color: white;
      text-decoration: none;
   font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #f39c12;
}


.nav-link.active::after{
  content: '';
 position: absolute;
  bottom: -5px;
	 left:       0;
    width: 100%;
   height: 2px;
   background-color: #f39c12;
}

.mobile-burger {
    display: none;
    flex-direction    :        column;
   cursor: pointer;
    gap: 4px;
}

.mobile-burger span {
   width: 25px;
  height  : 3px;
  background-color: white;
   transition: 0.3s;
}

.hero-section {
   margin-top: 80px;
	padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
  max-width  :    1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap    :      3rem;
	align-items: center;
}

.hero-text h1 {
     font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
    line-height: 1.2;
}

.hero-text p {
   font-size: 1.2rem;

	margin-bottom: 2rem;

   opacity :      0.9;
}

.hero-buttons {
       display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
       border-radius: 8px;
      text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
      display: inline-block;
}

.btn-primary {
    color: white;
   background-color: #f39c12;
    border: 2px solid #f39c12;
}

.btn-primary:hover {

	    background-color: #e67e22;
       border-color    :     #e67e22;
  transform: translateY(-2px);
}

.btn-secondary
{
    background-color     : transparent;
   color: white;
    border: 2px solid white; 

}

.btn-secondary:hover {
    background-color: white;
   color: #667eea;
	}

.hero-image img
{


   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);


}

.services-overview {


    padding: 5rem 0;
  background-color: #f8f9fa;
}  

.services-overview 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;
  border-radius :12px;
	padding: 2rem;
    text-align: center;
  box-shadow: 0 5px 15px 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 15px 35px rgba(0,0,0,0.15); 

}

.service-card img {
	width: 100%;
        height: 200px;
          object-fit: cover;
    border-radius :      8px;
  margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.4rem;
  margin-bottom   :   1rem;
  color: #2c3e50;
}


.service-card p {
   color: #666;
   line-height  : 1.6;
}



.about-preview {
    padding: 5rem 0;
   background-color: white;
}

.about-content {
    display: grid; 
   grid-template-columns: 1fr 1fr; 
     gap: 3rem; 
    align-items: center;
}

.about-text h2		{
  font-size: 2.5rem;
	margin-bottom: 1.5rem;
   color:  #2c3e50;
}

.about-text p {

	   margin-bottom: 2rem;
       color: #666;
   		 font-size: 1.1rem;
	}

.benefits-list
	{
               list-style: none;
    margin-bottom: 2rem;
}

.benefits-list li

{
  padding: 0.5rem 0;
   position: relative;
  padding-left: 25px;
    color: #666;
}

.benefits-list li::before {
  content: '✓';
	 position: absolute;
    left: 0;
   color: #27ae60;
    font-weight: bold;


}

.btn-outline  
  {
	background-color: transparent;
  color: #3498db;
         border: 2px solid #3498db;
  padding: 12px 24px;
   border-radius     :       8px;
    text-decoration: none;
    font-weight: 600;
	 transition: all 0.3s ease;
   display: inline-block;
}

.btn-outline:hover {
   background-color: #3498db;
  color: white;
}

.about-image img {
  height: auto;
   border-radius: 12px;
	 width: 100%;
}  

.cta-section {
		padding: 4rem 0;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
   color: white;
  text-align: center;
}

.cta-content h2 {
	 font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {


  font-size: 1.2rem; 
	  margin-bottom: 2rem; 
	   max-width: 800px; 
	    margin-left: auto; 
	          margin-right: auto; 
	  opacity: 0.95;}  

.btn-cta     {
  background-color: white;
  color: #f39c12;
    padding: 15px 30px;
   -moz-border-radius: 8px;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 700;
   font-size: 1.1rem;
    transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
   display    : inline-block;
}

.btn-cta:hover	{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
   padding: 5rem 0;
  background-color: #f8f9fa;
}

.contact-section h2 {


    text-align: center;
    font-size: 2.5rem;
    margin-bottom   :     3rem;
   color: #2c3e50;
	}

.contact-wrapper
	{
    display: grid;
	 grid-template-columns: 1fr 2fr;
    gap: 3rem;
} 

.contact-info h3 {
    color: #2c3e50;

	   margin-bottom: 2rem;

	   font-size: 1.5rem;
}

.contact-item {
   margin-bottom  :   1.5rem;
}

.contact-item strong {
   color: #3498db;
  display: block;
   margin-bottom: 0.5rem;
	
}

.contact-form {
  background    :  white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
	margin-bottom: 0.5rem;
  color: #2c3e50;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
      width: 100%;
       -moz-border-radius: 8px;
   -webkit-border-radius: 8px;
    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: #3498db;

}

.btn-submit {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%); 
	        color: white; 
	    padding: 15px 30px; 
	    border: none; 
	    border-radius: 8px; 
		font-size: 1.1rem; 
	   font-weight: 600; 
	  cursor: pointer; 
	   transition: all 0.3s ease; 
	    width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.main-footer     {
          background-color: #2c3e50;
   color     :white;
    padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
    grid-template-columns: 1fr 2fr;
  gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo
	{
   height    :   60px;
   width:     auto;
  filter: brightness(0) invert(1);
}

.footer-info 
 {
  display:  grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
	
}

.footer-section h4 {
  margin-bottom: 1rem;
  color :    #3498db;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration    : none;
    display: block;
    margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
   color    :white;
}

.footer-section p {
    color: #bdc3c7;

	  margin-bottom: 0.5rem; 
	
}

.footer-bottom {

	  border-top: 1px solid #34495e;
    padding-top: 1rem;
  text-align: center;
    color: #95a5a6;
	}@media (max-width: 768px) {
    .mobile-burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #2c3e50;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .service-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}.mobile-burger.active span:nth-child(1) {

  transform: rotate(-45deg) translate(-5px, 6px);

}

.mobile-burger.active span:nth-child(2) {
  opacity:  0;
}

.mobile-burger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.page-header {
   margin-top: 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
   color: white;
  padding: 4rem 0;
    text-align: center;
}

.header-content h1 {
  font-size: 3rem;
   margin-bottom: 1rem;
                    font-weight: 700;
}

.header-content p {
    font-size: 1.2rem;
      opacity: 0.9;
    max-width: 800px;
   margin: 0 auto;
}  

.company-story {
	    padding: 5rem 0;
  background-color: white;

}

.story-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
	 gap: 3rem;
   align-items: center;
}

.story-text h2 {
	        font-size: 2.5rem;
	margin-bottom: 2rem;
   color: #2c3e50;


}

.story-text p {


    margin-bottom: 1.5rem;
   color: #666;
  font-size: 1.1rem;
	line-height: 1.7;


}

.achievements {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
   margin-top: 2rem;
}

.achievement-item {
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	 border-radius: 12px;
}

.achievement-item h3 {
   font-size: 2.5rem;
  color    :        #3498db;
  margin-bottom: 0.5rem;
   font-weight: 700;
}

.achievement-item p {
	   color: #666;
		font-weight: 600;}

.story-image img {
    width :        100%;
         height:     auto;
       border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	
}

.our-mission {
   padding: 5rem 0;
   background-color    :        #f8f9fa;

}

.our-mission h2 {
		text-align  :       center;
    font-size: 2.5rem;
    color     :       #2c3e50;
    margin-bottom: 3rem;
     }

.mission-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mission-card {
    background: white;
    padding: 2.5rem;
  border-radius: 12px;
	text-align    :center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card h3		{
   font-size: 1.5rem;
   margin-bottom: 1.5rem;
    color: #3498db;
}

.mission-card p {
   color: #666;
   line-height: 1.6;
}

.our-approach {

		 padding: 5rem 0;
      background-color: white;


}  

.approach-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.approach-text h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
   color: #2c3e50;
}


.approach-text p	{
      color: #666;
    font-size: 1.1rem;
      margin-bottom: 2rem;
    line-height: 1.7; 
	
     }

.approach-steps {
   display: flex;
	 flex-direction     :       column;
    gap: 1.5rem;
}

.step {

	   padding :        1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	border-radius :     8px;
   border-left: 4px solid #3498db;

}

.step h4

{


   color:       #2c3e50;
  margin-bottom: 0.5rem;
    font-size: 1.2rem;
     }  

.step p {


	 color: #666;
  margin: 0;
     }

.approach-image img     {
   width: 100%;
  height  :auto;
	border-radius: 12px;
}

.team-expertise {
  padding: 5rem 0;

	   background-color: #f8f9fa;
}

.team-expertise h2     {
   font-size: 2.5rem;
	margin-bottom: 3rem;
  color: #2c3e50;
   text-align:  center;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.expertise-item {
  background   :  white;
      border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.expertise-item:hover {


  transform: translateY(-5px);}

.expertise-item img {
    width     :100%;
   height: 250px;
    object-fit: cover;
	}

.expertise-item h3 {

	font-size: 1.4rem;
          margin: 1.5rem 1.5rem 1rem;
  color: #2c3e50;

}  

.expertise-item p {
  padding: 0 1.5rem 1.5rem;
   color: #666;
  line-height: 1.6;
}

.why-choose-us {
	 background-color: white;
    padding: 5rem 0;
}

.why-choose-us h2 {

	    text-align :    center;
    font-size  :  2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;

}

.reasons-content {
	  max-width: 800px;
  margin: 0 auto;


}

.reason {
   margin-bottom    :     2.5rem;

   padding: 2rem;

  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

	border-radius: 12px;

    border-left: 5px solid #f39c12;
}

.reason h3 {
    color: #2c3e50;
   margin-bottom :1rem;
  font-size: 1.3rem;
}

.reason p
	{

  color: #666;
   line-height     :        1.6;
   margin: 0;
}

.cta-about {
      padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
   text-align: center;
}



.cta-about .cta-content h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-about .cta-content p {
    font-size: 1.2rem;
   margin-bottom: 2rem;
    max-width: 800px;
		margin-left: auto;
   margin-right: auto;
    opacity: 0.95;
}



.thankyou-main {

	  margin-top: 80px;
   padding: 4rem 0;
  min-height: calc(100vh - 160px);
     }

.thankyou-content {
  max-width: 900px;
               margin: 0 auto;
	 text-align:center;
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.success-checkmark {
  width: 80px;
    position: relative;
	height     :      80px;
  margin: 0 auto;
}

.success-checkmark .check-icon {
	 width: 80px;

	  height: 80px;

	   position: relative;

	    border-radius: 50%;

	  box-sizing: content-box;

	   border: 4px solid #27ae60;
}

.success-checkmark .check-icon::before {


  animation: checkmark-circle 0.6s ease-in-out;
  content: '';
  background: #27ae60;
  height: 100%;
	width: 30px;
  top   :        3px;
   border-radius: 100px 0 0 100px;
   position: absolute;
    left: -2px;
   transform-origin: 100% 50%;
	}

.success-checkmark .check-icon .icon-line {
  height: 5px;
	 background-color: #27ae60;
  display: block;
   border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
	 top: 46px;
   left: 14px;
   width: 25px;
  transform: rotate(45deg);
  animation    :      checkmark-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
   top: 38px;
  right: 8px;
    width: 47px;
  transform: rotate(-45deg);
    animation: checkmark-long 0.75s;
}

.thankyou-content h1 {
   font-size: 3rem;

	   color: #2c3e50;

		 margin-bottom: 1rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
   margin-bottom: 3rem; 

}

.next-steps {

	    margin: 4rem 0;
  text-align: left;

}

.next-steps h2 {
   text-align: center;
   font-size: 2.2rem;
    color: #2c3e50;
   margin-bottom :     2rem;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
    margin-top: 2rem;
}

.step-item {
   background: white;
	padding   :       2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	 text-align: center;
   position   :        relative;
}

.step-number {
	width:  50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
	border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content :        center;
  font-size: 1.5rem;
  font-weight     :     700;
   margin: 0 auto 1rem;
}

.step-item h3 {
   color: #2c3e50;
   margin-bottom: 1rem;
}

.step-item p
{

   color: #666;
  line-height: 1.6;
     }

.additional-info {
   background  :  #f8f9fa;
  padding: 3rem;
  border-radius: 12px;
					margin: 3rem 0;
   text-align:  left;
}

.additional-info h2 {
  text-align: center;
	   color: #2c3e50;
	  margin-bottom: 2rem;
}

.info-content {
  display: grid;
    grid-template-columns: 2fr 1fr;
   gap    :    2rem;
  align-items: center;
}

.info-text p {
   color: #666;
  margin-bottom: 1.5rem;
}

.preparation-list {
  list-style: none;
  padding  :        0;
}

.preparation-list li {
    padding: 0.75rem 0; 
	  position: relative; 
	    padding-left: 25px; 
	  color: #666; 
	    border-bottom: 1px solid #e0e0e0;
}

.preparation-list li::before {
  content: '→';
    position: absolute;
   left: 0;
       color: #3498db;
  font-weight: bold;
}

.info-image img {
   width: 100%;
  border-radius: 8px;
}  

.emergency-contact {

	  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
   padding: 2rem;
    border-radius    :       12px;
 margin: 2rem 0;}

.emergency-contact h3 {
   margin-bottom: 1rem;
}

.emergency-contact p {
    margin-bottom: 1rem;
     opacity: 0.9;
}

.phone-number {
	   color: white;
   font-size: 1.5rem;
    font-weight: 700;
	text-decoration :       none;
  background: rgba(255,255,255,0.2);
   padding: 0.5rem 1rem;
   border-radius: 8px;
  display:    inline-block;
	transition: background 0.3s ease;
     }

.phone-number:hover {
	  background: rgba(255,255,255,0.3);
     }

.action-buttons {
    display: flex;
  gap: 1rem;
    justify-content: center;
   margin-top: 3rem;
  flex-wrap: wrap;


}@keyframes checkmark-circle {
    0% {
        opacity: 1;
        transform: rotate(45deg);
    }
    50% {
        opacity: 1;
        transform: rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

@keyframes checkmark-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes checkmark-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content,
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .achievements {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .info-content {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .mission-card,
    .step-item {
        padding: 1.5rem;
    }
    
    .additional-info {
        padding: 2rem;
    }
}.pol {
      margin  :  5% 15%;

}