* {
   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: #fff;
}

.container {
	max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.main-nav {
         background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	position: fixed;
   width: 100%;
  top: 0;
  z-index: 1000;
}


.nav-wrapper{


               padding: 0 20px;
   margin: 0 auto;
    justify-content: space-between;
  max-width: 1200px;
  height: 70px;
    display: flex;
	align-items: center;
	}

.nav-brand .brand-logo {
   height: 45px;
   width: auto;
}

.nav-links {
	        display: flex;
    gap: 2rem;
}

.nav-item {
   text-decoration: none;
    color: #333;
  -o-transition: all 0.3s ease;
  font-weight  :   500;
   padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;

}

.nav-item:hover,
.nav-item.active {
      background: #2563eb;
	color: #fff;
     }

.burger-menu {


	 display: none;
    flex-direction: column;
  cursor: pointer;
    gap  :    4px;


}

.burger-menu span {
  width: 25px;
   height: 3px;
  background: #333;
  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);
}

.hero-section {
     margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.hero-content     {
  max-width: 1200px;
   margin: 0 auto;
   padding  :     0 20px;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
	 font-size: 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text p {
   font-size: 1.2rem;
    margin-bottom  :2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
  gap: 1rem;
      flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 12px 28px;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
   transition     :   all 0.3s ease;
   display: inline-block;
}

.cta-primary {
    background: #fff;
    color: #2563eb;
}

.cta-primary:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.cta-secondary     {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.cta-secondary:hover{
   background: #fff;
   color   :       #2563eb;
}

.hero-image img {


   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
	} 

.services-overview {
   padding: 100px 0;
    background: #f8fafc;
}

.services-overview h2 {
                    text-align: center;

   font-size: 2.5rem;

    margin-bottom: 3rem;

  color: #1e293b;
}

.services-grid  {
  display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap   : 2rem;
}

.service-card {
    background    :    #fff;
    padding: 2rem;
	 border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.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: #1e293b;}

.service-card p {
  color: #64748b;
   line-height: 1.7;
}

.about-preview {
    padding: 100px 0;
}

.about-content {

  display: grid;
   grid-template-columns: 1fr 1fr;
		gap  :   4rem;
         align-items: center;
	}

.about-text h2 {
  font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color:     #1e293b;
}

.about-text p {
       font-size :       1.1rem;
    color     : #64748b;
	 margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
   margin-top: 2rem;
}

.benefits-list li {
   font-weight: 500;
    color   :#2563eb;
   position: relative;
   padding: 0.5rem 0;
  padding-left: 1.5rem;
}

.benefits-list li:before{
  content: "✓";
   position: absolute;
  left: 0;
    color: #10b981;
  font-weight: bold;
}

.about-image img

{
                    width: 100%;
  border-radius:  12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-section {
	  padding: 80px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
   text-align: center;


}

.cta-content h2 {

	  font-size: 2.5rem;
   margin-bottom: 1rem;


}

.cta-content p {
   font-size:        1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


.cta-button {
    display: inline-block;
   background: #10b981;
  color: white;
  padding  :15px 35px;
    text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;
}

.cta-button:hover {
	    background  :        #059669;
  transform: translateY(-2px);
	}

.contact-section {
   padding: 100px 0;
   background    :     #f8fafc;
}

.contact-section h2 {
   text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.contact-wrapper {
   grid-template-columns: 1fr 2fr;
  gap: 3rem;
   display :grid;
}

.contact-info h3 {
    margin-bottom: 2rem;
  color: #1e293b;
   font-size: 1.5rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item strong {
   display: block;
    color: #2563eb;
  margin-bottom    :        0.5rem;
   font-size: 1.1rem;
}

.contact-form {
    background: white;
  padding: 2rem;
    border-radius   :   12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-row {
  display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}  

.form-group label {
   color: #374151;
    margin-bottom: 0.5rem;
  font-weight : 600;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
   -moz-border-radius: 6px;
  width: 100%;
      -moz-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
   padding :    12px;
	-webkit-border-radius: 6px;
        border: 2px solid #e5e7eb;
   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  :        #2563eb;
}

.submit-btn {
		background: #2563eb;
  color: white;
  border: none;
   padding: 15px 30px;
    border-radius    :     8px;
   font-size: 1.1rem;
	font-weight: 600;
  cursor   : pointer;
    transition: all 0.3s ease;
   width    :     100%;
}

.submit-btn:hover {
  transform: translateY(-1px);
  background: #1d4ed8;
}

.main-footer {
    background: #1e293b;
        color: white;
	padding: 60px 0 20px;
	}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
    display: grid;
  grid-template-columns: repeat(4, 1fr);
                    gap: 2rem;
	
}

.footer-section h4 {
    margin-bottom: 1rem;
  color: #10b981;
  font-size: 1.2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section ul {
    list-style   :  none;
	
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
   color: #cbd5e1;
     text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #10b981;

}

.footer-section p {
    color: #cbd5e1;
        margin-bottom: 0.5rem;
} 

.footer-bottom {
      max-width: 1200px;
    margin: 0 auto;
               padding    :     20px;
      border-top: 1px solid #374151;
                    margin-top: 2rem;
   text-align: center;
  color: #9ca3af;

}@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: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.about-hero {
   margin-top: 70px;
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
  text-align: center;
}

.about-hero-content   {
               max-width: 800px;
   margin: 0 auto;
  padding: 0 20px;


}

.about-intro h1 {
   font-size   : 3.2rem;
    font-weight: 700;
        margin-bottom: 1.5rem;
   line-height: 1.2;
} 

.about-intro p {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height  :  1.6;
}

.our-story {
   padding: 100px 0;
   background: #f8fafc;
}

.story-content {
	display: grid;
    grid-template-columns     :      1fr 1fr;
   gap: 4rem;
                    align-items: center;
}

.story-text h2 {
   color: #1e293b;
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.story-text p {
   font-size :     1.1rem;
    line-height: 1.7;
	color: #64748b;
   margin-bottom: 1.5rem;
}


.story-image img {


  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);

}

.our-approach {
	padding: 100px 0;
}

.our-approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color:#1e293b;

}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap     :        2rem;
}

.approach-item {
   background: white;
   padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
          text-align: center;
          border-left: 4px solid #2563eb;
	
}



.approach-number {
  display: inline-block;
   width: 50px;
   height: 50px;
  background: #2563eb;
	color: white;
   border-radius  :     50%;
  line-height: 50px;
  font-size: 1.2rem;
   font-weight: 700;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.3rem;
	 margin-bottom: 1rem;
          color: #1e293b;
}

.approach-item p {
       color: #64748b;
    line-height: 1.6;

}

.expertise-areas {
    padding: 100px 0;
  background: #f8fafc;


}

.expertise-areas h2 {
 text-align    :      center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1e293b;
}

.expertise-content{
    display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 4rem;
   align-items: start;
}

.expertise-list {
  grid-template-columns: 1fr;
	gap: 2rem;
  display: grid;
	
}

.expertise-category h4
	{
   font-size: 1.4rem;
  color :      #2563eb;
  margin-bottom: 1rem;
	 padding-bottom: 0.5rem;
	border-bottom: 2px solid #e2e8f0;
}

.expertise-category ul {
    list-style: none;
	margin     :0;
  padding: 0;
}

.expertise-category li {
     padding: 0.5rem 0;
    color:     #64748b;
   position: relative;
  padding-left     : 1.5rem;
       line-height: 1.6;

}

.expertise-category li:before {
  content: "•";
  position  :     absolute;
    left: 0;
   color: #10b981;
   font-weight: bold;
   font-size: 1.2rem;

}

.expertise-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-choose-us {
  padding: 100px 0;
	
}

.why-choose-us h2 {
   text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #1e293b;
	
}

.benefits-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;}

.benefit-card {
   background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {

  transform: translateY(-5px);
	}

.benefit-card img {
       width: 100%;
	height: 200px;
   object-fit: cover;
} 

.benefit-card h3 {
  padding: 1.5rem 2rem 0;
   font-size: 1.4rem;
   color: #1e293b;
}

.benefit-card p {
   padding: 1rem 2rem 2rem;
   color: #64748b;
   line-height   :  1.6;
}

.contact-cta {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    text-align: center;
}

.contact-cta h2 {
		font-size: 2.5rem;

    margin-bottom: 1rem;
}

.contact-cta p {
  margin-bottom: 2rem;
    opacity:      0.9;
    font-size: 1.2rem;
}

.contact-info-brief  {
  display: flex;
    justify-content: center;
  gap: 3rem;
   margin-bottom: 2rem;
  flex-wrap: wrap;
}

.contact-detail


{
    text-align: left;
}

.contact-detail strong {
   display: block; 
  margin-bottom: 0.5rem; 
   font-size: 1.1rem;
     }

.contact-detail span {
  color: rgba(255,255,255,0.9);
}

.thankyou-main{
   margin-top: 70px;
  min-height: calc(100vh - 70px);
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
     display: flex;
   align-items: center;
}

.thankyou-container {
   max-width :  800px;
    margin   :    0 auto;
    padding: 0 20px;
}

.thankyou-content		{
  background: white;
   padding: 3rem;
   border-radius  :       20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	text-align: center;
}  

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
		width     :     80px;
   height: 80px;
    background: #10b981;
    border-radius  :     50%;
  margin: 0 auto;
   display: flex;
  align-items: center;
   justify-content   :        center;
   animation: scaleIn 0.5s ease-out;
     }@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.checkmark {

	    width: 30px;
      height: 15px;
     border : 3px solid white;
            border-top: none;
       border-right: none;
     transform: rotate(-45deg);
     margin-top: -5px;}

.thankyou-content h1 {
    font-size: 2.5rem;
    color: #1e293b;
  margin-bottom: 1.5rem;
}  

.thankyou-message p {
   font-size: 1.2rem;
   color: #64748b;
   line-height: 1.6;
  margin-bottom   :      2rem;
}

.next-steps {
  margin: 3rem 0;
  text-align     :     left;

}

.next-steps h3 {
  text-align: center;
    font-size: 1.5rem;
   color: #1e293b;
   margin-bottom: 2rem;


}

.steps-list  
  {
  display: grid;
    gap: 1.5rem;
}

.step-item {
 display: flex;
	               align-items: start;
		gap: 1rem;
}

.step-number {
  width: 30px;
  height: 30px;
  background: #2563eb;
  color: white;
    border-radius: 50%;
	display: flex;
     align-items: center;
   justify-content:       center;
    font-weight: 600;
  flex-shrink: 0;
}

.step-item p {
   color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.additional-info {
   margin: 3rem 0;
  padding: 2rem;
   background: #f8fafc;
   border-radius: 12px;
   text-align: left;
}



.additional-info h3 {
     text-align: center;
  color: #1e293b;
         margin-bottom: 1.5rem;
    font-size     :    1.3rem;
	}

.suggestions-list {
  list-style: none;
   padding: 0;
}

.suggestions-list li {
   padding: 0.5rem 0;
  color   : #64748b;
    position: relative;
   padding-left: 1.5rem;
	 line-height    :  1.6;
}

.suggestions-list li:before {
  content: "✓";
   position: absolute;
    left: 0;
  color  : #10b981;
  font-weight: bold;
}

.contact-reminder {
  margin: 2rem 0;
    padding: 1.5rem;
 background: #eff6ff;
   border-left: 4px solid #2563eb;
    border-radius :       8px;
}

.contact-reminder p {
     margin :  0.5rem 0;
  color: #1e293b;


	}

.contact-reminder a {
    color: #2563eb; 
	    text-decoration    :       none; 
	    font-weight :     600;
}

.contact-reminder a:hover {


   text-decoration: underline;
}

.thankyou-actions {
   display: flex;
   gap: 1rem;
  justify-content: center;
    margin-top: 2rem;
    flex-wrap  :        wrap; 

}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  text-decoration: none;
	border-radius: 8px;
    font-weight: 600;
   transition :        all 0.3s ease;
 display: inline-block;
}

.btn-primary   {
  background: #2563eb;
   color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
}

.btn-secondary {
     background: transparent;
   color:  #2563eb;
  border: 2px solid #2563eb;


}

.btn-secondary:hover {
    background: #2563eb;
  color: white;
}@media (max-width: 768px) {
    .about-intro h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-list {
        order: 2;
    }
    
    .expertise-image {
        order: 1;
    }
    
    .contact-info-brief {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-detail {
        text-align: center;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-intro h1 {
        font-size: 2rem;
    }
    
    .our-approach h2,
    .expertise-areas h2,
    .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        padding: 1.5rem;
    }
}.cookies-section,
.privacy-section {
	 padding: 100px 0;
    background: #f8fafc;
	
}

.cookies-section h1,
.privacy-section h1     {
  font-size: 2.5rem;
    margin-bottom: 2rem;
	color: #1e293b;
   text-align: center;
}

.cookies-section h2,
.privacy-section h2 {
  font-size: 1.8rem; 
	  margin: 2rem 0 1rem; 
	    color: #1e293b;
}

.cookies-section p,
.privacy-section p  {


    color: #64748b;
	 font-size: 1.1rem;
    margin-bottom: 1.5rem;
       line-height   :  1.7;
	}

.cookies-section ul,
.privacy-section ul {
  margin-bottom: 1.5rem;
}