* {
      margin: 0;
	padding: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2e5266;
    --accent-color: #e8934d;
    --light-bg: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       line-height: 1.6;
     color: var(--text-dark);
   		 background-color   :   #ffffff;
}

.header-section {
  background-color: var(--primary-color);
   position: sticky;
         top: 0;
    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.navigation-bar {
    padding: 1rem 0; 
	
}

.nav-container {
   max-width: 1200px;
      margin: 0 auto;
    padding: 0 2rem;
	 display: flex;
  justify-content: space-between;
  align-items:        center;

}

.logo-wrapper {
   flex-shrink: 0;

}

.logo-image {
   height :      50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
  display: none;
   flex-direction: column;
   background    :      none;
	border: none;
    cursor: pointer;
	padding: 0.5rem;
}


.burger-line {
        -moz-border-radius: 2px;
    width: 28px;
  height: 3px;
    background-color     :      #ffffff;
     margin: 5px 0;
  -webkit-border-radius:     2px;
        transition: all 0.3s ease;
   border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.burger-menu.active .burger-line:nth-child(2) {
	 opacity  :        0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px); 

}

.nav-menu 
 {
	 display:     flex;
   list-style: none;
          gap: 2rem;
  align-items   :   center;

}

.nav-link {
	 text-decoration: none;
	  position: relative;
		transition: color 0.3s ease;
	    color: #ffffff;
	    font-weight: 500;
}

.nav-link:hover {
  color: var(--accent-color);
}

.nav-link::after {


  content: '';
    position: absolute;
    bottom: -5px;
     left: 0;
  width: 0;
    height: 2px;
  background-color: var(--accent-color);
   transition :  width 0.3s ease;

	}

.nav-link:hover::after {
  width   : 100%;
}

.hero-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: #ffffff;
  padding: 4rem 2rem;
  display: flex;
    align-items: center;
    gap: 3rem;
  max-width     :     1200px;
					margin:  0 auto;
}

.hero-content

{
    flex     :   1;
}

.hero-banner h1 {
  font-size: 2.8rem;
    font-weight: 700;
		margin-bottom: 1rem;
	 line-height: 1.2;
}

.hero-subtitle {
    font-size : 1.1rem;
   margin-bottom: 2rem;
   opacity: 0.95;
    line-height: 1.6;
}

.cta-button {
   display: inline-block;
  background-color: var(--accent-color);
    color: #ffffff;
   padding    :        0.9rem 2.5rem;
         border-radius: 50px;
  text-decoration: none;
	 font-weight  :       600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.cta-button:hover {

  background-color: transparent;
  color: var(--accent-color);
  transform: translateY(-3px);


}

.hero-visual {
    flex   :    1;
   display: flex;
  justify-content: center;}  

.hero-image {


    max-width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);}

.section-header {


   text-align: center;
   margin-bottom: 3rem;
     }

.section-header h2 {
    font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.services-preview {
   padding: 4rem 2rem;
  background-color: var(--light-bg);
  max-width: 1200px;
    margin  :       0 auto;
}

.services-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.service-card {
  background-color: #ffffff;

	     border-radius: 10px;

		overflow: hidden;

	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

		 transition: all 0.3s ease;
}

.service-card:hover {
	  transform: translateY(-8px);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);


}

.service-image {
    width: 100%;
   height: 220px;
   object-fit: cover;
}

.service-card h3 {
  color: var(--primary-color);
   font-size  :       1.4rem;
   margin :    1.5rem 1.5rem 0.5rem;


}  

.service-card p {
  color: var(--text-light);
   margin: 0 1.5rem 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;

}

.benefits-section {


	padding:    4rem 2rem;
   max-width    :  1200px;
    margin: 0 auto;

}

.benefits-section h2 {
   text-align    :      center;
  font-size  :     2.2rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
}

.benefits-container {
   display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 2rem;


}

.benefit-item {
 padding: 2rem;
  background-color: var(--light-bg);
  border-left: 5px solid var(--accent-color);
    border-radius: 5px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
         background-color: #f0f0f0;
    padding-left: 2.5rem;
}

.benefit-item h3 {
  color: var(--primary-color);
    font-size: 1.2rem;
   margin-bottom: 0.8rem;
}

.benefit-item p {
  color: var(--text-light);
          font-size: 0.95rem;
   line-height: 1.6;


}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #d67a3a 100%);
   color: #ffffff;
        padding: 3.5rem 2rem;
  margin: 3rem 0;
}

.cta-wrapper {


    max-width: 700px;
          margin: 0 auto;
   text-align: center;
     }

.cta-wrapper h2 {

	  font-size: 2rem;
    margin-bottom: 1rem;


}

.cta-wrapper p {
   font-size: 1.05rem;
  margin-bottom:        2rem;
	opacity: 0.95;
}

.cta-button-secondary
	{
   display: inline-block;
  background-color: #ffffff;
  color: var(--accent-color);
  padding  :      0.9rem 2.5rem;
   border-radius: 50px;
   text-decoration    :        none;
   font-weight: 600;
     transition: all 0.3s ease;
   border: 2px solid #ffffff;
	
}

.cta-button-secondary:hover {
    background-color: transparent;
    color: #ffffff;
  transform: translateY(-3px);
}

.contact-section {
  padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
  background-color: var(--light-bg);
}

.contact-section h2 {

   text-align: center;
  color: var(--primary-color);
  font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
    display: flex;

	   flex-direction: column;
}

.form-group label {
  color: var(--primary-color);
  font-weight: 600;
    margin-bottom: 0.5rem;
  font-size: 0.95rem; 
	
}

.form-group input,
.form-group select,
.form-group textarea{
  padding   :       0.75rem;
  border: 2px solid var(--border-color);
   border-radius: 5px;
   font-family: inherit;
  font-size: 0.95rem;
    transition: border-color 0.3s ease;
} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
                    outline: none;
  border-color: var(--accent-color);
    background-color: #fafafa;
}

.form-submit {
  padding: 0.9rem 2rem; 
	  background-color: var(--primary-color); 
	    color: #ffffff; 
	  border: none; 
	   border-radius: 50px; 
	   font-weight: 600; 
	  cursor: pointer; 
	    transition: all 0.3s ease; 
	   font-size  :   1rem;
}

.form-submit:hover
	{
  background-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 58, 82, 0.3);
}

.footer-area {
  background-color: var(--primary-color);
  color: #ffffff;
    padding: 3rem 2rem 1rem; 

}

.footer-content{
   max-width: 1200px;
               margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
   margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-logo-image {
   height :    40px;
       width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
       list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;

}  

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover   {
  color: var(--accent-color);
}

.footer-address {
    line-height: 1.6;
    margin-bottom: 1rem;
	font-size  : 0.9rem;
}

.footer-phone a {
  color: var(--accent-color); 
	    text-decoration: none; 
	  font-weight: 600; 
	    transition: color 0.3s ease;
}

.footer-phone a:hover {
   color: #ffffff;
}

.footer-bottom {
  text-align: center;
	 padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
   font-size: 0.9rem; 

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .hero-banner {
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 2rem;
    }

    .hero-banner h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .cta-wrapper h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4 {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner h1 {
        font-size: 1.6rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .cta-button, .cta-button-secondary {
        padding: 0.75rem 2rem;
        font-size: 0.9rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: #ffffff;
	padding: 5rem 2rem;
   text-align: center;
}

.services-hero-content h1 {
     font-size: 2.8rem;
    font-weight: 700;
   margin-bottom: 1rem;
   line-height :     1.2;}

.services-hero-content p {
   font-size: 1.15rem;
  opacity: 0.95;
    max-width    :      600px;
  margin   :        0 auto;
}

.services-container


{
  max-width: 1200px;
     margin: 0 auto;
       padding: 4rem 2rem;
}

.service-detail-item {
    margin-bottom: 4rem;
  display: grid;
    grid-template-columns: 1fr;
   gap: 2rem;
         align-items: center;
	}

.service-detail-item.alternate

{
	  direction    :     rtl;
}

.service-detail-item.alternate .service-detail-body {
  direction: ltr;
}

.service-detail-header {
       margin-bottom: 1.5rem;
     }

.service-detail-header h2 {
  color: var(--primary-color);
    font-size: 2rem;
  border-left: 5px solid var(--accent-color);
          padding-left: 1rem;
}

.service-detail-body     {
    grid-template-columns: 1fr 1fr;
  display   :        grid;
    gap: 2rem;
    align-items: center;
}  

.service-detail-image {
   width: 100%;
    height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
	
}  

.service-detail-text h3 {
  color: var(--primary-color);
    font-size   :  1.5rem;
   margin-bottom: 1rem;
}

.service-detail-text p {
  color: var(--text-light);
   margin-bottom     :        1.5rem;
  line-height: 1.7;
}

.service-benefits {
   list-style: none;
   margin   :        1.5rem 0;
}

.service-benefits li {
  color: var(--text-dark); 
	   padding: 0.7rem 0; 
	   padding-left: 1.8rem; 
	               position: relative;

}

.service-benefits li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color: var(--accent-color);
   font-weight: bold;
   font-size: 1.2rem;
}

.service-duration {

	  background-color: var(--light-bg);
	 padding: 1rem;
   border-radius: 5px;
 margin-top: 1.5rem;
  color: var(--primary-color);}

.pricing-section {
  background-color: var(--light-bg);
   padding: 4rem 2rem;
}

.pricing-section h2     {
       text-align: center;
  color: var(--primary-color);
   font-size: 2.2rem;
			margin-bottom: 3rem;
}

.pricing-grid {
    max-width  : 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap     :  2rem;
}

.pricing-card {
  background-color   :      #ffffff;
  padding: 2rem;
 border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid var(--border-color);
	display: flex;
        flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);


}


.pricing-card.featured     {
  border-top-color: var(--accent-color);
   position: relative;
  transform: scale(1.05);
}

.pricing-card h3{
  color: var(--primary-color);
  font-size: 1.5rem;
    margin-bottom  :   0.5rem;
}

.price {
  color: var(--accent-color);
   font-size: 1.8rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-features {
   flex-grow: 1;
   list-style: none;
   margin-bottom: 2rem;
}

.pricing-features li {
  color: var(--text-light);
    padding: 0.6rem 0;
  border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
     border-bottom: none; 
	


}

.pricing-btn 
 {

	    display: inline-block;
  background-color: var(--primary-color);
  color: #ffffff;
    padding: 0.8rem 2rem;
  border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
   text-align: center;
    transition: all 0.3s ease;
	
}

.pricing-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-2px);
}

.thankyou-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #ffffff;
  padding  :     4rem 2rem;
  min-height: calc(100vh - 150px);
    display: flex;
     align-items: center;
       justify-content: center;
}

.thankyou-container
{
   max-width: 700px;
	  text-align: center;
	  background-color: rgba(255, 255, 255, 0.05);
	   padding: 3rem;
	    border-radius: 15px;
	  backdrop-filter: blur(10px); 
	
}

.thankyou-icon {
    margin-bottom: 2rem;
  color: var(--accent-color);
     animation: bounce 0.6s ease;
}

.thankyou-icon svg {
    width: 80px;
 height    :80px;
  stroke: var(--accent-color);
}@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}.thankyou-container h1 {
      font-size  : 2.2rem;
  margin-bottom: 1rem;
  font-weight: 700;


}

.thankyou-message {
  font-size: 1.05rem;
   margin-bottom: 2.5rem;
	opacity: 0.95;
   line-height: 1.7;
}

.thankyou-details {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 2rem;
    border-radius: 10px;
    margin-bottom    :   2.5rem;
  text-align :     left;
}

.thankyou-details h2 {

                    text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
	}

.steps  {
    display   :  grid;

  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));

                    gap: 1.5rem;
}

.step {


  background-color: rgba(232, 147, 77, 0.1);
    padding: 1.5rem;
  border-radius: 8px;
	text-align: center;


}

.step-number {


	 display: inline-flex;
  align-items :       center;
   justify-content: center;
    width: 50px;
   height: 50px;
  background-color: var(--accent-color);
    color: #ffffff;
    border-radius  :        50%;
   font-weight   :700;
         font-size: 1.4rem;
    margin-bottom: 1rem;
     }

.step h3 {
    font-size: 1.1rem;
	   margin-bottom: 0.5rem;
	}

.step p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.thankyou-actions	{
   display  :     grid;
  grid-template-columns: 1fr 1fr;
    gap: 1rem;
	 margin-bottom: 2rem;
}

.action-link {
  -moz-border-radius: 50px; 
		 display: inline-block; 
	    padding: 0.85rem 1.5rem; 
	    -webkit-border-radius  :   50px; 
	  border-radius: 50px; 
	    text-decoration: none; 
	    font-weight: 600; 
		transition: all 0.3s ease;
}

.action-link.primary {
  background-color: var(--accent-color);
    color    :       #ffffff;
}

.action-link.primary:hover {
  background-color: #ffffff;
  color: var(--accent-color);
}

.action-link.secondary {
    background-color: transparent;
   color: #ffffff;
  border: 2px solid #ffffff;
}

.action-link.secondary:hover {
    background-color: #ffffff;
  color: var(--primary-color);
  border-color:        #ffffff;
}  

.thankyou-additional {
  background-color: rgba(255, 255, 255, 0.08); 
  padding: 1.5rem; 
  border-radius: 8px; 
    font-size: 0.95rem;
}

.thankyou-additional p{
  margin-bottom: 0.8rem;
}

.thankyou-additional p:last-child {
    margin-bottom: 0;
}

.thankyou-additional a {
  color: var(--accent-color);
    text-decoration :  none;
   font-weight: 600;
}  

.thankyou-additional a:hover  
  {
  text-decoration: underline; 

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-body {
        grid-template-columns: 1fr;
    }

    .service-detail-item.alternate {
        direction: ltr;
    }

    .service-detail-item.alternate .service-detail-body {
        direction: ltr;
    }

    .service-detail-header h2 {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-header h2 {
        font-size: 1.3rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}.policy-section {
   padding :       80px 2rem;
  background: var(--light-bg);
	
}

.policy-container
{
   max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.policy-container h1

{


  font-size   :       2.8rem;
  color: var(--primary-color);
   margin-bottom :    2rem;
   font-weight: 700;
  border-bottom: 4px solid var(--accent-color);
  padding-bottom: 1rem;


	}

.policy-container h2 {
  font-size : 1.6rem;
  color: var(--primary-color);
  margin-top: 2rem;
   margin-bottom: 1rem;
   font-weight: 600;
}

.policy-container p {
  color: var(--text-light);
          margin-bottom: 1rem;
    line-height: 1.8;
  font-size :      1rem;

}

.policy-container strong
{
  color: var(--primary-color); 
	   font-weight: 600;
}

.policy-container a {
  color: var(--accent-color);
   text-decoration: none;
     transition   :       color 0.3s ease;
}

.policy-container a:hover {

	  color: var(--primary-color);

    text-decoration: underline;
     }@media (max-width: 768px) {
    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }

    .policy-section {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policy-container h1 {
        font-size: 1.6rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
    }

    .policy-section {
        padding: 40px 1rem;
    }
}