*

{


    margin: 0;
    padding: 0;
    box-sizing: border-box;


}

html {
    scroll-behavior: smooth; 
	
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
      background-color: #fafbfc;}

.navbar  
  {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
	 top: 0;
   z-index    :  1000;
       border-bottom: 1px solid #e1e8ed;
}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
   justify-content:        space-between;
   align-items: center;
}

.nav-logo img {
  height: 64px;

    width: auto; 
	
}

.burger-menu{
	 display: none;
               background   :     none;
         border  :     none;
        cursor: pointer;
  padding: 0.5rem;


}

.burger-menu img {
   width: 28px;
	  height: 28px;
}

.nav-links {
   display: flex;
          list-style: none;
  gap     :   2rem;
   align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
   transition: color 0.3s ease;
   position: relative;
}



.nav-links a:hover {


  color: #3498db;


     }

.nav-links a::after {
  content: '';
    position: absolute;
    bottom: -5px;
	left: 0;
  width    :0;
      height: 2px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
         transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
	max-width: 1200px;
       margin: 0 auto;
  padding    : 4rem 2rem;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
    min-height  :     600px;
}

.hero-content h1 {
	         font-size: 3.5rem;
   line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #2c3e50, #3498db);
	background-clip: text;
     }

.hero-content p {

	 font-size: 1.1rem;
   margin-bottom: 2rem;
      color: #555;
    line-height: 1.8; 

	}

.cta-button, .primary-cta, .secondary-cta {
          display: inline-block; 
	  padding: 1rem 2.5rem; 
	  background: linear-gradient(135deg, #3498db, #2ecc71); 
	        color    :      white; 
	  text-decoration: none; 
		 border-radius    :      50px; 
	    font-weight    :       600; 
	   transition: all 0.3s ease; 
	   border: none; 
	  cursor   :   pointer; 
	   font-size: 1rem;
}

.cta-button:hover, .primary-cta:hover, .secondary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.hero-image img {
       width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.why-choose-us     {
  max-width     :1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
    margin-bottom    :   3rem;
}

.section-header h2 {
   font-size  :2.5rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.section-header p    {
    color: #7f8c8d;
   font-size     :   1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
	
}

.feature-card {
	background: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
   border-left: 4px solid #3498db;
   position: relative;
      overflow  :    hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
   top: -50%;
   right: -50%;
   width: 200px;
   height: 200px;
  background: linear-gradient(135deg, #ecf0f1, transparent);
    border-radius: 50%;
         transition:        all 0.6s ease;
}


.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
  border-left-color: #2ecc71;
}

.feature-number {


    font-size: 2.5rem;
   font-weight     :      700;
   color:   #ecf0f1;
    position: relative;
          z-index    :      1;
  margin-bottom: 0.5rem;


}

.feature-card h3 {
  margin-bottom: 0.5rem;
     position: relative;
     color: #2c3e50;
       font-size:        1.3rem;
     z-index: 1;
	}

.feature-card p {
     color: #7f8c8d;
    position: relative;
    z-index: 1;


}

.services-preview  {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-container {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

    gap: 2.5rem;
}

.service-item {
  background: white;
    border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.service-item img  {
    width: 100%;
    height: 250px;
  object-fit: cover;
   transition: transform 0.3s ease;
}

.service-item:hover img
{
  transform: scale(1.05);
}

.service-item h3 {
  font-size: 1.5rem;
    margin: 1.5rem;
  color: #2c3e50;
}

.service-item p {
       padding     :        0 1.5rem 1.5rem;
   color   :      #555;
   line-height: 1.8;
}

.webinars-conferences {
		max-width :     1200px;
     margin: 4rem auto;
   padding: 2rem;}

.section-content {
      display: grid;
    grid-template-columns :    1fr 1fr;
   gap: 3rem;
  align-items: center;
	}

.webinar-text h2	{


	color: #2c3e50;
  font-size   :       2.3rem;
   margin-bottom: 1.5rem;
     }

.webinar-text p {
  font-size: 1.05rem;
          color: #555;
   margin-bottom: 1.5rem;
	 line-height: 1.8;
}

.benefit-list {
  list-style     :    none;
	  margin: 1.5rem 0;
	
}

.benefit-list li {
  padding  :        0.75rem 0;
   padding-left: 1.5rem;
  position  :relative;
     color: #2c3e50;
    font-weight: 500;
}

.benefit-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
 color: #2ecc71;
  font-size: 1.5rem;
}

.webinar-image img {
    width: 100%;
    border-radius   :        12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.secondary-cta {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.coaching-programs {
  margin: 4rem auto;
  padding    :   0 2rem;
   max-width: 1200px;
}

.programs-grid {
  display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
    margin-top: 2rem;
	}

.program-card {
   -moz-border-radius: 12px;
	 background: white;
   -webkit-border-radius: 12px;
   border-radius: 12px;
   padding: 2rem;
          border: 2px solid #ecf0f1;
   transition: all 0.3s ease;
    position: relative;}

.program-card.featured {
    border-color: #3498db;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
  transform: scale(1.03);
}

.program-card:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: #3498db;
}

.program-level {


   display: inline-block;
  background: linear-gradient(135deg, #3498db, #2ecc71);
	 color: white;
  padding: 0.5rem 1rem;
   border-radius: 50px;
    font-size: 0.9rem;
               font-weight: 600;
    margin-bottom: 1rem; 
	
     }

.program-card h3 {


    font-size  :1.5rem;
  color: #2c3e50;
   margin-bottom  :  1rem;

}

.program-card p {
	color: #7f8c8d;
    margin-bottom: 1.5rem;
  line-height: 1.6;
}

.program-features p     {
   color: #2c3e50;
    margin: 0.5rem 0;
    font-weight: 500;
}

.cta-section {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  margin: 4rem 0;
  padding: 3rem 2rem;
}

.cta-box {
    max-width: 1200px;
  margin: 0 auto;
	 text-align: center;
    color: white;
}



.cta-box h2
	{
   font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
	opacity: 0.95; 
	
}

.cta-box .primary-cta {
	background: white;
  color: #3498db;
   font-weight: 700;



}

.cta-box .primary-cta:hover {
    background: #f8f9fa;
}


.contact-section {

  max-width    :      1200px;
		margin   : 4rem auto;
	                    padding: 0 2rem;}

.contact-wrapper {
    background: white;
  border-radius: 15px;
         padding   :  3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-header {
    text-align: center;

	   margin-bottom: 2.5rem;
}

.contact-header h2 {
    font-size: 2.2rem;
  margin-bottom: 0.5rem;
     color     :   #2c3e50;
}

.contact-header p {
  color: #7f8c8d;
     font-size   :     1.05rem;


}

.contact-form {

		 max-width: 600px;
    margin: 0 auto;


}  

.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   {
   -moz-border-radius: 8px;
    width: 100%;
  padding :    0.75rem;
   border: 2px solid #ecf0f1;
    -moz-transition  :       all 0.3s ease;
    border-radius: 8px;
	-webkit-border-radius: 8px;
               font-size: 1rem;
       font-family: inherit;
  -o-transition: all 0.3s ease;
    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 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {

	  width: 100%;
	padding: 1rem;
  background: linear-gradient(135deg, #3498db, #2ecc71);
         color: white;
    border: none;
   border-radius: 50px;
    font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
   transition: all 0.3s ease;}

.submit-button:hover {
  transform: translateY(-2px);
     box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.footer {
   color: white;
  margin-top   :        4rem;
        padding: 3rem 2rem;
    background: #2c3e50;
}

.footer-container {
                    max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns: auto 1fr;
   gap: 3rem;
               align-items: start;
    margin-bottom: 2rem;

}

.footer-logo-img {
    height: 86px;
   width  :  auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
}

.footer-contact h3,
.footer-links h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-contact p {
     margin-bottom: 0.5rem;
  opacity  :    0.9;

}

.footer-links ul

{
    list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
	 color: white;
   -o-transition: color 0.3s ease;
   text-decoration: none;
  transition: color 0.3s ease;
    -webkit-transition :  color 0.3s ease;
}

.footer-links a:hover {
  color: #3498db;
}

.footer-bottom
	{
   text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   opacity    :        0.8;
}@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border-radius: 0 0 12px 12px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 2rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 2rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .section-content {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .program-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-button, .primary-cta, .secondary-cta {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.services-hero   {
  background: linear-gradient(135deg, #3498db, #2ecc71);
    color: white;
    padding: 4rem 2rem;
   text-align: center;
   min-height: 300px;
  display: flex;
  align-items: center;
  justify-content    :    center;
}

.services-hero-content h1 {
    font-size     : 3rem;
	 margin-bottom  : 1rem;
    line-height: 1.2;

}

.services-hero-content p {
    font-size: 1.2rem;
  opacity: 0.95;
    max-width: 600px;
   margin: 0 auto;
}

.services-detailed {
	max-width: 1200px;
 margin: 4rem auto;
        padding: 0 2rem;
     }

.services-container {
  display: flex;
  flex-direction    :       column;
  gap: 4rem;
}

.service-detail {
       display: grid;
   grid-template-columns: 1fr 1fr;
                    gap    :        3rem;
   align-items: center;
    background: white;
   border-radius: 12px;
    padding   :2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
}

.service-detail:hover{
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.service-detail:nth-child(even) {
          direction: rtl;
}

.service-detail:nth-child(even) > *
	{
	direction: ltr;
}

.service-detail-image img {


      width: 100%;
  border-radius: 10px;
  object-fit: cover;
}



.service-detail-content h2 {
   font-size: 2rem;

					 color: #2c3e50;

	   margin-bottom: 1rem; 
	
}

.service-detail-content > p  
  {
  font-size: 1.05rem;
  color:        #555;
	 margin-bottom: 1.5rem;
   line-height: 1.8;
}

.service-benefits {

   margin: 2rem 0;
   padding: 1.5rem;
    background: #f8f9fa;
    border-left  :   4px solid #2ecc71;
    border-radius: 8px;

}

.service-benefits h3 {
    color: #2c3e50;
  margin-bottom: 1rem;
   font-size: 1.1rem;
	
}

.service-benefits ul


{
   list-style: none;
}

.service-benefits li {
  padding: 0.5rem 0;

	    padding-left: 1.5rem;

	  position  :       relative;

	    color: #555;
}

.service-benefits li::before {

  content: '✓';
  position: absolute;
  left: 0;
    color: #2ecc71;
    font-weight: bold;
   font-size: 1.2rem;
	}

.service-price
{

  display: flex;
  justify-content: space-between;
                    align-items: center;
   padding: 1rem;
  background: linear-gradient(135deg, #ecf0f1, #f8f9fa);
  border-radius: 8px;
	margin-top: 1.5rem;
}

.price-label {
	font-weight: 600;
    color: #2c3e50; 
	
}

.price-value {
  font-size: 1.5rem;
   font-weight: 700;
   color: #2ecc71;
}

.comparison-section {
  max-width: 1200px;
    margin: 4rem auto;
  padding: 0 2rem; 

}

.comparison-header {
   text-align: center;
   margin-bottom: 3rem;
}

.comparison-header h2

{
     font-size: 2.5rem;
   margin-bottom: 0.5rem;
}

.comparison-header p {
  color: #7f8c8d;
	font-size: 1.1rem;
}

.comparison-table {

         width: 100%;
   overflow-x: auto;}

table {
   width: 100%;
   border-collapse: collapse;
   background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	border-radius     : 10px;
  overflow: hidden;
}

table thead {
  background: linear-gradient(135deg, #3498db, #2ecc71);
	color:white;
	
}

table th {
  padding: 1.5rem;
     text-align:   left;
      font-weight: 600;
}

table td {
	padding: 1.5rem;
	  border-bottom: 1px solid #ecf0f1;
		color: #2c3e50;
}

table tbody tr:hover {
               background: #f8f9fa;
	
}

table tbody tr:last-child td {
      border-bottom: none;
}

.process-section {
  max-width    :       1200px;
   margin  :     4rem auto;
  padding: 0 2rem;
}

.process-header {
	text-align: center;
   margin-bottom: 3rem;
}

.process-header h2 {

    font-size: 2.5rem;
   margin-bottom: 0.5rem;}

.process-header p {
	    color: #7f8c8d;
    font-size: 1.1rem;
	}

.process-steps {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
   background    :     white;
  padding: 2rem;
   border-radius     :12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
   transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}  

.step::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
   right: 0;
   height: 4px;
  background: linear-gradient(90deg, #3498db, #2ecc71);
  transform: scaleX(0);
               transform-origin: left;
			transition: transform 0.3s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover     {
  transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.step-number {
	 font-size: 2.5rem;
                    font-weight: 700;
  color: #ecf0f1;
   margin-bottom: 0.5rem;
}

.step h3 {
  font-size: 1.3rem;
         color: #2c3e50;
   margin-bottom: 1rem;
}

.step p {
    color: #7f8c8d;
    line-height: 1.6; 

}

.testimonials-section {
	   max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
	}

.testimonials-header {
    text-align: center;
  margin-bottom: 3rem;
}

.testimonials-header h2 {
        font-size     :    2.5rem;
  margin-bottom: 0.5rem;
}

.testimonials-header p {


    color: #7f8c8d;
    font-size    :      1.1rem;
	}  

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}



.testimonial {
   background: white;
   border-radius: 12px;
	 padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #3498db;
   transition   :        all 0.3s ease;


}

.testimonial:hover {
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
    border-left-color  :#2ecc71;
}

.testimonial-content p {
   font-size: 1.05rem;
  color: #555;
    font-style     :       italic;
   line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  padding-top     :1rem;
   border-top: 1px solid #ecf0f1;
}

.author-name {
    font-weight    :  600;
  color: #2c3e50;
  margin-bottom: 0.25rem;
}

.author-role{
  font-size: 0.9rem;
    color: #7f8c8d;
}  

.faq-section {
  max-width   :        1200px;
   margin: 4rem auto;
	 padding:        0 2rem;
}  

.faq-header {

  text-align: center;
  margin-bottom: 3rem;
     }

.faq-header h2 {
  margin-bottom: 0.5rem; 
	   font-size: 2.5rem;
}

.faq-header p {
   color: #7f8c8d;
   font-size: 1.1rem;
}

.faq-container {
  display: grid;
          gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item    {


	 background: white;
    border-radius :  10px;
    overflow   :   hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: all 0.3s ease;}

.faq-question     {
    padding: 1.5rem;
  background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
   cursor: pointer;
  font-weight:      600;
    color  :      #2c3e50;
       display: flex;
    justify-content: space-between;
   align-items: center;
	user-select: none;
    transition: all 0.3s ease; 

}  

.faq-question:hover {
  background: linear-gradient(135deg, #ecf0f1, #e1e8ed);


}

.faq-question::after {
  content: '+';

   font-size: 1.5rem;

   font-weight  :        300;

   transition: transform 0.3s ease;
}

.faq-item.active .faq-question {

	  background: linear-gradient(135deg, #3498db, #2ecc71);
	color: white;}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
   	max-height    :      0;
   overflow: hidden;
			transition: max-height 0.3s ease;

}

.faq-item.active .faq-answer {
	max-height: 500px;
} 

.faq-answer {
  padding: 1.5rem;
   color: #555;
    line-height: 1.8;
  border-top: 1px solid #ecf0f1;
}

.thankyou-section {
	    min-height: 600px;
  display: flex;
    align-items: center;
  justify-content: center;
         padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
     }

.thankyou-container {

   max-width: 600px;
	 text-align: center;
     }

.success-icon {


	 margin-bottom: 2rem;
    display    :     flex;
  justify-content: center;
}

.success-icon img {
    width  :      80px;
  height: 80px;
	animation    :        scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1


{
   color    :#2c3e50;
   margin-bottom: 1rem;
    font-size: 2.5rem;
}


.success-message {
    font-size: 1.2rem;
   color: #7f8c8d;
    margin-bottom: 3rem;
}

.next-steps {
  background   :white;
   border-radius :       12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.next-steps h2 {


    font-size: 1.5rem;
  color: #2c3e50;
               margin-bottom    :        1.5rem;

}

.steps-list {
   text-align: left;
}

.step-item {
	  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.step-item:last-child

{
   	 margin-bottom: 0;}

.step-icon {
    flex-shrink: 0;
   width: 50px;
  height :    50px;
  background: linear-gradient(135deg, #3498db, #2ecc71);
  border-radius: 50%;
  display:    flex;
       align-items: center;
 justify-content     : center; 
	
}

.step-icon img

{
     width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);


}

.step-text h3 {
  font-size: 1.1rem;
  color: #2c3e50;
    margin-bottom: 0.3rem;
}

.step-text p {
    color: #7f8c8d;
  font-size: 0.95rem;
}

.info-box {
     background: #ecf0f1;
    border-left: 4px solid #3498db;
	 padding: 1.5rem;
   border-radius     :      8px;
  margin-bottom: 2rem;
    text-align: left;
}

.info-box h3 {
   color: #2c3e50;
  margin-bottom: 0.5rem;
}


.info-box p {
         color: #555;
  font-size: 0.95rem;
  line-height: 1.6;}

.action-buttons		{
    display: flex;
    gap: 1rem;
     justify-content: center;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
   padding: 1rem 2rem; 
						border-radius: 50px; 
	    text-decoration: none; 
	  font-weight: 600; 
	    transition: all 0.3s ease; 
	       display: inline-block;
}

.button-primary {

	  background: linear-gradient(135deg, #3498db, #2ecc71);
                    color: white;
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.button-secondary {
    background: white;
   color: #3498db;
   border: 2px solid #3498db; 

}

.button-secondary:hover {
   background: #3498db;
  color: white;
}

.promo-section {

  max-width: 1200px; 
	    margin: 4rem auto; 
	   padding   :      0 2rem;


}

.promo-content {

		text-align  :      center;

}

.promo-content h2 {
    font-size     :        2rem;
   color: #2c3e50;
   margin-bottom: 0.5rem; 

}

.promo-content p {
    color: #7f8c8d;
     font-size: 1.05rem;
   	 margin-bottom: 2rem;
	} 

.promo-cards{
  display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.promo-card {
  background: white;
        border-radius: 12px;
    padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align :     center;
    transition: all 0.3s ease;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.promo-number	{
	 font-size: 2rem;
    font-weight: 700;
    color: #ecf0f1;
  margin-bottom: 0.5rem;
}  

.promo-card h3 {
	 color: #2c3e50;
   margin-bottom: 0.5rem;
}

.promo-card p {
	 color: #7f8c8d;
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .service-detail {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .service-detail:nth-child(even) {
        direction: ltr;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    table {
        font-size: 0.9rem;
    }

    table th,
    table td {
        padding: 1rem 0.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .success-icon img {
        width: 60px;
        height: 60px;
    }

    .service-detail-content h2 {
        font-size: 1.2rem;
    }

    .step-item {
        gap: 0.75rem;
    }

    .step-icon {
        width: 40px;
        height: 40px;
    }

    .step-icon img {
        width: 22px;
        height: 22px;
    }
}.policySection {
 padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ecf0f1);
  min-height     :    600px;
}

.policyContainer {
   max-width: 800px;
   margin: 0 auto;
	text-align: left;
  background: white;
   padding: 3rem;
					border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);

}

.policyContainer h1  {
        border-bottom: 3px solid #3498db;
    font-size: 2.8rem;
    padding-bottom: 1rem;
   font-weight: 700;
    margin-bottom: 2rem;
   color: #2c3e50;


}

.policyContainer h2 {
	font-size    : 1.7rem;
    color: #2c3e50;
   margin-top    :       2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #3498db;


}

.policyContainer h2:first-of-type {
	margin-top: 0;}

.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;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}