:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5a8c;
    --accent-color: #e67e22;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

* {
    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: var(--dark-text);
    background-color :  #fff;
}

.navbar {
  background: var(--primary-color);
                    padding: 1rem 0;
  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: 0 2rem;
    display:     flex;
  justify-content: space-between;
   align-items: center;
}

.nav-logo {
      display: flex;
	align-items: center;

}

.logo-img {
    height: 74px;
    width: auto;
    max-width: 150px;
}

.nav-menu {
  display: flex;
  list-style   : none;
	 gap: 3rem;
}

.nav-item {
  position: relative;
}

.nav-link {
    color: #fff;

          text-decoration: none;

     font-weight: 500;

   padding: 0.5rem 0;

	transition: all 0.3s ease;

  display: block;
}

.nav-link:hover    {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
}

.nav-toggle {
    display: none;
   flex-direction   :column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-line {
   width :25px;
    height: 3px;
   background-color   :       #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active .hamburger-line:nth-child(2)		{
	opacity: 0;
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        padding: 1rem 2rem;
        display: block;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .logo-img {
        height: 60px;
    }
}.hero


{

	  display   :        flex;
   align-items: center;
   justify-content: space-between;
    max-width: 1200px;
   margin: 0 auto;
   padding    :     4rem 2rem;
    gap: 3rem;


}

.hero-content {
      flex    :    1;
   animation: fadeInLeft 0.8s ease;
     }

.hero-content h1 {
    font-size  :      3.5rem;
  color: var(--primary-color);
	margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-content p {
   font-size: 1.2rem;
	color: #555;
    margin-bottom: 2rem;
}

.hero-btn {
   display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 1rem 2.5rem;
                    border-radius: 8px;
    text-decoration: none;
	font-weight: 600;
	 transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.hero-btn:hover
	{
	 background: #d96c1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

/* Legacy code */

.hero-image {
   flex: 1;
	animation: fadeInRight 0.8s ease;
}

.hero-img {
   width: 100%;
         border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  max-height: 500px;
    object-fit: cover;
}
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-img {
        max-height: 300px;
    }
}.why-us    {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
    padding: 4rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.why-us h2 {
         text-align: center;
    font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
}

.why-us-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-us-card
	{
    background: white;
   padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
	
}

.why-us-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.why-us-card h3 {
  color: var(--primary-color);
   margin-bottom    :       1rem;
   font-size: 1.3rem;
}

.why-us-card p {
   line-height: 1.7;
  color: #666;
}

.services-preview {

    max-width: 1200px;
  margin   :    0 auto;
	padding: 4rem 2rem;

}

.services-intro {
   text-align: center;
    margin-bottom: 3rem;
}

.services-intro h2 {
   font-size: 2.5rem;
     color: var(--primary-color);
       margin-bottom    :    1rem;
}

.services-intro p {
    font-size: 1.1rem;
  color: #666;
	 max-width: 600px;
  margin: 0 auto;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
    background: white;
      border-radius: 12px;
      overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
       transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
   height: 200px;
  object-fit: cover;
}

.service-item h3 {
  color: var(--primary-color);
        padding: 1.5rem 1.5rem 0.5rem;
   font-size: 1.2rem;
}

.service-item p		{
      padding: 0 1.5rem 1.5rem;
    color: #666;
   font-size: 0.95rem;
   line-height: 1.6;
     }

.view-all-services {
    display: block;

  width: fit-content;

    margin: 0 auto;

  background: var(--secondary-color);

  color: white;

	 padding: 1rem 2rem;

    border-radius: 8px;

   text-decoration: none;

    font-weight: 600;

    transition: all 0.3s ease;
}

.view-all-services:hover {
  background: var(--primary-color);
  transform: translateX(5px);
}

.success-stories {
     background: var(--primary-color);
    color: white;
  padding: 4rem 2rem;
       max-width: 100%;}

.success-stories h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.stories-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
  max-width: 1200px;
   margin: 0 auto;
	
}  

.story-card


{
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
   border-radius:       10px;
  border-left: 3px solid var(--accent-color);
  backdrop-filter: blur(10px);
}

.story-text {
  font-style: italic;
    margin-bottom     :     1rem;
  line-height:1.8;
}

.story-author {
  font-weight: 600;
  color: var(--accent-color);
}

.workshops {
   max-width: 1200px;
   margin: 0 auto;
   padding: 4rem 2rem;
}

.workshops h2 {
	    text-align     : center;
   font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom:1rem;


}

.workshops-intro {
    margin-left: auto;
	 color: #666;
   text-align: center;
   font-size: 1.1rem;
   max-width: 700px;
   margin-bottom: 3rem;
    margin-right: auto;
}

.workshops-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;

}

.workshop-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.workshop-card h3 {
  color: var(--primary-color);
   margin-bottom: 1rem;
  font-size    :      1.3rem;
}

.workshop-card p {
    color: #555;
   line-height: 1.7;
}

.expertise-areas {
  background: var(--light-bg);
   padding: 4rem 2rem;
  max-width: 100%;
}

.expertise-areas h2 {
    text-align   :  center;
    font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.expertise-content {

	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :        2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
    background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--accent-color);
}

.expertise-item h3 {
  color: var(--primary-color);
	 margin-bottom     :       1rem;
   font-size: 1.2rem; 
	
}

.expertise-item p {
    color: #666;
  line-height   :    1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 3rem 2rem;
    margin: 3rem 0;
}

.cta-box {
   max-width: 700px;
   margin: 0 auto;
   text-align: center;
   color: white;
}

.cta-box h2 {
   font-size: 2rem;
	margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
  margin-bottom    :  2rem;
   opacity     :     0.95;
     }

.cta-button {
    display: inline-block;
  background: var(--accent-color);
    color: white;
  padding: 1rem 2.5rem;
      border-radius: 8px;
    text-decoration:       none;
  font-weight: 600;
  transition     :all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.cta-button:hover  
  {
  background: #d96c1f;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.contact {
  max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom : 3rem;
}

.contact-wrapper {
    display:     grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info {
    display: flex;
  flex-direction: column;
   justify-content: flex-start;
}

.contact-info h3 {


  color: var(--primary-color);
    font-size: 1.5rem;
  margin-bottom: 2rem;


}


.contact-info p {
   margin-bottom: 1.5rem;
    line-height: 1.8;
			color: #555;
}

.contact-form {
   display: flex;
   flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
    flex-direction     :        column;
}

.form-group label {
  color: var(--primary-color);
  font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.75rem;
  border: 2px solid var(--border-color);
   border-radius: 6px;
  font-family: inherit;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
	  border-color: var(--accent-color);
	  box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.submit-btn		{
  background: var(--accent-color);
    color: white;
  padding: 0.875rem 2rem;
          border: none;
    border-radius: 6px;
  font-weight: 600;
          cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.submit-btn:hover	{
    background: #d96c1f;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-intro h2,
    .workshops h2,
    .expertise-areas h2 {
        font-size: 1.8rem;
    }
}.footer {
  background: var(--primary-color);
  color: white;
  padding: 3rem 2rem 1rem;
   margin-top    :4rem;
}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
       gap :      2rem;
   margin-bottom: 2rem;
}

.footer-logo {
   display: flex;
    align-items:     flex-start;
}

.footer-logo-img {
  height: 96px;
    width: auto;
    max-width: 180px;
}

.footer-section h4 {
  color: var(--accent-color);
  margin-bottom     :       1rem;
  font-size: 1.1rem;
}

.footer-section ul

{
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.7rem;
}

.footer-section a {
  color: #ddd;
  text-decoration     :      none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-section p {
    color: #ddd;
  line-height: 1.7;
   font-size: 0.95rem;

}

.footer-bottom		{
	text-align: center;
    padding-top   :       2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-logo-img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .why-us h2,
    .services-intro h2,
    .success-stories h2,
    .workshops h2,
    .expertise-areas h2,
    .contact h2 {
        font-size: 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.3rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2d5a8c 100%);
    color: white;
   padding: 5rem 2rem;
                    text-align: center;
 animation: slideDown 0.8s ease; 
	
}

.services-hero-content h1 {
   font-weight: 700;
   margin-bottom  :        1.5rem;
   font-size: 3rem;
}

.services-hero-content p {
	font-size: 1.2rem;
  max-width: 700px;
    margin: 0 auto;
   opacity: 0.95;
   line-height :1.8;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.service-detail-section	{
    max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
   display  :   flex;
  align-items: center;
}

.service-detail-section.alternate {
   background: #f8f9fa;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
					gap: 3rem;
    align-items: center;
    width: 100%;
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-card.reverse > * {
    direction: ltr;
}

.service-detail-image {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
   width: 100%;
       height: 350px;
     object-fit: cover;
       transition: transform 0.5s ease;
}

.service-detail-section:hover .service-detail-image img


{
  transform: scale(1.05);
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #1a3a52;
	margin-bottom: 1.5rem;
  font-weight: 700;
}

.service-detail-content > p {
    font-size: 1.1rem;
   color: #555;
   margin-bottom     :       1.5rem;
	line-height: 1.8;
}

.service-detail-content h3 {
   font-size: 1.3rem;
  color: #2d5a8c;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
  margin: 1rem 0 2rem 0;
}

.service-features li {


      padding: 0.75rem 0 0.75rem 2rem;
          position: relative;
    color: #666;
    line-height: 1.7;
   border-left: 3px solid #e67e22;
    margin-bottom: 0.5rem;


}

.service-features li:before {
  content: ''; 
  position: absolute; 
   left: -10px; 
  top: 50%; 
  transform: translateY(-50%); 
	width: 6px; 
    height: 6px; 
   background: #e67e22; 
	border-radius: 50%;
}

.service-detail-content p strong {
    color: #1a3a52;
}@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-card.reverse > * {
        direction: ltr;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero {
        padding: 3rem 2rem;
    }
}.pricing-section {
  max-width: 1200px;
   margin: 0 auto;
               padding: 4rem 2rem;
}

.pricing-section h2 {
    text-align : center;
    font-size: 2.5rem;
  color: #1a3a52;
    margin-bottom: 3rem;
}

.pricing-grid {
   display  :  grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
  gap :  2rem;
}

.pricing-card		{

	   background: white;
   border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
	text-align: center;
   transition: all 0.3s ease;
  position: relative;


}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #e67e22;
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(45, 90, 140, 0.05) 100%);
  transform: scale(1.05);
}

.pricing-card h3 {
   font-size: 1.5rem;
    color: #1a3a52;
   margin-bottom: 1rem;
} 

.pricing-card .price
{
    font-size: 1.8rem;
    color: #e67e22;
   font-weight: 700;
  margin-bottom: 2rem;
}

.pricing-features {

	    list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  text-align: left;}

.pricing-features li
{
   padding: 0.75rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
  position: relative;
   padding-left: 1.5rem;
}

.pricing-features li:last-child {
   border-bottom: none;
}

.pricing-features li:before {
    font-weight: 700;
    color: #27ae60;
  content: '✓';
  left: 0;
  position: absolute;
}

.why-choose-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 4rem 2rem;
   max-width: 100%;
} 

.why-choose-section h2 {

   text-align:       center;
   font-size: 2.5rem;
  color: #1a3a52;
    margin-bottom: 3rem;

	}

.why-choose-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
   max-width: 1200px;
  margin:   0 auto;
}

.why-choose-item {
    background: white;
   padding: 2rem;
         border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #e67e22;
    transition: all 0.3s ease;
}

.why-choose-item:hover {
	  transform: translateY(-8px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	}

.why-choose-item h3 {

	        color: #1a3a52;
    font-size: 1.2rem;
  margin-bottom   : 1rem;}

.why-choose-item p {
   color: #666;
    line-height: 1.7;
}

.cta-services {


  background: linear-gradient(135deg, #2d5a8c 0%, #1a3a52 100%);
      color: white;
   padding: 3rem 2rem;
   text-align: center;
    margin: 3rem 0;}

.cta-services h2 {
   font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-services p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   max-width  :    600px;
    margin-left: auto;
   margin-right: auto;
}

.cta-services-button {
  display: inline-block;
    background: #e67e22;
   color: white;
	padding: 1rem 2.5rem;
    border-radius: 8px;
        text-decoration: none;
  font-weight: 600;
     transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
}

.cta-services-button:hover {
    background: #d96c1f;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(230, 126, 34, 0.5);
}

.thank-you-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
   padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content:        center;
	
}

.thank-you-container {
   max-width: 700px;
   text-align: center;
    animation: fadeIn 0.8s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thank-you-icon {
   margin-bottom: 2rem;
  display: flex;
   justify-content: center;
} 

.checkmark-circle {
       width: 100px;
	height: 100px;
   border-radius: 50%;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   display: flex;
    align-items: center;
  justify-content:      center;
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
   position: relative;
  animation: scaleIn 0.6s ease;}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.checkmark-circle:after {
  content: '✓';
  color: white;
               font-size   : 3rem;
    font-weight: 700;
}  

.thank-you-container h1 {
    font-size: 2.5rem;
    color: #1a3a52;
   margin-bottom: 0.5rem;
}

.thank-you-subtitle {
	font-size: 1.2rem;
  color: #666;
   margin-bottom: 2rem;
}

.thank-you-message {
  background: white;
    padding: 2rem;
 border-radius     :10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  text-align: left;
     border-left: 4px solid #e67e22;
}

.thank-you-message p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.submission-details {
    background: white;
	    padding: 2rem;
	  border-radius: 10px;
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	    margin-bottom: 2rem;
	    text-align: left;
}

.submission-details h2 {
	font-size: 1.5rem;
  color: #1a3a52;
   margin-bottom: 1.5rem;
  text-align: center;
}

.details-grid {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;

  flex-direction: column;

   padding: 1rem;

    background: #f8f9fa;

  border-radius: 6px;
}

.detail-label {
    font-weight: 600;

	  color: #1a3a52;

	       margin-bottom: 0.5rem;

	    font-size: 0.9rem;
}

.detail-value {
   color: #666;
}

.message-preview {


   padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;

}

.message-preview p {
   color :       #555;
	  line-height:1.7;
}

.next-steps {
  background: linear-gradient(135deg, rgba(230, 126, 34, 0.05) 0%, rgba(45, 90, 140, 0.05) 100%);
   padding: 2rem;
   border-radius: 10px;
          margin-bottom: 2rem;
  text-align: left;
}  

.next-steps h2 {
    font-size: 1.3rem;
        color: #1a3a52;
    margin-bottom: 1rem;
   text-align: center;
}

.steps-list {
  list-style: none;
   padding: 0;
  counter-reset: step-counter;
}

.steps-list li {
    padding: 1rem 1rem 1rem 3rem;
  position: relative;
	color: #555;
   margin-bottom: 0.75rem;
  counter-increment: step-counter;
}

.steps-list li:before {
  content: counter(step-counter);
  position: absolute;
    left: 0;
  top: 1rem;
    width: 28px;
  height    :      28px;
   background:#e67e22;
    color: white;
   border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
        font-weight: 600;
   font-size: 0.9rem;
}

.contact-info-thank-you
{
	background: white;
  padding: 2rem;
   border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;

}

.contact-info-thank-you h3 
 {
    color: #1a3a52;
  font-size: 1.3rem;
   margin-bottom: 1rem;
}

.contact-info-thank-you p {
     color: #555;
   margin-bottom: 0.5rem;
  line-height  : 1.7;
}

.action-buttons {
   display: flex;
    gap: 1.5rem;
    justify-content: center;
	flex-wrap :     wrap;
}

.btn-primary,
.btn-secondary {

	    padding: 1rem 2rem;
   border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  display: inline-block;
	}

.btn-primary {
   background: #e67e22;
   color: white;
  box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
}

.btn-primary:hover {

    background: #d96c1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4); 
}



.btn-secondary {
  background: #2d5a8c;
        color: white;
  box-shadow: 0 4px 15px rgba(45, 90, 140, 0.3);
}

.btn-secondary:hover  {
    background: #1a3a52;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 140, 0.4);
}@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .pricing-section h2,
    .why-choose-section h2 {
        font-size: 1.8rem;
    }

    .cta-services h2 {
        font-size: 1.5rem;
    }

    .thank-you-container h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
    min-height: 100vh;
}

.policyContainer {
    max-width: 800px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h1
{
  font-size: 3rem;
               color: #1a3a52;
    margin-bottom: 2rem;
   font-weight: 700;
   text-align: center;
}

.policyContainer h2     {
  font-size: 1.8rem;
    color: #2d5a8c;
   margin-bottom: 1.5rem;
    font-weight: 700;
  margin-top: 2.5rem;
         border-bottom: 3px solid #e67e22;
    padding-bottom: 0.5rem;
}

.policyContainer h2:first-of-type {
                    margin-top  :0;
}

.policyContainer p {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size :     1.05rem;
  text-align: justify;
}

.policyContainer strong  
  {
    color   :      #1a3a52;
  font-weight: 600;
}

.policyContainer em {
   color :   #666;
    font-style: italic;
}

.policySection {
    animation   :     fadeInPage 0.6s ease;
}@keyframes fadeInPage {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 968px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1.5rem;
    }
}

@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }

    .policySection {
        padding: 50px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policySection {
        padding: 40px 0.75rem;
    }
}