* {
    margin: 0;
   padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #c41e3a;
    --accent-color: #f5a623;
    --light-gray: #f8f9fa;
    --dark-gray: #2d2d44;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color: var(--text-dark);
   background-color    :  #ffffff;
         overflow-x     :hidden;
}

.navbar-main {
  background: var(--primary-color);
  position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {
      max-width: 1200px;
   margin   :   0 auto;
   padding: 1rem 2rem;
    display: flex;
       justify-content: space-between;
  align-items: center;
}

.logo-section {
   flex: 0 0 auto;
}

.nav-logo {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
   gap :       2.5rem;
  list-style: none;
  align-items: center;
  display: flex;
}



.nav-links a {
        color: #ffffff;
       text-decoration:   none;
     font-weight: 500;
       font-size    :        1rem;
     transition: var(--transition);
       position: relative;

}

.nav-links a::after {
  content: '';
   position: absolute;
               bottom: -5px;
   left: 0;
   width     :      0;
   height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
    width:100%;
}

.burger-menu {
               flex-direction: column;
   gap: 6px;
  cursor: pointer;
   background: none;
          border: none;
   display: none;
 z-index: 1001;
}

.burger-menu span {
    width: 25px;
  height: 3px;
  background: #ffffff;
   border-radius: 2px;
  transition: var(--transition);
}

.hero-section

{


  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
  color     :        white;
    padding: 6rem 2rem;
	 display: flex;
	 align-items: center;
	gap: 3rem;
  max-width: 1200px;
	margin: 0 auto;
  min-height: 600px;
	}

.hero-content {
  flex: 1;
	 animation   :   slideInLeft 0.8s ease-out;
}

.hero-content h1 {


  font-size :    3.5rem;
  font-weight: 700;
      margin-bottom: 1rem;
    line-height: 1.2;
	}

.hero-content p {
  font-size: 1.3rem;
    margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
	 line-height: 1.8;
}

.hero-image  {
	    flex: 1; 
	  animation: slideInRight 0.8s ease-out;
	}

.hero-image img {
    width: 100%;
    height :auto;
    border-radius :  15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}



.cta-button {
   display: inline-block;
  background: var(--secondary-color);
  color: white;
   padding: 1rem 2.5rem;
	border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
    font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.cta-button:hover {
               background     :    #a01830;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.cta-button-secondary {
  display    :    inline-block;
  background: var(--accent-color);
  color: var(--text-dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
   text-decoration    : none;
         font-weight: 600;
    font-size: 1.1rem;
  transition: var(--transition);
}

.cta-button-secondary:hover {
    background: #e09500;
  transform: scale(1.05);
}

.features-section {
	          padding:  5rem 2rem;
  background: var(--light-gray);}

.features-container {
   max-width: 1200px;
    margin     : 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}


.feature-card {
    background: white;
   padding: 2rem;
	 border-radius: 12px;
  text-align :  center;
  transition: var(--transition);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border-top: 4px solid var(--secondary-color);
} 

.feature-card:hover		{
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.feature-icon {


  margin-bottom: 1.5rem;
     }



.feature-icon img {
    width   :50px;
   height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: var(--transition);
}

.feature-card:hover .feature-icon img {


  filter: drop-shadow(0 4px 8px rgba(196, 30, 58, 0.3));
  transform: scale(1.1);
}

.feature-card h3 {
    font-size  :       1.5rem;
  margin-bottom   :     1rem;
  color: var(--primary-color);
}

.feature-card p {
  color: var(--text-light);
    line-height: 1.7;
}

.showcase-section {
         padding: 5rem 2rem;
	background: white;
    max-width: 1200px;
 margin   : 0 auto;
}


.showcase-section h2    {
  text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-color);
}


.showcase-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap  :     2rem;
	}

.showcase-item {
  border-radius    :   12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer; 

}

.showcase-item:hover

{
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.showcase-item img {
   width: 100%;
   height:    250px;
      object-fit: cover;
  transition: var(--transition);
}

.showcase-item:hover img{
  transform: scale(1.1);
}

.showcase-item h4 {
  padding: 1.5rem 1rem 0.5rem;
  color: var(--primary-color);
	font-size: 1.3rem;
}

.showcase-item p {
    padding :  0 1rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

.coaching-section {
	  background: linear-gradient(135deg, #f5f5f5 0%, var(--light-gray) 100%);
	   padding: 5rem 2rem;
	  max-width: 1200px;
	   margin: 0 auto;}

.coaching-section h2 {
         text-align: center;
        font-size: 2.5rem;
    margin-bottom: 2rem;
  color: var(--primary-color);
}

.coaching-content {
  text-align: center;
  margin-bottom: 3rem;
}

.coaching-content p {


   font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 2rem;
  line-height :     1.8; 
	
	}

.coaching-offerings		{
	 display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	         gap: 2rem;
	    margin-top: 2rem;
	}

.offering {
  background: white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
	
}

.offering:hover     {
  background: var(--primary-color);
   color: white;
  transform: translateY(-5px);

}

.offering h4 {
       font-size: 1.3rem;
  margin-bottom   :        1rem;
  color: var(--secondary-color);
}

.offering:hover h4 {
  color: var(--accent-color);
}

.offering p {
  color: var(--text-light);
   line-height: 1.6;
} 

.offering:hover p {
  color: rgba(255,255,255,0.9);
}

.cta-consulting {
  background: var(--primary-color);
    color: white;
   padding: 4rem 2rem;
  text-align  :      center;
}

.cta-box {
  max-width: 800px;
   margin: 0 auto;
}

.cta-box h2 {
   font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-box p {


	font-size: 1.1rem;
       margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.contact-section {
	 max-width: 1200px;
   margin: 0 auto;
    background: white;
    padding: 5rem 2rem;
}

.contact-section h2 {
   text-align: center;
    font-size: 2.5rem;
	 margin-bottom: 3rem;
  color: var(--primary-color);
}

.contact-wrapper {
       display: grid;
         grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
     }

.contact-form	{
  background: var(--light-gray);
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.form-group {
   margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
       width: 100%;
		 padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
   border-radius: 8px;
                    font-family: inherit;
  font-size     :  1rem;
  transition: var(--transition);
    background  :       white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline     :   none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.contact-form textarea {
  resize: vertical;
    min-height: 150px;
}

.submit-button {
          width: 100%;
   padding: 1rem;
  background: var(--secondary-color);
   color    :    white;
  border: none;
   border-radius: 8px;
				 font-size: 1.1rem;
       font-weight: 600;
    cursor  : pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.submit-button:hover {
   background: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.3);

}

.contact-info {
    display: flex;
  flex-direction: column;
   gap: 2rem;
}

.info-item {
  padding   : 1.5rem;
  background: var(--light-gray);
   border-radius    :     10px;
  border-left: 4px solid var(--secondary-color);
}

.info-item h4 {
     color: var(--primary-color);
   margin-bottom: 0.5rem;
	font-size    :   1.2rem;}

.info-item p {

	  color: var(--text-light);
    line-height: 1.8;
     }

.main-footer {
  background: var(--primary-color);
    color: white;
  padding: 4rem 2rem 2rem;
                    margin-top: 3rem;
}

.footer-container {
   max-width: 1200px;
    margin :     0 auto;
} 

.footer-brand {
  text-align: center;
   margin-bottom   :   2rem;
}

.footer-logo {
	 height: 50px;

  width: auto;

  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h5 {
	 font-size: 1.2rem;
   margin-bottom   :      1rem;
  color: var(--accent-color);
}

.footer-column ul {
   list-style: none;
}

.footer-column ul li {
   margin-bottom: 0.5rem;
}

.footer-column a {
  color: rgba(255,255,255,0.8);
    text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--accent-color);
}

.footer-column p {
	  color: rgba(255,255,255,0.8);

  line-height: 1.8;

	font-size: 0.95rem;
     }

.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);


}@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary-color);
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .hero-section {
        flex-direction: column;
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .coaching-offerings {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .showcase-section h2,
    .coaching-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-form,
    .info-item {
        padding: 1.5rem 1rem;
    }

    .nav-links {
        gap: 0.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-gray) 100%);
   color: white;
					padding: 5rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
   align-items: center;
   justify-content: center;
}

.services-hero-content h1    {
          font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1rem;
        animation: slideInDown 0.8s ease-out;
}

.services-hero-content p {
    font-size: 1.3rem; 
  color: rgba(255,255,255,0.9); 
    animation:slideInUp 0.8s ease-out 0.2s both;


}

.services-main {
   padding: 5rem 2rem;
	 background  :   white; 

}

.services-container {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap    :    2.5rem;
}

.service-block {
   background: white;
    border-radius: 12px;
  padding:     2.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  border-left: 5px solid var(--secondary-color);
  transition: var(--transition); 

}

.service-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-header {
  display: flex;
   justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  gap: 1rem;
}

.service-header h2 {
 font-size: 1.6rem;
  color: var(--primary-color);
   flex: 1;
}

.service-icon {
   -ms-flex   :    0 0 auto;
	flex: 0 0 auto;
}

.service-icon img   {
	width: 50px;
   height: 50px;
  filter: drop-shadow(0 2px 4px rgba(196, 30, 58, 0.2));
}



.service-description {
  color: var(--text-dark);
}

.service-description p {
    font-size: 1rem;
   line-height:       1.7;
	margin-bottom: 1.5rem;
  color: var(--text-light);
}

.service-description h3 {
   font-size: 1.1rem;
  color: var(--primary-color);
   margin-top: 1.5rem;
   margin-bottom: 0.8rem;
	font-weight: 600;
	
}

.service-list {
   list-style: none; 
	   margin-bottom: 1rem;
}



.service-list li  {

	    padding: 0.6rem 0 0.6rem 1.5rem;
   position: relative;
  color: var(--text-light);
          line-height: 1.6;}  

.service-list li::before


{
  content: '✓';
   position: absolute;
	left    :  0;
  color: var(--secondary-color);
    font-weight: bold;
          font-size: 1.1rem;
}

.pricing-overview {
   padding   :   5rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, var(--light-gray) 100%);


}

.pricing-overview h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
}

.pricing-grid {
    max-width: 1000px;

 margin: 0 auto;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));

     gap: 2rem;
}

.pricing-card {

	   background: white;
  padding: 2rem;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
  border-top: 3px solid var(--secondary-color);
	}

.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.15);
}

.pricing-card h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.pricing-card .price {
    font-size  :  2rem;
  color: var(--secondary-color);
    font-weight: 700;
       margin: 1rem 0;
}

.pricing-card p {
  color: var(--text-light);
		 font-size    :       0.95rem;
	    line-height: 1.6;
}

.faq-section		{
   background: white;
   padding: 5rem 2rem;
   max-width: 1200px;
    margin: 0 auto;

}  

.faq-section h2		{
   text-align: center;
    font-size: 2.5rem;
  color: var(--primary-color);
        margin-bottom    :     3rem;
}

.faq-container		{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;


	}

.faq-item {
  background: var(--light-gray);
  padding     :      2rem;
   border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transform: translateX(5px);
}

.faq-item h4 {
	font-size: 1.1rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
   font-weight: 600;
}

.faq-item p {
  color: var(--text-light);
  line-height: 1.7;
	 font-size: 0.95rem;
}

.process-section


{
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f9f9f9 0%, var(--light-gray) 100%);
}

.process-section h2 {
    text-align: center;

	font-size: 2.5rem;

  color: var(--primary-color);

  margin-bottom: 3rem;
}  

.process-steps {

    max-width: 1000px;
  margin: 0 auto;
   display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
  text-align: center;
    padding: 2rem;
     background: white;
    border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: var(--transition);
	position: relative;
}

.step:hover
{
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(196, 30, 58, 0.12);
}

.step-number {
         width   :  60px;
    height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), #a01830);
    color: white;
    border-radius     :    50%;
	display :  flex;
   align-items: center;
    justify-content: center;
 font-size: 1.8rem;
               font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size  :    1.2rem;
  color: var(--primary-color);
   margin-bottom: 0.8rem;
	}

.step p {
  color: var(--text-light);
   font-size: 0.95rem;
     line-height     :    1.6;
	
}

.thankyou-section {
  min-height: 100vh;
       padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f5f5 0%, white 100%);
}

.thankyou-container {
   max-width: 900px;
   margin: 0 auto;
    text-align: center;
}

.success-icon {
  margin: 2rem 0; 
	   animation: scaleIn 0.6s ease-out;
}

.success-icon img {


  width     :      100px;
	height: 100px;
  filter: drop-shadow(0 4px 8px rgba(46, 204, 113, 0.3));
	

}

.thankyou-section h1 {
   font-size: 2.8rem; 
	  color: var(--primary-color); 
	   margin-bottom: 1rem; 
	   animation :  slideInDown 0.8s ease-out;
}

.thank-subtitle {
   font-size     :       1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
   line-height: 1.8;
   animation  :    slideInUp 0.8s ease-out 0.2s both;
}

.thankyou-content {
    display:     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap :    2rem;
   margin: 3rem 0;
}

.info-box {
   background: white;
		 padding     :  2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
  border-top: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.info-box:hover {
	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.info-box h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.info-box p {
  color: var(--text-light);
    line-height: 1.7;
  margin-bottom: 0.8rem;
}

.steps-list {
       list-style: none;} 

.steps-list li {
	   padding: 0.6rem 0 0.6rem 1.8rem;
   position: relative;
  color: var(--text-light);
   line-height: 1.6;
    text-align: left;
	}

.steps-list li::before {


  content: '→';
    position: absolute;
      left: 0;
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-quick {
  background: var(--primary-color);
	color: white;
    padding     :2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-quick h3 {
  color: var(--accent-color);
  margin-bottom: 1rem;
   font-size: 1.3rem;
}

.contact-quick p {
     color: rgba(255,255,255,0.95);
  line-height: 1.8;
    margin-bottom: 0.5rem;
	}

.action-buttons 
 {
    display: flex;
	 gap: 1.5rem;
   justify-content: center;
    margin     :    3rem 0;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding  :      1rem 2.5rem;
    border-radius: 50px;
     text-decoration: none;
    font-weight: 600;
	 font-size: 1.1rem;
  transition: var(--transition);
  display: inline-block;


}

.btn-primary {
  background: var(--secondary-color);

   color     : white;

  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {

    background: #a01830;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(196, 30, 58, 0.4);
}

.btn-secondary {
  background: var(--accent-color);
  color: var(--text-dark);
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px); 
   background: #e09500;
}

.timeline {
    margin: 4rem 0;
   padding: 3rem;
   background: white;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline h3 {
  text-align: center;
   font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
}

.timeline-item  
  {
  display: flex;
    gap: 2rem;
               margin-bottom: 2rem;
   position: relative;
  padding-left  :      2rem;
}

.timeline-item::before {
  content: '';

   position: absolute;

   left: 25px;

	 top: 60px;

	width: 2px;

  height: calc(100% + 20px);

  background: var(--border-color);
}

.timeline-item:last-child::before {
	display: none;
}

.timeline-marker	{
    width: 60px;
          height: 60px;
    background: white;
  border: 3px solid var(--border-color);
    border-radius :    50%;
    display: flex;
      align-items: center;
   justify-content: center;
   font-weight: bold;
  color: var(--text-light);
   flex: 0 0 auto;
    position   :        relative;
    z-index: 1;
}

.timeline-active .timeline-marker {
	  background: var(--secondary-color);
  border-color: var(--secondary-color);
   color: white;
  box-shadow: 0 4px 10px rgba(196, 30, 58, 0.3);
     }

.timeline-active .timeline-marker img {
    width: 30px;
   height: 30px;
  filter: brightness(0) invert(1);
}

.marker-number {
   width: 100%; 
   height: 100%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
  font-size: 1.2rem;
}

.timeline-content {
	 flex: 1;
    padding: 1rem 0;
}

.timeline-content h4 {
    font-size: 1.1rem;
  color: var(--primary-color);
	 margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-light);
   font-size: 0.95rem;
}

.testimonial-section	{
   margin: 3rem 0;
   padding: 2rem 0;
}

.testimonial-section h3 {
  text-align: center;
      font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.testimonials-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background  :   white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-left: 4px solid var(--accent-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.testimonial-text   {
    font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
    margin-bottom: 1rem;
     font-style: italic;
}

.testimonial-author {

	  font-weight: 600;
  color: var(--primary-color);
               font-size: 0.9rem;
     }@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-block {
        padding: 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .timeline-item {
        gap: 1.5rem;
        padding-left: 1.5rem;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 0.9rem;
    }

    .timeline-item::before {
        left: 20px;
    }

    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-main {
        padding: 2rem 1rem;
    }

    .pricing-overview h2,
    .faq-section h2,
    .process-section h2 {
        font-size: 1.6rem;
    }

    .service-header {
        flex-direction: column;
    }

    .timeline-content {
        padding: 0.5rem 0;
    }

    .testimonial-card {
        padding: 1.5rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 200px);
}

.policyContainer     {
	   max-width: 900px;
   margin: 0 auto;
   text-align: left;


}

.policyContainer h1 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
   font-weight: 700;
    animation: slideInDown 0.8s ease-out;
}

.policyContainer h2 {
    font-size   :        1.8rem;
  color: var(--primary-color);
    margin-top    : 2.5rem;
      margin-bottom: 1.5rem;
  font-weight: 600;
  border-bottom: 3px solid var(--secondary-color);
       padding-bottom: 1rem;
}

.policyContainer h2:first-of-type  
  {
  margin-top    :    0;
}  

.policyContainer p 
 {
  color: var(--text-light);
   margin-bottom: 1.5rem;
  line-height: 1.9;
    font-size: 1rem;
    text-align: justify;
}

.policyContainer p strong {
  color: var(--primary-color);
  font-weight: 600;
}

.policyContainer ul    {


	margin-left: 2rem;
   margin-bottom: 1.5rem;
   list-style :none;
} 

.policyContainer ul li {
   margin-bottom     : 1rem;
   padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
   line-height: 1.8;
    font-size: 1rem;
}



.policyContainer ul li::before {
  content: '▸';
   position: absolute;
    left: 0;
  color: var(--secondary-color);
 font-size: 1.3rem;
}

.policyContainer ol
{
     margin-left: 2rem;
     margin-bottom: 1.5rem;
  counter-reset: list-counter;
    list-style: none;
}

.policyContainer ol li {
    margin-bottom     :        1rem;
   padding-left: 1.5rem;
      position:relative;
  color: var(--text-light);
   line-height: 1.8;
    font-size :        1rem;
  counter-increment: list-counter;
}

.policyContainer ol li::before {
  content: counter(list-counter);
   position: absolute;
    left: 0;
  background: var(--secondary-color);
	 color: white;
   width: 24px;
     height: 24px;
               border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content:center;
  font-size: 0.85rem;
  font-weight: 600;
}  

.policyContainer em  
  {
  color: var(--secondary-color);
  font-style: italic;
	
}

.policyContainer blockquote


{
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  margin: 2rem 0;
  background: rgba(245, 166, 35, 0.05);
   border-radius: 8px;
    font-style: italic;
  color: var(--text-dark);


}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {

	  background     :#a01830;}@media (max-width: 1024px) {
    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1.5rem;
    }
}

@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.8;
        margin-bottom: 1.2rem;
    }

    .policyContainer ul li,
    .policyContainer ol li {
        font-size: 0.95rem;
    }

    .policySection {
        padding: 50px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .policyContainer ul li,
    .policyContainer ol li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        padding-left: 1.2rem;
    }

    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer ul,
    .policyContainer ol {
        margin-left: 1rem;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}@media print {
    .navbar-main,
    .main-footer {
        display: none;
    }

    .policySection {
        padding: 20px;
        background: white;
    }

    .policyContainer p {
        text-align: left;
    }

    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}