* {
	   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     :     #ffffff;
	}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position   :   fixed;
   top: 0;
    width     : 100%;
   z-index: 1000;
	border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);


}

.nav-container
	{
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
    display: flex;
    justify-content: space-between;
   align-items: center;
  height: 70px; 

}

.brand-logo {
  height: 45px;
   width :  auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu li a {
    text-decoration: none;
   color    :        #333;
        font-weight: 500;
    transition: color 0.3s ease;
	position   :relative;
}

.nav-menu li a:hover {
  color: #2563eb;
} 

.nav-menu li a::after {
  content: '';
        position: absolute;
	width: 0;
    height: 2px;
    bottom   :   -5px;
  left   :    0;
    background-color: #2563eb;
  transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-line {
  width: 25px;
    height: 3px;
    background: #333;
   transition: all 0.3s ease; 
	
}

.hero-section {
  margin-top: 70px;
    padding  :    80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
        display: grid;
   gap: 60px;
  grid-template-columns: 1fr 1fr;
	align-items: center;
    margin: 0 auto;
	max-width:     1200px;
}

.hero-text h1 
 {
    font-size: 3.2rem;

   font-weight: 700;

    margin-bottom: 24px;

   color: #1e293b;

    line-height: 1.2;
}

.hero-text p {
   font-size: 1.2rem;
	color: #64748b;
  margin-bottom: 40px;
       line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.primary-btn, .secondary-btn {
    padding: 16px 32px;
   text-decoration:      none;
  border-radius: 8px;
  font-weight    :600;
   transition    :     all 0.3s ease;
   display: inline-block;
}

.primary-btn {
   background: #2563eb;
   color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3); 
	
}

.primary-btn:hover {
		 background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
    background: transparent;
  color  : #2563eb;
  border: 2px solid #2563eb;


}

.secondary-btn:hover {
	background: #2563eb;
               color: white;
  transform: translateY(-2px);
}

.hero-image img {
    width: 100%; 
   border-radius: 16px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.features-overview {
   padding: 100px 20px;
    background: white;
	
}

.container {
    max-width: 1200px;
   margin  :        0 auto;
}

.features-overview h2 {
	    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 60px;
  color: #1e293b;

}

.features-grid 
 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
   background: #f8fafc;
    padding   :      40px 30px;
   border-radius: 12px;
    text-align    : center;
	border: 1px solid #e2e8f0;
  transition : transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.feature-card h3 {
	   font-size: 1.5rem;
  margin-bottom: 16px;
  color: #2563eb;
} 

.feature-card p {
   color: #64748b;
  line-height: 1.6;

}

.transformation-process {
	 padding: 100px 20px;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
}


.process-content {
	 gap: 60px;
    align-items: center;
   display: grid;
      grid-template-columns: 1fr 1fr;
}

.process-text h2 {
    font-size: 2.5rem;
	margin-bottom     :24px;
}

.process-text p {
    font-size:  1.1rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.process-steps {
  list-style: none;
}

.process-steps li {
  position: relative;
                    padding-left: 30px;
    margin-bottom: 16px;
    opacity: 0.9;
}

.process-steps li::before {
  content: '✓';
   position: absolute;
  left: 0;
  color   :    #22c55e;
  font-weight     :        bold;
}

.process-image img {
  width: 100%;
   border-radius: 16px;
}

.services-showcase {
   padding :100px 20px;
   background: white;
}

.services-showcase h2 {
    text-align: center;
   font-size   :      2.5rem;
  margin-bottom: 60px;
    color: #1e293b;
}

.services-layout {
    display: flex;
    flex-direction: column;
  gap: 60px;
}

.service-item {
	 display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 50px;
                    align-items: center;
}

.service-item:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.service-item:nth-child(even) .service-content {
   order: -1;


}

.service-item img {


  width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);}

.service-content h3 {
   font-size: 1.8rem;
     margin-bottom: 20px;
  color: #2563eb;
}

.service-content p  
  {
	  color: #64748b;
                    line-height: 1.7;
   font-size :1.05rem;

}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
   text-align: center;
	color: white; 

}

.cta-content h2 {
   	font-size: 2.8rem;
   margin-bottom: 20px;
	}

.cta-content p {
   font-size: 1.2rem;
  margin-bottom: 40px;
     opacity: 0.9;
}

.cta-button {
      display: inline-block;
 padding: 18px 40px;
   background: white;
   color: #2563eb;
 text-decoration     :  none;
    border-radius: 8px;
	font-weight    :  600;
    transition    :       all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.2);


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.contact-section   {
   padding: 100px 20px;
   background   :   #f8fafc;
}

.contact-section h2 {
  text-align: center;
  font-size: 2.5rem;
   margin-bottom: 60px;
    color: #1e293b;
}

.contact-form {
	   max-width: 600px;
            margin:   0 auto;
       background: white;
      padding: 50px;
     border-radius: 16px;
     box-shadow: 0 20px 50px rgba(0,0,0,0.1);}

.form-group {
  margin-bottom: 24px;
}

.form-row {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
   color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
    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: #2563eb;
}

.submit-btn		{
  width: 100%;
   padding: 16px;
	background: #2563eb;
    color: white;
  border: none;
    border-radius: 8px;
  font-size: 16px;
    font-weight: 600;
	cursor     :      pointer;
   transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1d4ed8;
}

.main-footer {
    background: #1e293b;
    color: white;
   padding :        60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
}

.footer-content {

  display: grid;
          grid-template-columns: auto 1fr;
    gap: 60px;
   margin-bottom: 40px; 

     }

.footer-logo {
    height   :  50px;
  filter: brightness(0) invert(1);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap  :   40px;
}

.footer-section h4 {
  margin-bottom: 16px;
  color: #2563eb;
}


.footer-section ul {


    list-style  :  none;
	
	}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
          color: #cbd5e1;
    text-decoration: none;
   transition: color 0.3s ease;


}

.footer-section ul li a:hover {
        color: white;
}

.footer-section p {
  color: #cbd5e1;
                    margin-bottom: 4px; 
	
}

.footer-bottom {
   text-align    : center;
  padding-top: 20px;
	border-top: 1px solid #334155;
    color: #94a3b8;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(rgba(30, 41, 59, 0.8), rgba(51, 65, 85, 0.8)), 
                url('../mockups/startup_mindset_corporate_workshop_4.webp') center/cover;
  height: 60vh;
   display: flex;
  align-items: center;
   margin-top: 70px;
    position: relative;
}

.hero-overlay     {
   width: 100%;
    height: 100%;
  display: flex;
   align-items: center;
}

.about-hero-content {
   color: white;
   text-align: center;
   max-width: 800px;
    margin: 0 auto;
}

.about-hero-content h1 {
   font-size: 3rem;
          margin-bottom: 24px;
  font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
	   opacity: 0.95;
		line-height: 1.6;
}

.company-story {
   background: white;
                    padding: 100px 20px;
}

.story-layout {
  display: grid; 
   grid-template-columns: 1fr 1fr; 
  gap: 60px; 
 align-items:center;
}

.story-content h2 {
  font-size: 2.5rem;
   margin-bottom: 30px;
   color: #1e293b;
}

.story-content p {
	    font-size: 1.1rem;
    line-height: 1.7;
   color: #64748b;
    margin-bottom :        20px;
	}


.company-stats {
   display     :  grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
   margin-top  :        40px;
}

.stat-item {


   text-align  :  center;
   padding: 20px;
   background: #f8fafc;
  border-radius: 12px;

}

.stat-number {
    display: block;
    font-size: 2.5rem;
     font-weight: 700;
   color: #2563eb;
    margin-bottom :      8px;
}

.stat-label {
  font-size: 0.95rem;
	color: #64748b;
  font-weight: 500;
}

.story-image img {
    width: 100%;
    border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.methodology-section {
    padding: 100px 20px;
    background: #f8fafc;
}

.methodology-section h2 {
   text-align: center;
       font-size: 2.5rem;
   margin-bottom: 60px;
  color: #1e293b;
}

.methodology-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.methodology-card {
  background: white;
  padding: 40px 30px;
    border-radius: 16px;
    position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease; 

}

.methodology-card:hover {
  transform: translateY(-10px);
}

.methodology-icon {
    width: 60px;
  height: 60px;
   background: #2563eb;
         color: white;
	border-radius: 50%;
               display: flex;
    align-items: center;
   justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
  margin-bottom    :      20px;
}

.methodology-card h3
	{
   font-size: 1.4rem;
   margin-bottom     :  16px;
  color: #1e293b;
}

.methodology-card p {
   color: #64748b;
  line-height: 1.6;
}

.expertise-areas    {
	padding: 100px 20px;
  background: white;
	
}

.expertise-areas h2 {
     text-align: center;
   font-size: 2.5rem;
   margin-bottom: 60px;
    color: #1e293b; 
	


}

.expertise-content {
	display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.expertise-list {
	        display: flex;
   flex-direction: column;
   gap: 30px;
}

.expertise-item {
    padding: 30px;
   border-left: 4px solid #2563eb;
   background: #f8fafc;
       border-radius: 0 12px 12px 0;
}

.expertise-item h3 {
    font-size: 1.3rem;
   margin-bottom: 12px;
         color: #2563eb;
}

.expertise-item p {
     color: #64748b;
    line-height: 1.6;
     }

.expertise-image img {
   width: 100%;
   border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.team-philosophy {
   padding: 100px 20px;

  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);

   color: white;
}

.philosophy-layout     {
   display :  grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items: center;
}

.philosophy-content h2 {
	  font-size: 2.5rem;
         margin-bottom: 30px;
     }

.philosophy-content > p {
    font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom     :        40px;
}

.philosophy-principles    {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.principle-item h4 {
  margin-bottom: 10px;
   color: #22c55e;
  font-size: 1.2rem;
}

.principle-item p {
 opacity: 0.9;
   line-height   :      1.6;
}

.philosophy-image img {
  width: 100%;
	border-radius: 16px;
}

.results-showcase {
	 padding: 100px 20px;
  background: #f8fafc;
	
}  

.results-showcase h2 {
  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 60px;
   color   : #1e293b;
}

.results-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));

          gap: 40px;
}

.result-card {
   background:      white;
 border-radius     :16px;
   overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.result-card:hover {
  transform: translateY(-8px);
     }

.result-card img {

   width   :100%;
    height: 250px;
  object-fit: cover;


} 

.result-content {

   padding: 30px;
}

.result-content h3 {
   font-size: 1.4rem;
    margin-bottom: 16px;
   color: #2563eb;
}

.result-content p {
	 color: #64748b;
  line-height: 1.7;
}

.values-mission {
 padding    :100px 20px; 
    background: white;


}

.values-content {
  display:    grid;
   grid-template-columns :    1fr 1fr;
   gap: 80px;
}

.mission-block h2,
.values-block h2 {


    font-size: 2.2rem;
   margin-bottom: 30px;
	color: #1e293b;
}

.mission-block p {
    font-size: 1.2rem;
    line-height: 1.7;
	color  :       #64748b;
}

.values-list {
    list-style: none;
   padding-left: 0;
}

.values-list li {
	   padding     :     16px 0;
   border-bottom: 1px solid #e2e8f0;
  font-size    :1.1rem;
   color: #64748b;
          position: relative;
   padding-left: 30px;}

.values-list li::before {
  content: '→';
	position:  absolute;
	left: 0;
    color: #2563eb;
  font-weight: bold;
}

.values-list li:last-child
{
             border-bottom: none;
}

.thankyou-main {
   margin-top: 70px;
  padding    :80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 70vh;}

.thankyou-content


{
  max-width: 900px;
	margin   :   0 auto;
    text-align: center;
}

.success-icon {
   margin-bottom: 40px;
}

.checkmark-circle {
   width: 120px;
  height: 120px;
   border-radius: 50%;
  background: #22c55e;
  display: flex;
    align-items: center;
   justify-content: center;
        margin: 0 auto;
  position: relative;
    animation   : checkmarkBounce 0.6s ease-out;
}

.checkmark {
   width: 24px;
			height: 48px;
  border: solid white;
  border-width    :        0 6px 6px 0;
  transform: rotate(45deg);
}

@keyframes checkmarkBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.thankyou-content h1 {


   font-size: 3rem;
   margin-bottom: 30px;
   color: #1e293b;
    font-weight: 700; 
	

}

.primary-message {
	   font-size: 1.3rem;
  color: #64748b;
  margin-bottom: 60px;
  line-height: 1.6; 



}

.next-steps {
    background: white;
    padding:   50px 40px;
    border-radius: 16px;
		 margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.next-steps h2 {
    font-size: 2.2rem;
          margin-bottom: 40px;
  color: #1e293b;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
	text-align: left;
}

.step-item {
  display: flex;
   gap    : 20px;
   align-items: flex-start;
}

.step-number {
    width: 40px;
               height: 40px;
    background: #2563eb;
   color: white;
   border-radius    :     50%;
    display: flex;
   align-items:     center;
    justify-content: center;
   font-weight: 700;
   flex-shrink: 0;
}

.step-content h3 {
       font-size: 1.2rem;
  margin-bottom: 10px;
    color: #2563eb;
}

.step-content p {
        color: #64748b;
	line-height: 1.6;
}

.additional-resources {
  margin-bottom :        60px;
}

.additional-resources h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
   color: #1e293b;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
   text-align: left;
}

.resource-card {
   background    :   white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {


  width: 100%;
    height: 200px;
	object-fit     :    cover;
	}

.resource-content {
  padding: 30px;
}

.resource-content h3 {
    font-size: 1.3rem;
   margin-bottom: 16px;
   color: #2563eb;
}

.resource-content p {
   color: #64748b;
	line-height   :     1.6;
   margin-bottom: 20px;
}

.resource-link {
          color: #2563eb;
  text-decoration: none;
   font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.resource-link:hover {
    border-color  :        #2563eb;
}

.contact-reminder	{
         background: white;
	padding: 40px;
    border-radius: 16px;
    margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-reminder h2 {
  font-size: 1.8rem;
    margin-bottom: 16px;
  color: #1e293b;
}

.contact-reminder p {
    margin-bottom: 20px;
    color: #64748b;
}


.urgent-contact {
    display: flex;
    justify-content: center;
}

.phone-number {
   font-size: 1.5rem;
  font-weight: 600;
	 color: #2563eb;
    padding  :    12px 24px;
  background    :  #f1f5f9;
   border-radius: 8px;
   border: 2px solid #2563eb;
}

.return-actions {
  display: flex;
     gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .next-steps {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .methodology-card,
    .next-steps,
    .contact-reminder {
        padding: 30px 20px;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   max-width: 800px;
        margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
   font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {
          color: #7f8c8d;
       font-size: 1.1rem;
     line-height  :    1.7;
   	 margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}