* {
   margin: 0;
     padding: 0;
  box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;

	    line-height: 1.6;

	   color: #2c3e50;

	    background: #fafbfc;
}

.primary-nav {
     background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	position: fixed;
    top: 0;
   width: 100%;
    z-index: 1000;
      border-bottom: 1px solid #e8ecef;
  padding: 0.8rem 0;
     }

.nav-wrapper {
  max-width: 1200px;
   margin: 0 auto;
  display: flex;
   justify-content: space-between;
    align-items   :center;
    padding: 0 2rem;
}

.brand-zone .brand-img {
  height: 45px;
       width: auto;
}

.menu-content {
   display: flex;
	  gap: 2.5rem;
}

.nav-link {
   text-decoration: none; 
   color: #34495e; 
    font-weight: 500; 
	transition: color 0.3s ease; 
	 position   :     relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    width: 0;
  left: 0;
   background: #3498db;
  content: '';
	position: absolute;
    height :       2px;
	bottom: -5px;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%; 

}

.mobile-trigger {
  display: none;
		 flex-direction: column;
  background: none;
    border: none;
   cursor: pointer;
       padding: 0.5rem;
}

.burger-line {
  margin :        3px 0;
    height: 3px;
    transition: 0.3s;
    width: 25px;
    background: #34495e;
} 

.hero-section {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  min-height: 80vh;
   display: flex;
    align-items: center;
}

.hero-container
{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;
   padding: 0 2rem;
}

.hero-text-area h1    {
      font-size: 3.2rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}



.hero-subtitle  {
                  font-size   :        1.25rem;
   margin-bottom: 2.5rem;
    opacity: 0.9;
   line-height: 1.6;
}

.hero-actions {
    display: flex;
	 gap: 1.5rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 0.9rem 2rem;
	text-decoration: none;
   border-radius: 8px;
	font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.primary-button {
	    background: #e74c3c;
  color :      white;
	 border: 2px solid #e74c3c;


}

.primary-button:hover {
	 background: #c0392b;
   border-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.secondary-button {
   background: transparent;
   color: white;
    border: 2px solid white;
}

.secondary-button:hover {
   background: white;
  color: #667eea;
  transform: translateY(-2px);
}

.hero-visual {
   text-align: center;
}

.hero-image {
   width: 100%;

	    max-width: 500px;

	   border-radius: 15px;

	  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.content-container     {
  max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
}

.features-area {
    background: white;
    padding: 80px 0;
}

.features-area h2 {


    text-align: center;
   font-size    :    2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.feature-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
}

.feature-card {
   background: #f8f9fa;
   border-radius     :      12px;
   padding: 2rem;
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   border: 1px solid #e9ecef;
}

.feature-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);} 

.feature-img {
  width: 100%;
   height: 200px;
    object-fit: cover;
   border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
			font-size: 1.4rem;
   margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-card p {
   color: #6c757d; 
    line-height: 1.6;
}

.benefits-section {
   padding: 80px 0;
  background: #f8f9fa;
}

.benefits-layout

{
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items  :    center;
}


.benefits-text h2 {
    font-size: 2.3rem;
   margin-bottom: 2rem;
    color: #2c3e50;
}

.benefit-item {
  margin-bottom: 2rem;
    padding-left: 1.5rem;
  border-left: 4px solid #3498db;
}

.benefit-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
	color: #34495e;
}

.benefit-item p
	{
	  line-height: 1.6;
   color: #6c757d;
	
}

.benefits-img     {
         width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cta-section {

	   padding :  80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
    text-align: center;


}

.cta-content h2 {
        font-size    :      2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
    font-size   :    1.2rem;
  margin-bottom: 2.5rem;
   opacity: 0.9;
}

.cta-button {
   background: white;
    color     :      #f5576c;
    padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
 font-weight: 600;
  font-size: 1.1rem;
	transition  :       all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(255,255,255,0.3);}

.contact-zone {
    padding: 80px 0;
    background     :  white;
}

.contact-zone h2 {
   text-align: center;
    font-size: 2.5rem;
     margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-layout {
    display: grid;
  grid-template-columns: 2fr 1fr;
     gap: 4rem;
}

.contact-form {
  background: #f8f9fa;
   padding: 2.5rem;
    border-radius: 12px;
   border :1px solid #e9ecef;
}

.form-row


{
    margin-bottom: 1.5rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid #e9ecef;
   border-radius: 8px;
   font-size: 1rem;
               transition  :     border-color 0.3s ease;
   background: white;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
		outline: none;
   border-color: #3498db;
}

.form-textarea {
      height: 120px;
   resize: vertical;}

.submit-btn {
  background: #3498db;
   color: white;
    padding: 1rem 2rem;
    border: none;
			border-radius: 8px;
   font-size: 1.1rem;
  font-weight: 600;
  cursor     :    pointer;
   transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {

   background: #2980b9;
  transform: translateY(-2px);
	}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-block h4 {
    font-size: 1.2rem;
  margin-bottom: 0.5rem;
 color: #2c3e50;
}

.info-block p     {
    color    :        #6c757d;
   line-height: 1.6;
}


.site-footer {
	 background: #2c3e50;
         color: white;
   padding: 3rem 0 1rem;
}

.footer-container {

    max-width: 1200px;
  margin: 0 auto;
  padding   :  0 2rem;
	
     }

.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
    margin-bottom: 2rem;


}

.footer-logo	{
   height    :     40px;
  width: auto;
  filter: brightness(0) invert(1);

}

.footer-nav h4, .footer-legal h4, .footer-contact h4 {
   margin-bottom: 1rem;
                    color   :       #ecf0f1;
}

.footer-nav a, .footer-legal a {
  display: block;
  color: #bdc3c7;
  text-decoration: none;
  margin-bottom     :0.5rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover, .footer-legal a:hover {
    color: #3498db;
}

.footer-contact p {
  color: #bdc3c7;
   margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #34495e;
                    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
	               color: #95a5a6;
    font-size: 0.9rem;
     }@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }

    .menu-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .menu-content.active {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-area h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }

    .hero-text-area h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
      padding: 120px 0 60px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
   color: white;
    text-align: center;


}

.about-hero-content h1 {
  font-size: 3rem;
 font-weight: 700;
  margin-bottom     : 1.5rem;
}

.hero-lead {
   font-size: 1.3rem;
 max-width: 800px;
   margin :        0 auto;
    opacity :       0.9;
  line-height: 1.6;
}

.story-section {
  padding: 80px 0;
    background: white;
}

.story-layout {
  display: grid;
   grid-template-columns   :     1fr 1fr;
  gap: 4rem;
   align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.story-text p {
   font-size: 1.1rem;
   margin-bottom: 1.5rem;
   color: #6c757d;
  line-height: 1.7;
}

.story-img {
    width: 100%;
   border-radius    :  12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.mission-section {
	padding: 80px 0;
    background: #f8f9fa;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mission-card  {
   background: white;
  padding: 2.5rem;
    border-radius: 12px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
	}

.mission-card h3 {
   font-size    : 1.5rem;
  margin-bottom: 1.5rem;
    color: #2c3e50;
}

.mission-card p {
	color: #6c757d;
  line-height: 1.6;
}

.expertise-section     {
  padding: 80px 0;
  background :  white;
}

.expertise-section h2 {
	  text-align: center;
		font-size: 2.5rem;
	margin-bottom: 3rem;
    color: #2c3e50;

}

.expertise-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap :     4rem;
   align-items: start;
}

.expertise-img {
	width: 100%;

	    border-radius: 12px;

	  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise-item {
   margin-bottom: 2.5rem;
  padding: 1.5rem;
    background: #f8f9fa;
   border-radius: 8px;
          border-left: 4px solid #3498db;
     }

.expertise-item h4 {


   font-size: 1.3rem;
	margin-bottom: 1rem;
  color: #2c3e50;
	}

.expertise-item p		{
   line-height:    1.6;
   color   :     #6c757d;
}

.approach-section {
   padding: 80px 0;
  background: #f8f9fa; 

}

.approach-section h2


{
     text-align: center;
      font-size: 2.5rem;
   margin-bottom: 3rem;
   color   :     #2c3e50;}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-item {
    text-align: center;
  padding   :  2rem;
    background: white;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number

{
  width: 60px;
  height: 60px;
  background: #3498db;
   color :white;
   border-radius: 50%;
   display: flex;
  align-items  :       center;
   justify-content    :center;
   font-size: 1.5rem;
    font-weight: 700;
   margin    :       0 auto 1.5rem;
}

.step-item h4 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
	
}

.step-item p {
   color :#6c757d;
   line-height   : 1.6;
}

.achievements-section {
	   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.achievements-section h2 {
   text-align   : center;
  font-size:2.5rem;
  margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
    text-align: center;
  padding: 2rem;
}

.stat-number {

	  font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
	color: #fff;
}

.stat-label {
    font-size: 1.1rem;
	opacity: 0.9;
}

.why-us-section {
  padding: 80px 0;
    background: white;
}

.why-us-layout {

         grid-template-columns: 1fr 1fr;
   align-items:    center;
  display: grid;
    gap: 4rem;
     }

.why-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
	color   : #2c3e50;


}

.advantage-list {
   margin-top: 2rem;
}

.advantage-item {
  margin-bottom: 2rem;
   padding: 1.5rem;
        background: #f8f9fa;
   border-radius: 8px;
   border-left: 4px solid #e74c3c;
}

.advantage-item h4 {
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
   color: #2c3e50;
}

.advantage-item p {

   color: #6c757d;
      line-height: 1.6;
     }

.why-us-img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.thankyou-hero {
  padding :120px 0 80px;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
   color: white;
   text-align:     center;
   min-height: 70vh;
  display: flex;
  align-items: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
   height: 80px;
  background: rgba(255,255,255,0.2);
                    border-radius: 50%;
   display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
   margin: 0 auto 2rem;
  border: 3px solid rgba(255,255,255,0.3);
}

.thankyou-content h1

{
	font-size: 2.8rem;
    font-weight: 700;
	 margin-bottom   :       1.5rem;
}  

.thankyou-message {
  font-size: 1.2rem;
   margin-bottom: 3rem;
  opacity: 0.9;
          line-height:   1.6;
}

.next-steps {
  background: rgba(255,255,255,0.1);
   padding     :       2.5rem;
	border-radius: 12px;
        margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
     text-align: center;
               margin-bottom: 2rem;
    font-size: 1.8rem;
}

.steps-timeline	{
  flex-direction: column;
  display: flex;
     gap: 2rem;
}

.timeline-item {
   display: flex;
    align-items: start;
   gap: 1.5rem;
}

.timeline-marker {
  width: 40px;
      height: 40px;
   background: white;
    color: #11998e;
    border-radius: 50%;
    -webkit-border-radius :     50%;
               display: flex;
   align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;

}

.timeline-content h4 {
	  margin-bottom: 0.5rem;
    font-size: 1.2rem;
     }

.timeline-content p {
   opacity: 0.9;
    line-height: 1.5;
}

.quick-info {
  background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius    :        12px;
  margin-bottom: 3rem;
}

.quick-info h3 {
  text-align: center;

	    margin-bottom  :        2rem;

	    font-size: 1.8rem;
}

.info-cards {
         display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 1.5rem;
}

.info-card {
  background: rgba(255,255,255,0.1);
   padding :  1.5rem;
               border-radius: 8px;
   text-align: center;
}

.info-card h4 {
 font-size   :    1.1rem;
    margin-bottom: 0.5rem;

}

.info-card p {
   opacity: 0.9;
   font-size: 0.9rem;
  line-height: 1.4;
}

.additional-resources {
  background: rgba(255,255,255,0.1);
   padding: 2rem;
	border-radius: 12px;
  margin-bottom: 3rem;
}

.additional-resources h3 {
       margin-bottom: 1rem;
   font-size: 1.5rem;}

.additional-resources p {
    margin-bottom: 1.5rem;
  opacity: 0.9;
}

.resource-links {
	 justify-content: center;
   gap  :        1rem;
    display   :  flex;
    flex-wrap: wrap;
}

.resource-link {
  background: rgba(255,255,255,0.2);
   color   :   white;
    padding: 0.8rem 1.5rem;
    text-decoration    :none;
    border-radius: 25px;
  border: 2px solid rgba(255,255,255,0.3);
                    transition: all 0.3s ease;
}

.resource-link:hover {

	  background: rgba(255,255,255,0.3);

	  transform: translateY(-2px);

}

.contact-reminder {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
   border-radius: 12px;
  text-align :center;
}

.contact-reminder h4 {

	 margin-bottom: 1rem;
	   font-size: 1.3rem;
     }

.contact-reminder p {
    margin-bottom: 0.5rem;
  opacity:    0.9;
}

.contact-hours {
   font-size: 0.9rem;
   opacity     : 0.8;
}

.related-services   {
  padding: 80px 0;
    background   : #f8f9fa;
}

.related-services h2 {
    font-size   : 2.5rem;
	margin-bottom: 3rem;
	color: #2c3e50;
    text-align: center;
}

.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap: 2rem;
}

.service-preview-card {
	background: white;
                    padding: 2rem;
      border-radius: 12px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.service-preview-card:hover
{
  transform: translateY(-5px);
}

.service-preview-img {
  width: 100%;
      height: 200px;
     object-fit   :    cover;
       border-radius: 8px;
      margin-bottom: 1.5rem; 

}

.service-preview-card h4	{

   font-size    :    1.3rem;
               margin-bottom: 1rem;
   color: #2c3e50;
	}

.service-preview-card p {
    color: #6c757d;
    line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .story-layout, .expertise-content, .why-us-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .steps-timeline {
        gap: 1.5rem;
    }

    .timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .resource-links {
        flex-direction: column;
        align-items: center;
    }

    .services-preview {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 40px;
    }

    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-lead {
        font-size: 1.1rem;
    }

    .mission-card, .step-item {
        padding: 1.5rem;
    }

    .thankyou-hero {
        padding: 100px 0 60px;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .next-steps, .quick-info, .additional-resources, .contact-reminder {
        padding: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}.pol	{
    margin: 5% 15%;
}