* {


       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;
}

.main-header {
    background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  position     :     fixed;
  width: 100%;
   top: 0;
  z-index :    1000;
}

.navigation-container {
  max-width: 1200px;
      margin: 0 auto;
    padding: 0 20px;
	display   :       flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;

}

.nav-brand .brand-logo
{
  width: auto;
  height: 45px;
} 

.nav-menu {
  display   :        flex;
                    list-style: none;
   gap: 30px;


}

.nav-link {
	 text-decoration: none;
   color: #333;
               font-weight: 500;
   transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5aa0;
}

.nav-toggle {
  cursor: pointer;
   display: none;
   flex-direction: column;
}

.nav-bar {
  width     :   25px;
  height: 3px;
    background-color: #333;
    margin:    3px 0;
   transition: 0.3s;
}

.hero-section {
    margin-top: 70px;
    min-height: 90vh;
         display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.hero-container {
  max-width   :    1200px;
	  margin: 0 auto;
	   padding: 0 20px;
	   display: grid;
	  grid-template-columns: 1fr 1fr;
		 gap: 60px;
	  align-items :        center;
	
}

.hero-title {
    font-weight: 700; 
    line-height: 1.2; 
	font-size: 3.2rem; 
	margin-bottom: 20px;
	
}

.hero-description {

	  font-size: 1.3rem;
    margin-bottom: 30px;
   opacity: 0.9;
     }

.hero-actions {
        display: flex;
  gap: 20px;
}

.primary-button, .secondary-button 
 {
    padding: 15px 30px;
  text-decoration: none;
   border-radius: 8px;
				 font-weight: 600;
	 transition: all 0.3s ease;
    display: inline-block;
}

.primary-button {
   background: #ff6b6b;
  color: white;
}

.primary-button:hover {
    background: #ee5a5a;
  transform: translateY(-2px);
}

.secondary-button {
	   background: transparent;
    color: white;
  border    :      2px solid white;
}

.secondary-button:hover {
    background: white;
    color: #667eea; 
	
}

.hero-image img {
   width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-section {
    padding: 100px 0;
   background: #f8f9fa;
}

.section-title {
               text-align: center;
  font-size: 2.5rem;
      margin-bottom: 60px;
    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 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease; 
	
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3


{
  padding: 25px 25px 15px;
    font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
    padding:     0 25px 25px;
  line-height: 1.6;
   color: #666;
}

.about-preview {
    padding: 100px 0;
}

.about-content {
    display: grid;
       grid-template-columns   :        1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
  font-size: 2.3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
               font-size: 1.1rem;
}

.benefits-list {
   list-style: none;
    margin-top: 30px;

}  

.benefits-list li {
               padding: 8px 0;
  position: relative;
   padding-left    :  25px;
   color: #555;
}

.benefits-list li:before {
  content: "✓";
   position: absolute;
	left: 0;
    color: #28a745;
  font-weight: bold;
}

.about-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.cta-section {
 padding: 80px 0;
  background: linear-gradient(45deg, #2c5aa0, #3498db);
   color: white;
    text-align: center;
}

.cta-content h2 {

			 font-size: 2.5rem;
    margin-bottom: 20px;
	
}

.cta-content p {

	    font-size: 1.2rem;
     margin-bottom: 35px;
       opacity: 0.9;
  max-width: 600px;
    margin-left: auto;
   margin-right: auto;
     }

.cta-button {
    background: #ff6b6b;
	 color  :        white;
   padding: 18px 40px;
   text-decoration: none;
     border-radius: 8px;
    font-weight: 600;
  font-size: 1.1rem;
    display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover     {
    background: #ee5a5a;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
  padding: 100px 0;
    background: #f8f9fa;
}

.contact-wrapper {
   display: grid;
     grid-template-columns: 1fr 2fr;
   gap: 60px;
  margin-top    : 50px;
}


.contact-info h3 {


    margin-bottom:     30px;
   color: #2c3e50;
    font-size: 1.5rem;}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display : block;
               margin-bottom: 8px;
  color: #2c5aa0;
}

.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 {
 font-weight: 600;
   margin-bottom: 8px;
  display: block;
    color: #333;
	
}

.form-group input,
.form-group select,
.form-group textarea {
    width   :  100%;
      padding: 12px 15px;
                       border: 2px solid #e1e5e9;
      border-radius: 6px;
     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-button {
    background: #2c5aa0;
  color: white;
  padding: 15px 30px;
    border: none;
  border-radius: 6px;
   font-size: 1.1rem;
  font-weight  :       600;
    cursor: pointer;
   transition :   background 0.3s ease;
  width: 100%;
}


.submit-button:hover {
  background: #1a4480;
}

.main-footer {
  background: #2c3e50;
        color: white;
               padding: 60px 0 20px;
}



.footer-content {
		display   :  grid;
    grid-template-columns: 1fr 2fr;
   gap: 50px;
     margin-bottom: 40px; 

}

.footer-logo {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap :   30px;
}

.footer-section h4 {
   margin-bottom: 15px;
  color: #fff;
}

.footer-links {
                    list-style     :       none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
      color: #bdc3c7;
    text-decoration: none;
	transition: color 0.3s ease;
    -webkit-transition: color 0.3s ease;
	}

.footer-links a:hover    {

	  color: white;

}

.footer-bottom {
    border-top    :      1px solid #34495e;
    padding-top: 20px;
  text-align: center;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .nav-bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .nav-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .nav-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }
}.about-hero


{
    margin-top: 70px;
  padding: 80px 0;
  background: linear-gradient(45deg, #3498db, #9b59b6);
    color   :        white;
	}

.about-hero .container {
       display: grid;

	    grid-template-columns    : 1fr 1fr;

	   gap: 50px;

	   align-items: center;
     }

.about-title {
  font-size: 3rem;
   font-weight   : 700;
	 margin-bottom: 25px;
    line-height: 1.2;
}

.about-subtitle {
   font-size: 1.2rem;
   opacity: 0.9;
	 line-height: 1.6;
} 

.about-hero-visual img {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
} 

.mission-section {
    background  :#f8f9fa;
  padding: 100px 0;
}

.mission-content h2 {

	    font-size  :    2.5rem;
   text-align: center;
	 margin-bottom: 30px;
  color: #2c3e50;
     }

.mission-text {
   font-size: 1.3rem;
    text-align: center;
   max-width: 800px;
    margin: 0 auto 60px;
	color: #666;
  line-height: 1.7;
}

.mission-stats {

	   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  text-align: center;
	}

.stat-item {
    background:      white;
   padding: 40px 20px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition:     transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
   display: block;
    font-size: 3rem;
	 font-weight: 700;
	color: #3498db;
    margin-bottom: 10px;}

.stat-label {
  font-size :     1.1rem;
   color: #666;
	font-weight: 500;
}

.values-section {
  padding: 100px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap :    40px;
	 margin-top  :  60px;
}

.value-card {
	text-align: center;
  padding: 40px 30px;
   background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-icon
	{
    width: 80px;
  height: 80px;
  margin: 0 auto 25px;
    border-radius    :       50%;
    overflow  :hidden;
}

.value-icon img {
  width    :  100%;
	 height: 100%;
  object-fit: cover;
	
}

.value-card h3

{


    font-size: 1.5rem;
    margin-bottom: 15px;
   color: #2c3e50;}

.value-card p {
   line-height: 1.6;
          color: #666;
}

.story-section {
  padding: 100px 0;
				 background   :        #f8f9fa;

}

.story-content {
    display: grid;
       grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
  font-size: 2.3rem;
    margin-bottom: 30px;
   color: #2c3e50;
}

.story-text p {


 margin-bottom: 20px;
  color: #666;
   font-size: 1.1rem;
   line-height: 1.7;
}

.story-highlight {
	padding: 25px;
   border-radius: 0 8px 8px 0;
  border-left: 4px solid #3498db;
                    margin-top: 30px;
  background: #e3f2fd;
}

.story-highlight p {
                    margin: 0;
   color: #2c3e50;
    font-style     :        italic;
	
}

.story-visual img {
  width: 100%;
    height :  auto;
	border-radius  :12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.approach-section {
	padding: 100px 0;
}

.approach-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
 margin-top: 60px;
}

.step-item {
  text-align: center;
   position: relative;
   padding: 30px 20px;
	}

.step-number {
       width: 60px;
    height: 60px;
  background: linear-gradient(45deg, #3498db, #9b59b6);
	 color    : white;
   border-radius: 50%;
  display:      flex;
  align-items: center;
  justify-content: center;
    font-size: 1.5rem;
  font-weight: 700;
	margin: 0 auto 25px;

}

.step-item h3  {
   font-size: 1.3rem;
     margin-bottom: 15px;
   	color: #2c3e50;
}

.step-item p {
  color: #666;
	line-height: 1.6;
     }

.expertise-section {
    padding  :100px 0;
   background :  #f8f9fa; 
	
}

.expertise-list {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expertise-category   {
    background: white;
  padding   :40px 30px;
  border-radius:      12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.expertise-category h3 {
    font-size: 1.5rem;
 margin-bottom: 20px;
	color: #2c3e50;
    border-bottom  :    2px solid #3498db;
   padding-bottom: 10px;
}

.expertise-category ul    {
  list-style: none;
}

.expertise-category li {
	padding-left    :   20px;

    position: relative;

    color: #666;

    padding: 8px 0;

     line-height     :   1.5;
}

.expertise-category li:before {
  font-weight: bold;
   color: #3498db;
    left: 0;
  content: "→";
  position: absolute;
}

.cta-about {
  padding    :      80px 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color     :      white;
  text-align: center;}

.cta-about-content h2 {
   font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-about-content p     {
    font-size: 1.2rem;
    margin-bottom: 30px;
  opacity: 0.9;
   max-width: 600px;
			margin-left: auto;
   margin-right :    auto;
}

.nav-link.active {
       color: #2c5aa0; 
	   font-weight: 600;
} 

.thankyou-hero {
    margin-top: 70px;
    min-height: 100vh;
    display: flex;
    align-items: center;
  background: linear-gradient(135deg, #28a745, #20c997);
   color: white;
}

.thankyou-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.thankyou-content {
   text-align    :       center;
}

.thankyou-icon {
  margin-bottom: 30px;
	
}

.success-checkmark {
    width: 80px;
  height: 80px;
   margin: 0 auto;
  position: relative;
}

.checkmark-circle {

	    width: 80px;
    height: 80px;
    border-radius     :50%;
  background: rgba(255,255,255,0.2);
	 position: relative;
   display: flex;
    align-items     :  center;
    justify-content: center;
	
     }

.checkmark-stem {
  position: absolute;
  width     :  3px;
   height: 15px;
  background: white;
				 left: 30px;
    top :   25px;
  transform: rotate(45deg);
}

.checkmark-kick {
  position: absolute;
   width: 3px;
  height   : 8px;
   background: white;
  left: 25px;
  top: 30px;
  transform: rotate(-45deg);
}

.thankyou-title {
    font-size: 3rem;
  font-weight: 700;
   margin-bottom: 25px; 

}

.thankyou-message {
    font-size: 1.3rem;
	margin-bottom: 40px;
  opacity: 0.9;
    line-height: 1.6;
}

.next-steps {
  background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
  text-align: left;
}  

.next-steps h2 {

	  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;


}

.steps-timeline {


    space-y: 20px;


}

.timeline-item     {
  display: flex;
  align-items: flex-start;
   gap    : 20px;
   margin-bottom: 25px;
}

.timeline-marker {
    width: 40px;
    height: 40px;
  background: white;
    color: #28a745;
    border-radius: 50%;
   display: flex;
          align-items: center;
	justify-content: center;
  font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
  margin-bottom: 8px;
    font-size: 1.2rem;
}

.timeline-content p {
      opacity: 0.9;
    margin-bottom: 5px;
	}

.timeline-duration {
    font-size: 0.9rem;
					opacity: 0.7;
    font-style   :  italic;
}

.thankyou-info{
     background: rgba(255,255,255,0.1);
    padding: 30px;
   border-radius   :      12px;
   margin-bottom: 40px;
	 text-align: left; 

     }

.thankyou-info h3 {
   text-align: center;
  font-size: 1.5rem;
    margin-bottom: 20px;
}


.company-details{
   display: grid;
  gap: 10px;
}

.detail-item {
   padding: 8px 0;
}

.detail-item strong {
   display: inline-block;
   min-width: 80px;
  margin-right: 10px;

}



.thankyou-actions {
	 display: flex;
  gap: 20px;
   justify-content: center;
   flex-wrap: wrap;
}

.thankyou-visual img {
   width: 100%;
	height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.additional-resources   {
    padding: 100px 0;
   background: #f8f9fa;
}

.additional-resources h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;
          color     :#2c3e50;
}

.resources-grid {
  display     :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.resource-card


{
    background: white;
	 border-radius: 12px;
 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {
   width    : 100%;
 height: 200px;
  object-fit: cover;
}

.resource-card h3 {


   padding: 20px 25px 10px;
   font-size: 1.3rem;
   color: #2c3e50;}

.resource-card p {

	padding: 0 25px 25px;
   color: #666;
  line-height: 1.6;
}

.testimonial-preview {
  padding :        80px 0;
}

.testimonial-preview h2 {
	    text-align   :   center;
   font-size: 2.5rem;
  margin-bottom: 50px;
  color: #2c3e50;
     }

.testimonial-item     {
   -webkit-border-radius: 12px;
   max-width: 800px;
    margin: 0 auto 40px;
  text-align: center;
    padding: 40px;
       background: #f8f9fa;
    border-radius: 12px;

}

.testimonial-item blockquote {
   font-size: 1.2rem;
  font-style: italic;
   color: #555;
   margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-item cite {
	  color: #3498db;
  font-weight: 600;


}@media (max-width: 768px) {
    .about-hero .container,
    .story-content,
    .about-content,
    .thankyou-hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-title,
    .thankyou-title {
        font-size: 2.5rem;
    }

    .mission-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .values-grid,
    .expertise-list,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-title,
    .thankyou-title {
        font-size: 2rem;
    }

    .next-steps,
    .thankyou-info {
        padding: 25px;
    }

    .value-card,
    .step-item,
    .expertise-category {
        padding: 25px 20px;
    }
}