* {
   margin: 0;
  padding: 0;
    box-sizing: border-box;

}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #0ea5e9;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
}

html {
	scroll-behavior: smooth;
}

body {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
	line-height: 1.6;


}

.navbar-main {
	  background-color: var(--bg-white); 
  border-bottom: 1px solid var(--border-color); 
   position: sticky; 
    top:      0; 
    z-index: 100; 
  box-shadow: var(--shadow-sm);
}

.nav-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 1rem 2rem;
  display: flex;
      justify-content: space-between;
   align-items: center;
}

.nav-logo-section


{
   flex-shrink: 0;
	
}

.nav-brand {
    display: flex;
   align-items     :       center;
   text-decoration: none;
}

.logo-img {
  height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
	   display: flex;
    list-style: none;
   gap: 2rem;


}

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
   font-weight   : 500;
    transition: color 0.3s ease;
    position     :   relative;
}

.nav-link:hover {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';

  position: absolute;

    bottom: -5px;

  left    :    0;

       width: 0;

	 height: 2px;

  background-color: var(--secondary-color);

  transition: width 0.3s ease;
}  

.nav-link:hover::after {
  width: 100%;
}

.burger-toggle {
    display  :    none;
  flex-direction: column;
  gap: 5px;
   background     :     none;
 border: none;
    cursor: pointer;
  padding: 0.5rem;
}

.burger-toggle span {

	   width: 25px;
  height: 3px;
  background-color: var(--text-dark);
  border-radius :      2px;
  transition: all 0.3s ease;
}

.hero-section {
         max-width: 1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
         display   :        grid;
  grid-template-columns     :    1fr 1fr;
  gap: 3rem;
    align-items    :  center;
}

.hero-content h1 {
    font-size: 2.5rem;
  font-weight: 700;
   margin-bottom: 1rem;
  color: var(--primary-color);
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
   padding:    0.75rem 2rem;
  background-color: var(--secondary-color);
   color: white;
    text-decoration: none;
	border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-image {
   display: flex;
  justify-content: center;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.section-container {
  margin: 0 auto;
   max-width: 1200px;
    padding: 0 2rem;
}

section {
  padding: 4rem 0;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
	margin-bottom: 2rem;
  color: var(--primary-color);
  text-align     :      center;
}

h3 {
               font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.why-choose-us {
  background-color: var(--bg-light);
}

.features-grid{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.feature-card {
  background-color: var(--bg-white);
               padding: 2rem;
          border-radius: 8px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}  

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-light);
  border-radius: 8px;
   display: flex;
    align-items: center;
	justify-content: center;
  margin-bottom: 1rem;
}

.feature-svg {
   width  :32px;
   height: 32px;
  stroke: var(--secondary-color);
   fill: none;
    stroke-width: 1.5;


}  

.feature-card p {
  color: var(--text-light);
    font-size: 0.95rem;
}

.services-showcase {
	 display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.service-item {
  background-color: var(--bg-white);
    border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
    transition:   all 0.3s ease;
    display: flex;
  flex-direction: column;
}

.service-item:hover {
  box-shadow: var(--shadow-lg); 
  transform: translateY(-5px);
	
}

.service-image {
	width: 100%;
    height: 200px;
  object-fit: cover;
}

.service-details {
        padding : 1.5rem;
   flex-grow    :  1;
  display: flex;
  flex-direction: column;
}


.service-details h3 {
  margin-bottom: 0.5rem;
}

.service-details p {
  color: var(--text-light);
   font-size: 0.95rem;
	margin-bottom: 1rem;
   flex-grow: 1;
	
}

.service-badge {
    display: inline-block;
  background-color: var(--accent-color);
   color: white;
                    padding: 0.4rem 0.8rem;
   border-radius: 4px;
  font-size: 0.85rem;
  font-weight  : 600;
    width     :   fit-content;

}

.testimonials-section {
  background-color: var(--primary-color);
  color: white;
}

.testimonials-section h2


{
  color     :   white;
}

.testimonials-grid {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	   gap: 2rem;
}

.testimonial-box	{
  background-color: rgba(255, 255, 255, 0.1);
   padding: 2rem;
   border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
   font-size     :    1rem;
		line-height: 1.6;
	   margin-bottom: 1rem;
	   font-style: italic;
}

.testimonial-author {
  font-weight: 600;
	font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
	 color     :white;


}

.cta-section h2

{
    color: white;
}

.cta-content {
  text-align: center;
}

.cta-content p {
   margin-bottom: 2rem;
   font-size: 1.1rem;
	}

.cta-button-secondary {
    display: inline-block;
  padding: 0.75rem 2.5rem;
  background-color: var(--accent-color);
  color: var(--text-dark);
	text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
} 

.cta-button-secondary:hover {
  background-color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);

}

.contact-section {
  background-color: var(--bg-light);
}

.contact-wrapper {
  display: grid;
				 grid-template-columns: 1.5fr 1fr;
   gap: 3rem;
}

.contact-form {
  background-color: var(--bg-white);
   padding: 2rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group label {
	   display: block;
   margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
	
     }

.form-group input,
.form-group select,
.form-group textarea {
	    width     :      100%;
    padding: 0.75rem;
  border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
  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: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
	

}

.submit-button     {
   width: 100%;
  padding :        0.75rem;
  background-color: var(--secondary-color);
    color: white;
   border: none;
    border-radius:      6px;
                    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.submit-button:hover   {
     background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
	}

.contact-info {
  background-color: var(--bg-white);
   padding: 2rem;
               border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.contact-info h3 {
		margin-bottom: 1.5rem;
}

.info-item {
    margin-bottom   :  1.5rem;
}

.info-label {
     font-weight   : 600;
  color: var(--text-dark);
    margin-bottom    :    0.5rem;
}

.info-item p {
  color: var(--text-light);
} 

.footer-main
	{


  background-color: var(--primary-color);
    color: white;
  padding: 3rem 0 1rem;

}

.footer-container {
   max-width:     1200px;
    margin: 0 auto;
   padding    :   0 2rem;
}

.footer-logo-section {
    display: flex;
       margin-bottom    :   2rem;
     align-items: center;
}

.footer-logo {
  height: 35px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column h4 {
  font-size: 1rem;
    margin-bottom: 1rem;
   color: white;
}

.footer-column ul 
 {
    list-style: none;
}

.footer-column li   {
      margin-bottom: 0.5rem; 
	
}

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
    transition :       color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent-color);
}  

.footer-column p		{
          font-size: 0.95rem;
   line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;}



.footer-bottom {
   text-align: center;
  color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: var(--bg-white);
        border-bottom: 1px solid var(--border-color);
        padding: 1rem 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-showcase {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 2rem 0;
    }

    h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-container {
        padding: 1rem;
    }

    .cta-button {
        display: block;
        text-align: center;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
      color: white;
  padding: 3rem 0;
    text-align :        center;
	
}

.services-hero h1 {
       font-size: 2.5rem;
          font-weight: 700;
   margin-bottom: 1rem;
   color: white;
}

.services-hero .hero-subtitle {

	   font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);}

.services-main {
    padding   :4rem 0;
	
}

.service-full-card    {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   margin-bottom: 4rem;
   align-items: center;
  background-color: var(--bg-white);
  border-radius: 8px;
   overflow :hidden;
  box-shadow: var(--shadow-md);
    padding: 2rem;
}

.service-full-card-reverse {

    grid-template-columns: 1fr 1fr;
	     direction: rtl;}

.service-full-card-reverse > * {
  direction: ltr;
}

.service-full-image
{

   display: flex;
  justify-content: center;
  overflow: hidden;
   border-radius: 8px;
     }

.service-full-image img {
   width:100%;
   height     :        auto;
    border-radius: 8px;
   object-fit :    cover;
}

.service-full-content h2 {
    font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
    text-align: left;
}

.service-intro {
	font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
	text-align:       left;

}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    margin-bottom: 1rem;
	display: flex;
    gap: 1rem;
}

.feature-icon {
  color: var(--secondary-color);
   font-size: 1.5rem;
    font-weight: bold;
  flex-shrink     :0;
}

.feature-item p {
  color: var(--text-light);
    line-height: 1.6;
}

.service-details-info {
	    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap    : 1rem;
   padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
     }

.detail-box h4 {
   font-size: 0.9rem;
  color: var(--primary-color);
   font-weight: 600;
  margin-bottom: 0.5rem;
}

.detail-box p {
  color: var(--text-light);
  font-size: 0.95rem;
     }

.comparison-section {
  background-color: var(--bg-light);
   padding: 4rem 0;
}

.comparison-table-wrapper {
   overflow-x: auto;
}

.comparison-table {


    width: 100%;
  border-collapse: collapse;
  background-color: var(--bg-white);
         border-radius :   8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);


}

.comparison-table thead {
  background-color: var(--primary-color);
   color: white;
}

.comparison-table th {

	 padding: 1.2rem;
    text-align: left;
  font-weight: 600;}

.comparison-table td {
   padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border-color);
         text-align:     center;

}  

.comparison-table tbody tr:last-child td
	{
  border-bottom: none;
	
}

.comparison-table .feature-name

{

	    text-align: left;
  font-weight: 600;
  color: var(--text-dark);

}

.comparison-table .check-mark {
  color: var(--success-color);
    font-weight: 700;
   font-size: 1.2rem;
}

.faq-section {
    padding     :    4rem 0;
}

.faq-container {
   display: grid;
  gap: 1rem;
}

.faq-item
	{

  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
    border-radius: 8px;
   overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
          width: 100%;
  padding: 1.5rem;
  background-color: var(--bg-light);
   border: none;
  cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
        font-weight    : 600;
  color: var(--primary-color);
    transition: all 0.3s ease;
   display: flex;
	 justify-content    : space-between;
    align-items: center;
}

.faq-question:hover {
  background-color: var(--primary-color);
  color: white;

}

.faq-question::after {
  content: '+';
   font-size: 1.5rem;
	 transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
    overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.show {
    max-height :   500px;
}

.faq-answer p {
   padding: 1.5rem;
  color: var(--text-light);
  line-height: 1.7;
}

.thank-you-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  min-height: calc(100vh - 200px);
   display: flex;
 align-items  :   center;
               justify-content: center;
   padding: 3rem 0;
}

.thank-you-container {
     background-color: var(--bg-white);
    border-radius: 8px;
    padding: 3rem;
   max-width    :700px;
  box-shadow: var(--shadow-lg);
          text-align: center;
}

.success-icon {
     display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
} 

.success-icon img {
    width: 80px;
  height: 80px;
  stroke: var(--success-color);
    fill: none;
  stroke-width: 1.5;
}

.thank-you-section h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.thank-you-message {
      font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.next-steps {
   margin-bottom: 2rem;
   text-align: left;
}

.next-steps h2 {
   font-size: 1.5rem; 
	                    text-align: center; 
		margin-bottom: 1.5rem; 
	  color: var(--primary-color);
}

.steps-list {
   display: grid;
	 gap: 1.5rem; 
	
}

.step {
  display: flex;
                    gap    :      1.5rem;
}

.step-number {
   display: flex;

	               align-items: center;

	   justify-content: center;

	   width: 40px;

	  height: 40px;

	  background-color: var(--secondary-color);

	    color: white;

	               border-radius: 50%;

	   font-weight: 700;

	    flex-shrink    :   0;
}

.step-content h3  
  {
    font-size: 1rem;
  color: var(--primary-color);
   margin-bottom: 0.3rem;
    text-align: left;
}

.step-content p {
  color: var(--text-light); 
   font-size: 0.95rem; 
  text-align: left;
}

.info-box {
	  background-color: var(--bg-light);
   padding: 1.5rem;
	 border-radius  :     8px;
	margin: 2rem 0;
   text-align: left;
     }

.info-box h3


{
     font-size: 1.1rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
}

.info-list {
    list-style: none;
}

.info-list li {

  color: var(--text-light);
  padding: 0.5rem 0;
   padding-left: 1.5rem;
	position:    relative;


}


.info-list li::before {
  content: '•';
  position: absolute;
    left  : 0;
  color: var(--secondary-color);
   font-weight: bold;
}

.contact-quick {
   margin: 2rem 0;
}

.contact-quick h3 {
                    font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem; 

}  

.contact-quick p {

	  color: var(--text-light);
    margin-bottom: 0.5rem;
	}

.contact-phone {


    font-size: 1.3rem;
        font-weight: 700;
  color: var(--secondary-color);

}

.action-buttons {
    display: flex;
       gap     :1rem;
    justify-content: center;
    margin-top: 2rem;
}



.button-primary,
.button-secondary {
   padding: 0.8rem 2rem;
    border-radius: 6px;
   text-decoration: none;
   font-weight: 600;
   transition  :       all 0.3s ease;
   display: inline-block; 

}

.button-primary {
  background-color: var(--secondary-color);
    color     :     white;
  box-shadow: var(--shadow-md);
}

.button-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.button-secondary {
   background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-secondary:hover {
  background-color: var(--primary-color);
                    color  : white;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-full-card,
    .service-full-card-reverse {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-full-card-reverse {
        direction: ltr;
    }

    .service-details-info {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .thank-you-container {
        padding: 2rem;
        margin: 1rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.4rem;
    }

    .service-full-content h2 {
        font-size: 1.5rem;
    }

    .steps-list {
        gap: 1rem;
    }

    .step {
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .thank-you-container {
        padding: 1.5rem;
    }
}.policySection {
    padding     :        80px 2rem;
  background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-white) 100%);
}

.policyContainer   {

	   max-width: 900px;
    margin: 0 auto;
   text-align: left;
     }

.policyContainer h1    {
   font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
    font-weight    : 700;
    text-align: center;
       padding-bottom: 1.5rem;
  border-bottom: 3px solid var(--secondary-color);
}

.policyContainer h2 {


    font-size: 1.8rem;
  color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom   :      1rem;
    font-weight: 600;}

.policyContainer p    {
  color: var(--text-light);

         margin-bottom:       1.5rem;

  line-height: 1.8;

    font-size: 1rem;
}

.policyContainer h2:first-of-type {
  margin-top: 1.5rem;
}

.policyContainer p:last-child  
  {
    margin-bottom  :  0; 
	

}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}