* {
  margin: 0;
    padding  :   0;
	box-sizing: border-box;
}

:root {
  --primary: #1e3a5f;
  --secondary: #2563eb;
  --accent: #f59e0b;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #94a3b8;
  --success: #10b981;
  --text-primary: #1e293b;
  --text-light: #475569;
  --border: #e2e8f0;
}

html {
	 scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
    background-color: #ffffff;
}

img {
   max-width: 100%;
   height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
	line-height: 1.3;
  color: var(--dark);
}

h1 {
    font-size: 3.5rem;
   margin-bottom: 1.5rem;
}

h2 {
	font-size   :        2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom : 1rem;
}  

p {
  font-size: 1.1rem;
  color: var(--text-light);
		margin-bottom: 1.5rem;
}

.navbar {
   position: sticky;
   top: 0;
   z-index: 1000;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
}

.navbar-container     {

     max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  align-items: center;
    padding:     0 2rem;}

.navbar-logo img		{
    height: 94px;
   width: auto;
}

.nav-menu {
   display: flex;
  list-style: none;
    gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
	font-weight: 500;
   transition: color 0.3s;
	 position: relative;
}

.nav-link:hover {
  color: var(--secondary);
}

.hamburger {
	display: none;
   flex-direction: column;
  cursor: pointer;
}

.hamburger span {

   width: 25px;
         height: 3px;
  background: var(--text-primary);
   margin: 5px 0;
          transition: 0.3s;


}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-10px, 10px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {

  transform: rotate(45deg) translate(-10px, -10px);


}

.nav-menu.active {

	  display: flex;
}

.hero {
  display: grid;
  grid-template-columns     :     1fr 1fr;
    gap: 3rem;
    align-items: center;
   padding: 5rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
   min-height : 600px;
}

.hero-content h1


{


  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	background-clip: text;
	}

.hero-content p {
      font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
   color: white;
 text-decoration: none;
    border-radius: 8px;
  font-weight   :   600;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.hero-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-mentoring {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   padding    :       5rem 2rem;
   max-width: 1200px;
    margin    : 0 auto;
  align-items: center;

}

.section-content h2 {
  text-align: left;
   margin-bottom: 2rem; 

}

.features-grid {
  display: grid;
  grid-template-columns  :  1fr;
          gap: 1.5rem;
    margin-top: 2rem;
}


.feature-card {
   padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
  border-left: 4px solid var(--secondary);
   border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card h3 {
  color: var(--primary);
   margin-bottom: 0.5rem;
}

.about-image img {
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.fundraising-guide {
    padding     : 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.fundraising-guide h2 {
  margin-bottom: 3rem;
}

.guide-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
         max-width: 1200px;
	margin  :      0 auto;
}

.guide-item {
  background: white;
    padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s, box-shadow 0.3s;
}

.guide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.guide-item img {
    margin-top: 1.5rem;
    border-radius: 8px;
}

.coaching-services {
   padding: 5rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
}

.coaching-services h2 {
  margin-bottom: 3rem;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 2rem;

}

.service-block {
     padding: 2.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
   border-radius: 10px;
	position: relative;
   overflow: hidden;
}

.service-block::before {
  content: '';
      position: absolute;
  top: -50%;
     right: -50%;
  width: 300px;
         height: 300px;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.service-block h3 {

	  position: relative;
    z-index    : 1;
         color: white;
         margin-bottom: 1rem;}

.service-block p {
    position: relative;
   z-index: 1;
  color: rgba(255, 255, 255, 0.9);
}

.webinar-section {
    display: grid;
   grid-template-columns :1fr 1fr;
  gap: 4rem;
   padding: 5rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
    align-items: center;
}

.webinar-content h2 {
   text-align: left;
    margin-bottom: 1.5rem;
}

.webinar-topics {
   display   :      grid;
  grid-template-columns: 1fr;
               gap: 1.5rem;
  margin: 2rem 0;
}



.topic {
    padding:        1.5rem;
   background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.topic h4 {
  color: var(--primary); 
	margin-bottom: 0.5rem;
}

.topic p
{
    margin: 0;
  font-size: 0.95rem;
}

.webinar-cta {
    display: inline-block;
   padding: 1rem 2rem;
  background: var(--accent);
   color: white;
               text-decoration: none;
   border-radius  :     8px;
    font-weight: 600;
  margin-top: 1rem;
    transition: background 0.3s;
}

.webinar-cta:hover {
   background: #d97706;
}

.webinar-image img {

          border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);


}

.transformation-stories {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.transformation-stories h2 
 {
       margin-bottom: 1rem;
	}

.transformation-stories > p {

   text-align: center;
  max-width: 600px;
    margin: 0 auto 3rem;
	} 

.stories-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
    max-width:       1200px;
	 margin: 0 auto;
}

.story {
	padding: 2rem;
    background: white;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-top: 3px solid var(--secondary);
}

.story h3 {
  color: var(--primary);
   margin-bottom: 1rem;
}

.mentors-team	{

    max-width     :      1200px;
   padding: 5rem 2rem;
     margin: 0 auto;
	}

.mentors-team h2 {
  margin-bottom: 1rem;
}

.mentors-team > p {
	text-align:     center;
   max-width: 700px;
   margin     :    0 auto 3rem;
}

.mentors-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.mentor-item {
    padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    border-radius: 10px;
  border-right: 4px solid var(--accent);
	
}

.mentor-item h3 {
  color: var(--primary);
    margin-bottom: 0.5rem; 

}

.mentor-item p {
    margin:      0;
}

.conference-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
     gap: 4rem;
    padding :    5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
   align-items: center;
}

.conference-highlight h2 {
                    text-align: left;
}

.event-cards {
   grid-template-columns: 1fr;
   display: grid;
      margin-top: 2rem;
  gap: 1.5rem;
}

.event-card {

 padding: 1.5rem;
    background: white;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary);


}

.event-card h3 {
  color: var(--primary);
     margin-bottom: 0.5rem;

}

.event-card p {
   margin: 0;
   font-size: 0.95rem;
}

.conference-image img {
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.methodology {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.methodology h2 {
	margin-bottom: 1.5rem;
}

.methodology > p		{
    text-align   :       center;
    max-width: 700px;
  margin: 0 auto 3rem; 

}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.step {
   padding: 2rem;
    background: white;
    border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.step h3 {
  color: var(--secondary);
          margin-bottom: 1rem;
}

.step p {

	         margin: 0;
    font-size: 0.95rem; 
	
}

#contact {


   padding: 5rem 2rem;
  max-width: 800px;
   margin: 0 auto;
	}

#contact h2 
 {
    margin-bottom: 1rem;
}

#contact > p {
  text-align: center;
    margin-bottom: 2rem;
}

.contact-form {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);

    padding:        3rem;

  border-radius: 12px;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 1.5rem;
    display: flex;
   flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary); 

}

.form-group input,
.form-group select,
.form-group textarea {

  padding: 0.75rem;
  border: 1px solid var(--border);
   border-radius:  6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s, box-shadow 0.3s;

}  

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.submit-btn {
    padding: 1rem 2rem;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  color: white;
          border: none;
  border-radius: 8px;
	font-weight: 600;
    font-size: 1rem;
   cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
                    width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.legal-info {
  padding: 3rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  text-align: center;
}

.legal-content h2    {
   margin-bottom: 1rem;
  font-size: 1.5rem;
}

.legal-content p    {
  margin-bottom: 1.5rem;
}

.legal-links {
    display: flex;
  justify-content: center;
  gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
  color: var(--secondary);
    text-decoration: none;
   font-weight    :   500;
    transition: color 0.3s;
}

.legal-link:hover {
  color: var(--primary);
    text-decoration: underline;
}

.footer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin  :       0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr 1fr;
   gap  :3rem;
  margin-bottom: 2rem;
}

.footer-logo    {
    height: 136px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-contact h3,
.footer-links h3  
  {
   font-size: 1.1rem;
    margin-bottom: 1rem;

}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
          margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
   transition: color 0.3s;
}

.footer-links a:hover   {

	  color: var(--accent);


}

.footer-bottom {
   text-align    :    center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .navbar-logo img {
    height: 60px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: -100%;
    flex-direction: column;
    background: var(--light);
    width: 100%;
    text-align: left;
    transition: 0.3s;
    padding: 2rem;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .about-mentoring {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .services-wrapper {
    grid-template-columns: 1fr;
  }

  .webinar-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .webinar-content h2 {
    text-align: center;
  }

  .conference-highlight {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .conference-highlight h2 {
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem 1rem;
  }

  #contact {
    padding: 3rem 1rem;
  }
}@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  p {
    font-size: 0.95rem;
  }

  .navbar-container {
    padding: 0 1rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    display: block;
    text-align: center;
    padding: 0.75rem 1.5rem;
  }

  .section-content h2 {
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .mentors-list {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .footer-logo {
    height: 80px;
  }
}.services-hero {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
   text-align    : center;
}

.services-hero-content h1 {

	  color    :  white;
  margin-bottom: 1rem;


}

.services-hero-content p {
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
    margin: 0 auto;
   font-size: 1.2rem;


}


.services-overview {

   padding: 3rem 2rem;
  background: var(--light);
	}

.overview-container {
  text-align: center;
  max-width: 1200px;
    margin: 0 auto;
}

.overview-container h2 {
    margin-bottom: 1rem;
}

.overview-container > p {
   max-width: 700px;
    margin: 0 auto 2.5rem;
}

.services-tabs {
   display: flex;
  justify-content: center;
   gap: 1rem;
	flex-wrap: wrap;
   margin-top: 2rem;
}

.tab-button   {
               padding: 0.75rem 1.5rem;
  border: 2px solid var(--border);
    background   :white;
  color: var(--text-primary);
    border-radius: 8px;
	cursor  :        pointer;
   font-weight: 600;
   transition   :  all 0.3s;
}

.tab-button:hover {
  border-color: var(--secondary);
  color: var(--secondary);
}

.tab-button.active {
  background: var(--secondary);
    color: white;
  border-color: var(--secondary);
}

.main-services {
    max-width: 1200px;
	 margin: 0 auto;
                    padding: 4rem 2rem;
}

.services-container {
   display: grid;
   gap: 4rem;
}

.service-detailed {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
    padding: 2rem;
  background: var(--light);
    border-radius     :     12px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detailed:nth-child(even) {

  grid-template-columns: 1fr 1fr;
   direction: rtl;
	}

.service-detailed:nth-child(even) > * {
   direction: ltr;
}

.service-visual img {
       border-radius   : 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    width: 100%;

}

.service-info h2 {


  text-align    :       left;
   margin-bottom: 1.5rem;
  color: var(--primary);
	}

.service-info p {
	 text-align: justify;
    margin-bottom: 1.5rem;
}

.service-features {
   display: grid;
		grid-template-columns: 1fr;
	  gap :       1.5rem;
	   margin-top: 1.5rem;
}

.feature-item {
  padding: 1.5rem;
  background: white;
  border-left: 4px solid var(--accent);
   border-radius: 8px;
}

.feature-item h3 {
  color: var(--secondary);
   margin-bottom: 0.75rem;
   font-size: 1.1rem;
}

.feature-item ul {
         list-style : none;
                    margin  :   0;
   padding: 0;
}

.feature-item li {
  padding: 0.4rem 0;
  color: var(--text-light);
    position: relative;
  padding-left: 1.5rem;
}


.feature-item li::before {
  content: '✓';
	 position: absolute;
    left: 0;
  color: var(--success);
    font-weight: bold;
}

.feature-item p {
   margin: 0;
    font-size: 0.95rem;
}

.accelerator-program {
    padding: 4rem 2rem;
   max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  border-radius: 12px;
    margin: 2rem auto;
}

.accelerator-program h2 {
  margin-bottom: 1rem;
}

.accelerator-program > p {
       text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.accelerator-phases {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
  margin-bottom: 3rem;
}

.phase {
    padding: 2rem;
   background: white;
  border-radius: 10px;
  border-top: 4px solid var(--secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.phase h3 {
  color: var(--primary);
     margin-bottom: 1rem;
}

.phase p {
    margin: 0;
  color: var(--text-light);
}

.accelerator-benefits {
	margin: 3rem 0;
}

.accelerator-benefits h3 {
   text-align: center;
    margin-bottom: 2rem;
  color: var(--primary);
}

.benefits-grid {
     display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

   gap: 1.5rem;
}

.benefit  
  {
  padding: 1.5rem;
   background: white;
   border-radius: 8px;
  border: 1px solid var(--border);
}

.benefit strong {
	  color: var(--secondary); 
  display:        block; 
	margin-bottom: 0.5rem; 
   font-size: 1.1rem;


}

.benefit p {
    margin: 0;
  font-size: 0.95rem;
}

.accelerator-apply {

	  text-align: center;
   margin-top     :   2rem;
     }

.apply-button {
 display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    color: white;
  text-decoration: none;
	border-radius: 8px;
   font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.apply-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.pricing-comparison {
   padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-comparison h2  {
	 margin-bottom: 2rem;

}

.pricing-table {
  overflow-x: auto;
}

.pricing-table table {
   width: 100%;
	border-collapse: collapse;
  background: white;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-table thead {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.pricing-table th,
.pricing-table td {
  padding: 1.5rem;
    text-align: left;
  border-bottom: 1px solid var(--border);
}

.pricing-table tbody tr:hover {
   background-color: #f8f9fa;
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.why-choose-us {
   padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us h2 {
  margin-bottom: 2rem;
}

.reasons-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.reason {
    padding: 2rem;
   background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--secondary);
   transition   : transform 0.3s;


}

.reason:hover

{
  transform: translateY(-5px);
}

.reason h3 {
  color: var(--primary);
   margin-bottom: 1rem;
}

.reason p {
   margin: 0;
  color: var(--text-light);
}

.thankyou-container {
    max-width: 900px;
  margin: 0 auto;
   padding: 4rem 2rem;
    min-height: 600px;
}

.thankyou-content {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem;
	 border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);


}

.success-icon {
   text-align: center;
   margin-bottom: 2rem;
  color: var(--success);
    animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}.thankyou-content h1 {
  text-align: center;
  color: var(--primary);
   margin-bottom: 1.5rem;
}

.thankyou-message {
	    text-align: center;
  background: linear-gradient(135deg, var(--success) 0%, #059669 100%);
   color: white;
        padding   :2rem;
  border-radius: 10px;
   margin-bottom: 2rem;
}

.thankyou-message p {
    margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.95);
}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.confirmation-details		{
  margin-bottom: 2rem;
}

.confirmation-details h2 {
  color: var(--primary);
  font-size: 1.5rem;
   margin-bottom  :        1.5rem;
   text-align: center;
}

.details-box {
         background: white;
         padding: 2rem;
   border-radius  :10px;
  border-left: 4px solid var(--secondary);
}

.detail-row {
   display     : grid;
   grid-template-columns: 150px 1fr;
      padding: 1rem 0;
  border-bottom: 1px solid var(--border);
    align-items: center;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
   font-weight: 600;
  color: var(--text-primary);
}

.detail-value   {
  color: var(--text-light);
}

.next-steps {
   margin-bottom: 2rem;
}

.next-steps h2 {


  color: var(--primary);
	 font-size: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
     }

.steps-list {
    display: grid;
                    gap     :        1.5rem;
}

.step-item {
   display: grid;
   grid-template-columns: 80px 1fr;
    gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius :  10px;
  border-top: 3px solid var(--accent);
}

.step-number {
   width: 60px;
      height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
				 color: white;
   border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
   font-weight: 700;
               font-size: 1.5rem;
}

.step-content h3 {
  color: var(--primary);

    margin-bottom: 0.5rem;
}

.step-content p {

	   margin :      0;
  color: var(--text-light);
}

.additional-info {
    margin-bottom: 2rem;
}

.additional-info h2 {
  color: var(--primary);
               font-size     : 1.5rem;
   text-align: center;
  margin-bottom: 2rem;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
}

.resource-card

{
       padding: 1.5rem;
    background: white;
        border-radius: 10px;
  border: 1px solid var(--border);
   text-align: center;
  transition: transform 0.3s;

}

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-card h3 {
  color: var(--secondary);
   margin-bottom: 0.5rem;
}

.resource-card p {

		margin-bottom: 1rem;
 font-size: 0.95rem;


}

.resource-link {
  display: inline-block;
  color: var(--secondary);
  text-decoration: none;
   font-weight: 600;
   transition: color 0.3s;
}

.resource-link:hover {
  color: var(--primary);
	text-decoration: underline;
}

.cta-return {


  text-align: center;
   padding: 2rem;
  background: linear-gradient(135deg, #f0f4f8 0%, #e0e7ff 100%);
   border-radius: 10px;
   margin-bottom: 2rem;
     }

.cta-return p {
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.return-button,
.services-button {
   display: inline-block;
  margin: 0 0.5rem;
   padding: 0.75rem 2rem;
    border-radius: 8px;
   text-decoration: none;
        font-weight: 600;
  transition: all 0.3s;
}

.return-button {
  background: var(--secondary);
	color: white;
}

.return-button:hover
{
  background: var(--primary);
  transform: translateY(-2px);
}

.services-button {
   background: white;
  color: var(--secondary);
  border: 2px solid var(--secondary);

}

.services-button:hover {
  background: var(--secondary);
  color: white;
}  

.support-box {
               padding: 2rem;
    background: white;
   border-radius: 10px;
  border-left: 4px solid var(--accent);
   text-align: center;
}

.support-box h2 {
  color: var(--primary);
  font-size: 1.3rem;
   margin-bottom: 1rem;
}

.support-box p {
 margin-bottom: 0.5rem;
  color: var(--text-light);


}@media (max-width: 768px) {
  .services-hero {
    padding: 3rem 1rem;
  }

  .services-hero-content h1 {
    font-size: 1.75rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .service-detailed {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detailed:nth-child(even) {
    direction: ltr;
  }

  .service-detailed:nth-child(even) > * {
    direction: ltr;
  }

  .accelerator-phases {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 1rem;
  }

  .detail-row {
    grid-template-columns: 120px 1fr;
    font-size: 0.95rem;
  }

  .step-item {
    grid-template-columns: 1fr;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    order: 2;
  }

  .step-content {
    order: 1;
  }

  .return-button,
  .services-button {
    display: block;
    margin-bottom: 0.75rem;
    width: 100%;
  }

  .thankyou-content {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-overview {
    padding: 2rem 1rem;
  }

  .services-tabs {
    gap: 0.5rem;
  }

  .tab-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .main-services {
    padding: 2rem 1rem;
  }

  .service-detailed {
    padding: 1rem;
  }

  .service-features {
    gap: 1rem;
  }

  .feature-item {
    padding: 1rem;
  }

  .accelerator-program {
    padding: 2rem 1rem;
  }

  .pricing-comparison {
    padding: 2rem 1rem;
  }

  .pricing-table table {
    font-size: 0.85rem;
  }

  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
  }

  .why-choose-us {
    padding: 2rem 1rem;
  }

  .thankyou-container {
    padding: 2rem 1rem;
  }

  .thankyou-content {
    padding: 1rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }
}.policySection {
  padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
	min-height: 600px;
}

.policyContainer {
  max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.policyContainer h1 {
    font-size: 3rem;
  color: var(--primary);
   margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.policyContainer h2 {
  font-size: 1.75rem;
  color: var(--primary);
    margin-top: 2.5rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
  line-height: 1.3;
   position: relative;
  padding-bottom: 0.75rem;
}

.policyContainer h2::after {
	  content: '';
  position : absolute;
	bottom     :      0;
  left: 0;
    width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
   border-radius: 2px;


     }

.policyContainer p {
  color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align    :       justify;
}

.policyContainer p:last-of-type {
   margin-bottom: 0;
}@media (max-width: 1024px) {
  .policySection {
    padding: 70px 1.5rem;
  }

  .policyContainer h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .policyContainer h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .policySection {
    padding: 60px 1rem;
  }

  .policyContainer {
    max-width: 100%;
  }

  .policyContainer h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .policyContainer h2 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .policyContainer p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .policySection {
    padding: 50px 1rem;
    min-height: auto;
  }

  .policyContainer h1 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }

  .policyContainer h2 {
    font-size: 1.15rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
  }

  .policyContainer h2::after {
    width: 50px;
  }

  .policyContainer p {
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
  }
}