* {
	 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: #f8f9fa;
}

.navigation-wrapper {
	   background    :  #2c3e50;
  padding: 1rem 0;
  position: fixed;
    top: 0;
  width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}

.nav-container     {


  max-width: 1200px;
   margin: 0 auto;
   display: flex;
   justify-content: space-between;
  align-items: center;
    padding: 0 20px;
}

.main-logo {
	 height: 40px;
    width: auto;
}

.menu-items 
 {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu-items a {
    color: #ecf0f1;
    text-decoration:  none;
    font-weight: 500;
    transition: color 0.3s ease;
}



.menu-items a:hover {
    color: #3498db;
}

.burger-trigger    {
  display     :        none;
   flex-direction: column;
    cursor:      pointer;
    gap: 4px;
}

.burger-trigger span     {
  width: 25px;
    height: 3px;
   background: #ecf0f1;
  transition: 0.3s;
}


.mobile-navigation {
    display: none;
                    background: #34495e;
	padding     :  1rem;
    position: absolute;
     top: 100%;
  left: 0;
  width: 100%;
}

.mobile-navigation a {
	text-decoration: none;
    border-bottom: 1px solid #4a5f7a;
    display: block;
  color: #ecf0f1;
   padding: 0.5rem 0; 

}

.mobile-navigation.active {
               display: block;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .burger-trigger {
        display: flex;
    }
}.hero-area  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding :      120px 0 80px;
  min-height: 70vh;
		display :      flex;
  align-items: center;
}

.content-wrapper {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
}

.hero-area .content-wrapper
{
	display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center; 

}

.hero-text h1 {
    font-weight: 700;
   line-height: 1.2;
  font-size:    2.8rem;
    margin-bottom: 1.5rem;
}

.hero-description		{
	 font-size: 1.1rem;
   margin-bottom: 2rem;
  opacity: 0.9;
    line-height: 1.7;
}

.cta-buttons {
   display: flex;
   gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn 
 {
    padding: 12px 24px;
	    text-decoration: none;
	   border-radius   :  5px;
	    font-weight: 600;
	  transition: all 0.3s ease;
	    display    :inline-block; 
	
}

.primary-btn {
             background: #e74c3c;
   color: white;
}

.primary-btn:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn {
       background: transparent;
       color: white;
               border: 2px solid white;
	}

.secondary-btn:hover {
   background: white;
   color: #667eea;
}

.hero-visual img {
  width: 100%;

    border-radius: 10px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
} @media (max-width: 768px) {
    .hero-area .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
}.services-grid	{
    background: white;
	padding: 80px 0;
}

.services-grid h2 {
   text-align: center;
	font-size  :     2.5rem;
	margin-bottom: 3rem;
    color: #2c3e50;
}

.grid-layout {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  margin-top: 2rem;


	}

.service-card {
    background: #f8f9fa;
    padding: 2rem;
   border-radius: 10px;
    text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
     border    :    1px solid #e9ecef; 

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card img {
  width: 100%;
    height: 200px;
	object-fit: cover;
   border-radius:  8px;
  margin-bottom: 1.5rem;
}

.service-card h3     {
    font-size: 1.4rem;
   margin-bottom: 1rem;
   color: #2c3e50;
}

.service-card p {
	color: #6c757d;
   line-height:       1.6;
}

.consultation-cta {
	  background: #34495e;
   color: white;
   padding: 80px 0;

}

.consultation-cta .content-wrapper {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.cta-content h2 {
    font-size: 2.2rem;
   margin-bottom  :       1.5rem;
}

.cta-content p {
       font-size: 1.1rem;

	    margin-bottom: 2rem;

	   opacity: 0.9;

	   line-height  : 1.7; 
	
}

.consultation-btn {
  background: #e74c3c;
  -o-transition: all 0.3s ease;
   -webkit-border-radius: 5px;
	 -moz-border-radius: 5px;
  color: white;
  padding: 15px 30px;
    text-decoration: none;
    border-radius  :        5px;
   font-weight: 600;
	 display: inline-block;
   -webkit-transition: all 0.3s ease;
    transition  :        all 0.3s ease;
}

.consultation-btn:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.cta-image img {
   border-radius  : 10px;
   width: 100%;
}@media (max-width: 768px) {
    .consultation-cta .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.benefits-overview {
	 padding: 80px 0; 
	    background: #ecf0f1;
}

.benefits-overview h2 {
	  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color     :       #2c3e50;

}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-item {
    background: white;
   padding: 2rem;
    border-radius: 10px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}


.benefit-item h3 {
       font-size: 1.3rem;
   color: #2c3e50;
    margin-bottom  :     1rem;}

.benefit-item p {
  color  :   #6c757d;
   line-height: 1.6;
}  

.contact-section {
       padding: 80px 0;
    background: white;
}

.contact-section h2 {
   text-align: center;
  font-size     :       2.5rem;
	margin-bottom :      3rem;
  color: #2c3e50;
}

.contact-layout {
    display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom    : 1.5rem;
   color: #2c3e50;
}

.info-item {
   margin-bottom  :     1.5rem;
}

.info-item strong {

   display: block;
      margin-bottom: 0.5rem;
     color: #2c3e50;
}

.info-item p		{
  color: #6c757d;
   line-height: 1.6;
}

.contact-form {
          background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
	border: 1px solid #e9ecef;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
	   display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
    color: #2c3e50;


}

.form-group input,
.form-group select,
.form-group textarea {


  width: 100%;
  padding: 12px;
    border: 1px solid #ced4da;
   border-radius: 5px;
    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     :     #667eea;
  box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.25);
}

.submit-btn {
  background: #e74c3c;
  color: white;
    padding: 15px 30px;
  border: none;
	border-radius     : 5px;
   font-size: 1rem;
	 font-weight: 600;
   cursor:      pointer;
    transition     :        all 0.3s ease;
   width: 100%;
}

.submit-btn:hover {
  background: #c0392b; 
	  transform: translateY(-2px);
}@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}.site-footer {
 background: #2c3e50;
 color: #ecf0f1;
    padding: 40px 0 20px;
}

.footer-content		{
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
		display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 2rem;
  align-items    :       start;
}

.footer-brand img {

	               height: 35px;
  width: auto;
	}

.footer-info {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
}

.footer-section h4 {
  margin-bottom :     1rem;
          color: #3498db;
}

.footer-section ul {
          list-style: none; 

}

.footer-section ul li {

   margin-bottom: 0.5rem;}

.footer-section a {
    color: #bdc3c7;
    text-decoration   :none;
    transition: color 0.3s ease;
}

.footer-section a:hover {


   color  :        #3498db;
}

.footer-bottom {
   border-top: 1px solid #34495e;
   margin-top: 2rem;
      padding-top  :   1rem;
	text-align: center;
  color: #95a5a6;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}.menu-items a.active {
   color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 2px;
}

.page-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
  padding    :    120px 0 60px;
   text-align: center;
}

.page-hero h1 {
   font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle{
	font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
	 margin: 0 auto;
}

.company-story {
   padding: 80px 0;
    background: white;
}

.story-layout {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
    color: #2c3e50;
}

.story-text p {

	   margin-bottom: 1.5rem; 
	   line-height: 1.7; 
	   color : #6c757d; 
	   font-size: 1.1rem; 
	

}


.story-visual img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
}.mission-vision {
  padding: 80px 0;
   background: #f8f9fa;
}

.mission-vision h2 {
   text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
    color:        #2c3e50;
}

.mission-grid {
    display  :    grid;
    grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card, .vision-card
{
  background   :  white; 
    padding: 2.5rem; 
  border-radius: 10px; 
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); 
		text-align   :center;
}

.mission-card h3, .vision-card h3 {
  font-size: 1.5rem; 
  margin-bottom: 1.5rem; 
   color  :       #e74c3c;
}

.mission-card p, .vision-card p {
	line-height    :       1.7;
    color: #6c757d;
}@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
}.expertise-areas


{
   padding   :      80px 0;
   background: white;
}

.expertise-areas h2 {
   text-align: center;
    font-size: 2.5rem;
       margin-bottom: 3rem;
  color:  #2c3e50;
}

.expertise-layout {
  display: grid;

	    grid-template-columns: 2fr 1fr;

	  gap   :  3rem;

	        align-items: center; 

}

.expertise-item {
    margin-bottom: 2.5rem;
  padding: 1.5rem;
    border-left: 4px solid #3498db;
   background: #f8f9fa;
  border-radius: 0 8px 8px 0;
}

.expertise-item h3 {
  color: #2c3e50; 
	  margin-bottom: 1rem; 
	   font-size: 1.3rem;
}

.expertise-item p {
   line-height: 1.6;
  color: #6c757d; 

}

.expertise-visual img {
    width: 100%;
      border-radius: 10px;
     box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .expertise-layout {
        grid-template-columns: 1fr;
    }
}.approach-methodology {
  padding: 80px 0;
  background: #ecf0f1;

}

.approach-methodology h2 {
   text-align: center;
	  font-size: 2.5rem;
	  margin-bottom: 2rem;
	   color   :      #2c3e50;
}

.approach-intro  {
         text-align: center;

    font-size: 1.1rem;

     margin-bottom: 3rem;

  color: #6c757d;

	max-width: 800px;

   margin-left: auto;

	 margin-right: auto;
}

.methodology-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
}

.step-item {
  background: white;
    padding: 2rem;
   border-radius:10px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   position: relative;
}

.step-number {
  background: #e74c3c;
   color: white;
  width: 50px;
    height: 50px;
    border-radius: 50%;
	 display: flex;
    align-items: center;
	justify-content   :        center;
    font-weight: 700;
   font-size  :      1.2rem;
    margin :      0 auto 1.5rem;
}

.step-item h3 {
  font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}  

.step-item p {


	line-height: 1.6;
  color: #6c757d;

}

.company-values


{
	    padding: 80px 0;
  background: white;
	}

.values-layout {
    display: grid;
	         grid-template-columns: 1fr 1fr;
	    gap: 3rem;
	   align-items: center;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom:  2rem;
    color: #2c3e50;
}

.value-item {
   margin-bottom: 2rem;
   background: #f8f9fa;
    border-left: 4px solid #e74c3c;
  border-radius: 8px;
    padding: 1.5rem;
}

.value-item h3{
   font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #2c3e50; 
	
}

.value-item p

{
    line-height: 1.6;
  color: #6c757d;
  font-size: 0.95rem;
}

.values-visual img{
    width: 100%;
    border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .values-layout {
        grid-template-columns: 1fr;
    }
}.why-choose-us {
               padding: 80px 0;
   background:    #34495e;
                    color: white;
}

.why-choose-us h2 {

	  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
	}

.reasons-grid

{
   display     :   grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	    gap: 2rem;
}

.reason-card {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
  border-radius: 10px;
   text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-card h3 {
   font-size: 1.3rem;
	margin-bottom: 1rem;
	color: #3498db;
}

.reason-card p {
      opacity    :     0.9;
  line-height: 1.6;
}

.thankyou-main {
  min-height: calc(100vh - 200px);
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.thankyou-container {
	max-width  :    800px;
   margin: 0 auto;
		text-align   : center;
}

.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;
   position: relative;
   animation: scaleIn 0.5s ease-out;
} 

.checkmark {
    width  :    25px;

	  height: 15px;

	          border: 3px solid white;

	  border-top: none;

	  border-right: none;

	  transform: rotate(-45deg);

	  margin-top: -5px;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-container h1 {
    font-size :    2.8rem;
  margin-bottom: 2rem;
  font-weight: 700;


}

.thank-message {
   margin-bottom: 3rem;
}

.main-text {
  font-size: 1.2rem;
    margin-bottom: 1rem;
   font-weight: 500;
}

.thank-message p {
  line-height: 1.7;
  opacity: 0.9;
	 margin-bottom: 1rem;
	
}

.next-steps {
  background: rgba(255,255,255,0.1); 
	   padding: 3rem; 
	   border-radius: 15px; 
	    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size :     2rem;
   margin-bottom: 2rem;
}

.steps-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
}

.step-card {
	  background: rgba(255,255,255,0.15);
	padding: 1.5rem;
   border-radius: 10px;
  text-align    :    center;}  

.step-card .step-number {
	  background: #e74c3c;
	color     :     white;
    width    :      40px;
    height: 40px;
    border-radius: 50%;
       display: flex;
  align-items: center;
  justify-content: center;
    font-weight: 700;
   margin: 0 auto 1rem;


}

.step-card h3 {
       font-size: 1.1rem;
    margin-bottom    :   0.8rem;
}

.step-card p {
   font-size:  0.9rem;
   line-height: 1.5;
   opacity: 0.9;
}

.additional-info {
  background: rgba(255,255,255,0.1);
  padding: 2.5rem;
    border-radius: 15px;
  margin-bottom: 3rem;
	}

.additional-info h2 {

	    font-size: 1.8rem;
   margin-bottom: 1.5rem;
	}

.info-content p {
  margin-bottom: 2rem;
	line-height: 1.6;
  opacity   :       0.9;
}

.action-buttons {
  justify-content: center;
    flex-wrap: wrap;
   gap: 1rem;
  display: flex;
}

.btn-primary, .btn-secondary {
    padding: 12px 24px;
	    text-decoration    :     none;
	   border-radius: 5px;
	       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: white;
  border: 2px solid white;



}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

.contact-reminder{
  background: rgba(255,255,255,0.1);
  padding: 2rem;
   border-radius  :      10px;
   text-align:       left;
}

.contact-reminder h3 {
	         font-size: 1.5rem;
   margin-bottom: 1rem;
  text-align: center;}

.contact-reminder p	{
    margin-bottom: 1rem;
  text-align: center;
}

.contact-details {
   text-align: center;
   margin-top: 1.5rem;
}

.contact-details p {
	margin-bottom: 0.5rem;


}@media (max-width: 768px) {
    .thankyou-container h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 200px;
        text-align: center;
    }
}.content-wrapper h1 {
    font-size: 2.5rem;
  color: #2c3e50;
	margin-bottom: 1.5rem;
   text-align: center;
}

.content-wrapper h2 {
   font-size :  1.8rem;
	color: #2c3e50;
   margin: 2rem 0 1rem;
}

.content-wrapper p   {
   font-size: 1.1rem;
    color: #6c757d;
   line-height: 1.7;
    margin-bottom: 1rem;
}

.content-wrapper ul {
   list-style  :       disc;

  margin: 1rem 0;

                    padding-left: 2rem;
}



.content-wrapper ul li {
   font-size: 1.1rem;
    color: #6c757d;
   line-height: 1.7;
  margin-bottom  :0.5rem;
}