*     {
   margin: 0;
                    padding: 0;
	box-sizing: border-box;

}

html {
  scroll-behavior: smooth;
}

:root {
    --primary: #2d5a7b;
    --secondary: #4a90a4;
    --accent: #e74c3c;
    --light-bg: #f5f7fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --border: #ecf0f1;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
   line-height: 1.6;
  background: var(--white);
	
}

.navigation {
  background: var(--primary);
   padding: 1rem 2rem;
  position: sticky;
    top: 0;
   z-index    :    999;
  box-shadow: var(--shadow);
}

.nav-container     {
    max-width: 1200px;
    margin: 0 auto;
  display: flex;
    justify-content: space-between;
	align-items: center;
}

.nav-brand img {
          height: 94px;
	width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
  list-style: none;
    gap: 2rem;
}

.nav-menu a {
  color: var(--white);
   text-decoration: none;
      font-weight: 500;
    transition: all 0.3s ease;
   padding: 0.5rem 1rem;
  border-radius: 4px;
	
}

.nav-menu a:hover


{
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.burger-menu {
   display: none;
  flex-direction: column;
    background: none;
   border: none;
  cursor: pointer;
    gap: 5px;
}

.burger-menu span	{
	width: 25px;
   height: 3px;
  background: var(--white);
   border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2)	{


	opacity: 0;


}


.burger-menu.active span:nth-child(3) 
 {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
    }
}.hero {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
   max-width  :       1200px;
  margin: 4rem auto;
	padding: 0 2rem;
    min-height: 500px;
}

.hero-content h1 {
  font-size: 3.5rem;
  color: var(--primary);
   margin-bottom    :1rem;
  line-height: 1.2;
}
/* NOTE: keep for legacy support */

.hero-content p

{
  font-size: 1.1rem;
  color: var(--text-light);
   margin-bottom: 2rem;
      line-height: 1.8;
}

.hero-image img {
    width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: var(--shadow-lg);
    object-fit :   cover;
}

.cta-button {
   display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: 6px;
  text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.cta-button:hover {

   background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
	}
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero {
        min-height: auto;
    }
}.benefits {
  background: var(--light-bg);
  padding: 4rem 2rem;
   margin: 3rem 0;
}

.section-header {
     text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
  color: var(--text-light);
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;

}

.benefit-card {
  background: var(--white);
    padding: 2rem;
    border-radius: 10px;
  box-shadow: var(--shadow);
   transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
    font-size: 2.5rem;
   font-weight: bold;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.benefit-card h3 {
   font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.benefit-card p {
  color: var(--text-light);
    line-height: 1.8;
}

.service-preview {
    padding: 4rem 2rem;
    max-width: 1200px;
  margin: 0 auto;
}

.service-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}



.service-text h2 {
    font-size: 2.5rem;
  color: var(--primary);
	 margin-bottom: 1.5rem;
}

.service-text p {
  color: var(--text-light);
   margin-bottom    : 1.5rem;
	line-height: 1.8;
}

.service-list {
  list-style: none;
   margin: 2rem 0;
}

.service-list li {
    padding: 0.8rem 0;
   padding-left: 2rem;
  color: var(--text-dark);
    position: relative;
  line-height: 1.6;
}

.service-list li:before {


  content: '✓';
  position: absolute;
   left: 0;
  color: var(--accent);
  font-weight: bold;
   font-size: 1.3rem;
     }

.service-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
    object-fit: cover;
}@media (max-width: 1024px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-text h2 {
        font-size: 2rem;
    }
}.workshops {
  background: var(--light-bg);

	    padding: 4rem 2rem;

	    margin: 3rem 0;
}

.workshops h2 {
               text-align: center;
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
} 

.section-intro {
    text-align: center;
   font-size: 1.1rem;
  color: var(--text-light);
   max-width: 700px;
  margin: 0 auto 3rem;
   line-height   :       1.8;
}

.workshops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :       2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.workshop-item
	{
  background: var(--white);
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent);
               transition: all 0.3s ease;
}

.workshop-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.workshop-number {


   display: inline-block;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
   border-radius: 50%;
  display: flex;
 align-items: center;
   justify-content: center;
    font-weight:bold;
    font-size: 1.5rem;
  margin-bottom: 1rem;}

.workshop-item h3 {
    font-size: 1.3rem;
  color: var(--primary);
   margin-bottom: 1rem;
}

.workshop-item p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
    line-height: 1.8;
}

.workshop-duration {
    display: block;
    font-size: 0.9rem;
  color: var(--secondary);
    font-weight: 600;


}

.webinars {
  padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.webinar-header {
    text-align    :center;
	margin-bottom: 3rem;
}

.webinar-header h2 {
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.webinar-header p {
    font-size: 1.1rem;
  color: var(--text-light);
                    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.webinar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items     :        center;
}

.webinar-image img
{
   width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow-lg);
    object-fit: cover;
}

.webinar-topic {
  background: var(--light-bg);
   padding: 1.5rem;
  border-radius: 8px;
    margin-bottom: 1.5rem;
}

.webinar-topic h3 {

	  color: var(--primary);
   font-size: 1.2rem;
   margin-bottom    :        0.8rem;
	}

.webinar-topic p {
  color: var(--text-light);
  margin-bottom: 0.8rem;
   line-height: 1.7;
}

.webinar-speaker {
   font-style: italic;
  color: var(--secondary);
  font-weight: 600;
}

.cta-button-secondary {
     display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 0.8rem 2rem;
	border-radius: 6px;
  text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
  margin-top    :       1rem;
}

.cta-button-secondary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}@media (max-width: 1024px) {
    .webinar-content {
        grid-template-columns: 1fr;
    }
}.conference {
  background: var(--light-bg);
  padding  :   4rem 2rem;
   margin: 3rem 0;
}

.conference h2 {

	               text-align: center;
  font-size: 2.8rem;
  color: var(--primary);
    margin-bottom: 1rem;
}

.conference-intro {
  text-align: center;
    font-size: 1.1rem;
  color: var(--text-light);
   max-width: 700px;
  margin: 0 auto 3rem;
    line-height: 1.8;
}

.conference-details {
    margin: 0 auto;
  display: grid;
      gap: 3rem;
    max-width: 1200px;
  align-items: center;
  grid-template-columns:1fr 1fr;
}

.conf-info h3 {
  font-size: 1.8rem;
  color: var(--primary);
   margin-bottom: 1.5rem;
}

.conf-item {
  display: grid;
   grid-template-columns: 150px 1fr;
  gap: 1rem;
  margin-bottom:   1.2rem;
    padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);


}

.conf-label {
   font-weight: 600;
  color: var(--primary);
}

.conf-value {
  color: var(--text-light);}

.conf-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
   object-fit: cover;
}@media (max-width: 1024px) {
    .conference-details {
        grid-template-columns: 1fr;
    }
}.transformation	{
  margin: 0 auto;
    padding: 4rem 2rem;
  max-width: 1200px;
}

.transformation h2 {
	   text-align: center;
    font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;

}

.transformation-intro {
    text-align     :     center;
  font-size: 1.1rem;
  color: var(--text-light);
   max-width    :700px;
   margin: 0 auto 3rem;
  line-height    :  1.8;

}

.transformation-stories {
  display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.story {
  background: var(--white);
   padding:     2rem;
   border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.story:hover {
  box-shadow: var(--shadow-lg);


} 

.story h3 {
  color: var(--primary);
   font-size: 1.2rem;
   margin-bottom     :1rem;
}

.story p {
  color: var(--text-light);
	line-height  :     1.8;
    margin-bottom: 1rem;
}

.story-author {
	 font-weight: 600;
  color: var(--secondary);
    font-style: italic;
}

.expertise 
 {
     background: var(--light-bg);
  padding: 4rem 2rem;
        margin: 3rem 0;
}

.expertise-content {
       display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    max-width :      1200px;
  margin: 0 auto;
	align-items: center;}

.expertise-text {
  color: var(--text-light);
	line-height :    1.8;

}

.expertise-text p {

  margin-bottom: 1.5rem;
   font-size: 1rem;}

.expertise-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.expertise-item


{


  background: var(--white);
	padding: 1.2rem;
   border-radius: 6px;
  border-left: 3px solid var(--accent);
  color: var(--text-dark);
   font-size: 0.95rem;
    line-height: 1.6;
     }

.expertise-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;}@media (max-width: 1024px) {
    .expertise-content {
        grid-template-columns: 1fr;
    }
}.pricing  
  {
  padding: 4rem 2rem;
    max-width    :    1200px;
    margin: 0 auto;
}

.pricing h2 {
      text-align: center;
   font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.pricing-intro {
   text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
   max-width: 700px;
   margin: 0 auto 3rem;
   line-height: 1.8;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   : 2rem;
}

.pricing-card {
  background: var(--white);
    padding: 2rem;
   border-radius: 10px;
  box-shadow: var(--shadow);
    transition: all 0.3s ease;
   position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute; 
  top: -12px; 
  left: 20px; 
  background: var(--accent); 
  color: var(--white); 
    padding: 0.4rem 1rem; 
   border-radius: 4px; 
  font-size : 0.8rem; 
    font-weight: bold;
}

.pricing-card h3 {
  font-size: 1.5rem;
  color: var(--primary);
    margin-bottom: 1rem;
     margin-top: 0.5rem;
}

.price {
     display: flex;
   flex-direction: column;
   margin-bottom: 1rem;
}

.amount {
   font-size: 2.5rem;
  font-weight: bold;
  color: var(--accent);
}

.period {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.price-description {


  color: var(--text-light);
    font-size: 0.95rem;
   margin-bottom: 1.5rem;
	}

.price-features {
    list-style :      none;
          margin-bottom: 1.5rem;
}

.price-features li {
   padding: 0.6rem 0;
  padding-left: 1.5rem;
  color: var(--text-dark);
    position: relative;
    font-size: 0.95rem;
}


.price-features li:before {
  content: '✓';
   position: absolute;
      left: 0;
  color: var(--secondary);
   font-weight: bold;
}

.cta-section{
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding   :    4rem 2rem;
  text-align: center;
    margin: 3rem 0;
}

.cta-content h2 {
   font-size: 2.8rem;
  color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
   max-width: 600px;
  margin: 0 auto 2rem;
       line-height: 1.8;
}

.cta-button-large {
   display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 1.1rem 3rem;
	 font-size: 1.1rem;
	border-radius: 6px;
    text-decoration : none;
    font-weight    :600;
   transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.cta-button-large:hover {
                    background : transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

.contact-section {
   padding: 4rem 2rem;
   max-width: 800px;
   margin: 0 auto;
}

.contact-section h2 {
   text-align : center;
    font-size: 2.5rem;
  color: var(--primary);
    margin-bottom: 1rem;
} 

.contact-intro {
    text-align: center;
  color: var(--text-light);
	 margin-bottom: 2rem;
       line-height: 1.8;
}

.contact-form {
  background: var(--light-bg);
    padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
   margin-bottom: 0.5rem;
   font-weight    :  600;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width    :    100%;
    padding: 0.8rem;
  border: 1px solid var(--border);
    border-radius: 6px;
  font-family    :        inherit;
  font-size: 1rem;
  color: var(--text-dark);
    transition: all 0.3s ease;
}

.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(74, 144, 164, 0.1);
}

.form-submit {
    width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: var(--white);
	 border: none;
  border-radius: 6px;
    font-weight: 600;
   font-size: 1rem;
  cursor: pointer;
	transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.footer {
  background: var(--primary);
  color: var(--white);
    padding: 3rem 2rem 1.5rem;
   margin-top     :       3rem;
}

.footer-top {
   display: grid;
   grid-template-columns: auto 1fr;
   gap: 3rem;
   max-width: 1200px;
  margin: 0 auto 2rem;
        align-items   :  flex-start;
}

.footer-brand img


{
  height  :       136px;
         width: auto;
  filter: brightness(0) invert(1);
}

.footer-contact {
	display: flex;
        flex-direction: column;
	gap: 1.5rem;
}

.contact-item {
    flex-direction: column;
        display   :        flex;
}

.contact-label {
   font-weight: 600;
     margin-bottom: 0.3rem;
     color: rgba(255, 255, 255, 0.9);
}

.contact-value {
  color: rgba(255, 255, 255, 0.8);
   font-size: 0.95rem;
}

.footer-nav    {
    max-width: 1200px;
  margin: 0 auto 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-links {
	list-style: none;
    display   :   flex;
   gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
     transition: color 0.3s ease;
   	font-size: 0.95rem;

}

.footer-links a:hover {
  color: var(--accent);
}

.footer-bottom {
   max-width :     1200px;
	margin: 0 auto;
    text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.7);
     font-size: 0.9rem;
	 font-style: italic;
}@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card.highlighted {
        transform: scale(1);
    }
}.services-hero {
  background: linear-gradient(135deg, #2d5a7b 0%, #4a90a4 100%);
  color: var(--white);
  padding: 5rem 2rem;
    text-align: center;
  min-height: 300px;
    display: flex;
      align-items: center;
    justify-content: center;

}

.services-hero-content h1 {
    font-size: 3.2rem;
  margin-bottom: 1rem;
    line-height: 1.2;
}  

.services-hero-content p {
   font-size: 1.2rem;
   max-width: 600px;
  margin: 0 auto;
                    opacity: 0.95;
     line-height: 1.8;
}

.services-overview {
  padding: 4rem 2rem;
	   max-width:1200px;
	   margin: 0 auto;
}

.services-overview h2


{
    text-align: center;
   font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.overview-intro {


    text-align: center;
  font-size:       1.1rem;
  color: var(--text-light);
   max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;

}

.services-tabs {
   margin-top: 2rem;
}

.tab-navigation {
  display: flex;
    gap: 1rem;
   margin-bottom: 2rem;
	flex-wrap: wrap;
         justify-content: center;
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
} 

.tab-btn {
   padding: 0.8rem 1.5rem;
    background  :        transparent;
  border: 2px solid var(--border);
     border-radius: 6px;
  color: var(--text-dark);
   font-weight: 600;
               cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.tab-btn:hover  
  {
  border-color: var(--secondary);
  color: var(--secondary);
}

.tab-btn.active {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.tab-pane {
    display: none;
  animation: fadeIn 0.3s ease;
}

.tab-pane.active {
      display: block;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.tab-inner {

  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.tab-text h3 {
    font-size    :    2rem;
  color: var(--primary);
    margin-bottom: 1.5rem;
}

.tab-text p {


  color: var(--text-light);
   margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-features {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  margin-top: 2rem;
}

.feature {
  background: var(--light-bg);
   padding: 1.2rem;
   border-radius: 8px;
  text-align: center;
}

.feature-title {

	 display: block;
   font-weight: 600;
  color: var(--primary);
   margin-bottom: 0.5rem;

     }

.feature-desc {
   display: block;
   font-size: 0.9rem;
  color: var(--text-light);
}

.tab-image img {


  width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow-lg);
    object-fit: cover;
   height: 350px;
}@media (max-width: 1024px) {
    .tab-inner {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1 {
        font-size: 2.2rem;
    }
}.service-detail-1 {
  background: var(--light-bg);
   padding     :      4rem 2rem;
  margin: 3rem 0; 

}

.detail-grid {
		display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   max-width: 1200px;
  margin: 0 auto;
   align-items: center;
}

.detail-grid.reversed {
   direction: rtl;
}

.detail-grid.reversed > * {
	    direction: ltr;
	}


.detail-image img {
    width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
    object-fit: cover;
    height: 400px;
}

.detail-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.detail-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
	
}

.detail-list {
   margin-top: 2rem;
}

.detail-item {
 display: flex;
                    gap: 2rem;
   margin-bottom: 2rem;
       padding: 1.5rem;
  background: var(--white);
	border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.item-number {
   display: flex;
  align-items: center;
  justify-content: center;
    width  :       50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
   border-radius: 50%;
   font-weight: bold;
   font-size: 1.3rem;
	flex-shrink: 0;
}

.item-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}



.item-content p {
  color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}@media (max-width: 1024px) {
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .detail-grid.reversed {
        direction: ltr;
    }

    .detail-text h2 {
        font-size: 2rem;
    }

    .detail-image img {
        height: 300px;
    }
}.service-detail-2 {
  padding: 4rem 2rem;
   max-width: 1200px;
          margin: 0 auto;
}

.service-detail-2 h2 {
	text-align: center;
   font-size: 2.8rem;
  color: var(--primary);
   margin-bottom: 1rem;
	
}

.section-intro {
  text-align: center;
    font-size: 1.1rem;
  color: var(--text-light);
   max-width: 700px;
   margin: 0 auto 3rem;
	line-height: 1.8;
}

.team-programs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
  background: var(--white);
        padding   :     2rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary);
   transition: all 0.3s ease;}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}



.card-header

{
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
  margin-bottom: 1rem;
}

.card-header h3 {
  font-size: 1.3rem;
  color: var(--primary);
    margin: 0;
}

/* Minified version */


.duration {
  background: var(--light-bg);
  color: var(--secondary);
  padding: 0.4rem 0.8rem;
        border-radius: 4px;
   font-size: 0.85rem;
   font-weight: 600;
    white-space: nowrap;
}

/* Browser compatibility */

.program-card p {
  color: var(--text-light);
   margin-bottom: 1.5rem;
    line-height: 1.8;
}

.program-benefits {
   display: flex;
    flex-direction  :        column;
  gap: 0.8rem;
}  

.program-benefits span {
    padding: 0.6rem 0;
   padding-left: 1.5rem;
  color: var(--text-dark);
   position: relative;
		 font-size: 0.9rem;
}

.program-benefits span:before {
  content: '✓';
    position  :       absolute;
    left     :      0;
  color: var(--accent);
   font-weight: bold;
}

.transformation-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.trans-feature {
  background: var(--light-bg); 
   padding: 1.5rem; 
	border-radius: 8px; 
  border-left: 3px solid var(--accent);
}

.trans-feature h4 {
  color: var(--primary);
   margin-bottom: 0.5rem;
}

.trans-feature p {
  color: var(--text-light);
	 font-size: 0.9rem;
   margin: 0;
}
@media (max-width: 768px) {
    .transformation-features {
        grid-template-columns: 1fr;
    }
}.pricing-services {
  background: var(--light-bg);
	 padding: 4rem 2rem;
  margin: 3rem 0;
}

.pricing-services h2
{
	  text-align: center;
    font-size: 2.8rem;
  color: var(--primary);
    margin-bottom  :1rem;
     }

.pricing-intro {
   text-align: center;
    font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
	 margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.pricing-table {
   max-width: 1000px;
  margin: 0 auto;
   border-collapse: collapse;
}

.table-header,
.table-row {
          display: grid;
   grid-template-columns: 200px 200px 1fr;
   gap: 1rem;
	padding: 1rem;
   align-items: center;
}

.table-header {


  background: var(--primary);
  color: var(--white);
	font-weight: 600;
   margin-bottom: 0.5rem;
    border-radius:    8px 8px 0 0;

}

.table-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.table-row:hover {
  background: rgba(74, 144, 164, 0.05);
}

.table-col {
   padding: 0.5rem;
  color: var(--text-dark);
}@media (max-width: 768px) {
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-header {
        display: none;
    }

    .table-row {
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }

    .table-col:before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--primary);
        display: block;
        margin-bottom: 0.3rem;
    }
}.faq-services {
  padding  : 4rem 2rem;
  max-width: 1200px;
   margin: 0 auto;

}

.faq-services h2 {
   text-align: center;
  font-size: 2.8rem;
  color: var(--primary);
	margin-bottom: 3rem;
}

.faq-grid {
   display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: var(--light-bg);
  padding: 2rem;
   border-radius: 10px;
  border-left: 4px solid var(--accent);
}

.faq-item h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.cta-services {
  background: linear-gradient(135deg, #2d5a7b 0%, #4a90a4 100%);
    padding: 4rem 2rem;
   text-align: center;


}

.cta-services h2 {
   font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-services p {
  font-size   :      1.1rem;
  color: rgba(255, 255, 255, 0.9);
   max-width: 600px;
    margin: 0 auto 2rem;
   line-height: 1.8;
}

.cta-button-services {
   display: inline-block;
  background: var(--accent);
  color: var(--white);
    padding     :     1rem 2.5rem;
                    border-radius:   6px;
    text-decoration: none;
  font-weight     :     600;
    transition: all 0.3s ease;
  border: 2px solid var(--accent);
	 font-size: 1rem;


}

.cta-button-services:hover {
   background: transparent;
  color: var(--accent);
  transform: translateY(-2px);
}

.thankyou-section		{
  min-height: calc(100vh - 200px);
  display: flex;
   align-items: center;
         justify-content: center;
    padding: 2rem;
  background: linear-gradient(135deg, rgba(45, 90, 123, 0.05) 0%, rgba(74, 144, 164, 0.05) 100%);
}

.thankyou-container {
  background: var(--white);
  padding: 4rem 3rem;
  border-radius   :   12px;
  box-shadow: var(--shadow-lg);
    max-width: 700px;
   text-align: center;
}

.success-icon	{
	 width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: var(--white);
   border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
  font-size: 3.5rem;
	margin: 0 auto 1.5rem;
   font-weight  :        bold;
}

.thankyou-section h1 {
    font-size: 2.5rem;
  color: var(--primary);
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
    font-size:    1.1rem;
  color: var(--text-light);
  margin-bottom    :2rem;
}

.thankyou-message {
    text-align: left;
  background: var(--light-bg);
    padding: 2rem;
   border-radius: 8px;
    margin-bottom: 2rem;
  border-left: 4px solid var(--secondary);
}

.thankyou-message p {
  color: var(--text-dark);
  margin-bottom: 1rem;
   line-height: 1.8;
}

.thankyou-message p:last-child {
   margin-bottom: 0;
}

.next-steps {
    margin: 2.5rem 0;
   text-align: left;
}

.next-steps h3 {
  color: var(--primary);
	  font-size: 1.3rem;
	    margin-bottom: 1.5rem;
}

.steps-list {
	 display    :      grid;
  gap: 1.5rem;
}

.step {
    display: flex;
    gap :      1.5rem;
   padding: 1.5rem;
  background: var(--light-bg);
  border-radius    :        8px;
  border-left: 4px solid var(--accent);
}

.step-number {
   display: flex;
               align-items: center;
  justify-content: center;
    width:  50px;
    height: 50px;
  background: var(--secondary);
  color: var(--white);
     border-radius: 50%;
  font-weight: bold;
    font-size: 1.3rem;
   flex-shrink: 0;
} 

.step-content h4 {
  color: var(--primary);
  margin-bottom: 0.5rem;
    margin-top: 0;
}

.step-content p {
  color: var(--text-light);
    margin: 0;
  font-size: 0.9rem;
	
}

.additional-info {
  background: var(--light-bg);
     padding: 2rem;
   border-radius: 8px;
    margin: 2rem 0;
   text-align: left;
}

.additional-info h3 {
  color: var(--primary);
 margin-top: 0;
}

.additional-info p {
     color: var(--text-light);

	   margin-bottom: 1.5rem;

	    line-height: 1.8;
}

.back-button {
  display: inline-block; 
	  background: var(--secondary); 
	  color: var(--white); 
	   padding: 0.8rem 2rem; 
	  border-radius: 6px; 
	  text-decoration: none; 
	  font-weight: 600; 
	  transition: all 0.3s ease;
}

.back-button:hover {
  background: var(--primary);
  transform: translateY(-2px);
} 

.contact-info {
  background: var(--light-bg);

    padding: 1.5rem;

    border-radius: 8px;

    text-align: center;
}

.contact-info p {
  color: var(--text-light);
   margin: 0;
    line-height: 1.8;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }

    .step {
        flex-direction: column;
    }

    .step-number {
        width: 100%;
        order: -1;
    }
}.policySection {
  padding:        80px 2rem;
  background: var(--light-bg);
  min-height: calc(100vh - 200px);
}

.policyContainer {
  max-width: 900px;
  margin: 0 auto;
    text-align: left;
  background: var(--white);
   padding: 3rem;
    border-radius: 10px;
  box-shadow: var(--shadow);
}

/* Cross-browser fix */

.policyContainer h1 {
    font-size: 3rem;
  color: var(--primary);
    margin-bottom: 2rem;
    line-height  :  1.2;
}

.policyContainer h2	{
    font-size: 1.8rem;
  color: var(--primary);
   margin-top: 2.5rem;
  margin-bottom: 1.2rem;
   font-weight: 700;
  border-bottom: 2px solid var(--secondary);
  padding-bottom: 0.8rem;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer p {
  color: var(--text-light);
   margin-bottom    :  1.5rem;
  line-height: 1.8;
   font-size: 1rem;
	text-align: justify;
}

.policyContainer p:last-child {
    margin-bottom:0;
}
@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }
}