* {
    margin: 0;
    padding: 0;
    box-sizing   :       border-box;
}  

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
  background: #ffffff;
}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1rem 0;
    position: sticky;
  top: 0;
    z-index: 1000;
  box-shadow: 0 2px 15px 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;


}

.brand-section a {
    display: block;
}

.site-logo
	{
		 height: 45px;
   width: auto;
  filter: brightness(0) invert(1);}

.nav-links {
	 display: flex;
    gap: 2rem;
}

.nav-links a {
	 color  :      white;
  text-decoration: none;
       font-weight: 500;
   transition: opacity 0.3s ease;
    font-size: 1.05rem; 
	
}

.nav-links a:hover 
 {
    opacity: 0.8;
}

.mobile-toggle {
  cursor: pointer;
	border: none;
    display:      none;
  padding   : 5px;
    flex-direction: column;
  background: none;
}

.mobile-toggle .bar {
    width: 25px;
  height    :  3px;
          background: white;
  margin: 3px 0;
    transition: 0.3s;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #764ba2;
        flex-direction: column;
        padding: 20px;
        gap: 1rem;
    }
    
    .nav-links.active {
        display: flex;
    }
}.hero-section	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
    padding: 120px 20px;
   text-align: center;
}

.hero-content {
  max-width: 800px;
   margin: 0 auto;
}

.hero-section h1 {
    font-size    :  3rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
   margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
  gap: 1.5rem;
	justify-content  :       center;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
	  text-decoration: none;
  border-radius: 8px;
   transition    :    all 0.3s ease;
   font-size    :1.1rem;
   font-weight: 600;
	padding: 15px 35px;
}

.primary-btn {
    background: white;
    color: #667eea;
}

.primary-btn:hover {
  transform: translateY(-2px); 
	  box-shadow: 0 5px 20px rgba(255,255,255,0.3);
}

.secondary-btn {
 background: transparent;
    color: white;
   border: 2px solid white;
}

.secondary-btn:hover {
    background: white;
    color: #667eea;
}@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}.content-container {
   max-width: 1200px;
	margin: 0 auto;
    padding: 0 20px;
}

.intro-block     {
    padding: 80px 20px;
   background    :   #f8f9fa;
}

.intro-block h2 {
   font-size: 2.5rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
   text-align: center;
}  

.intro-block p {
                    font-size: 1.15rem;
  margin-bottom: 1.2rem;
    color: #555;
    max-width: 900px;
    margin-left: auto;
   margin-right :       auto;
	
}

.services-overview {
    padding     : 80px 20px;
    background: white;
}

.services-overview h2 {
   font-size: 2.5rem; 
    text-align: center; 
    margin-bottom: 3rem; 
   color: #2c3e50;
}

.service-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;


}

.service-card {

	    background: #f8f9fa;
		 border-radius     :        12px;
    overflow  :    hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;



}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
	width: 100%;
	height: 250px;
    object-fit: cover;
}

.service-card h3 {
   font-size    :   1.5rem;
  margin: 1.5rem 1.5rem 1rem;
	color: #667eea;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
  color: #555;
         line-height : 1.6;
}

.transformation-section {
    padding: 80px 20px;
  background: linear-gradient(to right, #f8f9fa 0%, #e9ecef 100%);
}

.transformation-layout {

   display   : grid;
                       grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;


}

.transformation-image img {
	   width: 100%;
    border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
	}

.transformation-text h2 {
       font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
     }

.transformation-text p {
         color: #555;
    margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.benefit-list {


    list-style: none;
    padding: 0;}

.benefit-list li {
   padding   :    0.8rem 0 0.8rem 2rem;
   position: relative;
  color: #444;
	font-size: 1.05rem;
} 

.benefit-list li:before {
  content: "✓";
	position    :   absolute;
    left: 0;
   color: #667eea;
    font-weight: bold;
   font-size   :1.3rem;
}@media (max-width: 968px) {
    .transformation-layout {
        grid-template-columns: 1fr;
    }
}.methodology-block {
  padding: 80px 20px;
    background: white;
}

.methodology-block h2  {
    font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-item {
 padding: 2rem;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-radius: 10px;
       border-left: 4px solid #667eea;
}

.method-item h3 {
    font-size: 1.6rem;
	margin-bottom: 1rem;
  color: #2c3e50;
     }

.method-item p {
	color: #555;
   line-height: 1.7;
}

.image-showcase  {
  padding: 80px 20px;
   background: #f8f9fa;
}

.showcase-image {
  width: 100%;
          max-width: 800px;
    display: block;
    margin:       0 auto 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
	
}

.showcase-text {
   max-width :800px;
   margin: 0 auto;
    text-align: center;
}

.showcase-text h2 {
   font-size: 2.3rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.showcase-text p {
   font-size: 1.1rem;
        color: #555;
    line-height: 1.8;
}

.cta-section {
  padding: 100px 20px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  text-align: center; 
	 color: white;
}

.cta-content h2 {

    font-size: 2.8rem;
    margin-bottom: 1.5rem;

}

.cta-content p {
    font-size: 1.2rem;
  margin-bottom: 2.5rem;
               max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.cta-button{
          display    :       inline-block;
   padding: 18px 40px;
    background: white;
    color: #667eea;
   text-decoration:       none;
    border-radius: 8px;
    font-weight: 600;
   font-size: 1.15rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
} 

.contact-section {
	    padding :    80px 20px;
       background: white;
}

.contact-section h2 {
  font-size: 2.5rem;
   text-align:center;
   margin-bottom: 3rem;
    color     :        #2c3e50;
}

.contact-layout {
	   display: grid;
    grid-template-columns: 1fr 2fr;
  gap: 3rem;
	max-width: 1000px;
   margin: 0 auto;
}

.contact-info h3 
 {
    font-size: 1.8rem; 
	       margin-bottom  :1.5rem; 
		color: #667eea;
}

.info-item {
  display: flex;
  align-items: flex-start;
   margin-bottom: 1.5rem;
	 gap: 1rem;
   line-height: 1.6;
  color: #555;
}

.info-item svg {
    flex-shrink: 0;
  stroke    :   #667eea;
   fill     :     #667eea;
 stroke-width: 0;
  margin-top: 2px;
}

.contact-form {
   background: #f8f9fa;
  padding:2.5rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 12px 15px;
   border: 2px solid #ddd;
    border-radius: 6px;
  font-size   :       1rem;
    font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
	border-color: #667eea;
} 

.form-group textarea	{
    resize    :vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
        border    :    none;
   border-radius: 6px;
    font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease; 

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}.site-footer {
   background: #2c3e50;
  color: white;
               padding: 60px 20px 20px;
}



.footer-content {
  max-width     :  1200px;
               margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    :  2.5rem;
   margin-bottom: 3rem;
}

.footer-logo 
 {
   height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}


.footer-description {
  color: #bbb;
	line-height: 1.6;
}

.footer-column h4 {
   margin-bottom: 1rem;
   font-size: 1.2rem;
    color: #fff;
}

.footer-links {
 list-style: none;
    padding: 0;

}

.footer-links li {
	margin-bottom     :        0.7rem;
}

.footer-links a {
  color: #bbb;
      text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover {
    color    :white;
}

.footer-column p {
  color: #bbb;
   line-height: 1.8;
}

.footer-social     {
  max-width :   1200px;
  margin: 0 auto 2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-social a {
	   display: inline-block;
   transition: transform 0.3s ease;


}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social svg     {
  stroke: url(#gradient-social);
  fill: url(#gradient-social);
  stroke-width: 0;
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.5));
   transition: all 0.3s ease;
} 

.footer-social a:hover svg {
  filter: drop-shadow(0 0 12px rgba(102, 126, 234, 0.8));
  transform: scale(1.1);
}

.footer-bottom {
  max-width   :     1200px;
    margin: 0 auto;
  padding-top: 2rem;
    border-top: 1px solid #444;
        text-align: center;
   color: #bbb;
}

svg {
  width: 0;
	 height: 0;
   position    :absolute;
}

.policySection {
	padding: 80px 2rem;
	   background     :   #f8f9fa;
}

.policyContainer {
	 margin: 0 auto;
          max-width: 800px;
  text-align: left;
}

.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;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding : 100px 20px 80px;
    color    :white;
	text-align: center;
}

.services-hero h1{
  font-weight: 700;
  margin-bottom: 1.5rem;
    font-size: 3rem;


}

.services-intro {
    font-size  :    1.25rem;
    max-width: 800px;
                    margin     : 0 auto;
          opacity: 0.95;
    line-height: 1.7;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-intro {
        font-size: 1.1rem;
    }
}.detailed-services	{

    padding: 80px 20px;
    background: white;
	}

.service-detail {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
    align-items: center;
}

.service-detail.reverse {
		 direction: rtl;
}


.service-detail.reverse > *
	{
    direction: ltr;
}

.service-detail-content h2 {
   font-size :   2.2rem;
    margin-bottom    :  1.2rem;
   color: #2c3e50;
}

.service-detail-content > p  {
   font-size: 1.1rem;
   color: #555;
   line-height: 1.8;
   margin-bottom: 2rem;
	
}

.service-features {
				 display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



.feature-item {
    background: #f8f9fa;
  padding: 1.5rem;
   border-radius: 8px;
	 border-left: 4px solid #667eea;
}

.feature-item h3 {
        font-size: 1.3rem;
   color: #667eea;
                    margin-bottom: 0.8rem;
}

.feature-item p {
   color: #555;
  line-height: 1.7;
}

.service-detail-image img		{
  width: 100%;
  border-radius   :        12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.12);
}@media (max-width: 968px) {
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}.investment-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
	
}

.investment-section h2 {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.investment-grid {

	                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width:        1000px;
   margin: 0 auto;

}

.investment-card {
  background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.investment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.investment-card.featured {
  border: 3px solid #667eea;
   position: relative;
}

.investment-card h3 {
   font-size: 1.7rem;
    color     :  #2c3e50;
  margin-bottom: 0.8rem;
}

.session-info {
  margin-bottom    :      1.5rem;
	color: #667eea;
       font-weight: 600;
  font-size: 1.05rem;
}

.investment-card > p {
   color: #555;

    line-height: 1.7;

   margin-bottom : 2rem;
}

.inquiry-btn {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :        white;
        text-decoration: none;
  border-radius: 6px;
   font-weight  :    600;
    transition: all 0.3s ease;
}

.inquiry-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.process-section {
   padding: 80px 20px;
    background: white;
}

.process-section h2
	{
   font-size: 2.5rem;
       text-align   :       center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-timeline {
  max-width: 900px;
          margin: 0 auto;
	 display: grid;
      gap: 2rem;
}

.process-step {
       position: relative;
  padding-left   :       100px;
  padding-bottom: 2rem;
   border-left: 3px solid #667eea;


}

.process-step:last-child {
    border-left: none;
}

.step-number {
    position: absolute;
      left    :-25px;
	top: 0;
   width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
   border-radius: 50%;
   display:   flex;
  align-items: center;
  justify-content: center;
   font-weight: 700;
  font-size: 1.2rem;
}

.process-step h3 {
	font-size: 1.5rem;
   color: #2c3e50;
  margin-bottom   :    0.8rem;

}

.process-step p {
  color: #555;
   line-height: 1.7;

}@media (max-width: 768px) {
    .process-step {
        padding-left: 70px;
    }
    
    .step-number {
        left: -20px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}.cta-services  
  {
    padding     :    100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
                    color: white;
}

.cta-services h2 
 {
   font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-services p {
   font-size: 1.2rem;
   margin-bottom: 2.5rem;
  max-width: 700px;
	margin-left: auto;
    margin-right: auto;
}

.thankyou-hero {
               min-height: 70vh;
    display: flex;
  align-items: center;
    justify-content   :      center;
    padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.thankyou-container {
    max-width: 800px;
   text-align: center;
}

.success-icon {
   margin-bottom: 2rem;
    -moz-animation: scaleIn 0.5s ease-out;
  -webkit-animation    : scaleIn 0.5s ease-out;
  animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.success-icon svg {
    stroke: #667eea;
   fill   :    none;
    stroke-width   : 2;
}

.thankyou-hero h1{
  font-size: 2.8rem;

                    color: #2c3e50;

   margin-bottom: 1.5rem;
}

.thankyou-message {
         font-size: 1.2rem;
  color: #555;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.next-steps {
  margin  :     4rem 0;
}

.next-steps h2 {
  margin-bottom: 2rem;
       font-size: 2rem;
       color: #2c3e50;
}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
    margin-top: 2rem;
	
}

.step-item {
     background: white;
    padding: 2rem;
    border-radius  :     10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
     }

.step-icon {
   width: 50px;
   height    :       50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
    display: flex;
    align-items   :       center;
    justify-content :      center;
  font-size: 1.5rem;
  font-weight :    700;
    margin: 0 auto 1rem;
}

.step-item h3 {
    font-size: 1.3rem;

	   color: #2c3e50;

	   margin-bottom: 0.8rem;
}

.step-item p     {
               color: #555;
    line-height: 1.6;
}

.thankyou-actions{
  display: flex;
                    gap: 1.5rem;
  justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.primary-action,
.secondary-action {
	   padding: 15px 35px;
    text-decoration: none;
   border-radius :    8px;
    font-weight: 600;
    transition: all 0.3s ease;
   font-size: 1.1rem;

}

.primary-action {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
}

.primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);


}

.secondary-action {
    border: 2px solid #667eea;
  background: white;
   color: #667eea;
}

.secondary-action:hover {
    background:    #667eea;
  color    :   white;
}

.additional-info {
    background: white;
     padding: 2rem;
      border-radius: 10px;
      margin-top: 3rem;
     box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.additional-info h3 {
  font-size:   1.5rem;
    color: #2c3e50;
	margin-bottom: 1rem;
}

.additional-info p {
  color: #555;

	line-height :     1.7;
}

.contact-info-section {
	padding: 60px 20px;
     background    :     #f8f9fa;
}

.contact-info-section h2


{
         font-size: 2.2rem;
   text-align: center;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.contact-details-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
  margin: 0 auto;
}

.contact-detail-item {
    background: white;
	padding: 2rem;
   border-radius: 10px;
   text-align:       center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-detail-item svg {
   stroke-width   :      0;
    margin-bottom: 1rem;
   fill: #667eea;
  stroke: #667eea;
}

.contact-detail-item h3 {
  font-size: 1.4rem;
    color: #2c3e50;
       margin-bottom: 1rem;
	
}

.contact-detail-item p {
   color: #555;
   line-height: 1.7;
}@media (max-width: 768px) {
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .thankyou-message {
        font-size: 1.1rem;
    }
}