* {
    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: #fafafa;
}

.main-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  padding    :   1rem 0;
   position: fixed;
   top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
} 

.nav-container {
	 max-width    :       1200px;
  margin: 0 auto;
                    display: flex;
    justify-content: space-between;
  align-items: center;
  padding  :       0 20px;


}

.brand-section {


  display:     flex;
	align-items: center;
    gap: 12px;


}

.company-logo {
	    height    : 40px;
    width: auto;
  filter: brightness(0) invert(1);
     }

.company-name{
                    color: white;
  font-size   :        1.5em;
    font-weight: 700;
	letter-spacing: -0.5px;
}

.navigation-links {
   display: flex;
  list-style: none;
   gap: 2rem;
}

.navigation-links a {
               color: #ecf0f1; 
	    text-decoration: none; 
	  font-weight  :    500; 
		transition: color 0.3s ease; 
	   padding: 8px 16px; 
	    border-radius  :        6px; 
	
	}

.navigation-links a:hover {
	color: #3498db;
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle	{
   display: none;
   flex-direction: column;
  cursor: pointer;
    gap     :        4px; 
	
}

.mobile-menu-toggle span


{

    width: 25px;
  height: 3px;
    background-color    :        white;
	transition: all 0.3s ease;


}

.content-wrapper  {
   margin-top: 80px;

}

.hero-section {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 80px 20px;
   display: flex;
 align-items: center;
    min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
  margin  :  0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.hero-content h1 {
    font-size: 3.2em;
	font-weight: 800;
   margin-bottom: 24px;
    line-height: 1.2;


}

.hero-description {
	 font-size: 1.3em;
  margin-bottom: 40px;
  line-height :       1.6;
   opacity: 0.95;
}

.hero-actions {
   display: flex;
  gap: 20px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding:15px 32px;
   text-decoration: none;
        border-radius: 8px;
  font-weight     :  600;
  font-size: 1.1em;
    transition: all 0.3s ease;
   border: 2px solid transparent;
}  

.primary-btn {
    background-color: #e74c3c;

          color: white;
}

.primary-btn:hover {
   background-color: #c0392b;
     transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}



.secondary-btn {
    background-color: transparent;
  color:       white;
   border-color: white;
}

.secondary-btn:hover

{
		color: #667eea;
  background-color: white;


}

.hero-image {

    width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
     }

.services-overview {
    padding :  100px 20px;
  background-color: white;
}

.section-container {
  max-width    :  1200px;
    margin: 0 auto;
	
}

.services-overview h2 {
	  text-align: center;
   font-size:   2.8em;
     margin-bottom : 60px;
   color     :        #2c3e50;
	font-weight: 700;}

.services-grid {
	display:  grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-item {
   background    :     #fff;
   border-radius: 16px;
	 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition     :   transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image     {
  width: 100%;
		 height: 250px;
   object-fit    :  cover;


}

.service-item h3 {
	 font-size: 1.6em;
  margin: 25px 25px 15px;
   color: #2c3e50;
  font-weight: 600;
}

.service-item p   {
    padding: 0 25px 30px;
      color: #666;
    line-height    :       1.7;
}

.methodology-section {
        padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.methodology-content	{
  display  :    grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
	align-items: center;
} 

.methodology-text h2 {
  font-size     :     2.5em;
    margin-bottom: 30px;
    color    :    #2c3e50;
    font-weight: 700;
}

.methodology-text p {
      font-size: 1.2em;
   margin-bottom: 30px;
    color    :       #555;
   line-height: 1.7;
}

.methodology-features {
    list-style: none;
	padding: 0;
}

.methodology-features li {
   padding: 12px 0;
  padding-left    :       30px;
   position: relative;
    color: #444;
   font-size: 1.1em;
}

.methodology-features li::before {
  content: "✓";
  font-weight: bold;
    color: #27ae60;
    font-size: 1.2em;
  position: absolute;
  left: 0;
}

.methodology-image     {
    width     :   100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  color   :white;
    padding: 80px 20px;
  text-align: center;
}

.cta-content h2    {
  font-size: 2.8em;
         margin-bottom: 25px;
      font-weight  :      700;
}

.cta-content p {
   font-size: 1.3em;
    margin-bottom: 40px;
 max-width: 800px;
  margin-left: auto;
    margin-right: auto;
 line-height: 1.6;
}

.cta-button {
  background-color: #e74c3c;
    color: white;
       padding: 18px 40px;
   text-decoration :        none;
  border-radius    :       8px;
  font-weight: 600;
   font-size: 1.2em;
  transition: all 0.3s ease;
   display: inline-block;

}

.cta-button:hover {
   background-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.contact-section {
	    padding: 100px 20px;
  background-color: #f8f9fa;}

.contact-section h2 {
   text-align: center;
  font-size: 2.8em;
   margin-bottom: 60px;
   color: #2c3e50;
   font-weight: 700;
}

.contact-wrapper{
  display: grid; 
   grid-template-columns: 2fr 1fr; 
    gap: 60px; 
   max-width: 1000px; 
   margin :      0 auto;
}


.contact-form {
    background:    white;
          padding: 40px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {


    margin-bottom :      25px;
	}

.form-group label {
   display :    block;
  margin-bottom     :8px;
    font-weight: 600;
   color: #333;
}

.form-group input,
.form-group select,
.form-group textarea{
   width :      100%;
   padding: 12px 16px;
   border: 2px solid #e0e0e0;
   border-radius: 6px;
    font-size: 1em;
    transition   :   border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
	border-color   :     #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn
	{
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding  :   15px 32px;
    border: none;
	border-radius: 8px;
   font-size: 1.1em;
  font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
         width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-info {
   background: white;
    padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: fit-content;
}

.contact-info h3 {
    font-size: 1.8em;
  margin-bottom: 30px;
  color: #2c3e50;
  font-weight: 600;
}

.contact-detail {
   margin-bottom    :  25px;
}

.contact-detail strong {
	  color :        #667eea;
    font-size: 1.1em;}

.contact-detail p {
    margin-top   :    5px;
    color: #666;
   line-height: 1.5;
}

.site-footer {
  background-color: #2c3e50;
    color: white;
    padding   :       60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4		{
   color: #ecf0f1; 
	  margin-bottom: 20px; 
	   font-weight    :600; 
	   font-size: 1.3em;
}

.footer-section ul {
 list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
    color: #bdc3c7;
	   text-decoration: none;
		 transition    :   color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-logo {
	 height :     50px;

	     width: auto;

	  margin-bottom  :   20px;

	  filter: brightness(0) invert(1);
}

.footer-section p {
      color : #bdc3c7;
   line-height: 1.6; 


}

.footer-bottom {
   border-top: 1px solid #34495e;
    padding-top: 20px;
          text-align: center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .navigation-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .navigation-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.5em;
    }

    .hero-description {
        font-size: 1.1em;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }
}.about-hero    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 padding: 120px 20px 80px;
 color: white;
  text-align: center;
}

.about-hero-content {
    max-width: 800px;
     margin: 0 auto;
}

.about-hero h1 {
  font-size: 3em;
  font-weight: 800;
   margin-bottom: 25px;
  line-height     :    1.2;

}

.about-hero-description
{
 font-size: 1.3em;
    line-height: 1.6;
    opacity: 0.95;
}

.mission-vision {
  padding: 100px 20px;
    background-color: #f8f9fa;
}

.mission-vision-grid {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width:1200px;
    margin: 0 auto;
}

.mission-block, .vision-block {
  background: white;
    padding    :        40px;
	border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.mission-block h2, .vision-block h2 {
    font-size  :    2.2em;
   color:       #2c3e50;
   margin-bottom: 25px;
    font-weight: 700;
}

.mission-block p, .vision-block p 
 {
    font-size: 1.1em;
     line-height: 1.7;
       color: #555;
       margin-bottom: 30px;
}

.mission-image, .vision-image {

   width: 100%;
   height: 250px;
   object-fit: cover;
	 border-radius :       12px;
     }

.expertise-section {
	    padding: 100px 20px;

    background: white;
	}

.expertise-section h2 {

    text-align: center;
   font-size: 2.8em;
    margin-bottom: 60px;
   color: #2c3e50;
   font-weight: 700;
	}

.expertise-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
	align-items:       center;
}

.expertise-item {
     margin-bottom: 40px;
}

.expertise-item h3 {


   font-weight: 600;
      font-size: 1.5em;
    color: #667eea;
    margin-bottom: 15px;
     }

.expertise-item p {
   color: #666;
   line-height  :        1.7;
}

.expertise-image {
      width: 100%;
               height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.approach-methodology {
	   padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.approach-methodology h2 {
    text-align: center; 
	  font-size: 2.8em; 
	    margin-bottom:        60px; 
		color: #2c3e50; 
	   font-weight: 700;
}

.approach-grid     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 30px;
   max-width: 1200px;
    margin: 0 auto;
}

.approach-card {
	   background: white;
    padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;}

.approach-card:hover {
  transform: translateY(-5px);
}

.approach-card h3 {
  font-size: 1.4em;
  color: #667eea;
    margin-bottom: 15px;
   font-weight: 600;
}

.approach-card p{
  color: #666;
    line-height: 1.6;
}

.why-choose-us {
    padding: 100px 20px;
  background: white;
}

.why-choose-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
	align-items: center;
}

.why-choose-text h2 {
   font-size: 2.5em;
   margin-bottom: 30px;
   color: #2c3e50;
    font-weight: 700;


}

.why-choose-list {
    list-style: none;
   margin-bottom: 40px;
}

.why-choose-list li {
    padding: 12px 0;
   padding-left: 30px;
   position: relative;
	color: #444;
      line-height: 1.6;
}

.why-choose-list li::before {

  content: "✓";
    position: absolute;
	left: 0;
	color  :#27ae60;
   font-weight: bold;
    font-size: 1.2em;


}



.why-image	{
      width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.stats-section {
        display: flex;
   gap: 40px;
   flex-wrap: wrap;
}

.stat-item {
 text-align: center;
}

.stat-number {
   display: block;
   font-size: 2.5em;
    font-weight: 800;
        color :      #667eea;
  line-height:      1;
}

.stat-label {
   display: block;
  font-size: 0.9em;
   color: #666;
 margin-top     :  5px;
}

.working-process {
      padding: 100px 20px;
  background: #f8f9fa;

}

.working-process h2 {
  font-weight    : 700;
  margin-bottom: 60px;
  color: #2c3e50;
  font-size: 2.8em;
    text-align :        center;
}

.process-timeline 
 {
  max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
   gap: 30px;
  margin-bottom: 50px;
        align-items: flex-start;
}

.step-number {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
       color: white;
    width: 60px;
    height: 60px;
	 border-radius: 50%;
   display :       flex;
    align-items: center;
  justify-content: center;
    font-size: 1.5em;
   font-weight: 700;
   flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5em;
    color  : #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.step-content p {
	color: #666;
    line-height: 1.7;
}

.values-section {
  padding: 100px 20px;
   background: white;
}

.values-section h2 {
    text-align: center;
   font-size: 2.8em;
  margin-bottom: 60px;
	color: #2c3e50;
   font-weight: 700;
}


.values-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
   max-width     :    1000px;
   margin: 0 auto;
}

.value-item    {
  -webkit-transition: transform 0.3s ease;
    text-align: center;
                    padding: 40px 30px;
  -moz-transition: transform 0.3s ease;
   background:    #f8f9fa;
   border-radius: 12px;
     transition  :    transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
    font-size    :  1.6em;
  color: #667eea;
   margin-bottom: 20px;
  font-weight: 600;
}

.value-item p {
   color: #666;
   line-height: 1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding     :       120px 20px 80px;
 min-height: 70vh;
   display  :       flex;
    align-items: center;
}

.thankyou-container {
   max-width   : 1200px;
		margin: 0 auto;
	    display: grid;
	   grid-template-columns: 1fr 1fr;
	   gap: 60px;
	   align-items: center;
}

.thankyou-content {
   color: white;
}

.success-indicator
	{
   margin-bottom: 40px;
}

.checkmark-circle {
               width: 80px;
    height: 80px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
 display: flex;
	align-items: center;
   justify-content : center;
   margin-bottom: 30px;
}


.checkmark {
   width: 30px;
  height: 15px;
   border: 4px solid white;
   border-top: none;
    border-right: none;
  transform: rotate(-45deg);
  margin-top: -5px;
}

.thankyou-content h1 {
   font-size: 3em; 
   font-weight: 800; 
	margin-bottom: 25px; 
	 line-height: 1.2;
}


.thankyou-message {
  font-size: 1.3em;
  line-height: 1.6;
   margin-bottom: 50px;
  opacity: 0.95;
}

.thankyou-image {
       width: 100%;
   height: auto;
   border-radius    :  12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	}

.next-steps {
   background: white;
	 color: #333;
   padding     : 50px 20px;
   margin: 80px 0;
}  

.next-steps h2 {
   text-align: center;
    font-size: 2.5em;
   margin-bottom:50px;
    color: #2c3e50;
   font-weight: 700;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
       max-width: 900px;
  margin: 0 auto;
}

.step-item{
  text-align: center;
   padding: 30px 20px;
}

.step-icon {
 width: 60px;
   height : 60px;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
          font-size: 1.5em;
    font-weight: 700;
   margin: 0 auto 20px;
}

.step-item h3 {
  margin-bottom: 15px;
  font-weight: 600;
   color: #2c3e50;
     font-size: 1.4em;
}

.step-item p {
	color: #666;
  line-height: 1.6;
}

.contact-reminder {

  background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius     :        12px;
	margin: 50px 0;
    text-align :      center;



}

.contact-reminder h3 {

		font-size: 1.6em;
	 margin-bottom: 15px;
	font-weight: 600;}

.phone-contact {
					 margin: 20px 0;

}

.phone-number {
  font-size: 2em;
   font-weight: 700;
   color: #fff;
  background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
   border-radius :  8px;
   display: inline-block;
}

.availability {
  margin-top: 15px;
  opacity: 0.9;
}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
    padding: 40px;
  border-radius: 12px;
    margin: 50px 0;
}

.additional-info h3 {
   font-size: 1.6em;
  margin-bottom: 20px;
    font-weight: 600;
}

.additional-info p {
  line-height: 1.6;
	opacity: 0.95;
}

.action-buttons {
	    display: flex;
    gap: 20px;
   margin-top     :       50px;
   flex-wrap: wrap;
     }

.testimonial-preview {
   padding: 80px 20px;
   background: #f8f9fa;
}

.testimonial-preview h2  {
  margin-bottom: 50px;
   color: #2c3e50;
  font-size: 2.5em;
   font-weight: 700;
  text-align: center; 
	
}

.testimonial-item {
    max-width: 800px;
    margin: 0 auto;
        text-align :        center;
}

.testimonial-item blockquote {
   font-size: 1.3em;
  font-style: italic;
   color   :  #555;
  line-height: 1.7;
  margin-bottom: 30px;
    padding: 0 40px;
}

.testimonial-item cite


{
   color: #667eea;
      font-weight: 600;
     font-style: normal;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5em;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-section {
        justify-content: center;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.5em;
    }

    .action-buttons {
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .phone-number {
        font-size: 1.6em;
        padding: 12px 20px;
    }
}.policy-section {
     padding: 100px 20px;
	 background-color: #f8f9fa;

}

.policy-content {
    max-width: 800px;
   margin: 0 auto;
}

.policy-content h1 {
    font-size: 2.8em;
  margin-bottom: 40px;
  color   :   #2c3e50;
    font-weight   :700;
                    text-align: center;
}

.policy-content h2 {
	color: #2c3e50;
	font-weight :      600;
	font-size: 1.8em;
   margin: 30px 0 20px;
}

.policy-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
		 color: #555;
   line-height: 1.7;

}

.policy-content ul {
    list-style: none;
                    padding     :  0;
   margin-bottom: 20px;
} 

.policy-content ul li {
  padding: 10px 0;
	padding-left: 30px;
   position: relative;
  color: #444;
    font-size: 1.1em;
}

.policy-content ul li::before {
	  font-weight     :       bold;
   color: #667eea;
  content: "•";
	font-size: 1.2em;
	 left: 0;
   position: absolute;

}@media (max-width: 768px) {
    .policy-section {
        padding: 80px 20px;
    }

    .policy-content h1 {
        font-size: 2.2em;
    }

    .policy-content h2 {
        font-size: 1.5em;
    }

    .policy-content p,
    .policy-content ul li {
        font-size: 1em;
    }
}