*


{
  margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
   background: #ffffff;
}

.content-container {
    padding: 0 24px;
  margin: 0 auto;
	max-width: 1200px;
}

.main-navigation {
   position: fixed;
  top  :     0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
    border-bottom: 1px solid #e1e8ed;
}

.nav-wrapper {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
   justify-content: space-between;
  align-items: center;
  height: 70px;
}

.company-logo {
  width: auto;
  height: 45px;
}

.nav-links {
  display: flex; 
	    list-style  :   none; 
		gap: 32px;
}

.nav-links a {
   text-decoration: none;
    color: #34495e;
  font-weight: 500;
   transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.burger-icon


{
    display    : none;
  flex-direction: column;
	 cursor: pointer;
   gap: 4px;
}

.burger-icon span


{
  width  :        25px;

	    height: 3px;

	  background: #34495e;

	    transition: 0.3s;
}

.hero-banner {
  margin-top: 70px;

    padding: 80px 0;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color: white;

   display: flex;

   align-items: center;

  min-height   :      500px;
}

.hero-banner .content-container {
      display:        grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
}

.hero-content h1 {
   font-size:       3.2rem;
   font-weight: 700;
   margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
  opacity: 0.9;
}

.hero-actions {
   display: flex;
   gap: 20px;
	flex-wrap: wrap;
}

.primary-action-btn, .secondary-action-btn {
   padding: 15px 30px;
  text-decoration: none;
               border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.primary-action-btn{
   background: #ffffff; 
	    color: #667eea;
}

.primary-action-btn:hover {
	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	}

.secondary-action-btn {
   background: transparent;
   color: white;
  border: 2px solid white;
}

.secondary-action-btn:hover {
    background: white;
   color: #667eea;
}

.hero-visual img {
   width: 100%;

	  height: auto;

	    border-radius: 12px;

	  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.challenge-section {
		padding    :      100px 0;
    background    :  #f8f9fa;
     } 

.challenge-section h2 {
    margin-bottom: 60px;
    color: #2c3e50;
    font-size: 2.5rem;
    text-align: center;
}

.challenge-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 40px;
}

.challenge-item {
	background :   white;
   padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align:    center;
  transition: transform 0.3s ease;
}

.challenge-item:hover {
  transform: translateY(-8px);
}

.challenge-item h3 {
    font-size: 1.4rem;
	margin-bottom   :  15px;
   color: #e74c3c;
}

.services-showcase {
    padding: 100px 0;

}

.services-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
    margin-bottom :        60px;
    color: #2c3e50;
}

.services-layout {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
	 background: white;
    border-radius:   15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width     :    100%;
   height     :       240px;
   object-fit: cover;
}

.service-card h3 {
    padding: 25px 25px 15px;
    font-size: 1.4rem;
   color    :    #2c3e50;
}



.service-card p {
    padding     :     0 25px 25px;
	color: #7f8c8d;
   line-height: 1.7;
}

.methodology-section {
       padding: 100px 0;
    background: #ecf0f1;
}

.methodology-section .content-container {
  display: grid;
   grid-template-columns    : 1fr 1fr;
  gap: 60px;
    align-items  :   center;
}

.methodology-content h2 {
  font-size: 2.5rem;
   margin-bottom: 25px;
    color: #2c3e50;
}

.methodology-content > p  {
   font-size: 1.1rem;
          margin-bottom: 40px;
               color: #7f8c8d;
  line-height: 1.8;
}

.methodology-steps {

    display: flex;
  flex-direction    :  column;
   gap: 25px;


}

.step-item h4 {
    font-size: 1.2rem;
  margin-bottom: 8px;
   color: #3498db;
}

.step-item p {
    color: #7f8c8d;
  line-height: 1.6;
}

.methodology-visual img {
   width: 100%;
   height:auto;
    border-radius :    15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.cta-section
	{
  padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
   text-align: center;
}

.cta-content h2 {
   font-size    :     2.8rem;
  margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.2rem;
  margin-bottom  :  35px;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding   :      18px 40px;
   background:        white;
    color: #f5576c;
   text-decoration: none;
    border-radius: 10px;
      font-weight: 700;
    font-size: 1.1rem;
   transition: all 0.3s ease;


}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.contact-section {
    padding: 100px 0;
    background: #f8f9fa;
}



.contact-section h2

{
    text-align: center;
	 font-size: 2.5rem;
    margin-bottom: 60px;
  color: #2c3e50;
}

.contact-form{


    max-width: 800px;
    margin: 0 auto;
    background: white;
   padding: 50px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
     }

.form-row {

	   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 25px;


}

.form-group {
    display    :       flex;
  flex-direction: column;
}

.form-group label     {

    margin-bottom: 8px;
	font-weight: 600;
  color: #2c3e50;}

.form-group input,
.form-group select,
.form-group textarea {

   padding: 12px 15px;
    border: 2px solid #e1e8ed;
  border-radius: 8px;
    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: #3498db;
}

.submit-btn {
 width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   border: none;
  border-radius: 8px;
   font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
       transition    : all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.site-footer  {
  background: #2c3e50;
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
  margin-bottom: 40px;
}

.footer-logo {
    height :      50px; 
	    width: auto; 
	  filter: brightness(0) invert(1);
}

.footer-info {
   display:   grid;
  grid-template-columns: 1fr 1fr;
   gap: 40px;
	}

.footer-info h4 {

	   color: #3498db;
   margin-bottom: 20px;
    font-size: 1.2rem;
	}

.footer-info p {
    margin-bottom: 8px;
   color: #bdc3c7;
}

.footer-navigation ul {
    list-style: none;
}

.footer-navigation li {
          margin-bottom  : 10px;
}

.footer-navigation a {
  color: #bdc3c7;
  text-decoration: none;
	transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: #3498db;
}

.footer-bottom {
   text-align:   center;
   padding-top  :      20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
  color:    #95a5a6;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .burger-icon {
        display: flex;
    }
    
    .burger-icon.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-icon.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-icon.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-banner .content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .methodology-section .content-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 25px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 16px;
    }
    
    .nav-wrapper {
        padding: 0 16px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .challenge-section h2,
    .services-showcase h2,
    .methodology-content h2 {
        font-size: 2rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
    }
}.about-hero 
 {
   margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
               color: white;
   text-align   :     center;
  min-height: 400px;
  display: flex;
    align-items:       center;
}

.about-hero-content h1 {
	font-size: 3rem;
   font-weight: 700;
   margin-bottom: 20px;
}

.about-subtitle {
  font-size : 1.3rem;
   opacity: 0.9;
    max-width: 600px;
   margin: 0 auto;
}

.company-story {
    padding: 100px 0;

  background: #f8f9fa;
}



.story-layout {
   display:      grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
	
}

.story-content h2 {
    color: #2c3e50;
    margin-bottom   :        30px;
   font-size: 2.5rem;
     }  

.story-content p {
     font-size: 1.1rem;
	line-height: 1.8;
    margin-bottom: 20px;
    color: #7f8c8d;}

.story-visual img {
  width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.team-expertise {
    padding: 100px 0;
}

.team-expertise h2 {
   text-align: center;
      font-size: 2.5rem;
          margin-bottom: 60px;
      color: #2c3e50;
}

.expertise-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
}

.expertise-card {
    background: white;
      padding: 40px 30px;
  border-radius :15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
          border-top: 4px solid #8b5cf6;
}

.expertise-card:hover {
  transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
}

.expertise-card h3 {
                    font-size: 1.4rem;
    margin-bottom: 20px;
   color: #2c3e50;
}

.expertise-card p {
		 color: #7f8c8d;
     line-height: 1.7;
}

.approach-methodology   {

               padding: 100px 0;
   background :#ecf0f1;

}

.approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items     :    center;
}

.approach-content h2 {
   font-size: 2.5rem;
    margin-bottom:    40px;
    color: #2c3e50;
}

.approach-principles {
  display: flex;
    flex-direction: column;
    gap: 30px;
}

.principle-item h4 {
   font-size: 1.3rem;
  margin-bottom: 10px;
   color: #06b6d4;

}



.principle-item p {
          color   : #7f8c8d;

    line-height   : 1.7;
}

.approach-visual img {
  width: 100%;
    height: auto;
	 border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}  

.success-metrics {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.success-metrics h2 {
	text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;
}

.metrics-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; 

}

.metric-item {
    text-align: center;
   padding: 30px 20px;
  background: rgba(255,255,255,0.1);
 border-radius: 15px;
  backdrop-filter: blur(10px);
}

.metric-number {
  font-size: 3rem;
   font-weight: 800;
    margin-bottom: 10px;
 color: #ffffff;
}

.metric-label {
   font-size: 1.1rem;
   opacity: 0.9;
}

.values-section {
   padding: 100px 0;
}

.values-section h2 
 {
  text-align    :      center;
         font-size:2.5rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-content {
         display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;


}

.values-list {
  display: flex;
   flex-direction: column;
       gap: 35px;
}

.value-item h3 {


         font-size     :        1.4rem;
  margin-bottom: 15px;
    color: #8b5cf6;
     }

.value-item p {
  color: #7f8c8d;
  line-height: 1.7;
}

.values-visual img     {
   width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.mission-vision  {
    padding: 80px 0;
          background: #f8f9fa;
}

.mission-grid {
    display: grid;
   gap: 40px;
   grid-template-columns: 1fr 1fr;
	
}

.mission-card, .vision-card {
       background: white;
   padding: 50px 40px;
	 border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
   text-align: center;


}

.mission-card {
  border-top: 5px solid #8b5cf6;
}

.vision-card {
	 border-top: 5px solid #06b6d4;
}


.mission-card h3, .vision-card h3 {
	font-size  :1.6rem;
   margin-bottom     : 25px;
  color: #2c3e50;
}

.mission-card p, .vision-card p {
   color:#7f8c8d;
   line-height  :     1.8;
   font-size: 1.05rem;
}

.thankyou-main    {
	margin-top: 70px;
  padding :        80px 0;
	min-height: 70vh;
}

.thankyou-main .content-container {
    display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 60px;
  align-items: center;
}

.thankyou-content {
   text-align: center;
}

.success-icon {
         margin-bottom: 40px;
}

.checkmark-circle {
    width:     80px;
    height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    margin    :       0 auto;
   display: flex;
   align-items: center;
  justify-content: center;
  animation   :  scaleIn 0.6s ease-out;
}

.checkmark {
  width: 25px;
    height: 15px;
          border: 3px solid white;
  border-top: none;
	border-right: none;
  transform: rotate(-45deg);
	 animation: drawCheck 0.8s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes drawCheck {
    0% { transform: rotate(-45deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}.thankyou-content h1 {
   font-size: 2.8rem;
  margin-bottom: 30px;
    color: #2c3e50;


}

.primary-message {
   font-size:    1.2rem;
  color: #7f8c8d;
  margin-bottom: 40px;
	 line-height: 1.7;
}

.next-steps {
   margin-bottom: 40px;

  text-align: left;
}

.next-steps h3 {
  font-size: 1.4rem;
   margin-bottom: 25px;
  color: #2c3e50;
	text-align: center;
}

.steps-list {
    display :      flex;
   flex-direction: column;
   gap: 20px;
}

.step-item {
     display: flex;
     align-items :   flex-start;
   gap: 15px;


}

.step-number {
    width: 30px;
    height: 30px;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
         color: white;
   border-radius: 50%;
  display: flex;
  align-items: center;
   justify-content: center;
  font-weight: 600;
  flex-shrink: 0;
}

.step-item p    {
      color: #7f8c8d;
    line-height: 1.6;
   margin   :     0;
	}

.additional-info {
  background: #f8f9fa;
	 padding: 30px;
  border-radius    :12px;
  margin-bottom:      40px;
  text-align: left;
}

.additional-info h3 {
  font-size    : 1.3rem;
   margin-bottom: 15px;
  color : #2c3e50;
} 

.additional-info p {
       color: #7f8c8d;
   line-height: 1.7;
	 margin: 0;
}

.action-buttons	{
  justify-content: center;
    flex-wrap: wrap;
   display: flex;
	gap: 20px;
}

.primary-btn, .secondary-btn
{
    padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
  transition: all 0.3s ease; 
	
}


.primary-btn {


  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
   color     :    white;

	}


.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.secondary-btn {
    background: transparent;
  color: #8b5cf6;
   border: 2px solid #8b5cf6;
}

.secondary-btn:hover	{
  background: #8b5cf6;
  color  :        white;
}

.thankyou-visual img {
    width:    100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.contact-info-section {
    padding: 60px 0;
    background: #ecf0f1;
}

.contact-details-card {
	background: white;
    padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;
  max-width: 600px;
  margin    :  0 auto;
}

.contact-details-card h3 {
	  font-size   :        1.6rem;
  margin-bottom: 30px;
   color: #2c3e50;
	}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 30px;
   margin-bottom: 30px;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #8b5cf6;
}

.contact-item p {
  color: #7f8c8d;
    line-height: 1.6;
    margin: 0;
	
}

.contact-note {
    font-style: italic;
	color: #95a5a6;
    margin : 0;
}@media (max-width: 768px) {
    .story-layout,
    .approach-layout,
    .values-content,
    .thankyou-main .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content h2,
    .team-expertise h2,
    .approach-content h2,
    .success-metrics h2,
    .values-section h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        text-align: center;
    }
    
    .additional-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-card,
    .mission-card,
    .vision-card {
        padding: 30px 25px;
    }
    
    .contact-details-card {
        padding: 30px 25px;
    }
}.cookies-section {
    padding    : 100px 0;
}

.cookies-section h1 {
        font-size: 2.5rem;
  color: #2c3e50;
        margin-bottom   : 30px;
    text-align   :        center;
}

.cookies-section h2 {
  font-size: 1.8rem;
   color  :      #3498db;
   margin-top: 40px;
  margin-bottom: 20px;
}

.cookies-section p {
   font-size: 1.1rem;
 color: #7f8c8d;
         line-height: 1.8;
   margin-bottom: 20px;
}

.privacy-section {
   padding: 100px 0;
}

.privacy-section h1 {
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom :        30px;
    text-align: center;
}

.privacy-section h2  {
	   font-size: 1.8rem;
   color: #3498db;
	margin-top: 40px;
    margin-bottom: 20px;}

.privacy-section p {
  font-size    :   1.1rem;
  color: #7f8c8d;
    line-height: 1.8;
               margin-bottom: 20px;
}