* {
   margin    :  0;
   padding: 0;
    box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #333;
   background-color   :    #f8f9fa;
}

.container {
	   max-width: 1200px;
   margin: 0 auto;
	 padding: 0 20px;
}

.main-navigation {
   background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
     position: fixed;
  top: 0;
  width: 100%;
   z-index: 1000;
	transition: background-color 0.3s ease;
}

.nav-wrapper {
    max-width: 1200px; 
	   margin: 0 auto; 
	   display: flex; 
	   justify-content  : space-between; 
	   align-items: center; 
	  padding: 1rem 20px;
}



.nav-logo {
    height: 45px;
  width     :   auto;
}

.nav-links {
          display: flex;
   list-style     :   none;
   gap: 2rem;
}

.nav-links a {
    text-decoration: none;
	 color: #333;
  font-weight  :500;
    transition  :color 0.3s ease;
}

.nav-links a:hover {
   color: #2563eb;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
 gap   :    4px;
}

.burger-menu span {
   width: 25px;
               height: 3px;
    background: #333;
    transition: all 0.3s ease;

}

.burger-menu.active span:nth-child(1) {
	  transform: rotate(45deg) translate(5px, 5px);}

.burger-menu.active span:nth-child(2)     {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section   {


                    margin-top: 80px;
  min-height: 90vh;
   display: flex;
   align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem 0;
     }

.hero-content {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
   font-weight: 700;
  margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle	{
    font-size: 1.3rem;
	margin-bottom :      2rem;
     opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
   flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
         padding: 15px 30px;
    -moz-border-radius     :     8px;
    text-decoration: none;
	 border-radius     :   8px;
    -webkit-border-radius: 8px;
   font-weight: 600;
	 transition: all 0.3s ease;
    display    :        inline-block;
}

.cta-primary {
         background:       #ff6b6b;
    color: white;
}

.cta-primary:hover {
    background: #ff5252;

	  transform: translateY(-2px);
}

.cta-secondary


{
   color: white;
   background: transparent;
    border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
   color: #667eea; 
	
}

.hero-image img {
    width: 100%;
  height     :      auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview    {
   padding   :  5rem 0;
  background: white;
}

.services-overview h2    {
	text-align: center;
  font-size: 2.8rem;
   margin-bottom: 3rem;
                    color: #2d3748;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.service-card {


    background: #f8f9fa;
   border-radius: 12px;
	 padding :       2rem;
   text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid #e2e8f0;
}

.service-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


}

.service-card img {
     width :       100%;
   	height: 200px;
      object-fit: cover;
     border-radius: 8px;
     margin-bottom: 1.5rem;
}

.service-card h3 {
	    font-size: 1.5rem; 
    margin-bottom: 1rem; 
    color: #2d3748;
     }

.service-card p {
   color: #4a5568;
   line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 4rem 0;
  text-align: center;
          color: white;

}

.cta-content h2 {
  font-size :    2.5rem;
   margin-bottom :      1rem;


}

.cta-content p {
    font-size: 1.2rem;
   margin-bottom: 2rem;
    opacity: 0.9;
}  

.cta-button  
  {
    background: #ff6b6b;
	 color: white;
    padding     :      18px 35px;
    text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
	display: inline-block;
}

.cta-button:hover {
       background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,107,107,0.3);
}

.why-choose-us {
  padding: 5rem 0;
   background: #f8f9fa;
}

.why-choose-us h2 {
  text-align:       center;
  font-size: 2.8rem;
	margin-bottom :     3rem;
  color   :  #2d3748;
}

.benefits-grid  {
   display : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {


   background: white;
    padding: 2rem;
  border-radius: 12px;
  text-align: center;
   border-left: 4px solid #667eea;
         transition   :   transform 0.3s ease;
     }

.benefit-item:hover {
  transform: translateY(-3px);
}



.benefit-item h3   {
  font-size: 1.4rem;

	  margin-bottom: 1rem;

	    color: #2d3748;
}

.benefit-item p {
   color  :     #4a5568;

	  line-height     :    1.7;
}

.revenue-insights

{
  padding: 5rem 0;
    background: white;
} 

.insights-content {
  display: grid; 
               grid-template-columns: 1fr 1fr; 
    gap: 3rem; 
                    align-items     :     center;
}

.insights-text h2 {
  font-size: 2.5rem;
   margin-bottom  :1.5rem;
     color:     #2d3748; 
	
}

.insights-text p {
    margin-bottom   :  1.5rem;
  color    :     #4a5568;
   font-size:   1.1rem;
    line-height: 1.7;
}

.insights-list {
    list-style: none;
  padding: 0;
}

.insights-list li {

  padding: 0.5rem 0;
   position: relative;
   padding-left: 1.5rem;
    color: #4a5568;
     }

.insights-list li:before {


  content: "✓";
     position: absolute;
      left :    0;
     color: #48bb78;
   	font-weight: bold;


}


.insights-image img {

	    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section	{
	 padding: 5rem 0;
    background: #f8f9fa;
}

.contact-section h2
	{
  text-align   :        center;
  font-size: 2.8rem;
	margin-bottom: 3rem;
   color: #2d3748;
}

.contact-wrapper {
  display: grid;
	grid-template-columns   : 1fr 2fr;
   gap    :     3rem;
}

.contact-info h3 {
   font-size: 1.8rem;
   margin-bottom: 1.5rem;
  color: #2d3748;
}

.contact-details p  {
	margin-bottom: 1.5rem;
	   color: #4a5568;
	                    line-height: 1.7;
}

.contact-form {
	background: white; 
	   padding: 2.5rem; 
	               border-radius: 12px; 
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
          margin-bottom:       1.5rem;
}

.form-group label {
    display: block;
	margin-bottom: 0.5rem;
  color: #2d3748;
  font-weight: 500;
} 

.form-group input,
.form-group select,
.form-group textarea

{
          width: 100%;
    padding :      12px 15px;
    border   :1px solid #cbd5e0;
  border-radius: 6px;
    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: #667eea;
  box-shadow: 0 0 0 3px rgba(102,126,234,0.1);
}

.submit-btn {
		background: #667eea;
   color: white;
  padding: 15px 30px;
    border: none;
   -webkit-border-radius: 6px;
	 -moz-border-radius: 6px;
  border-radius: 6px;
     font-size: 1.1rem;
  font-weight: 600;
   cursor  :        pointer;
    transition: all 0.3s ease;
    width: 100%;

}

.submit-btn:hover {

		background: #5a67d8;
  transform: translateY(-2px);
	}

.site-footer {
   background: #2d3748; 
	   color: white; 
	    padding: 3rem 0 1rem;

}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-logo img {
   height    :  50px;
    width: auto;
}

.footer-links 
 {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
} 

.footer-section h4 {
  margin-bottom: 1rem;
   color: #e2e8f0;
}

.footer-section ul {
     list-style: none;

}  

.footer-section ul li {
   margin-bottom     :      0.5rem;
}

.footer-section a {
  color: #a0aec0;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-section p {

  color: #a0aec0;
   line-height: 1.6;
	}

.footer-bottom {
    border-top: 1px solid #4a5568;
    margin-top: 2rem;
  padding-top: 1rem;
    text-align: center;
  color: #a0aec0;
    max-width: 1200px;
  margin-left: auto;
    margin-right: auto;
  padding-left: 20px;
  padding-right: 20px; 

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-overview h2,
    .why-choose-us h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .service-card,
    .benefit-item {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.animate-in {
   animation     :      fadeInUp 0.6s ease-out; 

}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.main-navigation.scrolled


{

  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
	}

.about-hero {
    margin-top: 80px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: white;
  padding: 4rem 0;
                    text-align: center;
}

.about-hero-content h1 {
   font-size    :       3rem;
    font-weight: 700;
	 margin-bottom: 1rem;
}

.about-hero-subtitle {
    font-size: 1.3rem;
   opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

.nav-links a.active {

	    color: #2563eb;
  font-weight:    600;
}

.our-story {
   padding: 5rem 0;
    background: white;
}

.story-content {
   grid-template-columns: 2fr 1fr;
   display: grid;
   gap: 3rem;
    align-items: center;
}

.story-text h2 {
      font-size: 2.5rem;
    margin-bottom:  2rem;
   color: #2d3748;
}

.story-text p{

	   margin-bottom: 1.5rem;
       color: #4a5568;
  font-size: 1.1rem;
    line-height: 1.8;


}

.story-image img {
    width: 100%;
  height: auto;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	
}

.our-approach {
    padding   :     5rem 0;
          background  : #f8f9fa;
}

.our-approach h2 {
  text-align: center;
  font-size: 2.8rem;
	 margin-bottom  :3rem;
    color: #2d3748;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :      2rem;
}

.approach-item
	{
  background:        white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease;}

.approach-item:hover {
  transform: translateY(-5px);
     }

.approach-item h3 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
        color: #2563eb;


}

.approach-item p {
    color: #4a5568;
    line-height: 1.7;
}

.team-expertise {
        padding: 5rem 0;

    background: white;
}

.expertise-content

{
     display: grid;
   grid-template-columns :    1fr 1fr;
  gap: 3rem;
   align-items: center;

}

.expertise-text h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
   color: #2d3748;
}

.expertise-text p {

    margin-bottom: 2rem;
  color: #4a5568;
  font-size: 1.1rem;
    line-height: 1.8;
	}

.expertise-stats {
    display     :grid;
  grid-template-columns: repeat(3, 1fr);
 gap: 2rem;
}  

.stat-item {
   text-align: center;
}

.stat-number {
    display: block; 
    font-size: 2.5rem; 
    font-weight: 700; 
   color: #2563eb; 
  margin-bottom: 0.5rem;
     }

.stat-label {
  color: #4a5568;
	   font-size: 0.9rem;
}

.expertise-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-methods {
  padding: 5rem 0;
   background: #f8f9fa;

}

.our-methods h2 {
    text-align: center;
   font-size: 2.8rem;
   margin-bottom: 3rem;
  color    :       #2d3748;
}

.methods-list {
  display: flex;
    flex-direction: column;
	gap: 3rem;
}

.method-item {

	   display: grid;
	 grid-template-columns:    200px 1fr;
	gap: 2rem;
   align-items: center;
    background: white;
   padding :    2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
     }

.method-item:nth-child(even) {
    grid-template-columns: 1fr 200px;
}


.method-item:nth-child(even) .method-icon {
  order: 2;
}

.method-icon img {
    width: 100%;
         object-fit: cover;
    height: 150px;
  border-radius: 8px;
}

.method-content h3 {


    font-size: 1.5rem;
  margin-bottom     :  1rem;
	 color  :   #2563eb; 
	
     }

.method-content p {
  color: #4a5568;
   line-height: 1.7;
}

.values-section     {
  padding    : 5rem 0;
  background: white;
}

.values-section h2 {
  text-align: center;
  font-size  :  2.8rem;
    margin-bottom :     3rem;
    color: #2d3748;
}

.values-grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.value-card		{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 2rem;
   border-radius: 12px;
  text-align :     center;
        transition    :      transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
       font-size: 1.4rem;
    margin-bottom   :      1rem;
}

.value-card p {
   line-height: 1.7;
   opacity: 0.9;
}

.thankyou-main {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
  padding: 3rem 0;
    background: #f8f9fa;}

.thankyou-container {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
    display: grid;
         grid-template-columns: 2fr 1fr;
       gap: 3rem;
    align-items: start;
}

.thankyou-content {
    background: white;
    padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon {
    text-align: center;

	  margin-bottom: 2rem;
}



.checkmark-circle {

	    width: 80px;
      height :     80px;
   border-radius:       50%;
   background     :  #48bb78;
  display: flex;
    align-items:center;
  justify-content: center;
	 margin: 0 auto;
    animation: scaleIn 0.5s ease-out;}

.checkmark {
    width: 25px;
               height     :      40px;
    border: solid white;
  border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-content h1 {
   font-size: 2.5rem;
          text-align: center;
   margin-bottom   :    1.5rem;
    color: #2d3748;
}

.thankyou-message {
  font-size: 1.2rem;
                    text-align :     center;
	 margin-bottom  :        3rem;
  color: #4a5568;
    line-height: 1.7;
}

.next-steps h2{
    font-size: 2rem;
   margin-bottom: 2rem;
   color    :#2d3748;
}

.steps-grid {
    display: grid;
	 gap: 2rem;
  margin-bottom: 3rem;
}

.step-item {
  display:   flex;
  gap: 1rem;
   align-items: flex-start;
}

.step-number

{
   font-weight:     600;
   display: flex;
  background  :        #2563eb;
    color: white;
    justify-content  :center;
	 flex-shrink  :   0;
	align-items: center;
   border-radius: 50%;
    width: 40px;
  height: 40px;
}


.step-content h3 
 {
  font-size: 1.3rem;
   margin-bottom: 0.5rem;
  color: #2d3748;
}

.step-content p {
     color: #4a5568;
  line-height: 1.6;
     }

.additional-info {
   margin-bottom: 3rem;
  padding: 2rem;
   background     :   #f8f9fa;
    border-radius: 8px;


}

.additional-info h2 {
    font-size: 1.8rem;
	    margin-bottom: 1rem;
		color: #2d3748;
}

.additional-info p {
  margin-bottom: 1rem;
  color: #4a5568;
}

.preparation-list {
	 list-style: none;
  padding: 0;
}

.preparation-list li {
      padding: 0.5rem 0;
 position: relative;
    padding-left: 1.5rem;
   color: #4a5568;
     }

.preparation-list li:before {
  content: "→";
   position   : absolute;
  left: 0;
    color: #2563eb;
   font-weight: bold;
}

.cta-buttons {
   display : flex;
    gap: 1rem;
	 justify-content: center;
  margin-bottom: 2rem;
                    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
            padding :       15px 30px;
  text-decoration: none;
         border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
    display :    inline-block;
	}

.btn-primary {
   background: #2563eb;
   color: white;
}

.btn-primary:hover
{


  background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {

	   color: #2563eb;
   border: 2px solid #2563eb;
   background: transparent;
}

.btn-secondary:hover  {
   background    :     #2563eb;
   color: white;

}

.contact-reminder {
   text-align: center;
	     padding: 1.5rem;
	    background: #eff6ff;
		border-radius: 8px;
	  border-left: 4px solid #2563eb;
}

.contact-reminder p {
   color    :       #2d3748;
  margin: 0;
}

.thankyou-image   {
    top  :        100px;
   position: sticky;


}

.thankyou-image img   {
   width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .method-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .method-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .method-item:nth-child(even) .method-icon {
        order: 0;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .thankyou-image {
        position: static;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0;
    }
    
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .our-story,
    .our-approach,
    .team-expertise,
    .our-methods,
    .values-section {
        padding: 3rem 0;
    }
    
    .story-text h2,
    .expertise-text h2 {
        font-size: 2rem;
    }
    
    .our-approach h2,
    .our-methods h2,
    .values-section h2 {
        font-size: 2.2rem;
    }
    
    .approach-item,
    .value-card {
        padding: 1.5rem;
    }
    
    .method-item {
        padding: 1.5rem;
    }
    
    .method-icon img {
        height: 120px;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   text-align: left;
	margin: 0 auto;
               max-width:   800px;
}

.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;
    }
}