* {
     margin    :0;
    padding: 0;
          box-sizing:     border-box;

}


body {
   color: #2c3e50;
  line-height: 1.6;
  font-family: 'Arial', sans-serif;
       background-color: #ffffff;
}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               position: fixed;
	 top    :0;
   width :    100%;
    z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {


  max-width: 1200px;
    margin: 0 auto;
    display   :  flex;
    justify-content: space-between;
   align-items    :        center;
    padding: 1rem 2rem;
     }

.brand-logo .logo-img {
    height: 45px;
  width: auto;
}

.nav-links {

  display: flex;
    list-style: none;
    gap: 2rem;

}

.nav-links a {
   color: white;
     text-decoration: none;
       font-weight: 500;
     transition: opacity 0.3s ease;
	}

.nav-links a:hover {
    opacity: 0.8;
}

.burger-menu {
   display     :     none;
    flex-direction: column;
  cursor: pointer;
   gap: 4px;
}

.burger-menu span {
  width: 25px;
    height: 3px;
   background: white;
    transition: 0.3s;
	
}

.hero-banner {
   padding: 120px 2rem 80px;
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
        align-items: center;
   min-height: 90vh;
}

.hero-content h1 {
	line-height: 1.2;
   font-size     :       3.2rem;
    color: #2c3e50;
    font-weight: 700;
   margin-bottom: 1.5rem;
}

.hero-subtitle {
	font-size: 1.3rem;
        color: #7f8c8d;
   margin-bottom: 2.5rem;
	
}

.hero-actions {
    display: flex;
   gap: 1.5rem;
}

.primary-button, .secondary-button, .cta-button, .submit-button {
  padding: 14px 28px;
    border-radius: 8px;
   text-decoration: none;
	font-weight: 600;
  transition: all 0.3s ease;
    border: none;
  cursor: pointer;
   font-size  :     1rem;
}

.primary-button, .cta-button, .submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.secondary-button {
 background: transparent;
   color: #667eea;
    border    :       2px solid #667eea;
}

.primary-button:hover, .cta-button:hover, .submit-button:hover {
  transform: translateY(-2px);
	  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.secondary-button:hover {


   background: #667eea;
    color: white;

}

.hero-visual img {
     width: 100%;
          height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
     }

.services-showcase {

	    padding: 80px 2rem;
   background: #f8f9fa; 

	}

.section-header {
       text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
   color: #2c3e50;
	margin-bottom: 1rem;
  font-size: 2.5rem;
}

.section-header p {
       font-size: 1.2rem;
         color: #7f8c8d;
}

.services-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
    max-width: 1200px;
  margin     :        0 auto;
     }

.service-card


{
    background: white;
    border-radius: 12px;
 padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.service-card:hover {
	  transform: translateY(-5px);
     }

.service-card img {


   width: 100%;
   height: 200px;
  object-fit :    cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;


}

.service-card h3 {
  font-size     :   1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
   color  :#7f8c8d;
  line-height: 1.7;
}

.methodology-section {
  padding: 80px 2rem;
    max-width: 1200px;
   margin: 0 auto;
  display     :      grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.methodology-content h2 {
  font-size: 2.3rem;
        color   :        #2c3e50;
   margin-bottom: 1.5rem;
}


.methodology-content p {
  font-size: 1.1rem;
   color: #7f8c8d;
    margin-bottom: 2rem;
   line-height: 1.7;
}

.methodology-features {
  list-style: none; 

}

.methodology-features li		{
   padding  :     0.8rem 0;
       padding-left: 1.5rem;
  position: relative;
   color: #34495e;
   font-weight    :500;
}

.methodology-features li:before {
  content: "→";
  position    :      absolute;
       left :0;
   color: #667eea;
   font-weight: bold;
} 

.methodology-image img {
    width    :        100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          padding   :    80px 2rem;
    text-align: center;
}

.cta-content h2 {
   font-size: 2.5rem;
   color  :white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom:       2.5rem;
  max-width: 600px;
       margin-left     :      auto;
   margin-right: auto;
}

.cta-button {
  background: white;
  color: #667eea;
	display: inline-block;
}

.contact-section {
   background: #f8f9fa;
   padding: 80px 2rem;
}

.contact-wrapper {

    max-width     : 1200px;
       margin    :        0 auto;
      display: grid;
      grid-template-columns: 1fr 1.5fr;
      gap: 4rem;}

.contact-info h2	{

    font-size  :    2.2rem;
   color: #2c3e50;
   margin-bottom: 1rem;}

.contact-info p {
	color: #7f8c8d;
  margin-bottom: 2rem;
   font-size: 1.1rem;
}

.contact-details {
    display: flex;
 flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
   display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item strong {


        color: #2c3e50;
  font-weight: 600;


}

.contact-item span {
    color: #7f8c8d;
	
}

.contact-form {
  background: white;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
        margin-bottom: 1.5rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
   padding: 12px 16px;
	 border     :    2px solid #e9ecef;
   border-radius: 8px;
      font-size: 1rem;
   transition: border-color 0.3s ease;
   width: 100%;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus		{
    outline: none;
   border-color: #667eea;
}

.contact-form textarea {
    margin-bottom: 1.5rem;
    resize: vertical; 
	
}

.main-footer {
  background: #2c3e50;
   color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content
	{
   max-width: 1200px;
    margin: 0 auto;
  display:grid;
  grid-template-columns   :   1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo


{
   height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-links{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.footer-column h4 {


         margin-bottom: 1rem;
                    color: #ecf0f1;}

.footer-column ul {
   list-style: none;
}

.footer-column ul li   {
   margin-bottom :        0.5rem;
	
}

.footer-column ul li a {
    color: #bdc3c7;
  text-decoration: none;
  transition   :     color 0.3s ease;
}  

.footer-column ul li a:hover {
	color: white;
}

.footer-column p		{

   color: #bdc3c7;
    line-height: 1.6;


}

.footer-bottom {
   border-top: 1px solid #34495e;
  padding-top: 1rem;
  text-align: center;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 100px 1rem 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .methodology-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}.about-hero {
   padding: 120px 2rem 80px;
  max-width  :     1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns  :    1.2fr 1fr;
   gap: 3rem;
  align-items: center;
}

.about-hero-content h1 {
  font-size: 2.8rem;
     color     :        #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-subtitle {
	font-size: 1.2rem;
    color: #7f8c8d;
  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.1);
}

.company-story {
 padding: 80px 2rem;
    background: #f8f9fa;
}

.story-container {
   max-width   :     1000px;
    margin: 0 auto;
}

.story-container h2 {

    font-size    :      2.4rem;
   color: #2c3e50;
    text-align: center;
    margin-bottom    :2rem;
	}

.story-intro {
    font-size  :     1.2rem;
  color: #34495e;
  line-height: 1.7;
    text-align: center;
    margin-bottom: 4rem;
   max-width: 800px;
   margin-left: auto;
   margin-right: auto;
}

.timeline-section {
   position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
    height: 100%;
   background: #667eea;
}

.timeline-item {
   display :        flex; 
    margin-bottom:    3rem; 
  position: relative;
}  

.timeline-item:nth-child(odd) {
   flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {

  width: 100px;
          height  :   100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content: center;
  color:      white;
  font-weight: bold;
   font-size: 1.1rem;
    margin: 0 2rem;
   position: relative;
   z-index: 2;
}

.timeline-content {
   flex: 1;
    background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
			max-width: 400px;

}

.timeline-content h3 {
    color   :        #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.timeline-content p {
  color: #7f8c8d;
   line-height  :   1.6;
}

.methodology-details {
    padding: 80px 2rem;
}

.methodology-wrapper
	{
  max-width: 1200px;
   margin: 0 auto;
          display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items   :        center;
}

.methodology-text h2 {
    font-size: 2.3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;


}

.methodology-text > p {
  font-size: 1.1rem;
    color: #7f8c8d;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.approach-pillars {


    display: flex;
  flex-direction: column;
  gap: 1.5rem;

}

.pillar-item {
  padding: 1.5rem;
    background: #f8f9fa;
               border-radius    :    8px;
	border-left: 4px solid #667eea;
}

.pillar-item h4 {
     margin-bottom: 0.8rem;
  font-size: 1.1rem;
  color: #2c3e50;
}

.pillar-item p {
  color: #7f8c8d;
   line-height: 1.6;
	font-size: 0.95rem;
}

.methodology-visual img {
   width: 100%;
    height     :       auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.achievements-section {
    padding  :   80px 2rem; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.achievements-container {


    max-width: 1000px;
    margin: 0 auto;
    text-align: center;


}

.achievements-container h2 {
    font-size: 2.4rem;
   color: white;
 margin-bottom: 3rem; 

}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.stat-card {
  background: rgba(255,255,255,0.15);
  padding: 2rem;
    border-radius: 12px;
  backdrop-filter: blur(10px);


}

.stat-number {
   font-size: 2.5rem;
  font-weight: bold;
    color: white;
   margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255,255,255,0.9);
   font-size: 1rem;
}

.expertise-showcase {
  padding    :    80px 2rem;
	 background: #f8f9fa; 
	
} 

.expertise-content {
    max-width: 1200px;
  margin: 0 auto;
}

.expertise-content h2 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
   color: #2c3e50;
  text-align: center;
}

.expertise-grid {
    display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 2.5rem;
}

.expertise-item {
    background: white;
			border-radius:  12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-item img {
  width: 100%;
                    height: 220px;
  object-fit: cover;
}

.expertise-item h3 {


  font-size: 1.4rem;
   color  :     #2c3e50;
   margin: 1.5rem 1.5rem 1rem;}

.expertise-item p {
   color: #7f8c8d;
  line-height: 1.6;
   padding: 0 1.5rem 1.5rem;
}

.thankyou-hero {
                    padding: 120px 2rem 80px;
   min-height: 70vh;
    display: flex;
   align-items: center;
}

.thankyou-container {
	 max-width: 1200px;
    margin: 0 auto;
        display: grid;
    grid-template-columns    :      1.2fr 1fr;
   gap: 4rem;
    align-items: center;


}

.success-indicator		{
    text-align: center;
  margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
      height: 80px;
     background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
       border-radius: 50%;
     display: inline-flex;
      align-items    :  center;
     justify-content: center;
   	margin-bottom    :        1rem;
      animation: checkmarkPulse 2s infinite;
}

.checkmark {
          width: 25px;
   height: 15px;
                    border: 3px solid white;
	 border-top: none;
	 border-right: none;
  transform: rotate(-45deg);
}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {

    font-size: 2.5rem;
    color: #2c3e50;
       margin-bottom: 1.5rem;
    text-align: center;


}

.thankyou-message {
    font-size: 1.2rem;
   color: #7f8c8d;
    text-align    :        center;
   margin-bottom: 3rem;
  line-height: 1.6;
}

.next-steps 
 {
   margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: #2c3e50;
          margin-bottom: 2rem;
	text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.step-item {
    border-radius: 10px;
  text-align :  center;
    background: #f8f9fa;
  padding: 1.5rem;

}

.step-number   {
    width: 40px;
   height: 40px;
    background: #667eea;
   color: white;
        border-radius: 50%;
    display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: bold;
	 margin-bottom: 1rem;
}

.step-item h3 {
  color: #2c3e50;
   margin-bottom   :0.8rem;
    font-size: 1.1rem;
}

.step-item p {
       color: #7f8c8d;
    line-height: 1.5;
  font-size: 0.9rem;

}

.additional-info {
	background: #f8f9fa;
  padding    :    2rem;
    border-radius: 10px;
    margin-bottom: 2.5rem;
}

.additional-info h2 {
   color: #2c3e50;
	margin-bottom: 1rem;
   font-size: 1.5rem;
}

.additional-info p {
  color: #7f8c8d;
  line-height :   1.6;
}

.action-buttons {
	 display: flex;
    gap: 1rem;
   justify-content: center;
    flex-wrap: wrap;
}

.return-home-btn, .learn-more-btn   {
	padding :12px 24px;
  border-radius: 8px;
  text-decoration: none;
     font-weight: 600;
	transition: all 0.3s ease;
}

.return-home-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	               color: white;
}

.learn-more-btn {
  background   :       transparent;
    color: #667eea;
  border:    2px solid #667eea;
}

.return-home-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3); 

     }

.learn-more-btn:hover {
  background: #667eea;

    color: white;
}

.thankyou-visual img {
    width: 100%;
   height:auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 

}

.contact-reminder {
	padding    :  60px 2rem;
                    background: #f8f9fa;
    text-align: center; 

}

.reminder-content {
    max-width: 600px;
   margin: 0 auto;
}

.reminder-content h2 {
	font-size: 2rem;
    color   :   #2c3e50;
  margin-bottom: 1rem;
}


.reminder-content p {
    color: #7f8c8d;

	  margin-bottom    :      2rem;

	               line-height: 1.6;
}

.urgent-contact {
   display: flex;
   justify-content: center;
 gap: 3rem;
  flex-wrap: wrap;
}

.contact-method {
	 flex-direction: column;
    gap: 0.5rem;
  display: flex;


}

.contact-method strong {
    color: #2c3e50;
    font-weight: 600;
}

.contact-method span {
   color: #7f8c8d;
}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 100px 1rem 60px;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .timeline-section::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        margin-left: 60px;
    }

    .timeline-year {
        position: absolute;
        left: -90px;
        margin: 0;
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
    }

    .timeline-content {
        max-width: none;
    }

    .methodology-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .urgent-contact {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}