* {


  margin: 0;
      padding: 0;
  box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         color: #1a1a1a;
     background-color: #ffffff;
    line-height: 1.6;
	


}

.site-header {
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
    padding: 1rem 0;
        position: sticky;
    top: 0;
   z-index :1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}  

.nav-container {
               max-width: 1200px; 
  margin: 0 auto; 
  padding: 0 2rem; 
  display: flex; 
  justify-content: space-between; 
 align-items: center;
}

.logo-section {
    flex: 0 0 auto;


}



.site-logo {
   height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
} 

.main-navigation .nav-menu {
  display: flex;
  list-style: none;
   gap: 2rem;
   align-items: center;


}

.nav-link {
          color: #ffffff;
   text-decoration: none;
    font-weight: 500;
 font-size: 1rem;
   transition: color 0.3s ease;}

.nav-link:hover    {
  color  : #00d4ff;


}

.nav-burger {
   display: none;
	 background: none;
    border: none;
  cursor :pointer;
    flex-direction     :       column;
    gap: 6px;
   padding: 8px;

}

.burger-line {
	  width: 25px;
   height: 3px;
  background-color :      #ffffff;
  transition     :       all 0.3s ease;
     }

.nav-burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);


}

.nav-burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) 
 {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero-section {
    padding: 4rem 2rem;
  background: linear-gradient(to bottom, rgba(10, 61, 98, 0.08), rgba(30, 95, 142, 0.04));
}

.hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap     :       3rem;
    align-items: center;
}

.hero-text {
   display: flex;
   flex-direction: column;
	 gap  :        1.5rem;
}

.hero-title {
	   font-size: 3rem;

	    font-weight: 700;

	                    color: #0a3d62;

	  line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.2rem;
         color    :#555555;
    line-height: 1.6;
}

.cta-button {
   display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
     color: #ffffff;
    text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
   transition  : all 0.3s ease;
	width   :   fit-content;
  box-shadow: 0 4px 15px rgba(10, 61, 98, 0.3);

}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 61, 98, 0.4);
}

.hero-image {
    width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);


}

.showcase-section {
	 padding: 4rem 2rem;
    background-color: #f8f9fa;
}  

.showcase-content
{

   max-width: 1200px;
    margin: 0 auto;


}

.section-title {
      font-size: 2.5rem;
    color :        #0a3d62;
  margin-bottom :        3rem;
   text-align: center;
   font-weight: 700;
     }

.fleet-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap     :2rem;
	
}

.fleet-card {

  background: #ffffff;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition  :     all 0.3s ease;


}

.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.fleet-image {
	width: 100%;
   height: 250px;
         object-fit: cover;
}

.fleet-name {
   font-size: 1.5rem;
    font-weight: 600;
    color: #0a3d62;
  padding: 1.5rem 1.5rem 0.5rem;

}

.fleet-desc {
    color: #666666;
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
	 line-height: 1.6;
}

.coaching-section {

   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef6 100%);}

.coaching-wrapper {
  max-width: 1200px;
    margin: 0 auto;}

.section-intro {
   text-align: center;
  font-size: 1.1rem;
    color: #555555;
   margin-bottom: 3rem;
    max-width: 700px;
	 margin-left: auto;
    margin-right: auto;

}

.coaching-options {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap     :2rem;
  margin-top: 2rem;
}

.coaching-item {
     background: #ffffff;

	  padding: 2rem;

	         border-radius: 10px;

		 border-left: 4px solid #0a3d62;

	  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);

	  transition: all 0.3s ease; 
	
	}

.coaching-item:hover


{
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coaching-title {

	    font-size: 1.3rem;
    font-weight: 600;
  color: #0a3d62;
  margin-bottom: 1rem;
     }

.coaching-text {
       color: #666666;
   font-size: 0.95rem;
    line-height: 1.7;
     }

.performance-section {
    padding: 4rem 2rem;
  background-color   :     #ffffff; 
	
}

.perf-wrapper {
   max-width     :  1200px;
    margin   :   0 auto;
   display: grid;
               grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.perf-image {
    width: 100%;
		 height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.perf-content {
    display: flex;
  gap: 1.5rem;
    flex-direction:        column;
}

.perf-text {
    color   :        #555555;
    font-size: 1rem;
   line-height: 1.8;

}

.perf-features {
   list-style: none;
    display: flex;
	flex-direction     :   column;
   gap: 1rem; 

}

.feature-item {
   display   :       flex;
  align-items: center;
    color: #333333;
   font-weight: 500;
   padding-left: 2rem;
   position: relative;
}

.feature-item::before {
  content: '';
     position     :    absolute;
     left: 0;
     width: 8px;
   	height :  8px;
     background: linear-gradient(135deg, #0a3d62, #1e5f8e);
       border-radius: 50%;
}

.cta-section{
         padding: 4rem 2rem;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
    color: #ffffff;
}

.cta-inner {
    max-width: 900px;
    margin: 0 auto;
  text-align :      center;
  display: flex;
         flex-direction: column;
   gap: 2rem;
}

.cta-title {
	font-weight: 700;
    font-size: 2.2rem;
}

.cta-text {
   	font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
     }

.primary-cta-button		{

	  font-size: 1.1rem;

		 padding: 1rem 2.5rem;

	  color: #0a3d62;

					 text-decoration: none;

	  transition: all 0.3s ease;

	    font-weight: 700;

	    display: inline-block;

	    width: fit-content;

	    border-radius: 50px;

	  margin: 0 auto;

	  background-color: #ffffff;
}

.primary-cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
   padding: 4rem 2rem;
   background-color: #f8f9fa;
}

.contact-wrapper {
  max-width: 700px;
   margin: 0 auto;
}

.contact-intro {
   text-align: center;
	   color   :    #666666;
	    font-size: 1rem;
	        margin-bottom: 2rem;
}

.contact-form {
  display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.form-group
{
      gap: 0.5rem;
   display: flex;
  flex-direction: column;
     }

.form-label {
  font-weight: 600;
   color     :  #0a3d62;
    font-size: 0.95rem; 

}

.form-input,
.form-textarea


{


    padding: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
   font-size: 1rem;
  font-family: inherit;
   transition: all 0.3s ease;
	}

.form-input:focus,
.form-textarea:focus {
    outline: none;
  border-color    :      #0a3d62;
  box-shadow: 0 0 0 3px rgba(10, 61, 98, 0.1);
}

.form-textarea {
  resize: vertical;
    min-height: 150px;
}

.form-button {
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
  color: #ffffff;
    border: none;
   border-radius: 8px;
	font-weight: 700;
    font-size: 1rem;
  cursor    :      pointer;
  transition  : all 0.3s ease;
   margin-top    :     1rem;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 61, 98, 0.4);
}

.site-footer {


  color: #ffffff;
  background: #0a3d62;
  padding: 3rem 2rem 1.5rem;


}

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
	display  :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
	margin-bottom: 2rem;
	
}

.footer-logo {
  height: 60px;
    width:        auto;
  filter: brightness(0) invert(1);
}

.footer-title {
  font-size: 1.1rem;
    font-weight : 700;
    margin-bottom: 1rem;
	color: #ffffff;
}

.footer-links {
    list-style: none;
  display: flex;
		flex-direction: column;
   gap: 0.8rem;
     }

.footer-link {
  color: #c0c0c0;
  transition: color 0.3s ease;
   font-size: 0.95rem;
          text-decoration: none;
}

.footer-link:hover {
     color: #ffffff;
}

.footer-address,
.footer-phone {
    color:#c0c0c0;
  font-size: 0.95rem;
   line-height: 1.8;
}

.footer-bottom {

	  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
    text-align: center;

}

.copyright {
    color: #999999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-burger {
        display: flex;
    }

    .main-navigation .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        list-style: none;
    }

    .main-navigation .nav-menu.active {
        display: flex;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem 0;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .perf-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .contact-form {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .site-logo {
        height: 40px;
    }

    .cta-button,
    .primary-cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .form-button {
        padding: 0.8rem 1.5rem;
    }
}.services-hero		{
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
    padding     :      3rem 2rem;
    color: #ffffff;
       text-align: center;
}

.services-hero-content {
   max-width:1200px;
       margin: 0 auto;
}

.services-hero-title {
    font-size: 2.8rem;
   font-weight    :        700;
  margin-bottom: 1rem;
}

.services-hero-desc {
    font-size: 1.2rem;
  opacity: 0.95;
  line-height: 1.6;
}

.services-grid-section {
   background-color: #ffffff;
  padding: 4rem 2rem;
}

.services-container {
   max-width:       1200px;
	margin: 0 auto;
}

.services-grid {
  display :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap     :    2rem;
    margin-top: 2rem;
}

.service-card {
	background: #ffffff;
  border-radius: 12px;
	 overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
	
}

.service-card:hover   {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image {
  display: block; 
  width     :    100%; 
    object-fit:    cover; 
  height: 220px;
}

.service-card-content {
  flex-direction   : column;
          gap:    1rem;
    display: flex;
	padding  :        1.5rem;
	
} 

.service-card-title {
  font-size: 1.4rem;
    font-weight: 600;
   color   :     #0a3d62;
}

.service-card-text {
    color: #666666;
		font-size: 0.95rem;
	   line-height: 1.6;
	  flex-grow     :   1;
}

.service-features  {
  display  :        flex;
                    flex-wrap  :     wrap;
   gap    :        0.5rem;
   margin: 0.5rem 0;
}

.feature-tag {
     display: inline-block;
       background-color: #f0f4f8;
       color   :     #0a3d62;
     padding: 0.4rem 0.8rem;
      border-radius: 20px;
     font-size: 0.85rem;
     font-weight: 500;
}

.service-link {
  color: #0a3d62;
  text-decoration: none;
	font-weight: 600;
   transition: color 0.3s ease;
	display: inline-block;
   margin-top: 0.5rem;
}

.service-link:hover    {
  color: #1e5f8e;
}

.coaching-programs-section {
	 padding     :       4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.coaching-programs-container {
  max-width: 1200px;
       margin: 0 auto;
	
}

.programs-intro {
   text-align: center;
    font-size: 1.1rem;
   color: #555555;
   margin-bottom: 3rem;
  max-width  :700px;
   margin-left    :      auto;
    margin-right: auto; 

}  

.programs-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.program-card 
 {
	   background: #ffffff;
   padding     :       2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		transition: all 0.3s ease;
    border  :   2px solid transparent;
    display     :  flex;
  flex-direction: column;
  gap: 1.5rem;
     }

.program-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.program-card-primary 
 {
  border-color: #0a3d62;
}

.program-card-secondary {
   border-color: #1e5f8e;
}

.program-card-tertiary {
	   border-color: #2a8fc5;
	}

.program-card-header {
   display  :   flex;
  justify-content: space-between;
	align-items: flex-start;
    gap    : 1rem;
}

.program-title {
  font-size: 1.4rem;
  font-weight: 600;
 color: #0a3d62;
    margin: 0;
}

.program-duration {
  background-color: #f0f4f8;
  color: #0a3d62;
  padding: 0.5rem 1rem;
  border-radius: 20px;
    font-size: 0.85rem;
    font-weight  :        600;
    white-space: nowrap; 

}

.program-description {
	color: #666666;
    font-size: 0.95rem;
  line-height:       1.7;
}

.program-list {
  list-style: none;
	display: flex;
	flex-direction   :  column;
    gap: 0.8rem;
}

.program-item {
   color: #555555;
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.program-item::before {
  content: '';
    position: absolute;
		 left: 0;
   top: 50%;
  transform: translateY(-50%);
  width: 6px;
		 height: 6px;
  background-color  :      #0a3d62;
   border-radius: 50%;
}

.program-button {
	display: inline-block;
  padding  :0.9rem 1.8rem;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
   color: #ffffff;
       text-decoration: none;
	 border-radius  :   8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
       margin-top: 1rem;
}

.program-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(10, 61, 98, 0.3);
}

.pricing-section   {
    padding: 4rem 2rem;
   background-color: #ffffff;
}

.pricing-container {
  max-width     :       1000px;
          margin: 0 auto;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
  color    :#555555;
  margin-bottom: 2rem;
               max-width: 700px;
    margin-left: auto;
  margin-right: auto;
}

.pricing-table-wrapper {


                    overflow-x: auto; 
	    margin: 2rem 0; 

	}

.pricing-table {
  width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   border-radius :   10px;
   overflow: hidden;
}

.pricing-header-row {

  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
	}

.pricing-cell {
  padding: 1.2rem;
  text-align: left;
     border-bottom: 1px solid #e0e0e0;
}

.pricing-header-row .pricing-cell {
  color: #ffffff;
    font-weight: 700;
  border-bottom :       none;
}

.pricing-first-col {
		font-weight: 600;
   color  :        #0a3d62;
    min-width: 200px;
}

.pricing-header-row .pricing-first-col {
    color: #ffffff;
}

.pricing-price {
   font-weight: 700;
   color: #0a3d62;
	font-size: 1.1rem;
}

.pricing-row:hover {
      background-color  :     #f8f9fa;
}

.pricing-row:last-child .pricing-cell {


   border-bottom: none;
	}

.pricing-note {
   text-align:        center;
  color: #999999;
  font-size :  0.9rem;
    margin-top: 1.5rem;
   font-style: italic;
}

.faq-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);

}

.faq-container {
      max-width   :      900px;
  margin: 0 auto;


}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
      margin-top :  2rem;
}

.faq-item	{
   background: #ffffff;
	 padding :        2rem;
  border-radius :10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
	 transition: all 0.3s ease;
    border-left: 4px solid #0a3d62;
}

.faq-item:hover{
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {

	    font-size: 1.1rem;
    font-weight    :        600;
   color: #0a3d62;
   margin-bottom: 1rem;
   line-height: 1.4;

}

.faq-answer {
    color: #666666;
  font-size: 0.95rem;
               line-height     :     1.7;
}

.testimonials-section     {
  padding: 4rem 2rem;
    background-color: #ffffff;
}

.testimonials-container {
   max-width     :     1200px;
    margin: 0 auto;
}

.testimonials-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap     :     2rem;
		margin-top: 2rem;
}  

.testimonial-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    padding   :2rem;
   border-radius   :  12px;
  border-left: 4px solid #0a3d62;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
 transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text 
 {
   color: #555555;
  font-size: 0.95rem;
   line-height: 1.8;
        margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
	color: #0a3d62;
   font-weight :     600;
	font-size: 0.9rem;
    margin   :     0;
}

.thankyou-section {
	 padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
          min-height: 500px;
     display    : flex;
  align-items: center;
    justify-content:       center;
}  

.thankyou-container		{
	          margin: 0 auto;
     max-width: 700px;
	}

.thankyou-inner {
   background: #ffffff;
    padding: 3rem 2rem;
   border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
  display: flex;
    flex-direction   :    column;
  gap: 1.5rem;
}

.thankyou-icon {

	  width     :    80px;
   height: 80px;
               margin: 0 auto;
 display: flex;
	 align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
	 border-radius: 50%;
}

.thankyou-icon img {
    width: 50px;
   height: 50px;
  filter: brightness(0) invert(1);
}

.thankyou-title {
    font-size   :    2.2rem;
  font-weight: 700;
    color: #0a3d62;
   margin: 0;
}

.thankyou-subtitle     {
  font-size: 1.2rem;
   color: #555555;
    margin    :       0;
}

.thankyou-message {
   color: #666666;
   font-size: 0.95rem;
   line-height: 1.8;
   margin: 1rem 0;


}  

.thankyou-info-block	{
  background: #f8f9fa;
	padding: 1.5rem;
  border-radius: 10px;
    margin :    1rem 0;
   text-align:    left;
}

.info-title {
      font-size: 1.1rem;
	font-weight :      600;
    color: #0a3d62;
  margin-bottom: 1rem;
   text-align: center;


}

.info-list

{
  list-style: none; 
	   display: flex; 
	    flex-direction: column; 
		gap: 0.8rem;
}

.info-item {
	color: #555555;
   font-size: 0.9rem;
  padding-left    :     1.5rem;
  position: relative;
}

.info-item::before {

  content: '';
   position: absolute;
	left     :        0;
	 top: 50%;
  transform: translateY(-50%);
	width: 6px;
   height: 6px;
   background-color: #0a3d62;
    border-radius: 50%;

}

.thankyou-contact {
   color: #0a3d62;
   font-size:  0.95rem;
    margin: 1rem 0;
}

.thankyou-button {
    display: inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
   color     :        #ffffff;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.thankyou-button:hover {
	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 61, 98, 0.4);}

.next-steps-section {
   padding: 4rem 2rem;
    background-color: #ffffff;
}

.next-steps-container {
    max-width  :   1200px;
    margin     :    0 auto;
}

.steps-grid     {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

		 gap: 2rem;

			margin-top  :   2rem;
}

.step-card {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef6 100%);
   padding: 2rem;
    border-radius: 12px;
  text-align: center;
    transition: all 0.3s ease;
   border: 1px solid #e0e0e0;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-number {

    width: 50px;
 height: 50px;
  background: linear-gradient(135deg, #0a3d62 0%, #1e5f8e 100%);
    color: #ffffff;
   border-radius: 50%;
  display :      flex;
   align-items: center;
   justify-content: center;
  font-weight: 700;
    font-size: 1.5rem;
  margin: 0 auto 1rem;
}

.step-title {
   font-size: 1.2rem; 
	font-weight: 600; 
	 color: #0a3d62; 
    margin-bottom: 0.8rem;
	}

.step-text		{

               color: #666666;
   font-size: 0.95rem;
  line-height: 1.6;

}

.why-choose-section {
    padding: 4rem 2rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
}

.why-choose-container {


	max-width: 1200px; 
   margin   :      0 auto;}

.why-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  margin-top: 2rem;
}

.why-item {
   background: #ffffff;
   padding: 2rem;
      border-radius: 10px;
   text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
}

.why-item:hover {


  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-title {
    font-size: 1.1rem;
    font-weight: 600;
	color    :     #0a3d62;
    margin-bottom     :     0.8rem;
	
}

.why-text {
  color: #666666;
                    font-size: 0.9rem;
  line-height: 1.6;
}

.other-services-section {
	padding: 4rem 2rem;
	 background-color: #ffffff;
}

.other-services-container {
   max-width: 1200px;
  margin: 0 auto;
}

.other-services-intro {
  margin-bottom: 2rem;
    font-size: 1rem;
  color: #666666;
	text-align: center;
}

.other-services-grid {
                  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; 
	

}

.other-service-link {
   display: block; 
	  background: linear-gradient(135deg, #f0f4f8 0%, #e8eef6 100%); 
	  padding: 2rem; 
	  border-radius: 10px; 
	  text-decoration: none; 
	    transition: all 0.3s ease; 
	    border     :        2px solid transparent;
	
} 

.other-service-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
   border-color: #0a3d62;
}

.other-service-title {
      font-size: 1.2rem;
     font-weight     :        600;
            color: #0a3d62;
     margin-bottom: 0.5rem;

}

.other-service-text {
 color: #666666;
  font-size   :      0.9rem;
}@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .other-services-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-inner {
        padding: 2rem 1.5rem;
    }

    .pricing-table {
        font-size: 0.9rem;
    }

    .pricing-cell {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-desc {
        font-size: 0.9rem;
    }

    .program-card-header {
        flex-direction: column;
    }

    .program-duration {
        align-self: flex-start;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 1.5rem;
    }

    .pricing-table-wrapper {
        overflow-x: auto;
        font-size: 0.85rem;
    }

    .pricing-cell {
        padding: 0.6rem;
    }
}.policy-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f4f8 100%);
    min-height:  600px;
}

.policy-container {
   max-width: 800px;
    margin:    0 auto;
	background:      #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy-title		{
    font-size: 2.8rem;
	font-weight: 700;
    color    : #0a3d62;
  margin-bottom:        2rem;
   text-align: center;
   line-height: 1.2;
}

.policy-heading {


    margin-bottom: 1rem;
  margin-top: 2rem;
   color  :        #0a3d62;
               line-height: 1.3;
  font-weight     :    700;
   font-size     : 1.5rem;
}

.policy-text {
    color: #555555;
    font-size: 1rem;
  line-height: 1.8;
    margin-bottom: 1.5rem;
  text-align: justify;
}

.policy-text:first-of-type    {
     margin-top     :  0;
	}@media (max-width: 768px) {
    .policy-section {
        padding: 3rem 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
    }

    .policy-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-heading {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 2rem 1rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
    }

    .policy-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-heading {
        font-size: 1.1rem;
        margin-top: 1.2rem;
        margin-bottom: 0.7rem;
    }

    .policy-text {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
        text-align: left;
    }
}