* {
    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;
	
}

.navigation-main {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
	 top: 0;
	width: 100%;
   z-index: 1000;
   padding: 0.8rem 0;
  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: 0 2rem;
}

.brand-logo


{
   height: 45px;
  width: auto;


}

.nav-links		{
   display     :      flex;
  list-style: none;
   gap: 2.5rem;
}

.nav-link {
  position   :        relative;
                    transition: color 0.3s ease;
    text-decoration: none;
   color: #2c3e50;
   font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #e74c3c;
}

.nav-link::after {
  content: '';
  -moz-transition: width 0.3s ease;
  position  :     absolute;
    width: 0;
  height: 2px;
         bottom :  -5px;
    left: 0;
  background-color: #e74c3c;
   transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
}

.menu-toggle {
  display: none;
      flex-direction: column;
   cursor: pointer;
  gap: 4px;
}

.hamburger-line {
   width: 25px;
	 height: 3px;
	background-color: #2c3e50;
			transition: 0.3s;
}

.hero-section {
    margin-top: 80px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  min-height: 70vh;
   display: flex;
    align-items: center;
}

.hero-content-wrapper {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
 grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center; 

}

.main-headline {
    font-size: 3.2rem; 
	   font-weight: 700; 
	    margin-bottom: 1.5rem; 
	  line-height: 1.2; 
	
}

.hero-description


{
	 font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
  gap: 1rem;
  flex-wrap  :  wrap;
}

.primary-button, .secondary-button {
   padding: 0.8rem 2rem;
  text-decoration: none;
      border-radius: 25px;
    font-weight     :   600;
  transition   :  all 0.3s ease;
	display   : inline-block;
}

.primary-button     {

    background-color: #e74c3c;
   color: white;
    border: 2px solid #e74c3c;}

.primary-button:hover  
  {
	   background-color   :     white;
      background-color: transparent;
    color: #e74c3c;
	}

.secondary-button {

	  background-color: transparent;
    color: white;
    border: 2px solid white;

}

.secondary-button:hover {
  background-color: white;
   color: #667eea;
}

.hero-image {
    width: 100%;
        height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}  

.services-overview   {
   padding: 5rem 2rem;
    background-color: white;
}

.section-container {
  max-width: 1200px;
  margin     : 0 auto;
}

.section-title {
   text-align: center;
  font-size    :  2.5rem;
        color: #2c3e50;
    margin-bottom: 3rem;
  font-weight: 700;
}

.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 10px 30px rgba(0,0,0,0.1);
	 transition    :  transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #f0f0f0;
	}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image     {
       width: 100%;
   height: 200px;
  object-fit: cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;


}

.service-title {

	 font-size    :       1.4rem;
         color: #2c3e50;
                    margin-bottom: 1rem;
   font-weight: 600;
}

.service-desc {
  color: #666;
    line-height: 1.6;
}



.cta-section


{
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
   padding: 4rem 2rem;
                    text-align: center;
               color: white;
}

.cta-content

{
    max-width: 800px;
   margin: 0 auto;
}

.cta-headline {


  font-size: 2.5rem; 
	   margin-bottom: 1.5rem; 
		font-weight: 700;
     }

.cta-text {
  font-size     :       1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}

.cta-button {
  background-color: white;
     color: #ee5a24;
    padding: 1rem 2.5rem;
   text-decoration: none;
    border-radius: 30px;
    font-weight  :     600;
    transition: all 0.3s ease;
   display: inline-block;
   font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);


}

.expertise-showcase {
            padding: 5rem 2rem;
  background-color: #f8f9fa;}

.expertise-content {

	    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;

     }

.expertise-title {
    font-size: 2.2rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.expertise-description {
	color: #666;
    margin-bottom: 2rem;
  line-height: 1.7;
    font-size: 1.1rem;
}

.expertise-features {
  list-style: none;
}

.expertise-features li {
	padding: 0.5rem 0;
  color: #555;
  position: relative;
   padding-left: 1.5rem;
}

.expertise-features li::before {
  content: "✓";
    position: absolute;
   left: 0;
    color: #27ae60;
    font-weight: bold;
}

.expertise-image {
  width: 100%;
 height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.contact-section {

  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;

}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-title {
   margin-bottom: 1.5rem;
  font-size   :        2.5rem;
  font-weight :       700;}

.contact-description   {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.9;
  line-height  :1.6;
}

.contact-details {
	display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  font-size: 1rem;
  opacity: 0.9;
}

.contact-form     {
  background: rgba(255,255,255,0.1);
    padding: 2.5rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
   display: block;
  margin-bottom: 0.5rem;
    font-weight: 500;
  color: white;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
   padding: 0.8rem;
  border: 1px solid rgba(255,255,255,0.3);
   border-radius: 8px;
  background: rgba(255,255,255,0.1);
   color     :    white;
  font-size: 1rem;
    transition: border-color 0.3s ease;
	
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.7);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
  border-color: #e74c3c;
  background: rgba(255,255,255,0.15); 

}

.submit-button {
  background-color: #e74c3c;
    color: white;
   padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
	cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
   transition: all 0.3s ease;
     width: 100%;
}

.submit-button:hover     {

   background-color: #c0392b;
  transform: translateY(-2px);


}

.main-footer  
  {
   background-color: #1a1a1a;
  color  :      white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
	  margin: 0 auto;
	    display  :       grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 2rem;
}

.footer-logo {
      height: 40px;
  filter: brightness(0) invert(1);

}

.footer-heading     {
	 font-size: 1.2rem;
   margin-bottom: 1rem;
   color: #e74c3c;
   font-weight     :       600;
}

.footer-links {
  list-style: none;
}

.footer-links li {
       margin-bottom: 0.5rem;
	}

.footer-link {
   color: #ccc;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #e74c3c;
}

.footer-contact {


    color: #ccc;
   margin-bottom: 0.5rem;
      line-height: 1.5;
}

.footer-bottom
	{
    text-align: center;
  margin-top: 2rem;
    padding-top: 2rem;
  border-top: 1px solid #333;
}

.copyright {
    color: #888;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .main-headline {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .services-overview, .expertise-showcase, .contact-section {
        padding: 3rem 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}.about-hero-section {
  margin-top: 80px;
   padding: 3.5rem 2rem;
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
   text-align: center;
}

.about-main-title {
   line-height: 1.2;

   font-weight: 700;

    margin-bottom: 1.5rem;

   font-size: 2.8rem;
}

.about-hero-text {
   font-size: 1.2rem;
  max-width: 800px;
   margin: 0 auto;
    opacity: 0.9;
   line-height: 1.6;
}

.company-story
	{
  padding: 5rem 2rem;
  background-color: white;
}

.story-container {
   max-width: 1200px;
    margin: 0 auto; 
	
}

.story-content {
               display: grid;
   grid-template-columns  :   1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.story-title {
      font-size     :2.3rem;
	color: #2c3e50;
   margin-bottom :    2rem;
	font-weight: 700;
}

.story-paragraph {
  color: #555;
   margin-bottom: 1.5rem;
   line-height: 1.7;
	font-size: 1.05rem;
}

.story-image {
	   width: 100%;
	   height: auto;
	    border-radius: 12px;
	  box-shadow: 0 15px 30px rgba(0,0,0,0.1);


}

.mission-values {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mission-wrapper {
   max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-main-title {
	font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
    font-weight:       700;
}

.mission-grid   {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.mission-card {
    background: white;
   padding: 2.5rem;
	border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition:    transform 0.3s ease;
}

.mission-card:hover {
     transform: translateY(-5px);
     }

.mission-card-title {
  color: #e74c3c;
	 font-size: 1.5rem;
   margin-bottom: 1rem;
   font-weight: 600;
}

.mission-card-text {
  color: #666;
   line-height: 1.6;
}

.expertise-areas {
  padding: 5rem 2rem;
  background-color: white;
}

.expertise-container

{
  max-width: 1200px;
    margin: 0 auto; 
	
}

.expertise-main-title {
   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
   text-align: center;
    font-weight: 700;
}

.expertise-layout{
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: start;
}

.expertise-item {
    margin-bottom: 2.5rem;
    padding: 1.5rem;
  border-left: 4px solid #e74c3c;
   background-color  :     #fafafa;
  border-radius: 0 8px 8px 0;
}

.expertise-item-title {
   font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 0.8rem;
   font-weight: 600;
}

.expertise-item-desc {
    color: #666;
  line-height: 1.6;
}

.expertise-main-image {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.approach-methodology {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.approach-wrapper {
    max-width: 1200px;
  margin: 0 auto;
}

.approach-content   {
   display: grid;
  grid-template-columns     :   1fr 1fr;
      gap:      3rem;
    align-items: center;
}

.approach-title {
	font-size: 2.3rem;
   margin-bottom   :1.5rem;
  font-weight  : 700;
}

.approach-description  {

	               font-size: 1.1rem;
	margin-bottom: 2.5rem;
                    opacity: 0.9;
   line-height: 1.6;
     }

.approach-step {
   display: flex;
                    gap  :  1rem;
   margin-bottom   :      2rem;
   align-items: flex-start;
}

.step-number {
    background-color:   #e74c3c;
   color: white;
   width :       35px;
      height: 35px;
  border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
     font-weight: 700;
   flex-shrink   :0;
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
    font-weight    :600;
}

.step-text {
    opacity: 0.9;
  line-height: 1.5;
}

.approach-image {
   width: 100%;
      height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.results-achievements {
  padding: 5rem 2rem;
   background-color: #f8f9fa;
	
}

.results-container {
   max-width  : 1200px;

	   margin: 0 auto;
}

.results-title

{
  font-size: 2.5rem;
	  color: #2c3e50;
	   margin-bottom :  3rem;
	   text-align: center;
			 font-weight: 700;
}  

.results-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   margin-bottom: 4rem;
}

.stat-item {
   text-align: center;
         background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
   	display: block;
   font-size: 2.5rem;
    font-weight: 700;
    color: #e74c3c;
  margin-bottom: 0.5rem;
}

.stat-label {
    color: #666; 
	   font-weight: 500;
}

.results-content {
   display: grid;
        grid-template-columns: 1fr 1fr;
                    gap: 3rem;
   align-items: center;


}

.results-image {
    width: 100%;
   height  :auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);

}

.results-subtitle
	{
   font-size :    1.8rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
  font-weight: 600;
}

.results-description {
	    color: #666;
    margin-bottom: 1.5rem;
   line-height: 1.7;
}

.thankyou-main     {
      margin-top: 80px;
}

.thankyou-hero {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  min-height: 70vh;
  display: flex;
    align-items  :       center;
}

.thankyou-container {
    max-width: 1200px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.success-icon {
  text-align: center;
    margin-bottom     :  2rem;
}

.checkmark-circle {
   width: 80px;
    height: 80px;
    border-radius: 50%;
  background-color: rgba(255,255,255,0.2);
   margin: 0 auto;
  display: flex;
  align-items: center;
   justify-content: center; 

}

.checkmark {
        width     :    30px;
	height     :    30px;
  border: solid white;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.thankyou-title {
    font-size: 2.8rem;
   font-weight: 700;
    margin-bottom: 1rem;
       text-align: center;
}

.thankyou-subtitle {
  font-size: 1.3rem;
    opacity: 0.9;
   text-align: center;
    margin-bottom: 2rem;
}

.thankyou-message {
   margin-bottom: 3rem;
}

.message-text {
    font-size: 1.1rem;
   line-height: 1.7;
       margin-bottom: 1.5rem;
    opacity: 0.95;
}

.next-steps {
   margin-bottom: 3rem;
}

.next-steps-title {
          font-size: 1.6rem;
    margin-bottom: 1.5rem;
   font-weight     :     600;
}

.step-item {
    display: flex;
	 gap: 1rem;
   margin-bottom: 1.5rem;
       align-items: flex-start;
}

.step-number {
  background-color: rgba(255,255,255,0.2); 
	  color: white; 
	  width: 30px; 
	    height: 30px; 
		border-radius: 50%; 
	   display: flex; 
	  align-items: center; 
	  justify-content   :      center; 
	  font-weight: 600; 
	       flex-shrink: 0;
}

.step-heading {
      font-size: 1.1rem;
   margin-bottom: 0.3rem;
   font-weight: 600;


}

.step-desc 
 {
       opacity: 0.9;
  line-height: 1.5;
   font-size: 0.95rem;
	}

.contact-reminder {
  background-color: rgba(255,255,255,0.1);
       padding: 2rem;
   border-radius: 12px;
   margin-bottom: 3rem;
}

.reminder-title


{
   font-size: 1.4rem;
    margin-bottom: 1rem;
	 font-weight: 600;
}

.reminder-text {
	  margin-bottom: 1rem;
         opacity: 0.9;


}

.contact-info {
    margin-bottom: 0.5rem;

	     opacity: 0.95;
}

.thankyou-actions {
   display: flex;
   gap: 1rem;
   justify-content:center;
   flex-wrap: wrap;
}

.primary-action-btn, .secondary-action-btn {
	padding: 0.8rem 2rem;
  text-decoration: none;
   border-radius :25px;
  font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-action-btn {
   background-color: white;
    color: #059669;
}

.primary-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.secondary-action-btn {
    background-color: transparent;
	color     :   white;
  border: 2px solid white;
}

.secondary-action-btn:hover {
    background-color: white;
               color: #059669;
}

.thankyou-image {
  width: 100%;
    height: auto;
  border-radius     :15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.additional-info {

	   padding: 4rem 2rem;
    background-color     :   white;
	}

.info-container {
   max-width: 1000px;

	    margin :       0 auto;

	    text-align: center;
}

.info-title {
       font-size: 2.2rem;
    color   :#2c3e50;
	margin-bottom: 3rem;
   font-weight: 700;
}

.info-grid {

    display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;


}

.info-card {
   background-color: #f8f9fa;
    padding: 2rem;
   border-radius: 12px;
   text-align: left;
  border-left    :        4px solid #10b981;
}

.info-card-title {
    font-size: 1.3rem;
      color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 600;
}



.info-card-text {
  color: #666;
    line-height: 1.6;
}@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-layout {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .results-content {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-section {
        padding: 2.5rem 1rem;
    }
    
    .company-story, .mission-values, .expertise-areas, .approach-methodology, .results-achievements {
        padding: 3rem 1rem;
    }
    
    .thankyou-hero {
        padding: 3rem 1rem;
    }
    
    .additional-info {
        padding: 3rem 1rem;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
    
    .contact-reminder {
        padding: 1.5rem;
    }
}