* {
  margin: 0;
  padding: 0;
    box-sizing :     border-box;
	}

html {

    scroll-behavior  :     smooth;
     }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
	color: #2c3e50;
  background-color: #ffffff;
}

.navbar


{
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
   padding    :1rem 0;
  position: sticky;
	 top: 0;
	z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   border-bottom  :      1px solid #e8eef5;
}


.nav-container		{
    max-width: 1200px;
    margin     :  0 auto;
  padding: 0 20px;
  display   :  flex;
  justify-content :        space-between;
  align-items: center;
}

.nav-brand   {
    display: flex;
  align-items: center;
}

.nav-logo {
    height: 64px; 
  width     :auto;
}

.nav-menu {
  display: flex;
   list-style: none;
   gap: 2.5rem;
        align-items: center;
}

.nav-menu a   {
   text-decoration: none;
   color: #2c3e50;
  font-weight: 500;
          font-size: 1rem;
    transition :       color 0.3s ease;
   position: relative;
}

.nav-menu a::after {
  content: '';
    position: absolute;
    bottom  :       -5px;
    left: 0;
		 width   :   0;
          height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
   transition     :  width 0.3s ease;
}

.nav-menu a:hover {
    color: #667eea;
}

.nav-menu a:hover::after {

	 width: 100%;}

.burger-menu {

	    display: none;
  flex-direction     :column;
    background: none;
   border: none;
	 cursor: pointer;
    gap   :    6px;

}

.burger-line {
   width: 28px; 
	  height: 3px; 
	  background-color: #2c3e50; 
	  border-radius  :     2px; 
	  transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
     transform: rotate(45deg) translateY(12px);
     }

.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.hero {
  display    :      grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
	padding: 4rem 20px;
       max-width: 1200px;
	margin: 0 auto;
  min-height: 600px;
}

.hero-content h1 {
	font-size: 3.5rem;
   line-height    :1.2;
    margin-bottom    :   1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip     :       text;
	font-weight: 800;
}

.hero-subtitle {
   font-size    :     1.25rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-cta {
    display:      inline-block;
       padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-decoration :none;
  border-radius: 50px;
  font-weight: 600;
   transition   :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6); 
	
}


.hero-image {
          position: relative;
  overflow  :  hidden;
  border-radius: 15px; 
	
}

.hero-image img {
  width: 100%;
    height: 100%;
      object-fit: cover;
  border-radius: 15px;
    transition: transform 0.5s ease;

}

.hero-image:hover img {
  transform: scale(1.05);

}

.services-preview {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
   padding: 5rem 20px;
}

.services-container {
        max-width: 1200px;
  margin: 0 auto;
}

.services-preview h2 {
  font-size: 2.5rem;
					text-align: center;
	margin-bottom: 3rem;
	color: #2c3e50;
    font-weight     :  700;
}

.services-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   :  2rem;
}

.service-card {
   background: white;
               border-radius: 12px;
   overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8eef5;
}

.service-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);

		border-color: #667eea;
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit:   cover;
}

.service-card h3 {

    font-size: 1.4rem;
               color: #2c3e50;
	 margin: 1.5rem 1.5rem 0.75rem;
   font-weight: 700;


}

.service-card p  
  {
    color: #5a6c7d;
	  margin: 0 1.5rem 1.5rem;
		font-size   :     0.95rem;
	   line-height: 1.6;
     }

.conference-section {
	display  :    grid;
  grid-template-columns: 1fr 1fr;
 gap: 3rem;
    align-items: center;
   padding: 4rem 20px;
  max-width:    1200px;
  margin:   0 auto;
   background: white;
}

.conf-content h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.conf-content > p {
    margin-bottom     :      2rem;
    line-height: 1.8;
   color: #5a6c7d;
    font-size: 1.1rem;
}

.conf-features {

	    display: flex;
   flex-direction: column;
    gap: 1.5rem;
	}

.feature {
     padding     :    1.5rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
    border-left: 4px solid #667eea;
  border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
   border-left-color : #764ba2;
  background: linear-gradient(135deg, #e8ecff 0%, #ede8ff 100%);
}

.feature h4
	{
  color: #667eea;
   font-size: 1.1rem;
  margin-bottom    :  0.5rem;
  font-weight: 700;
}

.feature p {
  color: #5a6c7d;
	font-size: 0.95rem;
   line-height    :      1.6;
}

.conference-section img {


   width: 100%;
  border-radius: 15px;
   object-fit: cover;
    height: 400px;

}

.coaching-excellence {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  padding: 5rem 20px;
}

.coaching-excellence h2 {
  font-size: 2.5rem;
   text-align     :       center;
    margin-bottom: 3rem;
   color: #2c3e50;
	font-weight   :   700;
}

.excellence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width    :       1200px;
  margin: 0 auto;
	
}

.excellence-item {
	text-align: center;
	                    transition: all 0.3s ease;
}

.excellence-item img {
   width: 100%;
  height: 280px;
 object-fit: cover;
    border-radius: 12px;
   margin-bottom    :       1.5rem;
    transition: transform 0.3s ease;
}

.excellence-item:hover img {
  transform: scale(1.03);
}

.excellence-item h3 {
  font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
	font-weight: 700;
}

.excellence-item p {
    color: #5a6c7d;
       font-size: 0.95rem;
    line-height: 1.7;

}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 20px;
    text-align     :center;
   margin: 2rem 0;
}

.cta-wrapper 
 {
    max-width: 800px;
  margin     :    0 auto;
}

.cta-wrapper h2 {
         font-size: 2.2rem;
    color :        white;
  margin-bottom: 1rem;
  font-weight: 700; 


}


.cta-wrapper p {
          font-size    :  1.1rem;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom: 2rem;
     line-height: 1.6;
}

.cta-button    {
                    display: inline-block;
  padding: 1rem 2.5rem;
   background: white;
  color: #667eea;
   text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
	font-size: 1rem;
   transition     :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

#contact {
    padding: 5rem 20px;
 background: white;
}

.contact-section {
  max-width: 700px;
  margin: 0 auto;
}

.contact-wrapper h2		{
   font-size: 2.2rem;
    text-align: center;
  color     :      #2c3e50;
    margin-bottom :        0.5rem;
  font-weight  :700;


}

.contact-subtitle {
	   text-align: center;
  color:   #5a6c7d;
      margin-bottom: 2rem;
  font-size: 1rem;


	}

.contact-form {
	 display: flex;
   flex-direction:  column;
    gap: 1.5rem;
}

.form-group {
  display: flex;
   flex-direction     :    column;
}

.form-group label {
  margin-bottom: 0.5rem;
		color: #2c3e50;
   font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
      padding: 0.875rem 1rem;
    border: 2px solid #e8eef5;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
 transition   :  all 0.3s ease;
   color: #2c3e50;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color   :   #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea    {
   resize: vertical;
   min-height: 120px;
}

.submit-btn {
   	padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
 border  :  none;
  border-radius: 8px;
   font-weight: 700;
    font-size: 1rem;
   cursor   :     pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.submit-btn:active {
  transform: translateY(0);
}

.footer


{
  background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
  color: rgba(255, 255, 255, 0.8);
  padding  :      3rem 20px 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-logo-section {
   align-items: flex-start; 
	  display: flex; 

}

.footer-logo {
 height: 86px;
    width: auto;
  filter: brightness(0) invert(1);

}

.footer-section h4 {
	   color: white;
    margin-bottom: 1rem;
 font-size: 1.05rem;
     font-weight: 700;


}

.footer-section ul {
    list-style: none;
   display: flex;
  flex-direction: column;
         gap    :       0.75rem;
}

.footer-section a

{
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
   transition: color 0.3s ease;
   font-size:      0.95rem;
}  

.footer-section a:hover
{
                    color: white;
}

.footer-address {
          margin-bottom: 0.75rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-phone {

	   color: white;
    font-weight: 600;
	font-size   :      1rem;

}

.footer-bottom {
   text-align  :center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
    font-size :     0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 1.5rem 0;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 20px;
        border-bottom: 1px solid #e8eef5;
    }

    .nav-menu a::after {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-image {
        height: 300px;
    }

    .conference-section {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
        gap: 2rem;
    }

    .conference-section img {
        height: 300px;
    }

    .conf-content h2 {
        font-size: 1.8rem;
    }

    .services-preview h2,
    .coaching-excellence h2 {
        font-size: 1.8rem;
    }

    .excellence-item img {
        height: 220px;
    }

    .cta-wrapper h2 {
        font-size: 1.6rem;
    }

    .contact-wrapper h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-logo {
        height: 64px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .services-preview,
    #contact,
    .coaching-excellence {
        padding: 2.5rem 15px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding     :     4rem 20px;
  text-align    :       center;
  color: white;
   min-height: 300px;
    display: flex;
   align-items: center;
   justify-content: center;
}

.services-hero-content h1 {
  font-size    :      3rem;
      margin-bottom: 1rem;
     font-weight: 800;
}

.services-hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
}

.webinars-detailed,
.coaching-detailed,
.courses-detailed,
.conference-service {


   padding: 4rem 20px;
   background: white;


}

.webinars-detailed {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.coaching-detailed {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.courses-detailed {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.conference-service{
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.services-container {


    max-width: 1200px;
   margin: 0 auto;


}  

.service-detailed-item {
       display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 3rem;
  align-items: center;


}

.service-detailed-item.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-detailed-item.reverse .detail-image {
   order: 2;


}

.service-detailed-item.reverse .detail-content {
   order   :    1; 
	
}

.detail-image {

	  position: relative;
    overflow: hidden;
                    border-radius: 15px;}

.detail-image img {
	width: 100%;
  height: 100%;
   object-fit   :   cover;
  border-radius: 15px;
   transition: transform 0.5s ease;
}

.detail-image:hover img {
  transform: scale(1.08);
}

.detail-content h2 {
  font-size: 2.2rem; 
	  color: #2c3e50; 
	  margin-bottom: 1.5rem; 
	   font-weight: 800;
}

.detail-content p {
  line-height: 1.8;
   color: #5a6c7d;
    margin-bottom: 2rem;
        font-size: 1rem;
}

.features-list {

  display: flex;
          flex-direction: column;
    gap: 1.5rem;
  margin-bottom   :       2rem;
}

.feature-item {
   padding: 1.5rem;
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);
    border-radius: 10px;
   border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
 border-left-color  :        #764ba2;
  background: linear-gradient(135deg, #e8ecff 0%, #ede8ff 100%);
}


.feature-title {
    display: block;
    color: #667eea;
    font-weight: 700;
   margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.feature-item p {
 color: #5a6c7d;
  font-size    :     0.9rem;
  margin: 0;
}

.service-cta		{
   display: inline-block;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	text-decoration  :        none;
  border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.service-cta:hover {

  transform: translateY(-2px); 
	  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

.price-comparison {
  padding: 4rem 20px;
   background: white;
}

.price-comparison h2 {
	font-size: 2.2rem;
  text-align: center;
   color: #2c3e50;
   margin-bottom: 3rem;
  font-weight: 700; 

}

.comparison-table {
   display: flex;
  flex-direction:     column;
  gap: 0;
    overflow-x: auto;
   background: white;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.table-header,
.table-row {
  display:  grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
   gap: 0;
}

.table-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;

}

.table-row {
   border-bottom: 1px solid #e8eef5;
   background :      white;
}

.table-row:last-child{
  border-bottom : none;
}

.table-row:hover {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
}

.table-cell   {
  padding: 1.25rem;
    font-size: 0.95rem;
    display: flex;
  align-items :     center;
  color: #2c3e50;
}

.table-header .table-cell {
    color: white;
               font-weight: 700;
}

.testimonials-services {
  padding: 4rem 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-services h2 {
   font-size :    2.2rem;
	 text-align: center;
    color: #2c3e50;
    margin-bottom: 3rem;
   font-weight: 700;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.testimonial-text {
	color   :      #5a6c7d;
   font-size: 0.95rem;
	line-height: 1.8;
  margin-bottom: 1.5rem;
   font-style: italic;
}

.testimonial-author {
   display: flex;
   flex-direction: column;
  gap: 0.25rem;
}

.author-name {
   color: #2c3e50;
	 font-weight: 700;
    font-size: 0.95rem;
}

.author-role {
   color: #667eea; 
   font-size: 0.85rem; 
	
}

.service-faq {

    padding: 4rem 20px;
          background: white;
	


}

.service-faq h2 {
         font-size: 2.2rem; 
	   color: #2c3e50; 
	   margin-bottom: 3rem; 
	    font-weight: 700; 
	    text-align: center;
}

.faq-list {
  margin: 0 auto;
   max-width: 800px;
	 flex-direction: column;
   display: flex;
   gap: 1rem;
}

.faq-item {
    background: white;
   border    :     2px solid #e8eef5;
               -webkit-border-radius  :  10px;
  -moz-border-radius: 10px;
   border-radius: 10px;
    overflow: hidden;
	transition:all 0.3s ease;
}

.faq-item:hover		{
   border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-question	{
    width: 100%;
   padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4ff 100%);
   border: none;
        cursor: pointer;
   text-align: left;
   font-size: 1rem;
    font-weight:     600;
  color: #2c3e50;
    transition: all 0.3s ease;
   display: flex;
    align-items: center;
     justify-content: space-between;
}

.faq-question:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e8ecff 100%);
}

.faq-question::after		{
  content: '+';
	   font-size: 1.5rem;
	   color: #667eea;
	  font-weight    :700;
	    transition:        transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
} 

.faq-answer {
	max-height: 0;
    overflow: hidden;
  background: white;
	 transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height :500px;
}

.faq-answer p {
  padding   :1.5rem;

	  color: #5a6c7d;

		line-height: 1.8;

	  margin: 0;
}  

.call-to-action-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding   :       4rem 20px;
     text-align: center;
    color: white;

}

.cta-services-wrapper {
   max-width: 800px;

		margin    :   0 auto;
}

.cta-services-wrapper h2 {
   font-size: 2.2rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.cta-services-wrapper p {
  font-size: 1.1rem;
  opacity: 0.9;
   margin-bottom: 2rem;
}

.cta-services-button {
   display: inline-block;
  padding: 1rem 2.5rem;
                    background     :white;
  color: #667eea;
   text-decoration: none;
   border-radius: 50px;
  font-weight :700;
		transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-services-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.thankyou-container		{
     min-height: 600px;
    display: flex;
   align-items  : center;
   justify-content: center;
  padding :       3rem 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-wrapper {
  text-align :       center;
				 max-width: 700px;
  background :  white;
   padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(102, 126, 234, 0.15); 
	
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.thankyou-icon img    {
	    width: 80px;
  height: 80px;
  filter: brightness(0.3) sepia(100%) hue-rotate(90deg) saturate(3);
     }

.thankyou-wrapper h1 {
   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom     :      0.5rem;
        font-weight:      800;
} 

.thankyou-main {
    font-size: 1.3rem;
	color    :       #667eea;
    font-weight: 700;
   margin-bottom: 1rem;
}

.thankyou-description {
     font-size: 1rem;
  color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.thankyou-details   {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f0ff 100%);

    padding: 2rem;

				 border-radius: 12px;

   margin-bottom: 2rem;

  text-align: left;
}

.thankyou-details h2		{
   font-size: 1.3rem;
	 color: #2c3e50;
    margin-bottom: 1.5rem;
   text-align     :      center;
  font-weight: 700;
}

.thankyou-steps {
    list-style: none;
	display: flex;
    flex-direction: column;
  gap :    1.5rem;
}

.thankyou-steps li {
  display:flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {

	    display: flex;
    align-items: center;
    justify-content: center;
    width    :   40px;
      height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
               border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {

	    color: #2c3e50;
  font-size: 1rem;
   margin-bottom: 0.25rem;
               font-weight: 700;}

.step-content p {
    color: #5a6c7d;
  font-size  : 0.9rem;
  margin:       0;
}

.thankyou-cta-group {
    display: flex;
    gap    :      1rem;
       margin-bottom: 2rem;
    flex-direction: column;
}

.thankyou-cta-primary,
.thankyou-cta-secondary {
   padding: 0.875rem 2rem;
 -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
   border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
    -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
    font-size  :1rem;
	 transition: all 0.3s ease;

}

.thankyou-cta-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.thankyou-cta-primary:hover  {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);

}

.thankyou-cta-secondary {
  background: white;
    color: #667eea;
          border: 2px solid #667eea;
}

.thankyou-cta-secondary:hover {
          background     : #667eea;
    color: white;
}

.thankyou-contact-info {

	   padding: 1.5rem;
   background: white;
  border-radius: 10px;
               border     :       2px solid #e8eef5;}

.thankyou-contact-info h3 {
  font-size: 1rem;
   color: #2c3e50;
     margin-bottom: 1rem;
	 font-weight:  700; 

}

.thankyou-phone,
.thankyou-address {
  color: #5a6c7d;
  font-size: 0.95rem;
  margin: 0.5rem 0;
}

.thankyou-phone strong,
.thankyou-address strong {
   color: #2c3e50;

}

.next-steps		{
  padding    :   4rem 20px;
  background: white;
}

.next-steps h2 {


    font-size: 2rem;
    text-align: center;
  color:       #2c3e50;
    margin-bottom: 2.5rem;
  font-weight: 700;} 

.recommended-services {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:      2rem;
}

.recommended-card {

    background: white;
  border-radius: 12px;
         overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border: 1px solid #e8eef5;
}

.recommended-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.recommended-card img    {
	height: 200px;
   width: 100%;
	object-fit: cover;
}

.recommended-card h3 {
      font-size: 1.2rem;
  color: #2c3e50;
  padding: 1.5rem 1.5rem 0.5rem;
    font-weight :      700;
}

.recommended-card p {
   color: #5a6c7d;
   font-size: 0.9rem;
	padding: 0 1.5rem;
  line-height: 1.6;
}

.recommended-link {
  display: inline-block;
    margin: 1rem 1.5rem 1.5rem;
    padding:        0.65rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
  text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.recommended-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); 

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detailed-item,
    .service-detailed-item.reverse {
        grid-template-columns: 1fr;
    }

    .service-detailed-item.reverse .detail-image,
    .service-detailed-item.reverse .detail-content {
        order: auto;
    }

    .detail-content h2 {
        font-size: 1.6rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .table-cell {
        padding: 0.5rem 0;
    }

    .table-row::before {
        content: attr(data-label);
        font-weight: 700;
    }

    .thankyou-wrapper {
        padding: 2rem;
    }

    .thankyou-icon img {
        width: 60px;
        height: 60px;
    }

    .thankyou-wrapper h1 {
        font-size: 1.8rem;
    }

    .thankyou-cta-group {
        flex-direction: column;
    }

    .price-comparison h2,
    .testimonials-services h2,
    .service-faq h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.4rem;
    }

    .service-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-steps {
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.95rem;
    }

    .recommended-services {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 3rem 20px;
   text-align: center;
	 color    :     white;
  min-height: 250px;
   display: flex;
   align-items: center;
   justify-content: center;
}

.about-hero-content h1  {
    font-size: 2.8rem;
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.about-hero-content p {
  font-size: 1.2rem;
    opacity: 0.9;
}

.about-main {
   padding: 4rem 20px;
  background: white;
}

.about-container {
   max-width :    1000px;
	 margin: 0 auto;
}

.about-content		{
  display  :    flex;
                    flex-direction: column;
    gap: 1.5rem;
}

.about-content h2     {
    font-weight: 800;
   margin-bottom: 1rem;
   font-size: 2.2rem;
  color: #2c3e50;
}

.about-content p   {
   font-size: 1rem;
    color: #5a6c7d;
   line-height: 1.9;
   text-align: justify;
}

.about-image-section {
   margin-top:2rem;
    display: none;
}

.about-image {
   width  :        100%;
    height  :        400px;
               object-fit: cover;
    border-radius: 15px;
   -webkit-border-radius: 15px;
} 

.about-mission   {
	  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding     :       4rem 20px;}

.about-mission h3		{
   font-size: 1.4rem;

    color     :     #2c3e50;

   margin-bottom    :       1rem;

    font-weight   :        700;
}

.mission-card

{
       background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
  transition: all 0.3s ease;
	margin-bottom: 1.5rem;
     }

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
}

.mission-card p
	{
		color: #5a6c7d;
					font-size: 0.95rem;
   line-height: 1.8;
   margin: 0;
	}

.about-story {
   padding: 4rem 20px;
	   background: white;
}

.about-story h2 {
  color: #2c3e50;
  margin-bottom: 3rem;
  text-align: center;
   font-size: 2.2rem;
   font-weight: 800;
}

.story-timeline {
	   display: flex;
   flex-direction: column;
   gap: 2rem;
    position   :        relative;
	


}

.story-timeline::before {
  content: '';
    position: absolute;
  left: 50%;
   top: 0;
    bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
  transform: translateX(-50%);
}

.story-item {

	  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 2rem;
   align-items: center;
   margin-bottom: 1rem;
}

.story-item:nth-child(even) {

   grid-template-columns: 1fr 1fr;


}

.story-item:nth-child(even) .story-year {
   order: 2;
}

.story-item:nth-child(even) .story-text 
 {
   order: 1;
}

.story-year{
   text-align: center;
   font-size: 1.6rem;
  font-weight: 800;
	color: #667eea;
   position: relative;
  z-index: 1;
}

.story-year::before {
	  content: '';
  position: absolute;
   left    :    50%;
    top: 50%;
   width    :        16px;
         height: 16px;
    background: white;
  border     :      4px solid #667eea;
         border-radius: 50%;
  transform: translate(-50%, -50%);}

.story-text h3 {
	   font-size:    1.2rem;
   color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight: 700;
}

.story-text p {
    line-height   :     1.7;
  color: #5a6c7d;
   font-size: 0.95rem;
	 margin   : 0;
}

.about-values {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
   padding: 4rem 20px;
}

.about-values h2    {
    font-size: 2.2rem;
    color: #2c3e50;
  text-align: center;
    margin-bottom  :      3rem;
    font-weight: 800;
}

.values-grid


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
     }

.value-item		{
   background     :     white;
    padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #667eea;
}

.value-item:hover    {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
} 

.value-item h3

{
  font-size: 1.2rem;
   color: #2c3e50;
  margin-bottom: 0.75rem;
   font-weight: 700;
}

.value-item p {
   color:        #5a6c7d;
  font-size: 0.9rem;
	 line-height: 1.6;
        margin: 0;
}

.about-stats {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 20px;
}

.stats-grid     {

	display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap:        2rem;
	}

.stat-box {
   color: white;
   text-align: center;
}

.stat-number  {

          font-size: 2.5rem;
	font-weight: 800;
    margin-bottom: 0.5rem;
               display: block;
}

.stat-label {
		font-size: 1rem;
    opacity: 0.9;
                    display: block;
}

.about-closing {
	padding: 4rem 20px;
  background: white;
			text-align: center;
}

.about-closing h2
	{
   font-size: 2.2rem; 
    color: #2c3e50; 
    margin-bottom: 1rem; 
    font-weight: 800;
}

.about-closing p {
  font-size: 1.1rem;
               color: #5a6c7d;
	margin-bottom :      2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;

}

.about-cta {
	display: inline-block;
	padding: 0.875rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
  border-radius: 50px;
  font-weight  :   600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.about-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .about-content h2 {
        font-size: 1.6rem;
    }

    .about-image-section {
        display: block;
    }

    .story-timeline::before {
        left: 30px;
    }

    .story-item {
        grid-template-columns: 1fr;
        padding-left: 80px;
        position: relative;
    }

    .story-item:nth-child(even) {
        grid-template-columns: 1fr;
        padding-left: 80px;
    }

    .story-item:nth-child(even) .story-year,
    .story-item .story-year {
        position: absolute;
        left: 0;
        order: auto;
    }

    .story-item:nth-child(even) .story-text,
    .story-item .story-text {
        order: auto;
    }

    .story-year::before {
        left: 14px;
    }

    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .about-mission h3,
    .about-values h2,
    .about-story h2,
    .about-closing h2 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-number {
        font-size: 1.8rem;
    }
}@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.4rem;
    }

    .about-hero-content p {
        font-size: 0.95rem;
    }

    .about-content p {
        text-align: left;
        font-size: 0.9rem;
    }

    .mission-card,
    .value-item {
        padding: 1.5rem;
    }

    .story-item {
        padding-left: 60px;
    }

    .story-timeline::before {
        left: 20px;
    }

    .story-year {
        font-size: 1.2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .story-text h3 {
        font-size: 1rem;
    }

    .story-text p {
        font-size: 0.85rem;
    }
}.policySection {
  padding: 80px 2rem; 
	        background: #f8f9fa; 
	  min-height: 600px;
}


.policyContainer {
  max-width: 900px;
 margin   :0 auto;
	 text-align: left;
    background: white;
         padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
      border-bottom: 3px solid #667eea;
   padding-bottom: 1rem;
   font-weight: 800;
   font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 2rem;
     }

.policyContainer h2 {
  font-size    :        1.5rem;
  color : #2c3e50;
   margin-top  :   2rem;
  margin-bottom: 1rem;
  font-weight     :     700;
   color: #667eea;
}

.policyContainer p {
     color: #5a6c7d;
    margin-bottom: 1.2rem;
  line-height: 1.9;
  font-size: 0.95rem;
                    text-align    :justify;


}

.policyContainer strong {
  color: #2c3e50;
  font-weight: 700; 
	
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        text-align: left;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .policyContainer h2 {
        font-size: 1.05rem;
        margin-top: 1.25rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
        line-height: 1.7;
    }
}