*{
			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     :   #ffffff;
}

.container-wrap {
  max-width     :      1200px;
   margin: 0 auto;
   padding  : 0 20px; 

}

.main-header {
    position: fixed;
  top: 0;
	width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    transition :   all 0.3s ease;
    border-bottom: 1px solid #e1e1e1;
	
}

.main-header.scrolled {

  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);

}

.navbar-container {
   padding: 1rem 0;
}

.nav-wrapper {
    margin: 0 auto;
  max-width     : 1200px;
   align-items: center;
  padding: 0 20px;
   display: flex;
   justify-content: space-between;
}

.company-logo {
  height: 45px;
   width: auto;
	
}

.navigation-menu {

   display: flex;

	    list-style: none;

	  gap: 2rem;
     }

.navigation-menu a


{
    text-decoration: none;
   color     :       #333;
   font-weight: 500;
  transition: color 0.3s ease;
    position: relative;
}

.navigation-menu a:hover {
    color: #2c5aa0;
}

.navigation-menu a::after {

  content: '';
  position: absolute;
   width: 0;
    height: 2px;
   -o-transition:        width 0.3s ease;
   bottom : -5px;
  left: 0;
    background-color: #2c5aa0;
  -webkit-transition: width 0.3s ease;
    transition: width 0.3s ease;


}

.navigation-menu a:hover::after{
  width: 100%;
}

.mobile-toggle     {
   display: none;
    flex-direction: column;
    cursor: pointer;
  padding:     10px;
}

.mobile-toggle span {
    width: 25px;
   height: 3px;
    background-color: #333;
   margin: 3px 0;
  transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1)

{


  transform: rotate(-45deg) translate(-5px, 6px);

} 

.mobile-toggle.active span:nth-child(2) {


         opacity: 0;}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px); 
	
}

.hero-banner  
  {
	  margin-top:  80px;
   padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	 min-height: 70vh;
  display: flex;
  align-items: center;}

.hero-banner .container-wrap {
    display: grid;
   grid-template-columns: 1fr 1fr;
                    gap: 4rem;
  align-items: center;
}

.hero-content h1 {
	font-weight: 700;
   font-size: 3.5rem;
   margin-bottom: 1.5rem;
	line-height: 1.2;
        color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
   color: #666;
   margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-actions
	{
  display: flex;
  gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(45deg, #2c5aa0, #1e3f70);
  color  :  white;
    padding: 15px 30px;
   text-decoration: none;
  border-radius    :     8px;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
	
}

.secondary-btn {
   font-weight: 600;
 border-radius: 8px;
	border: 2px solid #2c5aa0;
    text-decoration: none;
   color: #2c5aa0;
	background: transparent;
  padding  :   15px 30px;
    transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #2c5aa0;
   color: white;
}


.hero-visual img {
  width: 100%;

   height: auto;

    border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-section {
   padding: 100px 0;
    background     :        #ffffff;
}

.section-header {
 margin-bottom: 4rem;
	   text-align: center;
} 

.section-header h2 {
    font-size: 2.8rem;
         color: #1a1a1a;
    margin-bottom: 1.5rem;
        font-weight: 600; 
	
}



.section-header p {
  font-size: 1.2rem;
   color: #666;
   max-width: 800px;
    margin: 0 auto;
}

.benefits-grid		{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.benefit-card {
  background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
  text-align: center;
   transition: transform 0.3s ease;

}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
  font-size: 1.5rem;
  color    :  #2c5aa0;
	 margin-bottom  :       1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
  line-height: 1.6; 

}

.services-showcase {

    padding: 100px 0;
    background: #f8f9fa;

}

.section-title {
   text-align: center;
    font-size: 2.8rem;
                    color: #1a1a1a;
   margin-bottom: 4rem;
  font-weight: 600;
}

.services-layout {
  display: flex;
    flex-direction: column;
   gap: 4rem;
}

.service-item {
  display: grid;
      grid-template-columns: 1fr 1fr;
    gap: 3rem;
 align-items: center;
    background: white;
   padding: 3rem;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08); 
	
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-details {

	  direction: ltr;}

.service-image img {
   width: 100%;
                    height: auto;
  border-radius: 10px;

}

.service-details h3 {
      font-size: 1.8rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
	}

.service-details p {
  color   :  #666;
  margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
	
}

.feature-list li  {
    color: #555;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature-list li::before {


  content: '✓';
    position: absolute;
  left: 0;
  color: #2c5aa0;
   font-weight: bold;
}

.cta-section {
    padding: 100px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f70 100%);
   color: white;
}

.cta-section .container-wrap	{
    display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 3rem;
         align-items:   center; 
	
}

.cta-content h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
               font-weight: 600;
}

.cta-content p


{
	 font-size: 1.2rem; 
	   opacity: 0.9; 
	  margin-bottom: 2rem;


}

.cta-button {
    border-radius: 8px;
    color: #2c5aa0;
  text-decoration: none;
  transition: all 0.3s ease;
	 padding: 15px 30px;
			font-weight: 600;
    display: inline-block;
      background: white; 
	
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-visual img {
  width: 100%;
   height: auto;
   border-radius  :10px;
}

.contact-section {
    padding: 100px 0;
   background: #ffffff;

	}

.contact-header {
   text-align: center;
    margin-bottom: 4rem;
}

.contact-header h2 {
    font-size: 2.8rem;
  color: #1a1a1a;
    margin-bottom: 1rem;
   font-weight: 600;

}

.contact-header p {
         font-size: 1.2rem;
    color: #666;
}

.contact-wrapper {

     display: grid;
  grid-template-columns  :   2fr 1fr;
  gap  :      4rem;


}

.contact-form {
    background: #f8f9fa;
	padding: 3rem;
   border-radius: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
   display: block; 
    color: #333; 
        margin-bottom: 0.5rem; 
  font-weight: 500; 
	
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
    border: 2px solid #e1e1e1;
  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: #2c5aa0;
}

.submit-btn {
   background     :      #2c5aa0;
  color:     white;
  padding     :   15px 30px;
  border: none;
    border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #1e3f70;
  transform: translateY(-2px);
}

.contact-info {
          background: #f8f9fa;
    padding: 2rem;
      border-radius: 10px;
  height: fit-content;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
  color   :       #2c5aa0;
    margin-bottom: 0.5rem;
	font-weight: 600;
}

.info-item p {
	 color: #666;
          line-height :       1.5;
     }

.site-footer {
    background: #1a1a1a;
   color: white;
  padding:        60px 0 20px;
}

.footer-content {
    display: grid;
       grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
               height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
       margin-bottom: 1rem;
}

.footer-brand p {

   color: #ccc;
    line-height   : 1.6;
}

.link-group h4 {

    color  :     #fff;
    margin-bottom: 1rem;
               font-weight: 600;


}

.link-group ul {


  list-style: none;


} 

.link-group ul li {
  margin-bottom   :      0.5rem;
}

.link-group ul li a {
  -moz-transition: color 0.3s ease;
   color: #ccc;
  text-decoration: none;
   -o-transition: color 0.3s ease;
   transition: color 0.3s ease; 

}

.link-group ul li a:hover {
    color: #fff;

}

.footer-contact h4 {
  margin-bottom    :      1rem;
    font-weight: 600;
  color: #fff;
}

.footer-contact p {
	  color    :#ccc;
   margin-bottom  :        0.5rem;
     }

.footer-bottom {
    border-top: 1px solid #333;
   padding-top     :       1rem;
   text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
   color: #ccc;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navigation-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-banner .container-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .cta-section .container-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2,
    .section-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero  {
       margin-top: 80px;
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  text-align: center;
}

.about-hero-content h1 {
   font-size    :     3.2rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
}

.about-hero-subtitle {
    font-size: 1.3rem;
  opacity: 0.9;
  max-width: 700px;
   margin: 0 auto;
}

.our-story {
					padding: 100px 0;
   background: #ffffff;
}

.story-layout	{
    display: grid;
    gap: 4rem;
    align-items: center;
   grid-template-columns: 1fr 1fr;
}

.story-content h2 {
   font-size    :        2.5rem;
    color: #2c5aa0;
   margin-bottom: 2rem;
  font-weight    :  600;
}

.story-content p {
	color   :   #666;
  line-height: 1.7;
               margin-bottom: 1.5rem;
    font-size: 1.1rem;
}


.story-stats {

	display: flex;
         gap: 2rem;
   margin-top: 3rem;}

.stat-item {
   text-align: center;
}

.stat-number {
    display: block;
  font-size: 2.5rem;
  font-weight: 700;
   color     :    #2c5aa0;
}

.stat-label {
   font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.story-image img {
       width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

.our-approach {
   padding: 100px 0;
       background: #f8f9fa;
}

.approach-grid  {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap     :     2.5rem; 



}  

.approach-card {
   background: white;
     padding: 2.5rem;
   border-radius: 15px;
   text-align: center;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-image	{
               margin-bottom: 2rem;
}

.approach-image img {
    width: 100%;
    height:        200px;
    object-fit: cover;
	border-radius: 10px;
}

.approach-card h3 {
   font-size: 1.5rem;
   color: #2c5aa0;
         margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: #666;
	          line-height: 1.6;
}

.values-section {
  padding: 100px 0;
   background: #ffffff;
}

.values-section .container-wrap {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
      align-items: center;
}

.values-content h2 {
  font-size: 2.5rem;
    color: #2c5aa0;
	 margin-bottom: 2rem;
    font-weight: 600;
}

.values-list

{
    display: grid;
    gap: 1.5rem;
}

.value-item h4{
    color: #2c5aa0;
  font-size: 1.2rem;
	 margin-bottom: 0.5rem;
  font-weight: 600;


}

.value-item p {
  color: #666;
    line-height: 1.6;
}

.values-visual img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f70 100%);
	color: white;
}

.mission-content {
     text-align     : center;}

.mission-content h2 {
    font-size: 2.8rem;
   margin-bottom: 2rem;
    font-weight: 600;
}

.mission-statement {
   font-size: 1.3rem;
    line-height: 1.7;
        margin-bottom: 3rem;
    opacity: 0.95;
   max-width: 900px;
   margin-left: auto;
  margin-right :    auto;
}

.mission-points {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
    margin-top     : 3rem;
}

.mission-point {
   text-align: center;
    padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.mission-point h4 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
	font-weight: 600;
}

.mission-point p {
   opacity: 0.9;
}

.why-choose-us {
	 padding: 100px 0;
	   background: #f8f9fa;
}

.reasons-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
}

.reason-card {
    background: white;
  padding: 2.5rem;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-3px);
}

.reason-card h3 {
	font-size    :        1.4rem;
       color: #2c5aa0;
     margin-bottom: 1rem;
   	font-weight    :600;

}

.reason-card p {
  color: #666;
   line-height: 1.6;
}

.thankyou-hero
{
   margin-top: 80px;
   padding: 100px 0;
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
    text-align: center;
}

.thankyou-content


{
	max-width: 800px;
  margin: 0 auto;
  color: white;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
	 height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
   margin: 0 auto;
    display: flex;
  align-items: center;
    justify-content: center;
   animation: scaleIn 0.6s ease-out;
}

.checkmark {
  width     :    40px;
	  height: 40px;
	  position: relative;
}

.checkmark::after {
  content: '✓';
   color: white;
  font-size     : 2rem;
	 font-weight: bold;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou-content h1
	{
                    font-size: 3rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
}

.thankyou-message {
    font-size: 1.2rem;
    line-height: 1.6;
   margin-bottom: 3rem;
    opacity:     0.95;
	}

.next-steps {
    background: white;
  color: #333;
   padding  :       3rem;
    border-radius: 15px;
   margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.next-steps h2 {
   color  :     #2c5aa0;
    font-size: 2.2rem;
	text-align: center;
  margin-bottom: 2.5rem;
    font-weight: 600;
}

.steps-grid		{
	       display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
     }

.step-item {
  text-align: center; 
	 padding: 1.5rem;
}

.step-number {
   display: inline-block;
   width: 50px;
   height: 50px;
   background: #2c5aa0;
    color: white;
    border-radius: 50%;
	line-height: 50px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: #2c5aa0;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600; 

}

.step-item p {
  color: #666;
    line-height: 1.5;
}

.additional-info {
  background: white;
  color: #333;
          padding: 3rem;
  border-radius  :      15px;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.additional-info h2 {
   color: #2c5aa0;
       font-size: 2.2rem;
	text-align: center;
   margin-bottom: 2.5rem;
   font-weight: 600;
}

.info-cards {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
		text-align: center;
    padding: 2rem;
   background    :  #f8f9fa;
  border-radius: 10px;
     }

.info-card img


{
    border-radius: 8px;
    width: 100%;
  margin-bottom: 1.5rem;
  object-fit: cover;
   height: 200px;
}



.info-card h3 {
   color:   #2c5aa0;
   font-size: 1.3rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.info-card p {
   color: #666;

  line-height: 1.5;
}

.contact-reminder {
  background: rgba(255, 255, 255, 0.1); 
    padding: 2rem; 
  border-radius    :       10px; 
    margin: 2rem 0; 
   text-align: center;
}

.contact-reminder h3 {
  font-size: 1.5rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.contact-reminder p {
   margin-bottom: 1rem;
                    opacity: 0.9;
}

.emergency-contact {
   margin-top: 1rem;
}

.emergency-contact p {
    margin: 0.5rem 0;
    font-weight  : 500;
}

.action-buttons {
  display  :   flex;
   gap: 1rem;
	justify-content: center;
   margin-top: 2rem;
               flex-wrap: wrap;
}

.testimonial-preview {
  padding     :      100px 0;
    background  :       #f8f9fa; 
	
}

.testimonial-preview h2 {
   font-weight: 600;

	    color: #2c5aa0;

	  text-align: center;

	   font-size:        2.5rem;

	   margin-bottom: 3rem;
}

.testimonials-grid {
  display     :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {


   background: white;
	        padding :  2.5rem;
	    border-radius  :  12px;
	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}

.testimonial-card p {
   color     :       #666;
  line-height:    1.6;
   margin-bottom: 1.5rem;
   font-style: italic;
}

.testimonial-author strong {
    color: #2c5aa0;
    font-weight  :      600;
}

.testimonial-author span {
  display: block;
  margin-top: 0.2rem;
   color: #999;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .story-layout,
    .values-section .container-wrap {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content h2,
    .values-content h2,
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .next-steps,
    .additional-info {
        padding: 2rem;
    }
    
    .approach-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }
}