* {

   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: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
	 padding: 1rem 0;
  position   :  sticky;
       top: 0;
       z-index   :    1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.navbar-container	{
 max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
   display: flex;
   justify-content: space-between;
	align-items: center;
}

.navbar-brand {
         display: flex;

    align-items: center;

      gap: 12px;
	}

.navbar-logo {

    height: 64px;
   width: auto;
  filter: brightness(0) invert(1);


}

.brand-name {
   color: white;
   font-size    :   1.5rem;
  font-weight  :   700;
	letter-spacing: 0.5px;
}  

.burger-menu {
    flex-direction: column;
   gap: 5px;
  border: none;
	display: none;
   cursor: pointer;
  background :       none;
}

.burger-line {
	 width: 25px;
       height: 3px;
    background-color: white;
    border-radius   :     2px;
   transition: all 0.3s ease; 
	
}

.navbar-menu {
  display: flex;
  list-style: none;
   gap: 2rem;
    align-items: center;
}

.nav-link {
	color   :      white;
   text-decoration: none;
    font-weight: 500;
  transition: opacity 0.3s ease;
   position: relative;
}

.nav-link:hover


{
   opacity: 0.8;
}

.nav-link::after {
  content: '';
	position: absolute;
  width   :     0;
    height: 2px;
  bottom: -5px;
   left    :       0;
  background-color: #ffc107;
   transition: width 0.3s ease;
}

.nav-link:hover::after {

	  width: 100%;

}

.hero {
   display: grid;
  grid-template-columns: 1fr 1fr;
 align-items: center;
  gap: 3rem;
  max-width: 1200px;
    margin: 0 auto;
	padding   :   5rem 20px;
  background: linear-gradient(to right, rgba(26,58,82,0.05) 0%, rgba(44,90,160,0.05) 100%);
}

.hero-content h1 {
   font-size: 3rem;
        line-height: 1.2;
	margin-bottom     :       1.5rem;
  color   :      #1a3a52;
  font-weight: 800;
}

.hero-content p	{
    font-size: 1.1rem;
  color     : #555;
     margin-bottom:   2rem;
    line-height: 1.8;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
    color: white;
   padding: 1rem 2.5rem;
  border-radius  :   50px;
  text-decoration: none;
   font-weight: 600;
  transition  :    transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(44,90,160,0.3);
     }

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44,90,160,0.4);


}

.hero-image img {
    width  :100%;
               height: auto;
     border-radius     :   15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.services-overview {
     max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;

}

.section-header {
  text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
  color: #1a3a52;
	margin-bottom: 0.5rem;
  font-weight: 800;
}

.section-header p {
   	font-size: 1.1rem; 
	  color: #777; 
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap     :    2rem;
}

.service-card {
	 background   :        white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(44,90,160,0.15);} 

.service-icon {
    margin-bottom    :1.5rem;
      height: 80px;
      display: flex;
       justify-content: center;
    align-items: center;
}

.service-icon img {
      width :        60px;
   height     :      60px;
    stroke: #2c5aa0;
	 fill: none;
  filter: drop-shadow(0 2px 4px rgba(44,90,160,0.2));
}

.service-card h3 {
  font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
   font-weight: 700;
}

.service-card p {
   color: #666; 
 line-height: 1.7; 
    font-size: 0.95rem;
}

.training-workshops {
 display: grid;
   grid-template-columns :   1fr 1fr;
  align-items    :      center;
    gap: 3rem;
   max-width: 1200px;
    margin: 4rem auto;
  padding: 0 20px;
  background: linear-gradient(to left, rgba(44,90,160,0.05) 0%, rgba(26,58,82,0.05) 100%);
	padding:     3rem;
    border-radius: 15px;
}

.training-image img   {
               width :     100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    object-fit: cover;
}

.training-content h2 {
    font-size: 2.2rem;
  color: #1a3a52;
   margin-bottom   :       1rem;
        font-weight: 800;

}

.training-content p {
  color: #555;
	line-height: 1.8;
	 margin-bottom: 2rem;
    font-size: 1rem;
}

.training-list 
 {
   list-style: none;

}

.training-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    color: #2c3e50;
  position:   relative;
   font-weight: 500;

}

.training-list li:before {

          position: absolute;
   color: #2c5aa0;
    font-size: 1.2rem;
                    font-weight: bold;
   left: 0;
  content: '✓';}

.consulting-process {
   max-width: 1200px;
  margin: 4rem auto;
   padding: 0 20px;
}

.process-timeline  {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
  margin-top: 3rem;
}

.process-step {
	background: white;
  padding: 2.5rem 2rem;
    border-radius: 12px;
    border-left     :4px solid #2c5aa0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   position: relative;
}

.step-number
{
   font-size    :      2.5rem;
  font-weight: 900;
  color: #2c5aa0;
   opacity: 0.2;
    position: absolute;
    top: -10px;
  right: 15px;
}

.process-step h3 {
	font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
  color: #1a3a52;
}

.process-step p {
    color    :#666;
  line-height: 1.7;
   font-size: 0.95rem;
}

.conference-section {
       display: grid;
   grid-template-columns: 1fr 1fr;
 align-items: center;
               gap     :       3rem;
   max-width: 1200px;
  margin: 4rem auto;
    padding: 0 20px;
}

.conference-image img {
  width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    object-fit: cover;
}

.conference-content h2 {
         font-size: 2.2rem;
    color: #1a3a52;
  margin-bottom: 1rem;
   font-weight   :        800; 

}

.conference-content p {
    color: #555;

	 line-height: 1.8;

		margin-bottom: 2rem;

	  font-size: 1rem;
}

.conference-highlights {
   display: flex;
	flex-wrap: wrap;
	 gap: 1rem;
}

.highlight-badge	{
	  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
  color     :        white;
  padding: 0.7rem 1.5rem;
   border-radius: 30px;
  font-size: 0.9rem;
    font-weight: 600;}

.success-stories {
  max-width: 1200px;
	 margin: 4rem auto;
   padding: 0 20px;
}

.stories-grid {


	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  :  2rem;
   margin-top: 2rem;


}

.story-card {
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
  color: white;
          padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(44,90,160,0.2);
    transition: transform 0.3s ease;
}

.story-card:hover {
  transform: translateY(-5px);
}

.story-metric {
       font-size: 2.5rem;
	font-weight: 900;
   margin-bottom: 1rem;
    color: #ffc107;
}

.story-card p {
    font-size: 1rem;
   line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
   padding: 4rem 20px;
    margin: 4rem 0;


}

.cta-box {


  max-width :     900px;
    margin: 0 auto;
	text-align: center;
   color: white;



}

.cta-box h2  {
      font-size: 2.5rem;
       margin-bottom: 1rem;
       font-weight: 800;
	
}

.cta-box p {
  font-size: 1.1rem;
    margin-bottom :        2rem;
    line-height: 1.8;
  opacity: 0.95;
}

.cta-button     {

	  display: inline-block;
    background: #ffc107;
  color: #1a3a52;
   padding: 1rem 3rem;
   border-radius: 50px;
    text-decoration: none;
                    font-weight: 700;
   font-size: 1.05rem;
   transition   :       transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(255,193,7,0.3);
	
     }

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,193,7,0.4);
}

#contact {
       background: #f8f9fa;
    padding: 4rem 20px;
} 

.contact-container
	{

	  max-width    :       1000px;
   margin: 0 auto;
     }

.contact-header {
      text-align: center;
   margin-bottom: 3rem;


}

.contact-header h2 {
	font-size: 2.5rem;
    color: #1a3a52;
   margin-bottom: 0.5rem;
   font-weight: 800;
}

.contact-header p {
  font-size: 1.1rem;
    color: #777;
}


.contact-form {
	background: white;
  padding: 3rem;
	 border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
   margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-group {
	 grid-column: 1;
} 

.form-group:nth-child(4) {

   grid-column: 2;


}

.form-group:nth-child(5)
	{
  grid-column: 1 / -1; 

}

.form-group label {
   display: block;
  margin-bottom: 0.8rem;
   color: #2c3e50;
   font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 0.85rem;
    border    :        2px solid #e0e0e0;
    border-radius: 8px;
  font-family: inherit;
   font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus	{
  outline: none;

	    border-color: #2c5aa0;

	  box-shadow: 0 0 0 3px rgba(44,90,160,0.1);
}

.form-button {
  grid-column     :        1 / -1;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
	color: white;
   padding: 1rem 2rem;
  border: none;
    border-radius: 8px;
  font-weight: 700;
   font-size: 1rem;
   cursor: pointer;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(44,90,160,0.2);
}



.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(44,90,160,0.3);
}

.contact-info {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
                    color: white;
	padding: 2rem;
   border-radius: 12px;
   margin-top: 2rem;
}

.contact-info h3 {
        margin-bottom: 1rem;
    font-size   :     1.3rem;
    font-weight: 700;
}



.contact-info p {
   margin     :  0.5rem 0;

    line-height: 1.8;
}

.footer 
 {
	background: #1a1a1a;
  color   :    white;
    padding: 3rem 20px 1rem;
   margin-top: 3rem;
}

.footer-container {
  max-width    :   1200px;
  margin  :    0 auto;
   display     :    grid;
    grid-template-columns: 1fr 1fr 1fr;
   gap: 2rem;
   margin-bottom: 2rem;
}

.footer-brand {
     display   :flex;
   align-items:      flex-start;
}

.footer-logo {
       height: 86px;
  width: auto;
  filter: brightness(0) invert(1);
	
}

.footer-info h4,
.footer-links h4 {
      margin-bottom: 1rem;

		font-size: 1.1rem;

		 font-weight: 700;
	}

.footer-info p,
.footer-links a    {
   font-size  :  0.95rem;
                    line-height:       1.8;
  opacity: 0.85;
}

.footer-links {
    display  :    flex;
   flex-direction: column;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
  text-decoration: none;
  color: white;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
   opacity: 1;
}

.footer-bottom {
  padding-top: 2rem;
  font-size: 0.9rem;
   border-top: 1px solid #333;
  opacity: 0.7;
   text-align: center;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
        padding: 1rem;
        gap: 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu li {
        width: 100%;
        padding: 1rem;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .training-workshops,
    .conference-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .form-group:nth-child(4) {
        grid-column: 1;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-cta,
    .cta-button {
        font-size: 1rem;
        padding: 0.9rem 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        gap: 8px;
    }

    .navbar-logo {
        height: 48px;
    }

    .brand-name {
        font-size: 1.2rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
  color: white;
	 padding: 5rem 20px;
    text-align: center;
} 

.services-hero-content h1 {
   font-size: 2.8rem;
   line-height  :1.2;
   font-weight: 800;
  margin-bottom  :1rem;
}

.services-hero-content p {
   font-size: 1.2rem;
  opacity: 0.95;
                    max-width: 700px;
  margin: 0 auto;
}

.services-container {
          max-width: 1200px;
  margin: 4rem auto;
  padding: 0 20px;
}

.service-detail-item {
   		display: grid;
  grid-template-columns: 1fr 1fr;
   align-items: center;
   gap: 3rem;
    margin-bottom: 4rem;
  background     :     white;
   padding   :2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	}

.service-detail-item.alternate {


	grid-template-columns: 1fr 1fr;


}

.service-detail-item.alternate .service-detail-image {
  order: 2;
}

.service-detail-item.alternate .service-detail-content {
   order: 1;
}

.service-detail-image img {
     width: 100%;
   height: auto;
   border-radius :      12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);


}

.service-detail-content h2 {
   font-size: 2rem;
  color: #1a3a52;
     margin-bottom: 1.5rem;
	font-weight: 800;
}  

.service-detail-content p {
  color: #555;
   line-height: 1.8;
    margin-bottom: 1.5rem;
   font-size: 1rem;
}

.service-features {
                    list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li  
  {
  padding: 0.7rem 0;
       padding-left: 2rem;
    color: #2c3e50;
   position: relative;
          font-weight: 500;
}

.service-features li:before {
  content: '→';
   position: absolute;
  left: 0;
   color: #2c5aa0;
  font-weight: bold;
   font-size  :  1.1rem;
}

.service-duration {
    display: inline-block;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
   color     :white;
  padding   :       0.6rem 1.2rem;
  border-radius: 25px;
   font-size: 0.9rem;
  font-weight: 600;
}

.service-packages {
  background: linear-gradient(to right, rgba(26,58,82,0.05) 0%, rgba(44,90,160,0.05) 100%);
   padding: 4rem 20px;
  margin: 3rem 0;
}

.packages-header {
   text-align: center;
    margin-bottom: 3rem;
	max-width   :  1200px;
	margin-left: auto;
   margin-right: auto;
}

.packages-header h2 {
   font-size: 2.5rem;
   color: #1a3a52;
    margin-bottom: 0.5rem;
	 font-weight: 800;

}

.packages-header p {
      font-size  :    1.1rem;
    color: #777;
	}

.packages-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
                    max-width :      1200px;
   margin: 0 auto;
}

.package-card {
    background: white;
    padding: 2.5rem;
          border-radius: 12px;
   border: 2px solid #e0e0e0;
    text-align: center;
  transition    :    transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.package-card:hover {
  transform: translateY(-10px);
   border-color: #2c5aa0;
  box-shadow: 0 12px 40px rgba(44,90,160,0.15);
}

.package-card.featured {
   border-color: #2c5aa0;
   border-width: 3px;
  box-shadow: 0 8px 30px rgba(44,90,160,0.1);
}

.package-badge {
  position     :    absolute; 
   top    :     -15px; 
   left :  50%; 
  transform: translateX(-50%); 
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%); 
  color: white; 
    padding: 0.5rem 1.5rem; 
  border-radius: 20px; 
    font-size: 0.85rem; 
   font-weight: 700;
}

.package-name {
    font-size   :      1.5rem;
  font-weight: 800;
  color: #1a3a52;
        margin-top: 0.5rem;
 margin-bottom: 1.5rem;
}

.package-price {
       margin-bottom: 1.5rem; 


}

.package-price .amount {
                    font-size: 2.5rem;
	font-weight: 900;
  color: #2c5aa0;
}

.package-price .currency {
	font-size: 1rem;
    color: #777;
    margin-left: 0.3rem;
}

.package-features p {
  color: #666;
   margin-bottom: 1.5rem;
  font-weight: 500;
}  

.feature-list  {
     list-style: none;
    text-align  :    left;
               margin-bottom  :      2rem;
     }

.feature-list li {
	padding: 0.6rem 0;
    padding-left   :    1.5rem;
    color: #555;
	position: relative;
   font-size: 0.95rem;
} 

.feature-list li:before {
  content: '✓';
  position: absolute;
	left: 0;
    color: #2c5aa0;
      font-weight: bold;
   font-size     : 1rem; 
	
}

.package-btn {
  display: inline-block;
  background: #f0f0f0;
    color: #2c3e50;
    padding: 0.85rem 2rem;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
          transition: all 0.3s ease;
   border :      2px solid #f0f0f0;
}

.package-btn:hover {
  background: white;
    border-color     :     #2c5aa0;
  color: #2c5aa0;
}

.package-btn.featured-btn {
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
  color: white;
    border-color: #2c5aa0;
}

.package-btn.featured-btn:hover {
  box-shadow: 0 6px 20px rgba(44,90,160,0.3);
}

.service-testimonials {
  max-width: 1200px;

		 margin: 4rem auto;

	    padding: 0 20px;
}  

.testimonials-header {
      text-align: center;
  margin-bottom: 3rem; 
	


}

.testimonials-header h2 {
    font-size: 2.5rem;
  color: #1a3a52;
  margin-bottom: 0.5rem;
    font-weight: 800;
}

.testimonials-header p {
    font-size: 1.1rem;
  color: #777;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   : 2rem;
}

.testimonial-card {
               background: white;
  padding: 2rem;
    border-radius: 12px;
	border-left: 4px solid #2c5aa0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
} 

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.testimonial-text {
   font-size: 1rem;
	 color: #555;
    line-height: 1.8;
                    margin-bottom    :  1.5rem;
    font-style: italic;
}

.testimonial-author {
   display: flex;
          flex-direction: column;
}

.testimonial-author strong {
    color: #1a3a52;
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
   font-size: 0.9rem;
}

.service-faq {

	  background: linear-gradient(to right, rgba(26,58,82,0.05) 0%, rgba(44,90,160,0.05) 100%);
      padding: 4rem 20px;
  margin: 3rem 0;
}

.faq-header {
  text-align: center;
   margin-bottom: 3rem;
    max-width: 1200px;
      margin-left  :   auto;
    margin-right: auto;
}

.faq-header h2     {
   font-size: 2.5rem;
   color: #1a3a52;
    font-weight: 800;
}

.faq-container {
   max-width: 900px;
  margin: 0 auto;
}

.faq-item {


    background: white;
   margin-bottom: 1rem;
        border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);


}

.faq-question {
    padding: 1.5rem;
  background  :   #f8f9fa;
	cursor: pointer;
   display  :       flex;
    justify-content  : space-between;
   align-items   :  center;
     transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
    background: #f0f1f3;
}

.faq-question strong {
	  color: #1a3a52;
  font-weight: 600;
   font-size: 1rem;


}

.faq-toggle {
   color: #2c5aa0;

	   font-size: 1.5rem;

		font-weight: bold;

	    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
	   -o-transition: max-height 0.3s ease;
	max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
	}

.faq-item.active .faq-answer {
    max-height: 500px;
}


.faq-answer p {
  padding     :     1.5rem;
   color :       #555;
   line-height:        1.8; 
	
}

.thankyou-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f0f8 100%);
    padding  :     4rem 20px;
  min-height: calc(100vh - 200px);
  display: flex;
   align-items: center;
}

.thankyou-container {
   max-width   :   1200px;
   margin: 0 auto;
               width    :      100%;
}


.thankyou-icon {
    text-align: center;
  margin-bottom: 2rem;
}

.thankyou-icon img
	{
  width: 80px;
  height: 80px;
    stroke: #2c5aa0;
   fill: none;
  filter: drop-shadow(0 4px 8px rgba(44,90,160,0.2));
}

.thankyou-section h1   {
   text-align    :        center;
   font-size: 2.8rem;
    color: #1a3a52;
  margin-bottom:1rem;
 font-weight: 800;
}

.thankyou-subtitle {
       font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
	 text-align: center;
}

.thankyou-content {


   display: grid;
    grid-template-columns: 2fr 1fr;
                    gap: 2rem;
   margin-bottom: 3rem;


}

.thankyou-message h2 {
   	 font-size    :     1.8rem;
  color: #1a3a52;
  margin-bottom: 2rem;
  font-weight: 700; 
	
}

.thankyou-steps	{
	   list-style: none;

}

.thankyou-steps li {

		 display: grid;
    grid-template-columns: 60px 1fr;
	gap: 1.5rem;
   margin-bottom: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius:  8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);


}

.step-number {

    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
  color: white;
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
               font-weight: 800;
	font-size: 1.3rem;}

.step-content h3	{
    color: #1a3a52;
   margin-bottom: 0.5rem;
   font-size: 1.1rem;
    font-weight: 700;
}

.step-content p {
	color     :    #666;
  font-size: 0.95rem;
    line-height: 1.6;
}

.thankyou-sidebar {
    display: flex;
               flex-direction: column;
        gap: 1.5rem;
}

.sidebar-card {
	 background: white;
                    padding: 1.8rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-card h3 {
	color: #1a3a52;
	  font-size     :       1.1rem;
	  margin-bottom: 1rem;
	                    font-weight: 700;
}

.sidebar-card p
	{
  color  :#666;
   font-size: 0.95rem;
  line-height: 1.6;
}

.quick-links {
       list-style: none;



}

.quick-links li {
  margin-bottom: 0.8rem;


}

.quick-links a {
  color: #2c5aa0;
    text-decoration   :    none;
    font-weight: 500;
               transition: opacity 0.3s ease;
}

.quick-links a:hover {
  opacity: 0.7;
	
}

.card-note
	{
    font-size: 0.85rem;
   color: #999;
   margin-top :        0.5rem !important;
}

.contact-phone {
  color: #2c5aa0;
    font-weight: 700;
  margin-top: 1rem !important;
}

.contact-card {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5aa0 100%);
    color: white;
}

.contact-card h3,
.contact-card p {
    color    :  white;
	
}

.contact-card .contact-phone {

    color :    #ffc107;
	} 

.thankyou-cta {
   background: white; 
    padding: 3rem; 
	 border-radius: 12px; 
   text-align: center; 
    margin-bottom: 3rem; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.thankyou-cta h2 {
  font-size: 2rem; 
   color: #1a3a52; 
	 margin-bottom: 0.5rem; 
  font-weight: 800;
}

.thankyou-cta p	{
  color: #666;
    font-size: 1.1rem;
  margin-bottom :       2rem;
}

.thankyou-button {
    display: inline-block;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a3a52 100%);
    color :        white;
    padding: 1rem 3rem;
   border-radius: 50px;
    text-decoration     :        none;
	font-weight: 700;
  font-size     :      1.05rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(44,90,160,0.3);
} 

.thankyou-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(44,90,160,0.4);
	
}

.featured-services {
	  background: linear-gradient(to right, rgba(26,58,82,0.05) 0%, rgba(44,90,160,0.05) 100%);
   padding: 4rem 20px;
	}  

.featured-header

{
   text-align: center;
                    margin-bottom: 3rem;
   max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.featured-header h2 {
    font-size: 2.5rem;
       color: #1a3a52;
       margin-bottom  :0.5rem;
       font-weight: 800;
}

.featured-header p {
  font-size: 1.1rem;
  color: #777;
}

.featured-grid {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   	gap: 2rem;
      max-width: 1200px;
     margin: 0 auto; 

}

.featured-card
	{
    background: white;
	padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #2c5aa0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.featured-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12); 

}

.featured-number {
    position: absolute;
   top: 1rem;
  right: 1.5rem;
  font-size     :2.5rem;
	 font-weight     :900;
   color   :#2c5aa0;
   opacity: 0.15;
}



.featured-card h3 {
    font-size: 1.3rem;
   color: #1a3a52;
  margin-bottom: 1rem;
    font-weight:        700;
}

.featured-card p {
    color: #666;
	font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom:    1.5rem; 
	
} 

.featured-link {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
    transition   :        opacity 0.3s ease;
}

.featured-link:hover {
    opacity: 0.7;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
        padding: 1.5rem;
    }

    .service-detail-item.alternate {
        grid-template-columns: 1fr;
    }

    .service-detail-item.alternate .service-detail-image {
        order: 1;
    }

    .service-detail-item.alternate .service-detail-content {
        order: 2;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .thankyou-steps li {
        grid-template-columns: 50px 1fr;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-item {
        padding: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .packages-header h2,
    .faq-header h2,
    .testimonials-header h2 {
        font-size: 1.8rem;
    }

    .package-price .amount {
        font-size: 2rem;
    }

    .thankyou-icon img {
        width: 60px;
        height: 60px;
    }

    .thankyou-steps li {
        grid-template-columns: 45px 1fr;
        gap: 1rem;
        padding: 1rem;
        margin-bottom: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }
}.policySection {
   padding: 5rem 2rem;
  background: linear-gradient(to right, rgba(26,58,82,0.03) 0%, rgba(44,90,160,0.03) 100%);
  min-height: calc(100vh - 300px);
}

.policyContainer {
	   max-width: 850px;
    margin: 0 auto;
	text-align    :left;
}

.policyContainer h1 {
   margin-bottom: 2rem;
	    font-weight: 800;
	  color: #1a3a52;
	   font-size    :2.8rem;
	   text-align: center;
}

.policyContainer h2 {
   font-size: 1.8rem;
   color: #2c5aa0;
    margin-top: 2.5rem;
  margin-bottom: 1.2rem;
	 font-weight: 700;
  border-bottom: 3px solid #ffc107;
   padding-bottom: 0.8rem;
}

.policyContainer p {
   color     :     #555;
	margin-bottom: 1.5rem;
   line-height: 1.8;
    font-size: 1rem;
	text-align: justify;
}

.policyContainer p:last-of-type {
  margin-bottom    :       0;


}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 750px;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 3.5rem 1.5rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.3rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
}