* {

    margin  :       0;
  padding: 0;
  box-sizing: border-box;


}

html	{
		 scroll-behavior :  smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 color: #2c3e50;
    line-height: 1.6;
  background-color: #ffffff;
}

.navbar {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
   padding     :1rem 0;
    position  : sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
   margin: 0 auto;
   justify-content: space-between;
   align-items :center;
   display:flex;
   max-width: 1200px;
    padding: 0 2rem;
}

.nav-logo img {
    max-height   :   94px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu  
  {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
   color: #ecf0f1;
   text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
} 

.nav-link:hover {
	   color: #3498db;
}

.nav-link::after {
  content: '';
                    position: absolute;
       bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
  transition: width 0.3s ease; 
	
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle  {

	    display :     none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
	}  

.hamburger
	{
	 width  : 25px;
  height: 3px;
    background: #ecf0f1;
   border-radius: 2px;
    transition   :      all 0.3s ease;
}

.menu-toggle.active .hamburger:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.menu-toggle.active .hamburger:nth-child(2) {
	    opacity: 0;
}

.menu-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
        padding: 2rem;
        gap: 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 300px;
    }
}.hero {
   max-width: 1200px;
    margin: 0 auto;
   padding: 4rem 2rem;
    display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
	 color: #1a2332;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-content p {
   font-size    :        1.2rem;
    color: #555;
	margin-bottom: 2rem;
}

.hero-buttons {
             display: flex;
   gap    : 1rem;
  flex-wrap: wrap;

}

.btn-primary, .btn-secondary, .btn-cta, .btn-submit {
  padding: 0.8rem 2rem;
  border: none;
	border-radius: 8px;
  font-size    :   1rem;
    cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
    display: inline-block;
  font-weight:      600;
}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
     }

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
   background: transparent;
    border   :2px solid #3498db;
  color: #3498db;
}

.btn-secondary:hover {
	 background: #3498db;
               color: white;
  transform: translateY(-3px);
}

.btn-cta {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);

  color: white;

   font-size:    1.1rem;

  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.btn-cta:hover    {

  transform: translateY(-3px);

  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);


}

.hero-image {
       width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}.introduction {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
  padding: 4rem 2rem;
}

.intro-wrapper {
   max-width: 1200px;
  margin: 0 auto;
}

.intro-wrapper h2 {
	font-size  :        2.5rem; 
    color: #1a2332; 
    margin-bottom: 2rem; 
   text-align: center;
}

.intro-wrapper > p {
   font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
       color: #555;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.intro-card {

  background    : white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.intro-card h3 {
      color: #2980b9;
  margin-bottom: 1rem;
   font-size: 1.3rem;
}

.intro-card p {
       color: #666; 
	   line-height: 1.7;
}

.services-preview {
   max-width: 1200px;
    margin     : 0 auto;
  padding: 4rem 2rem;
}

.services-content {
               display: grid;
  grid-template-columns   :      1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.services-image {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-text h2 {
  font-size: 2.3rem;
   color: #1a2332;
   margin-bottom :      1.5rem;
}

.services-text p {
    font-size :  1.05rem;
   color: #555;
    margin-bottom: 2rem;
}

.features-list {


  list-style: none;
   margin-bottom: 2rem;
}

.features-list li {
    padding: 0.8rem 0;
   color :   #2c3e50;
	 font-weight: 500;
  border-bottom: 1px solid #ecf0f1;
}

.features-list li:before {
  content: '✓ ';
  color: #27ae60;
   font-weight: bold;
   margin-right: 0.5rem;
}@media (max-width: 768px) {
    .services-content {
        grid-template-columns: 1fr;
    }
}.resilience {
  background: linear-gradient(135deg, #fafbfc 0%, #f1f3f5 100%);
  padding: 4rem 2rem;


}

.resilience-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display     :        grid;
    grid-template-columns: 1fr 1fr;
  gap     :      3rem;
   align-items     :    center;
}

.resilience-text h2 {
   font-size: 2.3rem;
    color: #1a2332;
  margin-bottom: 1.5rem;
}

.resilience-text p {
      font-size: 1.05rem;
   color: #555;
   margin-bottom: 2rem;
   line-height: 1.8;
}

.resilience-benefits {
   display: flex;
   gap: 2rem;
   margin-top: 2rem;
}

.benefit {
  text-align: center;
}

.benefit strong {
  display: block;
  font-size: 2.5rem;
    color: #3498db;
	 margin-bottom   :  0.5rem;
}

.benefit span

{
   display: block;
    color: #666;
   font-size: 0.95rem;
}

.resilience-image {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .resilience-wrapper {
        grid-template-columns: 1fr;
    }
    
    .resilience-benefits {
        flex-direction: column;
    }
}.wellness-program {
   max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.wellness-container h2 {
  font-size    : 2.5rem;

	    color: #1a2332;

		text-align: center;

		margin-bottom: 1rem;
}

.wellness-container > p {
   margin-bottom  :3rem;
   text-align: center;
    color: #555;
    font-size: 1.05rem;
}

.wellness-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.wellness-card {
   background: white;
      border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition     :        all 0.3s ease;
}

.wellness-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
}

.wellness-card-img {
    width: 100%;
  height: 200px;
   object-fit: cover;
}

.wellness-card h3 {
                    padding: 1.5rem 1.5rem 0.5rem;
    color: #2980b9;
  font-size: 1.3rem;
	
}

.wellness-card p {
      padding: 0 1.5rem 1.5rem;
   color :   #666;
 font-size: 0.95rem;
          line-height: 1.7;

}

.coaching-types {


  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);

	    padding: 4rem 2rem;
}

.coaching-wrapper {
   max-width: 1200px;
    margin: 0 auto;
	}

.coaching-wrapper h2 {
   font-size: 2.5rem;
    text-align: center;
  color: #1a2332;
    margin-bottom: 3rem;
}

.coaching-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.coaching-item {
  background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.coaching-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.coaching-number {
  display: inline-block;
	font-size: 2.5rem;
   font-weight    :     bold;
         color: #3498db;
   margin-bottom: 1rem;
     }

.coaching-item h3 {

    color: #1a2332;
  margin-bottom: 1rem;
  font-size: 1.3rem;


}

.coaching-item p {
	 color: #666;
  line-height: 1.7;
  font-size    :     0.95rem;
}

.webinars {
   max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;


}

.webinars-content h2  
  {


  font-size: 2.5rem;
    text-align: center;
    color: #1a2332;
  margin-bottom: 1rem;
     } 

.webinars-content > p {
    text-align: center;
  color: #555;
    margin-bottom: 3rem;
   font-size     :     1.05rem;
}

.webinar-list {
  display    :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.webinar-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 2rem;
 border-radius: 12px;
   border-left: 4px solid #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition    : all 0.3s ease;
}

.webinar-item:hover {
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
     transform: translateY(-3px);
}

.webinar-item h3 {
  color: #2980b9;
   margin-bottom: 1rem;
}

.webinar-item p {
    color: #666;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.webinar-tag {
  display: inline-block;
  background: #3498db;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
   font-weight: 600;
}

.conference-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color    :        white;
   padding: 4rem 2rem;
}

.conference-wrapper {
	    max-width: 1200px;
    margin :        0 auto;
  text-align :  center;
}

.conference-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.conference-wrapper > p {
     margin-bottom: 3rem;
	font-size: 1.05rem;
   opacity: 0.9;
	}

.conference-highlights {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom    :       2rem;
}

.highlight {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
   border-radius: 12px;
  backdrop-filter: blur(10px);
}

.highlight strong {
  display: block;
	font-size: 2rem;
               margin-bottom: 0.5rem;
	color: #3498db;
}

.highlight p {
   font-size: 0.95rem;
	    opacity: 0.85;
}  

.methodology {
  max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.methodology-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a2332;
   margin-bottom: 1rem;
}

.methodology-content > p {
  text-align: center;
    color: #555;
   margin-bottom: 3rem;
   font-size: 1.05rem;
}



.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step


{
  background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.step-num {
  display: inline-block;
   width: 50px;
	height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
    border-radius  :      50%;
               line-height: 50px;
                    font-size: 1.5rem;
   font-weight: bold;
  margin-bottom: 1rem;
}

.step h3 {
  color :      #1a2332;
    margin-bottom   :  1rem;
}

.step p {
  color: #666;
	 font-size: 0.95rem;
   line-height: 1.6;
}

.cta-appointment {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 4rem 2rem;
   text-align: center;
}

.cta-content {
	   max-width: 800px;
   margin: 0 auto;
	}

.cta-content h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.95;
}

.testimonials {
   max-width: 1200px;
     margin: 0 auto;
  padding: 4rem 2rem;
}

.testimonials-wrapper h2 {
     font-size: 2.5rem;
  text-align: center;
 color: #1a2332;
    margin-bottom: 3rem;


}

.testimonial-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;

}

.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  padding: 2rem;
  border-radius: 12px;
  border-top :    4px solid #3498db;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-style: italic;
  color: #555;
    margin-bottom: 1rem;
  line-height: 1.7;
   font-size: 0.95rem;

}

.testimonial-card strong {
  display: block;
   color    :#2980b9;
   margin-bottom: 0.5rem;
}

.testimonial-card .company {
  display: block;
   color     :     #999;
  font-size :  0.85rem;
}

.contact-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%); 
	    padding: 4rem 2rem;
}

.contact-wrapper {
         max-width: 700px;
  margin: 0 auto;

}

.contact-wrapper h2 {

	    font-size: 2.3rem;
    color: #1a2332;
    text-align: center;
  margin-bottom: 1rem;
	}

.contact-wrapper > p {
   text-align: center;
   color: #555;
    margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.contact-form {
    background :      white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.form-group {

	       margin-bottom: 1.5rem;


}

.form-group label {


   display:       block;
    margin-bottom: 0.5rem;
  color: #2c3e50;
   font-weight: 600;


}

.form-group input,
.form-group select,
.form-group textarea   {
    width: 100%;
	    padding: 0.8rem;
	   border: 2px solid #ecf0f1;
	  border-radius: 8px;
		font-size: 1rem;
	   font-family: inherit;
	  transition : all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
   border-color: #3498db;
  box-shadow: 0 0 10px rgba(52, 152, 219, 0.2);


}  

.btn-submit {
   width     :       100%;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
   padding: 1rem;
	border-radius: 8px;
   font-size: 1.05rem;
               font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}  

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.footer {
  background: linear-gradient(135deg, #1a2332 0%, #2c3e50 100%);
  color: #ecf0f1;
  padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
   color: #3498db;
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-section p {
   color: #bdc3c7;
    line-height: 1.8;
	font-size: 0.95rem;
}

.footer-logo {
    max-height: 136px;
  width    :  auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-links {
               list-style: none;
}

.footer-links li {

  margin-bottom: 0.7rem;
     }


.footer-links a {
   color: #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease;
     font-size: 0.95rem;
}

.footer-links a:hover {
      color: #3498db;
}

.footer-bottom     {
  border-top: 1px solid rgba(52, 152, 219, 0.3);
    padding-top: 1.5rem;
    text-align: center;
         color  :       #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-hero {
	max-width: 1200px;
	 margin: 0 auto;
    padding: 3rem 2rem;
       display: grid;
   grid-template-columns: 1fr 1fr;
	 gap: 3rem;
   align-items: center;
}

.services-hero-content h1 {
  font-size: 3rem;
   color: #1a2332;
        margin-bottom: 1rem;
  line-height: 1.2;
}  

.services-hero-content p  {
   font-size    :        1.1rem;
  color: #555;
}

.services-hero-img {
	width     :    100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .services-hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }
    
    .services-hero-content h1 {
        font-size: 2rem;
    }
}.services-overview {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
  padding   :     4rem 2rem;
}

.services-overview-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   text-align: center;
}

.services-overview-wrapper h2 {
   font-size: 2.5rem;
    color: #1a2332;
   margin-bottom: 1rem;
}

.services-overview-wrapper > p
{
  font-size     :      1.05rem;
    color: #555;
    margin-bottom: 2.5rem;
}

.services-tabs {
	display: flex;
  justify-content: center;
  gap: 1rem;
   flex-wrap: wrap;
}

.tab-button {
    padding: 0.8rem 1.5rem;
  background:      white;
    border: 2px solid #3498db;
   color: #3498db;
  border-radius: 8px;
   cursor: pointer;
	 font-size: 1rem;
  font-weight: 600;
    transition: all 0.3s ease;

}

.tab-button:hover {
    background: #3498db;
    color: white;
}

.tab-button.active {
   background: #3498db;
  color: white;
}

.services-container

{


   max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 2rem;
	} 

.services-container h2 {
    font-size: 2.5rem;
   color: #1a2332;
    text-align: center;
  margin-bottom: 1rem;
}

.services-container > p {
   text-align: center;
       color  :     #555;
    margin-bottom: 3rem;
  font-size: 1.05rem;
}

.coaching-services {
      background: white;

}

.coaching-service-grid {
   display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
    background: white;
		border: 2px solid #ecf0f1;
  padding: 2rem;
   border-radius: 12px;
   transition:all 0.3s ease;


}

.service-card:hover {
  border-color: #3498db;
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
  transform: translateY(-5px);
}

.service-icon {
  display: inline-block;
     width: 60px;
     height: 60px;
     background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
      color: white;
       border-radius: 12px;
       font-size: 1.8rem;
       font-weight: bold;
     line-height: 60px;
     text-align: center;
      margin-bottom: 1rem;
}

.service-card h3 {
   color: #1a2332;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-price {
   color: #27ae60;
    font-weight: bold;
  font-size: 1.1rem;
    margin-bottom:      1rem;
}

.service-card p {
    color: #666;
  font-size :     0.95rem;
    line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-features {
   list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
   padding: 0.6rem 0;
   color: #555;
   border-bottom: 1px solid #f0f0f0;
	font-size: 0.9rem;
}

.service-features li:before {
  content: '✓ ';
    color: #27ae60;
   font-weight: bold;
   margin-right: 0.5rem;
}

.training-services {

	  background: linear-gradient(135deg, #fafbfc 0%, #f1f3f5 100%);}

.training-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}



.training-card {
   background: white;
	 border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	display :flex;
   flex-direction: column;
}

.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.training-card img {
   width: 100%;
    height: 200px;
  object-fit  :       cover;
}

.training-content {
  padding: 2rem;
    flex-grow: 1;
    display: flex;
  flex-direction: column;
}

.training-card h3 {
  color: #2980b9;
   margin-bottom: 1rem;
    font-size    :  1.15rem;
}

.training-card p {
   flex-grow: 1;
  margin-bottom: 1.5rem;
  font-size    : 0.95rem;
               line-height: 1.6;
    color: #666;
}

.training-details {
  display  :        flex;
   flex-direction: column;
  gap :   0.5rem;
}

.detail {
          display: inline-block;
         background: #f0f0f0;
   color: #666;
  padding   :       0.4rem 0.8rem;
       border-radius: 6px;
  font-size: 0.85rem;
}

.webinar-services {
   background     : white;
}

.webinar-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.webinar-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #3498db;
  transition: all 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-5px);

	  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
}

.webinar-card h3 {
  color: #2980b9;
   margin-bottom: 1rem;
  font-size: 1.1rem;
}

.webinar-card p 
 {
  color: #666;

    font-size: 0.95rem;

   line-height: 1.6;

    margin-bottom: 1.5rem;
}

.webinar-info {
    display: flex;
  flex-direction: column;
  gap: 0.5rem;
		 color: #888;
    font-size: 0.9rem;
}

.conference-services {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%); 

}

.conference-service-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.conference-card {
                    background: white; 
		padding: 2rem; 
	  border-radius: 12px; 
	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); 
	    transition: all 0.3s ease; 
	
}

.conference-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.conference-card h3 {
   color: #2980b9;
   margin-bottom: 1rem;
	font-size: 1.2rem;
}

.conference-card p {
	color: #666;

    font-size: 0.95rem;

 line-height: 1.6;

  margin-bottom: 1.5rem;
}

.conference-highlights {
  margin: 1.5rem 0;
  grid-template-columns: repeat(3, 1fr);
  background: #f9f9f9;
   padding: 1.5rem;
  gap: 1rem;
   display: grid;
    border-radius  :        8px;
}

.highlight-item {
   text-align: center;
}

.highlight-item strong {
    display: block;
   font-size: 1.8rem;
    color: #3498db;
   margin-bottom: 0.5rem;
}

.highlight-item span 
 {
	display: block;
	 color: #666;
  font-size: 0.85rem;
        line-height: 1.4;
}

.conference-date {
  font-weight: 600;
   color: #2c3e50;
    margin-bottom: 0.5rem !important;
}

.conference-price {
   color: #27ae60;
	font-weight: bold;
  font-size: 1.1rem;
}

.packages-section {
   background: white;
}

.packages-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}


.package-card {
                    background     :       white;
   border: 2px solid #ecf0f1;
   padding: 2rem;
  border-radius: 12px;
   position: relative;
   transition: all 0.3s ease;
}

.package-card:hover {
  border-color: #3498db;
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.15);
  transform: translateY(-5px);
}

.package-card.featured


{
  border-color: #3498db;
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.2);
  transform: scale(1.02);
}

.package-badge {
               position: absolute;
    top :1rem;
  right: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   padding: 0.4rem 0.8rem;
   border-radius: 6px;
    font-size: 0.75rem;
   font-weight: bold;
}

.package-card.featured .package-badge {

  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.package-card h3 {
    color: #1a2332;
    margin-bottom: 1rem;
  margin-top     :  0.5rem;
   font-size: 1.3rem;
}

.package-card > p {
  color   :#666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
     }

.package-items {
    background: #f9f9f9;
  padding: 1.5rem;
    border-radius: 8px;
  margin-bottom: 1.5rem;

}

.item
{
    display: flex;
  align-items: center;
	gap: 1rem;
  padding  :  0.7rem 0;
  color: #555;
  font-size: 0.95rem;
}

.check {
   display: inline-block;
   min-width: 20px;
  color: #27ae60;
    font-weight: bold;
}

.package-price {
  font-size: 1.5rem;
	 color: #3498db;
    font-weight: bold;
  margin-bottom  :    1rem;
}

.process-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #ecf0f1 100%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
   position: relative;
}

.timeline-item {
   background   :     white;
	 padding: 2rem;
  border-radius: 12px;
   text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
} 

.timeline-number {
  display: inline-block;
   width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    line-height: 50px;
    font-size  :      1.5rem;
   font-weight: bold;
   margin-bottom: 1rem;
}

.timeline-item h3 {


    color: #1a2332;
   margin-bottom: 1rem;

}

.timeline-item p {
    color   : #666;
  font-size     : 0.95rem;
  line-height:      1.6;
}

.testimonials-services {
    background: white;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 2rem;
   border-radius: 12px;
  border-top: 4px solid #3498db;
}

.testimonial p {


   font-style: italic;
   color: #555;
    margin-bottom: 1rem;
   line-height: 1.7;
	 font-size: 0.95rem;
}

.testimonial strong     {
   display     :        block;
   color: #2980b9;
    margin-bottom: 0.5rem;
}

.cta-services{
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
    padding: 4rem 2rem;
    text-align: center;
}  

.cta-services-content {
   max-width   :  800px;
               margin: 0 auto;
}

.cta-services-content h2 {
               font-size: 2.5rem;
       margin-bottom: 1rem;
}

.cta-services-content p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.thankyou-section     {
    max-width: 1200px;
  margin     :      0 auto;
    padding: 4rem 2rem;
}

.thankyou-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.thankyou-content {
         padding: 2rem;}

.success-icon {
    display: inline-block;
      width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
  color:    white;
  border-radius: 50%;
   font-size: 3rem;
   line-height: 80px;
  text-align: center;
   margin-bottom: 1.5rem;
  font-weight: bold;
}



.thankyou-content h1 {
    font-size     :    2.5rem;
  color: #1a2332;
    margin-bottom:        0.5rem;
}

.thankyou-subtitle		{
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thankyou-message {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
   padding: 2rem;
    border-radius: 12px;
	margin-bottom :2rem;
	 border-left: 5px solid #3498db; 
	
}

.thankyou-message p {
	 color: #555;
   line-height: 1.8;
  margin-bottom:     1.5rem;
}

.next-steps {
   margin-top: 2rem;
}

.next-steps h2    {
   color: #1a2332;
  margin-bottom: 1.5rem;
 font-size: 1.5rem;
}

.steps-list {
   display: flex;
    flex-direction: column;
   gap: 1rem;
}

.step-item {
         display: flex;
				 gap: 1rem;
    align-items: flex-start;
}

.step-num
{
   min-width: 40px;
   color: white;
    background: #3498db;
  font-weight: bold;
   text-align: center;
  line-height: 40px;
               border-radius: 50%;
   height: 40px;
}

.step-text h3 {
          color: #1a2332;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.step-text p {
       color     :       #666;
  font-size: 0.9rem;
}

.thankyou-faq {

   background: white;
   padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);


}

.thankyou-faq h2 {
                    color: #1a2332;
  margin-bottom: 1rem;
}

.thankyou-faq p {
    color: #666;
	margin-bottom: 1rem;
	
}

.contact-phone {
   font-size: 1.3rem;
    color: #3498db;
  margin-top: 1rem; 
	
}

.action-buttons    {

	      display: flex;
    gap:   1rem;
   flex-wrap: wrap;


}

.thankyou-image {


   width: 100%;
	border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     }

.why-grid {
   display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 2rem;
		border-radius: 12px;
   text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.why-icon  {
   display: inline-block;
   width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
                    color: white;
  border-radius: 12px;
    line-height:  60px;
   font-size: 1.5rem;
   font-weight: bold;
   margin-bottom: 1rem;
}


.why-card h3 {
  color: #1a2332;
   margin-bottom: 1rem;
}

.why-card p  
  {
  color: #666;
  font-size: 0.95rem;
   line-height: 1.6;
}@media (max-width: 768px) {
    .services-hero {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .conference-highlights {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons a {
        width: 100%;
        text-align: center;
    }
}.policySection  {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  min-height: calc(100vh - 200px);
}

.policyContainer {
	max-width: 900px;

	   margin: 0 auto;

	   text-align: left;

	   background: white;

	  padding: 3rem;

	    border-radius: 12px;

	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	
}

.policyContainer h1   {
   font-size: 3rem;
   color: #1a2332;
  margin-bottom: 2rem;
	 font-weight: 700;
  border-bottom: 3px solid #3498db;
  padding-bottom: 1rem; 

}

.policyContainer h2 {
  font-size: 1.8rem;
  color: #2980b9;
	 margin-top: 2.5rem;
          margin-bottom: 1.5rem;
	font-weight:     600;
                    line-height: 1.3;
}

.policyContainer p {
    color: #555;
	 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: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }
}