* {
   margin: 0;
  padding: 0;
          box-sizing: border-box;
	}

html {
    scroll-behavior    :       smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
       color: #2c3e50;
    background-color :    #ffffff;
}

.section-container {
   max-width: 1200px;
					margin: 0 auto;
  padding: 0 20px;
	}

h1, h2, h3, h4, h5, h6 {
          font-weight: 700;

    margin-bottom: 15px;

    line-height     :        1.3;

}  

h1 {

    font-size: 3.5rem;
  color: #1a252f;


}

h2 {
      font-size: 2.5rem; 
  color: #1a252f; 
	margin-bottom: 40px; 
          text-align: center;
     }

h3 {
      font-size: 1.5rem;
   color: #2c3e50;
}

p {
	    margin-bottom: 15px;
    font-size: 1rem;
   line-height: 1.8; 
	
     }

a {
	   color    :      #2980b9; 
	-moz-transition: color 0.3s ease; 
   text-decoration: none; 
  transition: color 0.3s ease;
	}

a:hover {
	color     :      #3498db;
}

img {
	max-width :      100%;
    display: block;
	height: auto;
}

.navbar-main {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
	padding: 15px 0;
   position: sticky;
    top: 0;
   z-index     :1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-container {
  max-width: 1200px;
	  margin    :      0 auto;
	     padding: 0 20px;
	    display: flex;
		justify-content: space-between;
	  align-items: center;
}

.navbar-logo img {
        height: 40px;
	width   :   auto;
  filter: brightness(0) invert(1);
}

.nav-list {

	    display: flex;
     list-style: none;
        gap  :     40px;
             align-items: center;
}

.nav-link {
	color: #ffffff;
   font-weight: 500;
   font-size  :  1rem;
   transition: color 0.3s ease;
   padding: 8px 12px;
  border-radius: 4px;
}

.nav-link:hover {
   color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);

}

.hamburger-toggle {
    border: none;
  display: none;
   background: none;
   padding: 5px;
    gap: 6px;
    flex-direction: column;
  cursor: pointer;

}

.line-top, .line-middle, .line-bottom {
    width   :   25px;
    height   : 3px;
    background-color: #ffffff;
   transition: all 0.3s ease;
	border-radius: 2px;
}

.hamburger-toggle.active .line-top {

  transform: rotate(45deg) translate(10px, 10px);}

.hamburger-toggle.active .line-middle    {
  opacity: 0;
}

.hamburger-toggle.active .line-bottom
	{
     transform: rotate(-45deg) translate(8px, -8px);


}@media (max-width: 768px) {
  .hamburger-toggle {
    display: flex;
  }

  .nav-list {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
    flex-direction: column;
    gap: 0;
    display: none;
    width: 100%;
    padding: 20px 0;
  }

  .nav-list.active {
    display: flex;
  }

  .nav-item {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    padding: 0;
  }
}.hero-banner {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdd 100%);
	    padding: 80px 20px;
	   display: grid;
	  grid-template-columns: 1fr 1fr;
	    gap     :      50px;
	   align-items :        center;
	   min-height: 500px;


}

.hero-content {
   justify-content: center;
   display    :        flex;
                    flex-direction: column;
}


.hero-banner h1 {
    margin-bottom: 20px;
   line-height  :      1.2;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #34495e;
   margin-bottom: 30px;
   line-height: 1.6;
	}

.hero-image {
	  overflow  :      hidden;
 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}  

.hero-image img {
   height: auto;
  object-fit: cover;
    width: 100%;
}

.cta-button {
  display:inline-block;
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
   color  :       #ffffff;
    padding : 16px 40px;
                    border-radius: 8px;
   font-weight: 600;
	font-size: 1.1rem;
  transition: all 0.3s ease;
   text-align: center;
   border: 2px solid transparent;
   width: fit-content;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
   color   :  #ffffff;
}

.cta-button-light {
  background: linear-gradient(135deg, #ffffff 0%, #ecf0f1 100%);
                    color   :   #2980b9;
  border   :   2px solid #2980b9; 
	
}

.cta-button-light:hover {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdd 100%);
    color: #2980b9;
}@media (max-width: 768px) {
  .hero-banner {
    grid-template-columns: 1fr;
    padding: 60px 20px;
    min-height: auto;
  }

  .hero-banner h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}.services-preview {
        padding  :     80px 20px;
    background-color: #ffffff;}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
   margin-top: 50px;
}

.service-card
	{
    background: #f8f9fa;
	padding: 40px 30px;
   border-radius   : 12px;
    text-align: center;
   transition     :all 0.3s ease;
   border: 1px solid #ecf0f1;
}

.service-card:hover {

  transform: translateY(-8px); 
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
	  background  :       #ffffff;
	
}

.service-icon {
	  margin-bottom: 20px;
  height: 60px;
  display: flex;
    align-items: center;
  justify-content  : center;


}

.service-icon img {
   width: 60px;
       height: 60px;
     filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));


}

.service-card h3 {
  margin-bottom: 15px;
   font-size: 1.3rem;
}

.service-card p {
    color: #7f8c8d;

	    font-size: 0.95rem;

	    line-height: 1.6;
}

.expertise-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 gap: 40px;
    margin-top: 50px;
}

.expertise-item {
  background: #ffffff;
  padding: 35px 25px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left :  4px solid #3498db;

}

.expertise-item:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  transform: translateX(5px);
}

.expertise-item h3 {

	     color     :  #2980b9;
    margin-bottom: 12px;
}

.expertise-item p {
  color: #555;
          font-size: 0.95rem;
}

.success-cases {
  padding: 80px 20px;
   background-color: #ffffff;
}

.cases-list {
       display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
        margin-top: 50px;

}

.case-item     {
			border-radius  :   12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
    display: grid;
  grid-template-rows: auto 1fr;
}

.case-item:hover{
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.case-item img

{
    width: 100%;

		height: 200px;

	   object-fit: cover;
}

.case-content {
    padding: 30px;
  background: #ffffff;
}

.case-item h3		{
    margin-bottom: 12px;
  font-size:  1.2rem;
}

.case-item p {

  color: #7f8c8d;
  font-size: 0.95rem;}

.cta-section {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
   padding: 80px 20px;
  text-align: center;
  position: relative;
}

.cta-inner {
    max-width: 800px;


}

.cta-section h2 {
    color: #ffffff;
  margin-bottom: 20px;
	
}

.cta-section p {
   color     :   #ecf0f1;
  font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}  

.contact-section {
    padding     :      80px 20px;
   background: #f8f9fa;
}

.contact-subtitle


{
      text-align: center;
   color: #7f8c8d;
    font-size: 1.1rem;
  margin-bottom: 50px;}

.contact-form {
    max-width  :       600px;
   margin    :    0 auto;
 background: #ffffff;
       padding: 50px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 

}

.form-group {
   margin-bottom  :       25px;
	display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: 600;
   margin-bottom: 8px;
  color   :   #2c3e50;
   font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea  {
  font-size: 1rem;
    padding: 12px 16px;
               border-radius: 6px;
  border: 1px solid #bdc3c7;
  transition: all 0.3s ease;
       background-color:        #ffffff;
   font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
   outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {

  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
  color: #ffffff;
	padding: 14px 40px;
  border: none;
  border-radius: 6px;
   font-weight: 600;
	font-size     :       1rem;
  cursor :   pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
	}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
}

.submit-button:active {
  transform: translateY(0);

}



.site-footer {
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
         color:        #ecf0f1;
    padding     :        60px 20px 20px;
}

.footer-container {
  max-width     :     1200px;
   margin: 0 auto;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  margin-bottom: 40px;
}

.footer-logo-image {
  height: 35px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
    color: #3498db;
    margin-bottom  :       20px;
   font-size: 1.05rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
	 margin-bottom: 12px;
}

.footer-links a {
   color: #bdc3c7;
	transition: color 0.3s ease; 

}

.footer-links a:hover {
  color: #3498db;
}

.footer-address {
  font-size: 0.95rem;
   line-height: 1.7;
   color : #bdc3c7;
	margin-bottom: 15px;
}

.footer-phone


{
   color: #3498db;
   font-weight: 600;
       font-size: 1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
   padding-top: 20px;
   text-align  :    center;
  color: #95a5a6;
   font-size :     0.9rem;
}@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .services-grid,
  .expertise-grid,
  .cases-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 20px;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding: 40px 20px 20px;
  }
}.policySection {
  padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
  max-width  :   800px;
    margin:      0 auto;
        text-align: left;


}

.policyContainer h2 {
   font-size: 2.5rem;
         color: #2c3e50;
          margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {
    color: #7f8c8d;
    margin-bottom    : 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}.services-hero {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    padding: 100px 20px;
   text-align: center;
  color: #ffffff;
	min-height: 300px;
   display: flex;
	align-items: center;
}

.services-hero h1 {
  color: #ffffff;
	   font-size: 3rem;
	    margin-bottom: 20px;
}

.services-hero-subtitle {
   font-size: 1.3rem;
    color: #ecf0f1;
         max-width: 700px;
 margin: 0 auto;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;

} 

.service-full-item {
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items :  center;
   margin-bottom :100px;
}

.service-full-item.alternate {
	   grid-template-columns: 1fr 1fr;}

.service-full-item.alternate .service-full-image


{
   order     :    -1;
}

.service-full-content h2 {


  font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a252f;
  text-align: left;


}

.service-full-content p {
  font-size: 1.05rem;
          color: #555;
    line-height  :      1.8;
	margin-bottom: 30px;
}

.service-features {
  background: #f8f9fa;
   padding: 30px;
  border-radius: 10px;
   margin-bottom: 25px;
   border-left: 4px solid #3498db;
}

.feature-item


{
  display: flex;
   gap: 15px;
   margin-bottom: 15px;
    align-items: flex-start;

}

.feature-item:last-child {
   margin-bottom: 0;
}


.feature-item img {
  width: 24px;
   height: 24px;
          flex-shrink    :       0;
     margin-top: 2px;
}

.feature-item span {
   color: #2c3e50;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-duration {


    font-weight: 600;
	 color: #2980b9;
   font-size: 0.95rem;

}

.service-full-image {


               border-radius: 15px;
	overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
     }

.service-full-image img 
 {
    width: 100%;
  height :  auto;
   object-fit: cover;
}  @media (max-width: 1024px) {
  .service-full-item {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .service-full-item.alternate .service-full-image {
    order: 0;
  }

  .service-full-content h2 {
    font-size: 1.8rem;
  }

  .services-hero h1 {
    font-size: 2.2rem;
  }
}.packages-comparison {
  padding   :      80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}

.packages-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 30px;
    margin-top: 50px;
}

.package-card {

	   background: #ffffff;
   padding: 40px 30px;
    border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
  position   :   relative;
	 border: 2px solid transparent;
	}

.package-card:hover		{
  transform: translateY(-8px);

	  box-shadow: 0 15px 40px rgba(0,0,0,0.15);

}

.package-card.featured {
	border: 2px solid #3498db;
  transform: scale(1.05);
}

.package-badge {
   position: absolute;
      top     :-12px;
       left: 50%;
     transform: translateX(-50%);
     background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
         color    :        #ffffff;
   	 padding: 6px 20px;
     border-radius: 20px;
      font-size: 0.85rem;
             font-weight: 600;
}

.package-card h3 {
    color: #1a252f;
    font-size: 1.5rem;
   margin-top: 10px;
	margin-bottom: 15px;
}

.package-price {
   font-size   :       1.8rem;
	color: #3498db;
   margin-bottom: 25px;
  font-weight  :  700;
}

.package-features {
	 list-style: none;
	margin-bottom: 30px;
}

.package-features li 
 {
  padding: 12px 0;
  color: #555;
  border-bottom: 1px solid #ecf0f1;
  font-size   :     0.95rem;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-button {
   display: inline-block;
   width: 100%;
   padding: 12px 20px;
    text-align:   center;
	background-color: #f0f0f0;
	color: #2980b9;
    border: 2px solid #2980b9;
    border-radius: 6px;
  font-weight: 600;
	 transition: all 0.3s ease;
               cursor: pointer;


}

.package-button:hover {
  background-color :  #2980b9;
     color: #ffffff;


}

.package-button-featured {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
	color: #ffffff;
    border: none;
}

.package-button-featured:hover {
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
  transform: translateY(-2px);
}

.faq-section {
    padding: 80px 20px;
	background-color: #ffffff;

}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
    margin-top: 50px;
}

.faq-item {
  background: #f8f9fa;
    padding: 30px;
  border-radius: 10px;
  border-left:      4px solid #3498db;
                    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.faq-question {
   color: #2980b9;
         margin-bottom: 15px;
    font-size: 1.1rem;
}

.faq-item p {
   color: #555;
    font-size: 0.95rem;
   line-height: 1.6;
}

.services-cta {
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
      padding: 80px 20px;
     text-align: center;
}

.services-cta h2 {
      color: #ffffff;
    margin-bottom :20px;
	}

.services-cta p {
   color: #ecf0f1;
    font-size: 1.1rem;
   margin-bottom: 40px;
   max-width: 600px;
   margin-left: auto;
    margin-right: auto;
}

.thankyou-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
	min-height: 100vh;
}

.thankyou-content {


   max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
      padding: 60px 40px;
   border-radius: 15px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.1);
	text-align: center;



}

.success-icon {

   margin-bottom    :       30px;
}

.success-icon img

{
  width: 80px;
       height: 80px;
       margin: 0 auto;
     display: block;
}

.thankyou-content h1 {

	 font-size: 2.5rem;
  color: #27ae60;
    margin-bottom :        15px;
  text-align: center;


}

.thankyou-message {

	       font-size: 1.1rem;
    color: #555;
  margin-bottom   :    50px;
    line-height: 1.6;}

.next-steps     {
   margin-bottom: 60px;
   text-align: left;
}

.next-steps h2 {
  font-size: 1.8rem;
    text-align:      center;
   margin-bottom: 40px;
   color:       #1a252f;
}

.steps-grid {
   display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;

}

.step-item {
   background: #f8f9fa;
    padding: 25px;
          border-radius: 10px;
   text-align: center;
    border: 1px solid #ecf0f1;
   transition: all 0.3s ease;
}



.step-item:hover	{

  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transform: translateY(-5px);}



.step-number {
   display: inline-flex;
   align-items     :        center;
   justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
   color :   #ffffff;
  border-radius: 50%;
   font-size: 1.5rem;
  font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
  font-size   : 1.1rem;
    margin-bottom: 10px;
	color: #1a252f;
  text-align     :       center;
}

.step-item p {
    font-size: 0.9rem;
  color: #7f8c8d;
   text-align :        center;
	line-height: 1.5;
}

.thankyou-benefits{
  margin-bottom: 50px;
    text-align :left;
}

.thankyou-benefits h2     {


  font-size: 1.8rem;
  text-align     :    center;
  margin-bottom: 30px;
   color: #1a252f;
	}

.benefits-list {
   list-style: none;
	   display    :     grid;
		 grid-template-columns: 1fr;
	   gap   :       20px;
}

.benefits-list li		{


   display: flex;
  gap: 20px;
    align-items: flex-start;
	 background: #f8f9fa;
  padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
	}

.benefits-list img {
    width     :        32px;
    height   :        32px;
	flex-shrink: 0;
}

.benefits-list span {

	   color: #555;
     font-size: 0.95rem;
    line-height: 1.5;
	
}

.thankyou-faq 
 {

   margin-bottom    :      50px;
   text-align: left;
     }  

.thankyou-faq h2 {
   font-size: 1.8rem; 
	    text-align     :    center; 
	  margin-bottom: 30px; 
	 color: #1a252f;
}

.faq-compact {
       display: flex;
   flex-direction: column;
	gap: 15px;
}

.faq-detail {
  background: #f8f9fa;
   -moz-transition: all 0.3s ease;
	 -webkit-transition: all 0.3s ease;
   padding: 20px;
    border-radius: 8px;
	cursor: pointer;
  border-left: 4px solid #3498db;
   transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.faq-detail:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);

}

.faq-detail summary {
     user-select: none;
  color: #1a252f;
                    font-weight: 600;
   outline :  none;
	}



.faq-detail summary:focus {
   outline: none;
}

.faq-detail p {
  margin-top: 15px;
   color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.thankyou-actions {
  display: flex;
    flex-direction: column;
	gap     :  15px;
	margin-bottom:       40px;
   align-items: center;
}

.cta-button-alt {
   display: inline-block;
    background-color:        #f0f0f0;
    color: #2980b9;
  padding: 14px 40px;
    border-radius: 8px;
  font-weight: 600;
  font-size    :        1rem;
    transition: all 0.3s ease;
    border: 2px solid #2980b9;
}

.cta-button-alt:hover {

   background-color: #2980b9;
    color: #ffffff;
  transform: translateY(-2px);
     }

.thankyou-info {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
  padding: 25px;
   border-radius: 10px;
	text-align   : center;
    border:1px solid #bdc3c7;
}

.thankyou-info p	{
  font-size: 0.95rem;
      line-height    : 1.8;
   color: #555;
}



.thankyou-info strong {
  color: #2980b9;
}@media (max-width: 768px) {
  .thankyou-content {
    padding: 30px 20px;
  }

  .thankyou-content h1 {
    font-size: 1.8rem;
  }

  .next-steps h2,
  .thankyou-benefits h2,
  .thankyou-faq h2 {
    font-size: 1.3rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .service-full-item {
    margin-bottom: 50px;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}