* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body     {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height:   1.6;
  color: #333;
   background: #fff;


}

.container
{
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.main-navigation {
      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 #e0e0e0;
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {

	    max-width: 1200px;
  margin  : 0 auto;
   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
     }

.brand-section .logo-img {
   height: 45px;
   width: auto;
}

.nav-links {
    display: flex;
    list-style :        none;
    gap: 2rem;
}

.nav-links a {
  text-decoration: none;
   color: #333;
  font-weight: 500;
    transition: color 0.3s ease;
   position: relative;
}

.nav-links a:hover {
     color: #2c3e50;
}

.nav-links a::after {
  content: '';
    position: absolute;
   width: 0;
        height: 2px;
  bottom: -5px;
	left: 0;
  background: #e74c3c;
   transition    :     width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
   display: none;
  flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {

		width: 25px;
   height: 3px;
   background: #333;
   transition: all 0.3s ease;
     }

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity     :     0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
     }

.hero-section {
  margin-top: 80px;
    padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items:   center;
   min-height: 80vh;}

.hero-content {
  max-width: 1200px;
  margin     :       0 auto;
  padding   : 0 20px;
	 display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items    :       center;
}

.hero-content h1 {
   font-size: 3.2rem;
  line-height: 1.2;
	margin-bottom: 1.5rem;
  color: #2c3e50;
        font-weight: 700;
}

.hero-subtitle {
   font-size: 1.3rem;
                    color: #666;
   margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
  display: flex;
   gap: 1rem;
	flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 1rem 2rem;
        text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.cta-primary    {
   background   :#e74c3c;
  color: white;
    border: 2px solid #e74c3c;
}

.cta-primary:hover {
  -webkit-transform: translateY(-2px);
   background: #c0392b;
   border-color: #c0392b;
  -moz-transform: translateY(-2px);
  transform: translateY(-2px);
}

.cta-secondary {
       background: transparent;
  color  : #2c3e50;
       border: 2px solid #2c3e50;
	
     }

.cta-secondary:hover {
	    color   :        white;

	  background: #2c3e50;

	  transform: translateY(-2px);
     }

.hero-image img {
   width     :     100%;
  height    :    auto;
	border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.intro-section {
   padding: 5rem 0;
  background: white;
}

.intro-grid {
   display: grid;

	    grid-template-columns: 1fr 1fr;

	  gap :        4rem;

	  align-items: center;
}

.intro-text h2 {
       font-size: 2.5rem;
          color: #2c3e50;
      margin-bottom: 1.5rem;
   font-weight: 600;
}

.intro-text p


{
  color  :#666;
   font-size :1.1rem;
    margin-bottom: 2rem;
	line-height: 1.7; 

}

.benefit-list {
   list-style: none;
}

.benefit-list li
{
   position: relative;
    padding-left: 2rem;
	font-size: 1.05rem;
   color: #555;
       padding: 0.8rem 0;
}

.benefit-list li::before {
  content: "✓";
                    position: absolute;
		left: 0;
   color: #27ae60;
   font-weight: bold;
  font-size: 1.2rem;
}

.intro-visual img	{
  width: 100%;
   height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	}

.services-section {
       background: #f8f9fa;
  padding: 5rem 0;

}

.services-section h2 {
    text-align: center;
  font-size: 2.8rem;
	 color: #2c3e50;
  margin-bottom: 3rem;
  font-weight: 600;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card {
        background: white;
  border-radius: 12px;
   padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
         transition: all 0.3s ease;
   text-align: center;
}

.service-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.service-image	{
  margin-bottom: 1.5rem;
}

.service-image img {
   width  :      100%;
    height: 200px;
   object-fit: cover;
   border-radius: 8px;
}

.service-card h3 {
   font-size: 1.5rem;
       color: #2c3e50;
    margin-bottom: 1rem;
   font-weight  : 600;
}

.service-card p {
	  color: #666;
   line-height: 1.6;
  font-size: 1rem;
     }

.cta-section     {
    padding: 4rem 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
   margin-bottom: 1rem;
    font-weight:   600;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-btn {
	  display: inline-block;
  background: white;
   color: #e74c3c;
  padding   :      1.2rem 2.5rem;
   text-decoration: none;
   border-radius: 8px;
        font-weight: 600;
    font-size : 1.1rem;
   transition: all 0.3s ease;
     }

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}



.testimonials-section {
   padding: 5rem 0;
   background: white;
}

.testimonials-section h2 {
   text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 3rem;
    font-weight: 600;
}

.testimonial-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
   position: relative;
       border-left: 4px solid #e74c3c;
  background: #f8f9fa;
  padding: 2rem;
		border-radius: 10px;
}

.testimonial-card p {
        font-style: italic;
	color: #555;
    margin-bottom: 1rem;
   line-height    :       1.6;
  font-size: 1.05rem;
}

.testimonial-author {
	font-weight: 600;
      color: #2c3e50;
}

.contact-section {
    padding: 5rem 0;
   background: #f8f9fa;
}

.contact-section h2 {
    text-align: center; 
	   font-size: 2.5rem; 
	    color: #2c3e50; 
	    margin-bottom: 3rem; 
	  font-weight     :600;
}

.contact-content {
   display: grid;

          grid-template-columns: 1fr 2fr;

    gap: 3rem;

   max-width: 1000px;

   margin: 0 auto;
}

.contact-info h3
{
	font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
         font-weight     :     600;
}

.contact-item {
       margin-bottom   :     1rem;
   color: #666;
    line-height: 1.6;
}



.contact-form     {
   background :        white;
  padding   :       2.5rem;
    border-radius     :    12px;
  box-shadow: 0 8px 25px 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: 500;
}

.form-group input,
.form-group select,
.form-group textarea {

 width: 100%;
    padding: 0.8rem;
   border: 2px solid #ddd;
    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: #e74c3c;
}

.submit-btn {
  background: #e74c3c;
   color: white;
    padding: 1rem 2rem;
  border: none;
    border-radius: 6px;
  font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
    transition : all 0.3s ease;
   width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: #c0392b;
}

.site-footer {
   padding: 3rem 0 1rem;
  background: #2c3e50;
    color: white;
}

.footer-content {
    max-width: 1200px;
   margin   :       0 auto;
  padding: 0 20px;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo     {
     height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
        margin-bottom: 1rem;
  color: #ecf0f1;
  font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}  

.footer-section ul li a{


	color: #bdc3c7;
  text-decoration:   none;
  transition: color 0.3s ease;
     }  

.footer-section ul li a:hover {
   color: #ecf0f1;
}

.footer-section p {
  color: #bdc3c7;
       line-height: 1.6;
}

.footer-bottom {
   border-top: 1px solid #34495e;
  margin-top: 2rem;
    padding-top: 1rem;
  text-align: center;
   color: #95a5a6;
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        padding: 0.8rem 2rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .services-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
    margin-top: 80px;
  padding :3.5rem 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color     :    white;
   text-align: center;
}

.about-hero-content h1 {
   font-size: 3rem;
    font-weight: 700;
	margin-bottom: 1rem;
}

.company-story {

  padding: 5rem 0;
  background: white;
	}

.story-grid {
   display: grid;
         grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.story-content h2 {
	font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom   :       1.5rem;
    font-weight: 600;
}

.story-content p {
               font-size: 1.1rem;
  color: #666;
    margin-bottom    :        1.5rem;
   line-height: 1.7;
}

.story-image img {
    width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-section {
	padding: 5rem 0;
    background: #f8f9fa;
}  

.values-section h2 {
   text-align: center;
   font-size :    2.5rem;
    color: #2c3e50;
   margin-bottom: 3rem;
    font-weight   :  600;
}

.values-grid  
  {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;}

.value-card {
	background: white;
  padding: 2.5rem 2rem;
    border-radius: 10px;
	text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	border-top: 4px solid #e74c3c;
   transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
} 

.value-card h3 {
    font-size: 1.4rem;
  color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
}

.value-card p {
       color: #666;
   line-height: 1.6;
}



.expertise-section {
   padding: 5rem 0;
   background: white; 

}

.expertise-grid {
    align-items: center;
	grid-template-columns: 1fr 1fr;
	 gap:       3rem;
  display: grid;
} 

.expertise-content h2 {


    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 2rem;
  font-weight: 600;
}

.expertise-item {
   margin-bottom: 2rem;
                    padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}

.expertise-item:last-child {
   border-bottom: none;
}



.expertise-item h4 {
	  font-size: 1.3rem;
	color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight   :      600;

}

.expertise-item p {
                    color: #666;
    line-height: 1.6;
}

.expertise-image img {


  width: 100%;
  height :      auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-section {
	padding  :     5rem 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	 color: white;
  text-align: center;
}

.experience-section h2 {
  font-size: 2.5rem;
  margin-bottom   :   3rem;
   font-weight: 600;
}

.experience-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
}

.stat-item {
	 text-align: center;
}

.stat-number {
   font-size  :       3rem;
		font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
        font-size  :   1.1rem; 
	 opacity: 0.9;
}

.approach-section {

    padding: 5rem 0;
   background: #f8f9fa;}

.approach-grid
	{
	display: grid;
   grid-template-columns: 1fr 1fr;
      gap: 3rem;
    align-items: center;
     }

.approach-content h2 {
    font-size: 2.5rem;
   color: #2c3e50;
	 margin-bottom: 1.5rem;
  font-weight: 600;
}

.approach-content p {
    font-size: 1.1rem;
  color:     #666;
   margin-bottom: 2rem;
    line-height: 1.7;
}

.process-steps {
       list-style:      none;
   counter-reset: step-counter;
}

.process-steps li {
       counter-increment: step-counter;
  margin-bottom: 1.5rem;
    padding-left: 3rem;
    position     :    relative;
  line-height: 1.6;
}  

.process-steps li::before {
  content: counter(step-counter);
    position    :    absolute;
    left: 0;
  top: 0;
    background: #e74c3c;
    color: white;
   width: 2rem;
   height: 2rem;
                    border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
  font-weight: bold;
   font-size: 0.9rem;
}

.approach-image img {
	    width: 100%;
     height  : auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}  

.credentials-section {


	 padding: 5rem 0;
  background: white;
     }

.credentials-section h2		{
	   margin-bottom: 3rem;
   text-align: center;
  font-weight: 600;
  color: #2c3e50;
    font-size    :     2.5rem;
	}

.credentials-content p   {
                    text-align: center;
	font-size: 1.1rem;
    color: #666;
   margin-bottom: 3rem;
    line-height: 1.7;
   max-width: 800px;
   margin-left: auto;
    margin-right:        auto;
}

.credentials-highlights {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.credential-item {

		text-align: center;
    padding: 2rem;
  background  :        #f8f9fa;
	 border-radius:  10px;
      border-left: 4px solid #27ae60;
}

.credential-item h4 {
    font-size: 1.3rem;
   color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.credential-item p {
	 color: #666;
   font-size: 1rem;
}

.thankyou-main {
    margin-top: 80px;
  min-height: calc(100vh - 80px);
      display: flex;
    align-items: center;
   padding    :      3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 

}

.thankyou-content    {
    text-align: center; 
    max-width: 700px; 
    margin: 0 auto; 
  background   :white; 
   padding: 3rem; 
    border-radius: 15px; 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {

  margin-bottom: 2rem;
     }

.checkmark-circle {
   width: 80px;

 height: 80px;

  border-radius: 50%;

  background: #27ae60;

  margin    :  0 auto;

    display: flex;

  align-items: center;

  justify-content: center;

   animation: successPulse 0.6s ease-out;
}

.checkmark {
  width: 30px;
   height: 15px;
   border-left: 4px solid white;
   border-bottom: 4px solid white;
  transform: rotate(-45deg);
   margin-bottom: 5px;
}@keyframes successPulse {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
  color: #2c3e50;
   font-size: 2.5rem;
  font-weight    :    600;
    margin-bottom: 1.5rem;

}

.main-message {
	    font-size: 1.2rem;
    color: #666;
   margin-bottom: 2.5rem;
  line-height: 1.6;} 

.next-steps {
    text-align: left;
    margin-bottom: 2.5rem;
}

.next-steps h3 {

	    font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
   font-weight: 600;}

.steps-list {
       margin-bottom: 2rem;
}

.step-item {
   display: flex;
   align-items: flex-start;
   margin-bottom: 1.5rem;
  gap: 1rem;
}

.step-number {
    background: #e74c3c;
   color: white;
    width    :  2.5rem;
                    height: 2.5rem;
   border-radius    :      50%;
    display: flex;
   align-items: center;
   justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {

  font-size: 1.2rem;
	color: #2c3e50;
    margin-bottom :  0.3rem;
    font-weight: 600;
	}

.step-content p {
					color: #666;

	  line-height: 1.5;

	    margin: 0;
}

.additional-info {
  background: #f8f9fa;
    padding :  2rem;
  border-radius: 8px;
   margin-bottom: 2rem;
}


.additional-info h3 {
   font-size: 1.3rem;
   color  :    #2c3e50;
  margin-bottom: 1rem;
   font-weight: 600;
}

.additional-info p {
	 color   :#666;
  line-height: 1.6;
  margin: 0;
}

.contact-reminder {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
   padding: 1.5rem;
   border-radius: 8px;
   margin-bottom: 2.5rem;
}

.contact-reminder h4   {
  font-size: 1.2rem;
    color: #856404;
    margin-bottom: 0.5rem;
	 font-weight:600;
}

.contact-reminder p {
  color     :#856404;
   margin: 0;
}

.action-buttons {
   display: flex;
   gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
                    font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
	 background: #e74c3c;
   color: white;

}

.btn-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
   color: #2c3e50;
  border: 2px solid #2c3e50;


}

.btn-secondary:hover {
			background: #2c3e50;
   color: white;
  transform: translateY(-2px);
}

.thankyou-image {
   margin-top: 3rem;
}

.thankyou-image img {
  width: 100%;
    max-width: 400px;
   height: auto;
    border-radius   :   10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
	
     }@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-grid,
    .expertise-grid,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .values-grid,
    .credentials-highlights {
        grid-template-columns: 1fr;
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-content {
        padding: 2rem;
        margin: 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content h2,
    .expertise-content h2,
    .approach-content h2,
    .values-section h2,
    .credentials-section h2,
    .experience-section h2 {
        font-size: 2rem;
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .main-message {
        font-size: 1.1rem;
    }
}