* {
        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;
}

.main-navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position:       fixed;
  width: 100%;
  top: 0;
   z-index: 1000;
  padding: 0;
}

.nav-container {
   max-width: 1200px;
   margin    :0 auto;
   display: flex;
    justify-content: space-between;
               align-items: center;
  padding: 1rem 2rem;
}

.logo-section {
   flex: 0 0 auto;
}

.brand-logo {
   height: 45px;
   width: auto;
}

.nav-links  
  {
  display: flex;
    list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
    color  :       #2c3e50;
   font-weight : 500;
   transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.burger-toggle   {
   display: none;
      flex-direction: column;
   cursor: pointer;
               gap: 4px;
	
}

.burger-toggle span {
   width: 25px;
    height: 3px;
    background-color: #2c3e50;
   transition: all 0.3s ease;
}

.hero-section {
  padding: 120px 2rem 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns:  1fr 1fr;
    gap: 3rem;
  align-items: center;
    min-height     :       70vh;
}

.hero-content h1 {
  color: #2c3e50;
    font-size: 3.2rem;
   font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size     :   1.3rem;
   color: #7f8c8d;
               margin-bottom: 2rem;
}

.hero-cta {
   display:        flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {

	         padding    :   14px 28px;
  text-decoration: none;
    border-radius: 8px;
               font-weight: 600;
  transition     :   all 0.3s ease;
    display: inline-block;
     }

.cta-primary {
	background-color: #3498db;
  color: white;
  border: 2px solid #3498db;
}

.cta-primary:hover {
    background-color: #2980b9;
 border-color: #2980b9;
  transform: translateY(-2px);
}

.cta-secondary {
   background-color: transparent;
  color: #3498db;
	border: 2px solid #3498db;
}


.cta-secondary:hover {
    background-color: #3498db;
  color: white;
}

.hero-image img {
   width   :        100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.section-container {
   max-width: 1200px;
  margin: 0 auto;
    padding  :0 2rem;
}

.services-overview {
    padding: 80px 0;
   background-color: #f8f9fa;
}

.services-overview h2    {

	  text-align:     center;
	 font-size: 2.5rem;
    color: #2c3e50;
	margin-bottom: 3rem;}

.services-grid {
    display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
	padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	 text-align: center;
}

.service-card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
	 object-fit: cover;
    border-radius:  8px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
	   color  :    #2c3e50;
	  margin-bottom:  1rem;
	
}

.service-card p {
  color: #7f8c8d;
  line-height: 1.6;
}

.expertise-showcase {
  padding: 80px 0;
}

.expertise-content {
   		display: grid;
	grid-template-columns     :1fr 1fr;
   gap: 3rem;
  align-items: center;

}

.expertise-text h2{

  margin-bottom:        1.5rem;
  font-size:    2.3rem;
    color: #2c3e50;
	}

.expertise-text p {
  font-size: 1.1rem;
  color: #7f8c8d;
   margin-bottom: 2rem;
}

.benefits-list {
   list-style: none;
}

.benefits-list li {
	          color: #2c3e50;
   padding: 0.5rem 0;
   padding-left: 1.5rem;
    position: relative;
	}

.benefits-list li::before {
  content: "✓";
    position   : absolute;
  left: 0;
  color: #27ae60;
   font-weight: bold;

}

.expertise-visual img {
    width     :100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #3498db, #2980b9);
        padding: 60px 0;
  text-align: center;
  color :       white;
}

.cta-content h2 {
  margin-bottom: 1rem;
   font-size: 2.5rem;
}

.cta-content p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
	opacity   :    0.9;
}


.cta-button-large {
       background-color: white;
	color: #3498db;
    padding: 16px 32px;
    text-decoration: none;
	 border-radius: 8px;
  font-weight  :      600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
      display     :inline-block;
	}

.cta-button-large:hover {
	background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.contact-section {
         padding   :    80px 0;
  background-color: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
   color: #2c3e50;
      margin-bottom: 1.5rem;
	font-size: 1.5rem;
}

.contact-item {
   margin-bottom : 1.5rem;
}

.contact-item strong {
    color: #3498db;

	   display: block;

	               margin-bottom: 0.5rem;
}


.contact-form  {
  background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
    margin-bottom  :        0.5rem;
   color: #2c3e50;
    font-weight    :        500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 12px 15px;
    border: 2px solid #e9ecef;
  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: #3498db;}

.form-submit {
     background-color: #3498db;
     color: white;
    padding     :     14px 28px;
  border: none;
    border-radius    :        6px;
  font-size: 1rem;
   font-weight: 600;
               cursor: pointer;
    transition: all 0.3s ease;
	 width: 100%;

}

.form-submit:hover {
  background-color: #2980b9;
  transform: translateY(-1px);
}

.site-footer {
    background-color   :  #2c3e50;
  color: white;
    padding: 40px 0 20px;

}

.footer-container {
  max-width     :       1200px;
     margin: 0 auto;
   padding: 0 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 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: #ecf0f1;
  text-decoration: none;
  transition    :       color 0.3s ease;
}

.footer-section a:hover {
   color: #3498db;
}

.footer-logo img {
   height   :       40px;
  margin-bottom :  1rem;
   width    :       auto;
}

.footer-bottom {
  padding-top  :     1rem;
   margin-top: 2rem;
   text-align:       center;
  color     :     #bdc3c7;
  border-top: 1px solid #34495e;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: right 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
}.about-hero {
   padding  : 120px 0 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.about-hero-content h1		{
   font-size: 3rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.about-subtitle


{
  font-size: 1.3rem;
    color: #7f8c8d;
  max-width: 800px;
   margin: 0 auto;
	line-height: 1.6;
}

.company-story {
   padding: 80px 0;
}



.story-content {
  display:    grid;
  grid-template-columns: 1fr 1fr;
    gap    :        3rem;
    align-items   : center;
}

.story-text h2 {
	font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
      color: #7f8c8d;
   margin-bottom: 1.5rem;
  line-height: 1.7;
}

.story-visual img {
  width:      100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 

}

.our-approach {
  padding    :80px 0;
    background-color: #f8f9fa;
}

.our-approach h2 {
    text-align :center;
     font-size: 2.5rem;
  color   :      #2c3e50;
  margin-bottom: 3rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap: 2.5rem;
}

.approach-item {


   background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;}

.approach-item:hover {


  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);

}

.approach-icon img {

	  width: 100%;
    height: 180px;
    object-fit: cover;
       border-radius: 8px;
  margin-bottom   :    1.5rem;


}

.approach-item h3 {
   font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 1rem;
}

.approach-item p  
  {
     color: #7f8c8d;
  line-height: 1.6;
	}

.expertise-areas {
	  padding: 80px 0;


}

.expertise-content {
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: flex-start;
}

.expertise-text h2	{
   font-size: 2.3rem;
   color     : #2c3e50;
	margin-bottom: 2rem;
}

.expertise-point {
	  margin-bottom: 2rem;
    padding: 1.5rem;
       background: #f8f9fa;
    border-radius: 8px;
  border-left: 4px solid #3498db;

}

.expertise-point h4 {
      font-size:       1.3rem;
	    color: #2c3e50;
	    margin-bottom: 0.8rem;
}

.expertise-point p {
   color     :      #7f8c8d;
  line-height: 1.6;
}

.values-mission {
   padding: 80px 0;
   background-color  :#f8f9fa;

}

.values-mission h2 {
    text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 3rem;

}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
    background: white;
      padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h3


{

         font-size: 1.4rem;
   color: #3498db;
  margin-bottom: 1rem;




}

.value-card p

{
    color: #7f8c8d;
  line-height: 1.6;
}

.why-choose-us
	{
	padding: 80px 0;
     }

.why-choose-us h2{
  text-align: center;
         font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.reasons-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
               gap: 2rem;
}

.reason-item {
  padding: 1.5rem;
    border: 2px solid #e9ecef;
   border-radius    :    8px;
  transition :    all 0.3s ease;
}

.reason-item:hover {

	border-color  :      #3498db;
    background-color: #f8f9fa;


}

.reason-item h4 {
  font-size: 1.3rem;
  color: #2c3e50;
	margin-bottom     :   1rem;
}

.reason-item p {
  color: #7f8c8d;
        line-height: 1.6;
}

.thankyou-hero {
   padding: 120px 0 80px;
   text-align: center;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	color: white;
}

.success-indicator {
    margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
    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:checkmarkDraw 0.4s ease-out 0.2s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 25px; height: 15px; }
}.thankyou-content h1
{
    font-size: 3rem;
   margin-bottom: 1.5rem;
	 font-weight    :        700;
}

.thankyou-subtitle  {
   font-size: 1.3rem;
   opacity: 0.9;
    max-width: 600px;
   margin: 0 auto 3rem;
   line-height: 1.6;
	
}

.next-steps {
  background: rgba(255,255,255,0.1);
               padding: 2rem;
	 border-radius: 12px;
    margin-top: 2rem;
}

.next-steps h3 {
   font-size: 1.8rem;
    margin-bottom: 2rem;
}

.steps-list {

	    display   :       flex; 
   justify-content: space-between; 
    gap: 2rem; 
	flex-wrap     : wrap;

}

.step-item {
  flex: 1;
	min-width: 250px;
  display: flex;
    flex-direction: column;
  align-items: center;
    text-align: center;
	
}

.step-number {
 width: 50px;
    height: 50px;
          background: white;
   color: #27ae60;
    border-radius: 50%;
  display: flex;
    align-items :        center;
    justify-content: center;
         font-size: 1.5rem;
    font-weight: bold;
      margin-bottom: 1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.step-content p {
                    font-size: 0.95rem;
    opacity: 0.9;
  line-height: 1.5;
}

.while-waiting {
   padding    :     80px 0;
	   background-color :  #f8f9fa;
}

.while-waiting h2 {
    text-align: center;
	font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.waiting-content {
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
	align-items: center;
}

.waiting-text h3 {
  font-size: 1.8rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
}

.waiting-text p
{
   font-size: 1.1rem;
  color: #7f8c8d;
	margin-bottom: 2rem;
  line-height: 1.6;
}

.preparation-list {
   list-style: none;
   padding: 0;
}

.preparation-list li {
   padding: 0.8rem 0;
   position: relative;
   padding-left: 2rem;
  color: #2c3e50;
    line-height: 1.5;
}  

.preparation-list li::before {
  content: "→";
  position: absolute;
   left :      0;
	color: #3498db;
  font-weight: bold;
}

.waiting-visual img {
   width: 100%;
  height: auto;
	border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.quick-tips {
    padding: 80px 0;
}

.quick-tips h2 {
   text-align: center;
    font-size: 2.5rem;
				 color: #2c3e50;
    margin-bottom: 3rem;}

.tips-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;


}

.tip-card {
   background: white;
               padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
   text-align: center;
  transition: transform 0.3s ease;
}

.tip-card:hover {

  transform: translateY(-5px);


}

.tip-card img


{
  width: 100%;
    height: 180px;
   object-fit :  cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.tip-card h4 {
  font-size: 1.3rem;
   color: #2c3e50;
    margin-bottom: 1rem;
}

.tip-card p {
    color: #7f8c8d;
     line-height: 1.6;
}

.contact-reminder {
    text-align: center;
	background-color: #f8f9fa;
  padding: 80px 0;
}

.reminder-content h2 {
   	font-size: 2.3rem;
  color: #2c3e50;
      margin-bottom  :       1.5rem;
     }

.reminder-content p {
   font-size: 1.1rem;
	 color: #7f8c8d;
  margin-bottom: 2.5rem;
}

.contact-details {
       display: flex;
  justify-content: center;
  gap: 3rem;
                    margin-bottom: 3rem;
	flex-wrap: wrap;
     }

.contact-item h4 {
   font-size: 1.3rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.contact-item p {
   color    :#2c3e50;

    font-weight :    500;
}

.back-to-site {
    display: flex;
  justify-content: center;
    gap: 1rem;
    flex-wrap   : wrap;
}

.btn-primary, .btn-secondary {
  padding: 14px 28px;
   text-decoration: none;
   border-radius: 8px;
    font-weight    :  600;
   transition: all 0.3s ease;
   display: inline-block;
}

.btn-primary {


  background-color: #3498db;
  color: white;
   border  :2px solid #3498db;
     }

.btn-primary:hover	{
  background-color    :       #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
	
}

.btn-secondary {
   background-color: transparent;
   color: #3498db;
  border: 2px solid #3498db;
}

.btn-secondary:hover {
    background-color: #3498db;
  color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .steps-list {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.3rem;
    }
    
    .back-to-site {
        flex-direction: column;
        align-items: center;
    }
}.section-container .services-overview {
    padding: 80px 0;
}

.section-container .expertise-text p {
    margin-bottom: 1rem;
  line-height: 1.8;
}