* {
   margin: 0;
    padding: 0;
               box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color     :#333;
}

.main-navigation {
  position: fixed;

	   top   : 0;

	    width: 100%;

	  background: rgba(255, 255, 255, 0.95);

	  backdrop-filter: blur(10px);

	    z-index:     1000;

	   padding: 15px 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 20px;
}

.company-logo {
  height: 45px; 
	   width: auto;
}

.nav-links {
   display  :        flex;
  list-style: none;
	gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color  :      #2c3e50;
   font-weight: 500;
  transition: color 0.3s ease;
      position: relative;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after {

	  content: '';
   position : absolute;
    bottom: -5px;
  left    :0;
  width: 0;
    height: 2px;
 background: #3498db;
  transition: width 0.3s ease;
	

}

.nav-links a:hover::after {
       width: 100%;
}

.burger-menu {
    flex-direction: column;
    display: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
   margin: 3px 0;

  width: 25px;

	height: 3px;

   background: #2c3e50;

  transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
} 

.burger-menu.active span:nth-child(2) {

  opacity: 0;


     }

.burger-menu.active span:nth-child(3) {

	  transform: rotate(45deg) translate(-5px, -6px);
     }

main {
   margin-top: 80px;
}

.hero-area {

    min-height    :    90vh;
   display: flex;
   align-items: center;
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
   gap: 60px;}

.hero-content
{
   flex: 1;
}

.hero-content h1 {
  font-size: 3.2rem;
   color: #2c3e50;
   margin-bottom: 25px;
	line-height: 1.2;
}

.hero-content p {
   font-size   :     1.2rem;
    color: #555;
 margin-bottom: 35px;
   line-height: 1.7;
}

.primary-btn {
    display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
   padding: 15px 30px;
  text-decoration: none;
	 border-radius  :    50px;
   font-weight: 600;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.hero-visual {
    flex: 1;
}

.hero-visual img {

	    width: 100%;
  height: auto;
        border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
     }

.services-overview  
  {
    padding:      100px 0;
  background: #f8f9fa;
}

.services-overview h2  
  {
   	 text-align: center; 
  font-size    : 2.8rem; 
   color: #2c3e50; 
	margin-bottom: 60px;
	
     }

.services-grid {


    max-width: 1200px;
  margin: 0 auto;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
   padding: 0 20px;
     }

.service-card {
   background: white;
    border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card img {
       width: 100%;
   height: 220px;
  object-fit: cover;}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
       margin: 25px 25px 15px;
}

.service-card p {

   color: #666;
  margin: 0 25px 25px;
			line-height: 1.6;}

.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
   color: white;
   padding: 80px 0;
  text-align: center;
}  

.cta-content		{
  max-width:      800px;
   margin: 0 auto;
               padding: 0 20px;
}

.cta-content h2 {

	  font-size: 2.5rem;
               margin-bottom   : 20px;
     }


.cta-content p
{

	  font-size: 1.1rem;

  margin-bottom: 35px;

   opacity   : 0.9; 

	}

.cta-button {
   font-weight: 600;
  text-decoration: none;
   background: #e74c3c;
    padding: 18px 35px;
	 font-size: 1.1rem;
  transition: all 0.3s ease;
	color: white;
   border-radius  :     50px;
    display: inline-block;
}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.about-preview    {
  padding: 100px 0; 
  max-width: 1200px; 
	margin: 0 auto; 
  display: flex; 
      align-items   :       center; 
  gap: 60px; 
   padding-left: 20px; 
        padding-right: 20px;
}

.about-text {
         flex :     1;
}

.about-text h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 25px;
}

.about-text p {
    color: #555;
		margin-bottom: 20px;
	    font-size: 1.1rem;
	   line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
  width: 100%;
 border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	
}

.contact-section {
   background: #f8f9fa;
   padding: 100px 0;
}

.contact-section h2     {
   text-align: center;
   font-size     :   2.8rem;
   color: #2c3e50;
  margin-bottom: 60px;
}

.contact-wrapper {
   max-width: 600px;
  margin     :0 auto;
    padding: 0 20px;
}

.contact-form {
   background: white;
     padding: 40px;
     border-radius: 20px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
  display: block;
    margin-bottom: 8px;
   color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   	 width: 100%;
   padding: 12px 15px;
    border: 2px solid #e0e0e0;
	border-radius   :      10px;
  font-size :   1rem;
  transition: border-color 0.3s ease; 
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: #3498db;
    outline: none;
}

.submit-btn


{
    width: 100%;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
  padding: 15px;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
    cursor   :   pointer;
  transition: all 0.3s ease;


}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);

}

.main-footer {
    background: #2c3e50;
   color: white;
   padding: 60px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin    :  0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:   40px;
	 padding   : 0 20px;
}

.footer-logo {
    height: 40px;
  filter: brightness(0) invert(1);
    margin-bottom: 15px;
}

.footer-section h4 {
  margin-bottom: 20px;
   color     :  #3498db;
}  

.footer-section ul    {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
       color: #bdc3c7;
 text-decoration: none;
  -moz-transition     :   color 0.3s ease;
	 transition: color 0.3s ease;
        -webkit-transition: color 0.3s ease;
   -o-transition: color 0.3s ease;
}



.footer-section a:hover {
  color: #3498db;
}

.footer-bottom {


   border-top   :  1px solid #34495e;
	margin-top: 40px;
    padding-top: 20px;
  text-align: center;
  color: #95a5a6;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-area {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-preview {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.about-hero {
    padding    :       120px 0 80px;
   max-width: 1200px;
    margin: 0 auto;
   display: flex;
    align-items: center;
  gap  :        60px;
    padding-left: 20px;
  padding-right: 20px;
}

.about-hero-content h1 {

	  font-size   :  3rem;
   color: #2c3e50;
    margin-bottom: 25px;
  line-height: 1.2;

}

.about-hero-content p {
   font-size   :    1.3rem;
   color    :   #555;
   line-height: 1.6;
}

.about-hero-image {
  flex: 1;
}

.about-hero-image img {
	 width   :100%;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.company-story {
  background: #f8f9fa;
     padding: 80px 0; 
	
}

.story-container {
    max-width: 900px;
	margin: 0 auto;
  padding: 0 20px;
  text-align :     center;
}

.story-container h2 {
  font-size: 2.5rem;
	color: #2c3e50;
  margin-bottom: 40px;
}

.story-content p {


  font-size: 1.1rem;
          margin-bottom: 25px;
    line-height: 1.7;
   color: #555;
    text-align: left;

}

.our-approach {
  padding: 100px 0;
  text-align: center;
}

.our-approach h2 {
    font-size: 2.8rem;
       color: #2c3e50;
   margin-bottom: 60px;
}

.approach-grid {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap:   40px;
  padding: 0 20px;

}

.approach-item {
	background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item img {
    width: 100%;
 height: 200px;
		 object-fit: cover;
   border-radius     : 10px;
  margin-bottom: 20px;


}

.approach-item h3 {
  font-size: 1.4rem;
    color:     #2c3e50;
	margin-bottom: 15px;
}

.approach-item p {
    line-height: 1.6;
  color: #666;
}

.expertise-section {
    padding: 100px 0;
  background:     #f8f9fa;
}

.expertise-content {
   max-width: 1200px;
    margin: 0 auto;
   display: flex;
   align-items: center;
  gap: 60px;
	padding: 0 20px;

}

.expertise-text {
    flex: 1;
	


}

.expertise-text h2 {
   font-size: 2.5rem; 
	   color: #2c3e50; 
	      margin-bottom: 25px;

}

.expertise-text p {

  color: #555;
    margin-bottom: 20px;
          font-size: 1.1rem;
  line-height    :      1.7;
}

.stats-grid  
  {

	   display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 30px;
   margin-top: 40px;}

.stat-item {
  text-align: center;
}

.stat-number {
    display: block;
   font-size: 2.5rem;
   font-weight:   bold;
    color: #3498db;
  margin-bottom :        5px;
}

.stat-label {
    color: #666;
   font-size: 0.9rem;
}

.expertise-image {
  flex: 1;


}

.expertise-image img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.values-section 
 {
   padding: 100px 0;
	text-align: center;
}

.values-section h2 {
    font-size: 2.8rem;
   color: #2c3e50;
	margin-bottom: 60px;
}

.values-container {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.value-card {
   background: white;
    padding: 40px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.value-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.value-card h3 {
   font-size: 1.3rem;
 color: #2c3e50;
  margin-bottom: 15px;
}

.value-card p {
	    color: #666;
   line-height: 1.6;


}

.thankyou-hero {
     padding: 120px 0 80px;
               min-height :      80vh;
}

.thankyou-container {
    max-width: 1200px;
   margin  :       0 auto;
    display: flex;
    align-items: center;
   gap: 60px;
  padding     :0 20px;
}

.thankyou-content {
    flex: 2;
}

.thankyou-content h1 {

  font-size    :3rem;
	 color: #2c3e50;
   margin-bottom: 25px;
  line-height :  1.2;
     }

.lead-text {
    color: #555;
    font-size: 1.3rem;
               line-height    :       1.6;
	 margin-bottom: 40px;
}

.next-steps {
   margin: 50px 0;
}

.next-steps h2 {
   font-size: 2rem;

	   color: #2c3e50;

	   margin-bottom: 30px;
}

.steps-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
	margin-bottom: 40px;
}

.step-item {
  background: #f8f9fa;
      padding     :    25px;
   border-radius: 10px;
  text-align: center;
}

.step-number {
	display: inline-block;
   width: 50px;
  height: 50px;
  background    :        #3498db;
    color: white;
   border-radius: 50%;
    line-height: 50px;
  font-size   :1.3rem;
  font-weight: bold;
    margin-bottom: 15px;
}

.step-item h3 {
  font-size: 1.2rem;
	color: #2c3e50;
  margin-bottom: 10px;
}

.step-item p {
  color: #666;
    font-size: 0.95rem;
   line-height: 1.5;
}

.immediate-resources {
   background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.immediate-resources h2{
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.immediate-resources p {
  color: #666;
   margin-bottom  :   25px;
}

.resource-links {
  display    :        flex;
  gap: 15px;
   flex-wrap: wrap;
}

.resource-btn {

	         display: inline-block;
    padding:        12px 25px;
  background: #3498db;
   color: white;
   text-decoration: none;
   border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.resource-btn:hover {

  background: #2980b9;
  transform: translateY(-2px);
} 

.resource-btn.secondary {
          background: #95a5a6;
}

.resource-btn.secondary:hover
{

    background    :   #7f8c8d;


}

.contact-reminder

{


    text-align: center;
    padding: 30px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
      border-radius    :       15px;
    margin-top: 40px;}

.contact-reminder h3 {
  margin-bottom     : 15px;
    font-size    :      1.4rem;
}

.contact-reminder p {

 margin-bottom: 10px;

}

.phone-number {
  font-size: 1.3rem;
   font-weight: bold;
  color: #3498db;
   margin: 15px 0;
}

.address {
    opacity: 0.9;
      font-size: 0.95rem;
}

.thankyou-visual {
   flex: 1;
}

.thankyou-visual img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero, .thankyou-container, .expertise-content {
        flex-direction: column;
        text-align: center;
    }

    .about-hero-content h1, .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .resource-links {
        justify-content: center;
    }

    .values-container {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }
}.cookies-section, .privacy-section     {


    padding   :        120px 0 80px;
	}

.cookies-container, .privacy-container {
  max-width: 900px;
	   margin    :        0 auto;
	         padding: 0 20px;
		 text-align:left;
}

.cookies-container h1, .privacy-container h1 {
    font-size     :    3rem;
  color   :       #2c3e50;
  margin-bottom: 25px;
  line-height: 1.2;
}

.cookies-content h2, .privacy-content h2
	{
   font-size: 1.8rem;
   color: #2c3e50;
  margin: 30px 0 15px;
}

.cookies-content p, .privacy-content p {
  font-size: 1.1rem;
  color: #555;
   margin-bottom   :   20px;
    line-height: 1.7;
}

.cookies-content ul, .privacy-content ul {
   list-style:       disc;
      margin-left: 20px;
      margin-bottom: 20px;
}

.cookies-content ul li, .privacy-content ul li  {
  font-size: 1.1rem;
				 color: #555;
   margin-bottom: 10px;
    line-height: 1.6; 
	
}@media (max-width: 768px) {
    .cookies-container h1, .privacy-container h1 {
        font-size: 2.2rem;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 1.6rem;
    }

    .cookies-content p, .privacy-content p,
    .cookies-content ul li, .privacy-content ul li {
        font-size: 1rem;
    }
}
