* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif; 
	    line-height: 1.6; 
	   color: #333; 
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.content-container {
        max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-navigator {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position :fixed;
   top: 0;
   width  : 100%;
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
                    padding: 0 20px;
   display: flex;
	 justify-content: space-between;
    align-items :  center;
  height  :   70px;
}

.brand-section .company-logo {
  height:        45px;
    width   :  auto;
}

.menu-links {
   display: flex;
    gap: 30px;
}

.nav-item {

	    text-decoration   :  none;
	color: #2c3e50;
   font-weight: 500;
  padding: 10px 0;
    position: relative;
  transition: color 0.3s ease;

}

.nav-item:hover, .nav-item.active {
   color: #3498db;
	
}

.nav-item.active::after	{
  content: ''; 
    position: absolute; 
   bottom: 0; 
   left: 0; 
   width: 100%; 
    height: 2px; 
   background: #3498db; 
	
}

.mobile-toggle {
   display: none;
   flex-direction: column;
   background: none;
    border: none;
  cursor: pointer;
   padding: 10px;
}

.burger-line {
       width: 25px;
   height     :    3px;
   background: #2c3e50;
	margin: 3px 0;
   transition: 0.3s;
}

.mobile-menu {
    display: none;
    position: absolute;
  top: 100%;
    left: 0;
               width: 100%;
  background: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-link {
   text-decoration: none;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
   color: #2c3e50;
	 display  :      block;
}

.hero-area {
      padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;

}

.hero-content{


   display:       flex;
   align-items: center;
   gap: 50px;
	}

.hero-content > div:first-child {
    flex: 1;
	-ms-flex: 1;
}

.hero-visual {
    flex  :  1;
}


.hero-area h1 {
   font-size: 3.2rem;
       margin-bottom: 20px;
               font-weight: 700;
    line-height: 1.2;
}

.lead-text {
   font-size: 1.3rem;
    margin-bottom     :      30px;
  opacity: 0.9;
    line-height: 1.7;
}

.action-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn, .secondary-btn {
  padding    :      15px 30px;
    text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
  background: #e74c3c;
  color: white;
	
}  

.primary-btn:hover {
    background: #c0392b;
  transform: translateY(-2px);
}

.secondary-btn {
    background     :        transparent;
   color: white;
  border: 2px solid white;
	
}

.secondary-btn:hover {
   background: white;
  color: #667eea;
}

.hero-image {
  width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.advantages-zone {
   padding: 80px 0;
    background: white;
}

.advantages-zone h2

{
  text-align: center;
          font-size: 2.5rem;
	margin-bottom: 50px;
   color: #2c3e50;
}

.benefits-grid {
			display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;
}

.benefit-card {
    padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
	text-align: center;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
} 

.benefit-card h3 {
          color: #3498db;
          margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-offerings {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.service-offerings h2 {
    text-align: center;

  font-size: 2.5rem;

  margin-bottom: 50px;

  color: #2c3e50;
}

.services-layout {
  display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    display: flex;
  gap: 30px;
    background: white;
   border-radius: 15px;
   padding: 30px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-img {
   width: 300px;
    height: 250px;
    object-fit: cover;
    border-radius   :       10px;
  flex-shrink: 0;
}

.service-details h3 {
  color   :     #2c3e50;
  font-size :  1.8rem;
       margin-bottom: 15px;
}

.service-details p {
	margin-bottom: 20px;
	 line-height: 1.7;
} 

.feature-list {
    list-style: none;
}

.feature-list li {
    padding  :      8px 0;
   position: relative;
    padding-left: 25px;
}

.feature-list li::before {

	  content: "✓";
 position:     absolute;
    left: 0;
	color: #27ae60;
    font-weight: bold;
	}

.cta-section	{
    padding   :       80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
  text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
	margin-bottom: 20px;
}


.cta-section p {
       font-size: 1.2rem;
   margin-bottom: 30px;
  opacity :     0.9;
    max-width: 800px;
   margin-left    :auto;
         margin-right: auto;
}

.cta-button {
   background: #e74c3c;
   color: white;
  padding: 20px 40px;
  text-decoration :none;
	border-radius: 10px;
    font-size: 1.2rem;
   font-weight: 600;
    display: inline-block;
  transition   :      all 0.3s ease;
}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.testimonials-area {
        padding: 80px 0;
	background: white;
}

.testimonials-area h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom  :   50px;
  color: #2c3e50;
}

.testimonial-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 30px;
}

.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	 padding  :    30px;
   border-radius: 12px;
    position: relative;
}

.testimonial-card p {
        font-style: italic;
    margin-bottom: 20px;
  line-height: 1.7;
}

.client-info strong {
	color: #3498db;
}

.client-info span {
          color: #7f8c8d;
  font-size     :       0.9rem;
}

.contact-section {
     padding  :      80px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
	}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 50px;
    color: #2c3e50; 
	
     }

.contact-layout  {
  display: flex;
      gap: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
   color  : #2c3e50;
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
	margin-bottom    :    25px;
}

.info-item strong {
  color: #3498db;
  display :       block;
    margin-bottom: 5px;
}

.contact-form {
    flex: 2;
    background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-row {
  display: flex;
	    gap: 20px;
	   margin-bottom :  20px;
}

.form-row input,
.form-row select {
    flex: 1;

}

.contact-form input,
.contact-form select,
.contact-form textarea {
   width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
   border-radius: 8px;
   font-size: 1rem;
   transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {


    outline: none;
   border-color: #3498db;

}

.contact-form textarea {
    margin-bottom :     20px;
  resize: vertical;
}

.submit-btn {
     background: #3498db;
  color: white;
	border: none;
         padding: 15px 40px;
   border-radius: 8px;
    font-size: 1.1rem;
   cursor: pointer;
	transition: background-color 0.3s ease;
	}

.submit-btn:hover {
   background: #2980b9;
}

.site-footer {
    background: #2c3e50;
	color: white;
   padding: 50px 0 20px;
}

.footer-content {
    display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
    gap :    40px;
    margin-bottom: 30px;
}

.footer-logo {
  height: 40px;
   width     :auto;
  filter: brightness(0) invert(1);
         margin-bottom :15px;
}

.footer-brand p {
  opacity: 0.8;
					line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
  margin-bottom: 15px;

   color: #3498db;
}  

.footer-links a,
.footer-legal a {
    display: block;
  -moz-transition: opacity 0.3s ease;
  color:     white;
   text-decoration: none;
   margin-bottom: 8px;
   opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
   opacity    :        1;
}

.footer-contact p {
	 margin-bottom: 8px;
  opacity: 0.8;
}

.footer-bottom {


   border-top: 1px solid #34495e;
      padding-top: 20px;
	 text-align: center;
    opacity: 0.7;
	}@media (max-width: 768px) {
    .desktop-visible {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-area h1 {
        font-size: 2.2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-item {
        flex-direction: column !important;
    }
    
    .service-item:nth-child(even) {
        flex-direction: column !important;
    }
    
    .service-img {
        width: 100%;
        height: 200px;
    }
    
    .contact-layout {
        flex-direction: column;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-area {
        padding: 100px 0 60px;
    }
    
    .hero-area h1 {
        font-size: 1.8rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .advantages-zone h2,
    .service-offerings h2,
    .testimonials-area h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2.2rem;
    }
}.about-hero {
    padding :  120px 0 60px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
  text-align: center;
}

.about-hero h1

{
    font-size: 3rem;
   margin-bottom: 20px;
    font-weight: 700;
}

.about-intro
	{
   line-height  :    1.7;
   max-width: 800px;
   font-size: 1.3rem;
  opacity: 0.95;
    margin: 0 auto;
}

.company-story {
   background: white;
    padding: 80px 0;
}

.story-layout 
 {
    display: flex;
    align-items   :       center;
   gap: 50px;
}

.story-text {
   flex: 2;
}

.story-text h2 {
	color: #2c3e50;
  font-size: 2.5rem;
   margin-bottom: 30px;
}

.story-text p {
  margin-bottom: 25px;
   line-height: 1.7;
  font-size: 1.1rem;
}


.story-image {
  flex: 1;
} 

.story-pic {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-values {
      padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	}

.values-grid {
   display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

    gap: 40px;
}

.value-block

{
  background: white;
  padding     :     40px;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.value-block h3 {
   color: #3498db;
   font-size  :        1.8rem;
  margin-bottom    :    20px;
}

.value-block p {
   line-height: 1.7; 
	  margin-bottom: 15px;
}

.values-list {
   list-style: none;
	padding: 0;
}

.values-list li {
    padding: 8px 0;
    position: relative;
   padding-left: 25px;
}

.values-list li::before {
  content: "→";
  font-weight: bold;
    color: #e74c3c;
   position: absolute;
    left: 0;
}

.approach-methodology {
  padding  :   80px 0;
   background: white;
}

.approach-methodology h2 {
 text-align: center;
   font-size:     2.5rem;
    margin-bottom: 50px;
    color: #2c3e50;
}

.method-text p {
     font-size: 1.2rem;

	  line-height: 1.7;

	   margin-bottom: 40px;

	    text-align: center;

}

.framework-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
  margin:       0 auto;
}

.step-item {
  display: flex;
  align-items: flex-start;
   gap: 25px;
	padding: 25px;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    border-radius: 12px;
}

.step-letter  
  {
	 background: #3498db;

   color: white;

   width: 50px;

    height: 50px;

   border-radius: 50%;

    display: flex;

   align-items: center;

   justify-content: center;

  font-size: 1.5rem;

  font-weight: bold;

  flex-shrink: 0;
}

.step-details h4 {
	 color    :    #2c3e50;
   margin-bottom: 10px;
   font-size: 1.3rem;
}

.step-details p


{
    line-height: 1.6;
}

.team-expertise {
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :        white;
}

.team-expertise h2 {
               text-align: center;
    font-size: 2.5rem;
          margin-bottom     : 50px;
}

.expertise-layout {
	   display: flex;
    align-items: center;
   gap: 50px;
	
	}

.expertise-image {
    flex  :   1;
}

.expertise-pic {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.expertise-content {
	flex: 2;
}

.expertise-content p {
        font-size: 1.1rem;
	line-height: 1.7;
   margin-bottom: 30px;
  opacity: 0.95;
}

.expertise-stats {
     display: grid;

  grid-template-columns: repeat(2, 1fr);

					gap: 30px;

  margin: 40px 0;
}

.stat-item {
    text-align: center;
  background: rgba(255,255,255,0.1);
   padding: 25px;
    border-radius: 10px;
}

.stat-number {
    display: block;
   font-size: 2.5rem;
    font-weight: bold;
    color    :       #ffd700;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.success-philosophy {
  padding:        80px 0;
  background: white;
} 

.success-philosophy h2 {
   text-align:        center;
   font-size: 2.5rem;
   margin-bottom: 50px;
    color: #2c3e50; 

}

.philosophy-grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	gap: 30px;


}

.philosophy-card {
	padding: 35px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius:      12px;
	text-align: center;
	border-left: 4px solid #e74c3c;
}

.philosophy-card h3  {
    color: #2c3e50;
     margin-bottom: 15px;
   font-size: 1.4rem;
}

.philosophy-card p {

	  line-height: 1.7;
}

.why-choose-us {
               padding: 80px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.choice-layout {
      display: flex;
    align-items: center;
        gap: 50px;


}

.choice-text {
	 flex: 2;
}

.choice-text h2 {
    color   : #2c3e50;
  font-size: 2.5rem;
    margin-bottom: 30px;
}

.reason-item {
   background: white;
    padding: 25px;
   margin-bottom: 20px;
   border-radius   :     10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.reason-item h4 {
    color: #3498db; 
    margin-bottom: 10px; 
   font-size: 1.2rem;
}

.reason-item p {
   line-height: 1.6;
	
}

.choice-image {
   flex: 1;
}

.choice-pic     {
    width: 100%;
	 border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
	}

.thankyou-hero {
   	 padding: 120px 0 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	color: white;
   text-align: center;}

.thankyou-content h1   {
  font-size: 3rem;
    margin-bottom: 15px;
  font-weight: 700; 
	
}

.thankyou-subtitle {
  font-size: 1.3rem;
	 margin-bottom:40px;
    opacity     :        0.9;
}

.success-icon
	{
   margin-bottom: 30px;
}

.checkmark-circle {
  width: 80px;
  height   :      80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
   display  :        inline-flex;
   align-items: center;
    justify-content: center;
   margin: 0 auto;

}

.checkmark {


   width: 25px;
       height: 50px;
  border: solid white;
	 border-width: 0 4px 4px 0;
  transform: rotate(45deg);

}

.confirmation-details {
    max-width: 700px;
    margin: 0 auto;
  background: rgba(255,255,255,0.1);
  padding: 30px;
   border-radius: 12px;
}

.confirmation-details p {
        font-size: 1.1rem;
    line-height :     1.7;
      margin: 0;
}

.next-steps {
  padding: 80px 0;
  background: white;
}

.next-steps h2 {


   text-align: center;
  font-size: 2.5rem;
	margin-bottom    :  50px;
  color    :        #2c3e50;
	}

.steps-timeline {
   max-width: 800px;
   margin: 0 auto;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding   :        30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius   :        12px;
    position: relative;
}

.timeline-number {
   background: #3498db;
   color: white;
    width: 50px;
	 height: 50px;
	border-radius: 50%;
   display: flex;
          align-items: center;
	justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
   flex-shrink: 0; 
	
}

.timeline-content h3 {
   color: #2c3e50;
    margin-bottom: 10px;
        font-size: 1.4rem;
}

.timeline-content p {
  line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-duration {
    color: #e74c3c;
   font-weight: 600;
    font-size   :  0.9rem;

}

.meantime-resources 
 {
   padding: 80px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}


.meantime-resources h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 50px;
    color: #2c3e50;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.resource-card {
      background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}

.resource-image {
   width: 100%;
  height: 200px;
  object-fit: cover;

}

.resource-content {
  padding: 30px;
}

.resource-content h3 {
  color: #2c3e50;
  margin-bottom: 15px;
    font-size: 1.4rem;
}


.resource-content p {
    line-height: 1.7;
}

.important-note {
 padding: 60px 0;
    background: #34495e;
   color: white;
    text-align: center;
}

.note-content h2 {
    margin-bottom: 25px;
  color: #ffd700;
}

.note-content p {
  margin :       0 auto 20px;
    max-width: 800px;
  font-size     : 1.1rem;
    line-height: 1.7;
}

.return-navigation {
    padding: 60px 0;
    background: white;
    text-align: center;
}

.navigation-options
	{
     gap: 20px;
  justify-content: center;
       display: flex;}

.nav-button {
  padding: 15px 30px;
  text-decoration: none;
    border-radius: 8px;
  font-weight     :        600;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-button.primary     {
   background: #3498db;
   color: white;

}

.nav-button.primary:hover {
  background: #2980b9;
  transform: translateY(-2px);


}

.nav-button.secondary {
    border: 2px solid #3498db;
  color: #3498db;
	background: transparent;
}

.nav-button.secondary:hover {
   background: #3498db;

	  color: white;
}@media (max-width: 768px) {
    .story-layout,
    .expertise-layout,
    .choice-layout {
        flex-direction: column;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .framework-steps {
        padding: 0 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .navigation-options {
        flex-direction: column;
        align-items: center;
    }
    
    .thankyou-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .thankyou-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1,
    .thankyou-hero h1 {
        font-size: 1.9rem;
    }
    
    .story-text h2,
    .team-expertise h2,
    .success-philosophy h2,
    .next-steps h2,
    .meantime-resources h2 {
        font-size: 2rem;
    }
}.policy {
  margin-top: 7%;
}