* {
  padding: 0;
    box-sizing: border-box;
   margin: 0;
}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #333;
	background-color: #fafafa;
}

.container {
   max-width     :   1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding:        15px 0;
  position: fixed;
    top: 0;
    width: 100%;
          z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);


}

.nav-wrapper {
   max-width: 1200px;
  margin: 0 auto;
   display: flex;
    justify-content: space-between;
  align-items: center;
    padding: 0 20px;
}

.brand-logo .logo-image {
  height: 50px;
   width:       auto;
}

.nav-links {
  display: flex;
    list-style: none;
 gap: 30px;
}

.nav-link {
  color: white;
    text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover {
     color: #f1c40f;
     }

.burger-menu {
    display: none;
    flex-direction: column;
                    cursor     :       pointer;
   gap: 4px;
}

.burger-line  {
	    width: 25px;
  height: 3px;
   background-color: white;
    transition: all 0.3s ease;



}

.hero-section {

	          margin-top: 80px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  display: flex;
    align-items: center;
				 max-width  :  1200px;
  margin-left: auto;
   margin-right: auto;
    border-radius: 15px;
 margin-top: 100px;

}


.hero-content {
   flex: 1;
  padding-right: 40px;
}

.hero-title{
   font-size    : 3.2rem;
    font-weight: 700;
  color: white;
     margin-bottom: 20px;
   line-height: 1.2;
}

.hero-subtitle

{
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.hero-image {
  flex: 1;
}

.hero-image img {
    width: 100%;
   height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button {
  display: inline-block;
   padding  :        15px 30px;
  border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
   background-color: #f1c40f;
	 color: #333;
}


.cta-button.primary:hover {
    background-color: #e67e22;
  transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
  color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
  background-color: white;
  color     : #333;
}

.features-area {
  padding: 100px 20px;
    background-color: white;
}

.section-title {
   text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
               margin-bottom: 60px;
    font-weight: 700; 

}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card
{
					text-align: center;
  padding: 40px 30px;
        border-radius: 15px;
  background: linear-gradient(145deg, #f8f9fa, #e9ecef);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
    height: 200px;
   object-fit: cover;
   border-radius: 10px;
  margin-bottom: 25px;
}

.feature-card h3 {
    font-size   :    1.5rem;
   color: #2c3e50;
   margin-bottom: 15px;
    font-weight: 600;
}

.feature-card p {
	 color: #666;
   line-height: 1.7;
}

.services-showcase {
   padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;


}  

.services-content {

	    display :flex;
  align-items: center;
  gap: 60px;

}

.services-content h2 {
  font-size: 2.5rem;
    margin-bottom   : 40px;
    font-weight: 700;
}

.services-list
	{
  flex     :   1;
}

.service-item
	{
    margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
   border-radius: 10px;
  backdrop-filter: blur(10px);
}

.service-item h4 {
    font-size: 1.3rem;
   margin-bottom   :      10px;
  color: #f1c40f;
	
}

.service-item p {
  color: rgba(255, 255, 255, 0.9);
}

.services-image {
                    -webkit-flex: 1;
   -ms-flex: 1;
    flex: 1;

} 

.services-image img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cta-section {
      padding  :   80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  text-align: center;
	}

.cta-content h2 {
    font-size: 2.8rem;
   color  :        white;
  margin-bottom: 20px;
	 font-weight: 700;
}

.cta-content p
{
   font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
        max-width: 600px;
  margin-left: auto;
                    margin-right: auto;
}

.contact-section {
   padding: 100px 20px;
  background-color  :     #f8f9fa;
}

.contact-title     {
   text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 60px;
    font-weight  :  700;
}

.contact-wrapper {
   display: grid;
               grid-template-columns: 1fr 2fr;
  gap  : 60px;
    max-width  :1000px;
	margin: 0 auto;
}

.contact-info h3 {


    font-size: 1.8rem;
  color: #2c3e50;
   margin-bottom: 30px;
     }

.info-item {
  margin-bottom :      20px;
}

.info-label {
   font-weight: 600;
    color: #34495e;
   display: block;
   margin-bottom: 5px;
}

.info-value {
   color: #666;
}

.contact-form {
    background: white;
   padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
   display: block;
    margin-bottom: 8px;
        color: #2c3e50;
   font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
   -o-transition  :    border-color 0.3s ease;
				 border: 2px solid #ddd;
   border-radius: 8px;
   -moz-transition: border-color 0.3s ease;
   font-size: 16px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus


{
  outline: none;
   border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 40px;
    border: none;
  border-radius: 50px;
    font-size: 16px;
   font-weight: 600;
      cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px; 
	
}

.submit-btn:hover {

	  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);

}

.site-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	 color: white;
   padding: 60px 20px 20px;
}

.footer-content     {
    max-width   :       1200px;
   margin   :       0 auto;
	 display: grid;
  grid-template-columns: 1fr 3fr;
    gap: 40px;
}

.footer-logo {
  height: 60px;
  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;
}

.footer-section h4
{
    font-size: 1.2rem;
          margin-bottom: 20px;
     color :        #f1c40f;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom  :10px;
}

.footer-links a {

  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
  transition: color 0.3s ease;


}

.footer-links a:hover {
   color: #f1c40f;
}

.footer-section p {

  color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;

}

.footer-bottom 
 {

	   max-width: 1200px;
        margin: 40px auto 0;
   padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  color: rgba(255, 255, 255, 0.6);
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        margin-top: 90px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .services-content {
        flex-direction: column;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px;
    }
}.nav-link.active {
  color   :     #f1c40f !important;
         position: relative;
}

.nav-link.active::after {
     content: '';
  position: absolute;
  bottom: -5px;
   left: 0;
    width:      100%;
    height: 2px;
  background-color: #f1c40f;


}

.page-header {
	margin-top:      80px;
    padding: 100px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
   color: white;
}

.page-title {
    font-size: 3rem;
  font-weight: 700;
   margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width  :     600px;
    margin:     0 auto;
}



.story-section {
	background-color: white;
    padding: 100px 20px;
}

.story-content {
  display: grid;
	grid-template-columns: 2fr 1fr;
  gap   :    60px;
  align-items: center;
}

.story-text h2


{
  font-size: 2.5rem;
    color: #2c3e50;
     margin-bottom: 30px;
   font-weight: 700;
}

.story-text p {
    font-size: 1.1rem;
   line-height: 1.8;
               color: #555;
    margin-bottom     :     25px;
}

.story-image img {


   width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);}

.values-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-heading {
  text-align    :    center;
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom    :    60px;
    font-weight: 700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
   max-width: 1000px;
   margin: 0 auto;
}

.value-item {
    text-align: center;
  padding: 40px 25px;
  background :white;
        border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-icon {
     margin-bottom: 25px;
}

.icon-circle {
    width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      border-radius: 50%;
       display: flex;
       align-items: center;
    justify-content   :    center;
     margin: 0 auto;
      color: white;
      font-size: 1.5rem;
   	font-weight: 700;
}

.value-item h3	{
  font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 15px;
      font-weight: 600;


}

.value-item p {
    color: #666;
   line-height: 1.6;



}

.methodology-section {


                    padding: 100px 20px;
    background-color: white;}

.methodology-content {
	 display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 60px;
   align-items: center;
}

.methodology-image img {
  width: 100%;
	border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.methodology-text h2 {
    font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 40px;
    font-weight: 700;
}

.method-steps {
    display: flex;
	gap: 25px;
   flex-direction: column;
}

.method-step {
	padding: 25px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   border-radius: 10px;
   border-left: 4px solid #667eea;
}

.method-step h4	{


   font-size: 1.2rem;

  color: #2c3e50;

    margin-bottom: 10px;

   font-weight    :   600;
}

.method-step p 
 {
  color: #666; 
    line-height: 1.6;

}

.expertise-section {
    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 40px;

}

.expertise-card {
  background: rgba(255, 255, 255, 0.1);
   border-radius: 15px;
   overflow: hidden;
  backdrop-filter: blur(10px);
    transition     :       transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-10px);
}  

.expertise-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.expertise-content {
   padding: 30px;
}

.expertise-content h3 {
    font-size: 1.4rem;
   margin-bottom: 15px;
    color: #f1c40f;
  font-weight: 600;
}



.expertise-content p {
  color: rgba(255, 255, 255, 0.9);
    line-height:   1.6; 
	
}

.commitment-section {
    padding: 100px 20px;
    background-color: #f8f9fa; 
	
}

.commitment-content {
  max-width: 800px;
    margin: 0 auto;
  text-align: center;
}

.commitment-content h2 {
  font-size: 2.5rem;
	color: #2c3e50;
    margin-bottom: 30px;
   font-weight: 700;

}

.commitment-content p
{
   font-size     :        1.1rem;
  line-height:1.8;
               color: #555;
   margin-bottom: 25px;


}

.commitment-features {
  margin-top: 40px;
    display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.commitment-item {
	display: flex;
   align-items: center;
	 gap: 15px;
    padding: 15px;
    background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.check-mark {
    width: 30px;
   height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content  :      center;
    color    :      white;
  font-weight: 700;
  flex-shrink: 0;
}

.thankyou-hero {
  margin-top     :       80px;
	padding: 100px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
   text-align: center;
}

.thankyou-content	{
       max-width: 1000px;
	 margin: 0 auto;
}

.success-animation {

	  margin-bottom: 40px;}

.check-circle {
       width: 120px;
    height  :    120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
	 justify-content: center;
  margin     :        0 auto 30px;
  animation: pulse 2s infinite;
}

.check-circle .check-mark {
   font-size: 3rem;
   color: white;
    background: none;
   width: auto;
  height: auto;
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-title {
  font-size: 3.5rem;
   font-weight:        700;
  margin-bottom: 20px;
}

.thankyou-subtitle     {
  font-size: 1.3rem;
         opacity: 0.9;
   margin-bottom: 60px;
}

.confirmation-details {
  background: rgba(255, 255, 255, 0.1);
	 border-radius: 15px;
    padding: 40px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px); 
	
}

.confirmation-details h2   {
     font-size: 2rem;
    margin-bottom     :   30px;
    color: #f1c40f;
}

.steps-timeline {
   display   : grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px;
}  

.timeline-step {
    text-align: center;
    -moz-transition: opacity 0.3s ease;
   opacity: 0.6;
    -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.timeline-step.completed {
  opacity    : 1;
}

.step-number {
  width: 50px;
  height    :50px;
  background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
    margin: 0 auto 15px;
  font-weight: 700;
   font-size     :1.2rem;
}

.timeline-step.completed .step-number

{
   background: #f1c40f;
   color   : #333;
	
}

.step-content h3 {
   font-size: 1.1rem;
   margin-bottom: 8px;
  font-weight: 600;
}

.step-content p {
          font-size: 0.9rem;
    opacity: 0.8;
}

.what-happens-next {
    margin-bottom: 60px;
}

.what-happens-next h2 {
    font-size  :      2rem;
    margin-bottom   :        40px;
	 color: #f1c40f;
}

.expectations-grid


{
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expectation-item {
  background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
       padding: 30px;
   text-align: center;
  backdrop-filter: blur(10px); 

}

.expectation-icon  
  {
   margin-bottom: 20px;
}

.expectation-icon img {
  height: 80px;
    width: 80px;
   border-radius: 50%;
    object-fit: cover;
}


.expectation-item h3 {
    font-size: 1.2rem;
   margin-bottom: 15px;
 font-weight: 600;
}

.expectation-item p {
  opacity: 0.9;
	line-height: 1.6;
}

.preparation-tips {
	   margin-bottom: 60px;
	}

.preparation-tips h2 {
       font-size: 2rem;
   margin-bottom: 30px;
   color: #f1c40f;}

.tips-container     {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.tip-item {
    display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
   padding: 20px;
        border-radius: 10px;
  backdrop-filter: blur(10px);
}

.tip-number {
    font-size: 1.5rem;
  flex-shrink: 0;
}

.tip-item p {
	 opacity: 0.9; 
	    line-height: 1.4;
}

.action-buttons {


  gap: 20px;
  display: flex;
    justify-content: center;
   flex-wrap: wrap;

}

.return-home-btn,
.learn-more-btn {
    letter-spacing:   1px;
    padding   :      15px 30px;
    font-weight: 600;
         transition: all 0.3s ease;
	 display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
}

.return-home-btn {
               background-color: #f1c40f;
	color: #333;
}

.return-home-btn:hover {
    background-color: #e67e22;

	  transform: translateY(-2px);
}

.learn-more-btn {
   background-color: transparent;
   color: white;
   border: 2px solid white;
}

.learn-more-btn:hover {
    background-color: white;
  color: #333;
}



.contact-reminder {
     padding: 80px 20px;
  background-color: #f8f9fa;
               text-align: center;
     }

.reminder-content h2 {
   font-size: 2rem;
          color: #2c3e50;
  margin-bottom: 20px;
    font-weight: 700;
}

.reminder-content p     {
    font-size: 1.1rem;
       color: #666;
         margin-bottom: 30px;
}

.contact-info {
  display: flex;

	justify-content: center;

          gap: 40px;

    flex-wrap: wrap;}

.contact-item {
	  display:     flex;
   flex-direction: column;
    gap: 5px;
     }

.contact-label     {
  font-weight: 600;
   color: #2c3e50;
}

.contact-value {
  color: #666;
}@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .thankyou-title {
        font-size: 2.5rem;
    }
    
    .steps-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .thankyou-title {
        font-size: 2rem;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .tips-container {
        grid-template-columns: 1fr;
    }
}