:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 5px 20px rgba(0,0,0,0.15);
    --gradient-primary: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    --gradient-accent: linear-gradient(135deg, #3498db 0%, #e74c3c 100%);
    --transition-smooth: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

* {
    margin: 0;

	  padding: 0;

	  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: var(--text-color);
  background-color: var(--background-white);
}

.container {
  max-width: var(--max-width);
	margin: 0 auto;
  padding: 0 20px;
}

.main_menu		{
  background: var(--background-white);
  box-shadow: var(--shadow-light);
    position: fixed;
  top: 0;
   left: 0;
   right: 0;
    z-index: 1000;
}

.navbar  
  {
   display: flex;
	justify-content: space-between;
         align-items: center;
   padding: 15px 0;
          position: relative;
}

.navbar-brand img {

		 height: 40px;
  width: auto;




} 

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display   :      none;
}  

.hamburger {
       width: 30px;
	  height: 3px;
	  background: var(--text-color);
	    position: relative;
	  transition: var(--transition-smooth);
}

.hamburger:before,
.hamburger:after {
  content: '';
    position: absolute;
    width: 30px;
   height: 3px;
  background: var(--text-color);
  transition: var(--transition-smooth);
}

.hamburger:before {
	 top: -8px;}

.hamburger:after {
    top: 8px;
}



.nav-wrapper {
  align-items: center;
  gap: 20px;
   display: flex;
}

.navbar-nav {
   display: flex;
    gap: 30px;
   list-style: none;
}

.nav-item {
    list-style: none;
}

.nav-link {
  color: var(--text-color);
   text-decoration: none;
  font-size: 16px;
    font-weight  :     500;
  transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
     color: var(--secondary-color);}

.nav-link::after {
  content: '';
  position: absolute;
    bottom     :   -5px;
   left: 0;
    width: 0;
   height: 2px;
  background: var(--secondary-color);
  transition: var(--transition-smooth);
	
}

.nav-link:hover::after {
    width: 100%;
}

.hero-transformation {
  background: var(--gradient-primary);

	 color :      white;

  padding: 140px 0 80px;

   min-height:100vh;

    display: flex;

   align-items: center;
}

.hero-content-wrapper {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.hero-text-section h1 {
  font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-description		{
     font-size: 1.2rem;
   margin-bottom: 30px;
  line-height: 1.6;
   opacity: 0.9;
	}

.hero-action-buttons  {
               display: flex;
	gap: 20px;
   flex-wrap: wrap;
}

.primary-consultation-btn,
.secondary-info-btn {
   padding: 15px 30px;
  text-decoration: none;
  border-radius: var(--border-radius);
    font-weight: 600;
  transition: var(--transition-smooth);
    display: inline-block;
}

.primary-consultation-btn {
  background: var(--accent-color);
  color: white;
}

.primary-consultation-btn:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.secondary-info-btn {
    background: transparent;
	 color: white;
    border: 2px solid white;
}

.secondary-info-btn:hover {
   background: white;
  color: var(--primary-color);
}



.hero-visual-section img {
    width   :  100%;
	height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium); 
	
}

.mindset-breakthrough-services {
   padding :    100px 0;
  background: var(--background-light);
}

.section-header-content {
   text-align: center;
  margin-bottom: 60px;
}

.section-header-content h2 {
	font-size: 2.5rem;
     margin-bottom: 15px;
  color: var(--primary-color);
}

.section-intro-text   {
   font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
   margin: 0 auto;
}

.services-grid-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-transformation-card {
  background: white;
  border-radius: var(--border-radius);
   overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
}

.service-transformation-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
}



.service-visual-wrapper img {
  width   : 100%;
    height  :    250px;
    object-fit   : cover;
}  

.service-content-details {
    padding: 30px;
}

.service-content-details h3 {
     font-size: 1.4rem;
  margin-bottom   :      15px;
  color: var(--primary-color);
}

.service-content-details p {
  color: var(--text-light);
   line-height: 1.6;
}

.methodology-approach {


  padding: 100px 0;
    background :       white;


}

.methodology-content-wrapper    {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
       align-items: center;
}

.methodology-description h2 {

	   font-size: 2.5rem;
    margin-bottom: 20px;
  color: var(--primary-color);
	}

.methodology-description > p {
    font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 40px;
          line-height: 1.6;
}

.approach-features-list {
    display: flex;
  flex-direction: column;
    gap: 25px;

}

.feature-methodology-item {

   padding: 20px;
  border-left: 4px solid var(--secondary-color);
  background: var(--background-light);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;

}

.feature-methodology-item h4 {
   font-size   : 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.feature-methodology-item p {
  color: var(--text-light);
}

.methodology-visual img {
               width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.success-transformation-stories {
  padding: 100px 0;
  background: var(--background-light);
}

.success-transformation-stories h2 {
   text-align: center;
  font-size: 2.5rem;
    margin-bottom: 60px;
  color: var(--primary-color);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px; 
	
}



.testimonial-card {
     background: white;
    padding  :     40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
    position: relative;
	}

.testimonial-card::before {
  content: '"';
	position: absolute;
   top: -10px;
    left: 20px;
   font-size: 4rem;
  color: var(--secondary-color);
  font-family: serif;
}

.testimonial-card blockquote 
 {
    font-size :  1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
  color: var(--text-color);
}

.testimonial-card cite {
    font-weight: 600;
  color: var(--primary-color);
	font-style: normal;
}

.webinar-conference-events {
    padding: 100px 0;
    background: white;
}

.webinar-conference-events h2 {
  text-align: center;
  font-size: 2.5rem;
    margin-bottom: 60px;
  color: var(--primary-color);
}

.events-timeline {
			max-width: 800px;
   margin: 0 auto;
}

.event-item {
   display: grid;
    grid-template-columns: 200px 1fr;
   gap: 30px;
    padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.event-item:last-child {
   border-bottom  :   none;
}

.event-date  
  {
     font-weight: 600;
  color: var(--secondary-color);
         font-size: 1.1rem;
   display: flex;
  align-items: center;
	}

.event-details h3 {
 font-size: 1.3rem;
   margin-bottom   :       10px;
  color: var(--primary-color);
}

.event-details p {
  color: var(--text-light);
  line-height: 1.6;
}

.consultation-cta-section {
  padding   :    100px 0;
  background: var(--gradient-accent);
	color: white;
   text-align: center;
}

.cta-content-wrapper h2 {
   font-size: 2.5rem;
   margin-bottom: 20px;
}

.cta-content-wrapper p {
       font-size: 1.2rem;
    margin-bottom: 40px;
   max-width: 600px;
	margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
	}

.main-cta-button {
  padding: 18px 40px;
  background: white;
  color: var(--primary-color);
		text-decoration: none;
  border-radius: var(--border-radius);
	font-weight: 600;
	 font-size: 1.1rem;
  transition: var(--transition-smooth);
   display: inline-block;
}

.main-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}  

.contact-section {
   padding: 100px 0;
  background: var(--background-light);
}

.contact-section h2 {
  text-align: center;
   font-size: 2.5rem;
   margin-bottom: 60px;
  color: var(--primary-color); 
	
}

.contact-content-layout {
  display: grid;
    grid-template-columns: 2fr 1fr;
	gap     :  60px;
}

.consultation-form

{
   background: white;
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.form-group {
 margin-bottom    :     25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
      font-weight: 600;
  color: var(--primary-color); 
	
}

.form-group input,
.form-group select,
.form-group textarea   {
	 width: 100%;
   padding: 12px 15px;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
   font-size   :        16px;
  transition: var(--transition-smooth);
   font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group textarea    {
  resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
   padding: 15px;
  background: var(--gradient-primary);
    color: white;
   border     :   none;
  border-radius: var(--border-radius);
   font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
  transition: var(--transition-smooth);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.contact-info-section {
        background: white;
   padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
   height: fit-content;
}

.contact-details h3 {
	 margin-bottom: 30px;
  color: var(--primary-color);
   font-size: 1.3rem;
}

.contact-item {
   margin-bottom    :   20px;
       display: flex;
    flex-direction  :   column;
      gap   :5px;
}

.contact-item strong {
  color: var(--primary-color);
  font-weight:        600;
}

.contact-item span {
  color: var(--text-light);
}  

.main-footer {
  background: var(--primary-color);
    color: white;
  padding: 60px 0 20px;
}

.footer-content-layout {
    display: grid;
         grid-template-columns: 2fr 1fr 1fr 1fr;
    gap :40px;
  margin-bottom: 40px;
}

.footer-brand-section img {
     height: 40px;
    margin-bottom: 20px;
}

.footer-brand-section p {
    opacity     :       0.8;
   line-height: 1.6;
}

.footer-navigation h4,
.footer-legal h4,
.footer-contact h4 {


    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-navigation ul,
.footer-legal ul {
    list-style: none;
}


.footer-navigation ul li,
.footer-legal ul li {
   margin-bottom  :   10px;
}

.footer-navigation ul li a,
.footer-legal ul li a {
  color     :   white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-navigation ul li a:hover,
.footer-legal ul li a:hover {
  opacity: 1; 
  color: var(--secondary-color);
}

.footer-contact p {
   margin-bottom: 10px;
  opacity: 0.8;
	line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
   padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
  opacity   :       0.7;
}@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
        cursor: pointer;
        padding: 15px;
        z-index: 2;
    }

    .nav-wrapper {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--background-white);
        transition: var(--transition-smooth);
        padding-top: 80px;
        flex-direction: column;
        align-items: center;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        margin: 15px 0;
    }

    .nav-link {
        display: inline-block;
        padding: 10px 20px;
        font-size: 18px;
        color: var(--text-color);
    }

    .nav-toggle:checked ~ .nav-wrapper {
        left: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger {
        background: transparent;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:before {
        transform: rotate(45deg);
        top: 0;
    }

    .nav-toggle:checked ~ .nav-toggle-label .hamburger:after {
        transform: rotate(-45deg);
        top: 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text-section h1 {
        font-size: 2.5rem;
    }

    .hero-action-buttons {
        justify-content: center;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
    }

    .methodology-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-content-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content-layout {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .container {
        padding: 0 15px;
    }

    .section-header-content h2 {
        font-size: 2rem;
    }

    .methodology-description h2,
    .success-transformation-stories h2,
    .webinar-conference-events h2,
    .consultation-cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .hero-text-section h1 {
        font-size: 2rem;
    }

    .hero-action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-consultation-btn,
    .secondary-info-btn {
        width: 100%;
        text-align: center;
    }

    .services-grid-layout {
        grid-template-columns: 1fr;
    }

    .service-transformation-card {
        margin: 0 10px;
    }

    .consultation-form,
    .contact-info-section {
        padding: 25px;
    }
}

@media screen and (min-width: 769px) {
    .nav-wrapper {
        display: flex;
    }

    .navbar-nav {
        display: flex;
        gap: 30px;
    }
}.navbar-brand   {
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  transform: scale(1.05);


}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.hero-text-section,
.service-transformation-card,
.testimonial-card
	{
  animation: fadeInUp 0.6s ease-out;
}

.service-transformation-card:nth-child(2) {
 animation-delay: 0.2s;
}

.service-transformation-card:nth-child(3) {
 animation-delay: 0.4s;
}

.testimonial-card:nth-child(2)     {
  animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
     animation-delay: 0.4s;
	}