* {
	         box-sizing  :    border-box;
   padding: 0;
   margin: 0;
	}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #1a1a1a;
   background-color: #ffffff;
 line-height: 1.6;
}


.main_navigation {
         position: fixed;
   top: 0;
  width: 100%;
  background: linear-gradient(135deg, #0a1f3f 0%, #1a3a52 100%);
   z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav_container {
   max-width   :  1400px;
   margin: 0 auto;
  display: flex;
	justify-content: space-between;
   align-items   :      center;
   padding    :   0.8rem 2rem;
}

.logo_section {
            flex:       1;}

.logo_image {
                    height: 50px;
    width  : auto;
	object-fit: contain; 
	
}

.nav_links {
  display: flex;
   list-style: none;
    gap: 3rem;
         align-items: center;
  flex     :   2;
	 justify-content: flex-end;
}

.nav_links a {
      color: #ffffff;
   text-decoration: none;
  font-weight: 500;
    font-size: 1.05rem;
   transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 0.3rem;
	border-bottom: 2px solid transparent;}


.nav_links a:hover {
   color: #00d4ff;
   border-bottom: 2px solid #00d4ff;
}

.burger_toggle  
  {

   display: none;
    background: none;
          border: none;
        cursor: pointer;
    padding     :  0.5rem;


}

.burger_toggle img {
    width: 28px;
   height: 28px;
  filter: invert(1) brightness(1);
 transition: transform 0.3s ease;
}

.burger_toggle.active img {
  transform: rotate(90deg);
}

.hero_section {
	  margin-top: 70px;
  position: relative;
    height: 600px;
   overflow: hidden;
    display: flex;
   align-items: center;
   justify-content: center;
	
     }


.hero_background {
	position: absolute;
  width: 100%;
  height: 100%;
	object-fit: cover;
    z-index: 1;
}

.hero_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.7) 0%, rgba(26, 58, 82, 0.5) 100%);
   z-index     :    2;
}

.hero_content {
    text-align: center;
  color: #ffffff;
   padding: 2rem;
   max-width: 800px;
   position: relative;
	 z-index  :       3;
}

.hero_content h1 {
	   font-size  :        3.5rem;
    font-weight :   700;
   margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
   line-height: 1.2; 
	
     }

.hero_content p {
   font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}



.cta_button {
       display: inline-block;

	  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);

	  color   :   #ffffff;

	    padding: 1rem 2.5rem;

	    border-radius:   50px;

	   text-decoration: none;

	    font-weight: 600;

	   font-size: 1.05rem;

	  transition: all 0.3s ease;

	  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);

	  border   :      none;

		cursor: pointer;
}

.cta_button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
	
}

.cta_button_large {
	   display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: #ffffff;
  padding     :     1.2rem 3rem;
    border-radius   : 50px;
   text-decoration: none;
   font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
               border: none;
    cursor: pointer;
}

.cta_button_large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.features_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap     :        2.5rem;
  max-width: 1400px;
  margin:     4rem auto;
    padding: 0 2rem;
}

.feature_item {
   background     :   #f8f9fa;
	border-radius: 12px;
  overflow: hidden;
	transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
	
}

.feature_item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.feature_image {
    width: 100%;
               height: 250px;
  object-fit: cover;
}

.feature_item h3 {
   font-size    :   1.5rem;
  color: #0a1f3f;
  padding: 1.5rem 1.5rem 0.5rem;
   font-weight: 600;
}

.feature_item p {
        color: #555555;

  padding: 0 1.5rem 1.5rem;

  font-size   :    0.95rem;

	line-height  :  1.5;
}

.coaching_section
	{
  background: linear-gradient(135deg, #0a1f3f 0%, #1a3a52 100%);
    color: #ffffff;
  padding     :     4rem 2rem;
    margin: 3rem 0;
}

.coaching_section h2 {
  font-size: 2.5rem;
					text-align: center;
  margin-bottom     :      3rem;
  font-weight: 700;
}

.coaching_grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}  

.coaching_card     {
  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(0, 212, 255, 0.2);

  border-radius: 10px;

    padding: 2rem;

   transition  :  all 0.3s ease;

  backdrop-filter: blur(10px);
} 

.coaching_card:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px);
}

.coaching_card h4 {
   font-size     :        1.3rem;
   margin-bottom    : 1rem;
	color  :     #00d4ff;
}

.coaching_card p {
   font-size: 0.95rem;
   line-height: 1.6;
  color: #e0e0e0;
}

.prestige_yacht_showcase {
  max-width: 1400px;
  margin: 4rem auto;
    padding: 0 2rem;
}

.prestige_yacht_showcase h2     {
   font-size: 2.5rem;
  text-align: center;
   margin-bottom:       3rem;
   color: #0a1f3f;
   font-weight: 700;
}

.yacht_showcase     {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items  :  center;
}

.showcase_image {
    width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.showcase_details h3 {
     font-size: 2rem;
   color   :    #0a1f3f;
    margin-bottom: 1rem;
    font-weight  :     600;
}

.showcase_details p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
      color: #555555;
  font-size: 1rem;
}

.amenities_list {
  list-style: none;

   margin-top: 1.5rem;
}

.amenities_list li {
  color: #0a1f3f;
  padding: 0.7rem 0;
   padding-left   :        2rem;
    position: relative;
   font-weight: 500;
}

.amenities_list li:before   {

  content: "✓";
  position: absolute;
 left    :      0;
  color: #00d4ff;
   font-weight: bold;
	font-size: 1.2rem;
}

.cta_consultation {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
  text-align: center;
  padding: 3rem 2rem;
    margin: 3rem 0;
	 border-radius: 15px;
   max-width   :1400px;
    margin-left: auto;
  margin-right: auto;
}

.cta_consultation h2 {
  font-size: 2.2rem;
   margin-bottom: 1rem;
	 font-weight: 700;
}

.cta_consultation p
{
      font-size: 1.1rem;
  margin-bottom: 2rem;}

.contact_section {
   max-width: 800px;
    margin: 4rem auto;
	padding: 3rem 2rem;
	background: #f8f9fa;
   border-radius:      15px; 
	
}

.contact_section h2 {
   font-size: 2.2rem;
  text-align: center;
          margin-bottom: 0.5rem;
   color     :      #0a1f3f;
	 font-weight: 700;
}

.contact_subtitle {
         color: #666666;
    font-size: 1rem;
  margin-bottom: 2rem;
   text-align: center;
}

.contact_form {
    display: grid;
    gap: 1.5rem;
}

.form_group {
	display :      flex;
               flex-direction: column;

}

.form_group label {

  font-weight: 600;
	 color: #0a1f3f;
   margin-bottom: 0.5rem;
  font-size  :  0.95rem;}

.form_group input,
.form_group select,
.form_group textarea {
      padding: 0.9rem 1rem;
       border: 2px solid #ddd;
   border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form_group input:focus,
.form_group select:focus,
.form_group textarea:focus {
   outline     :      none;
  border-color: #00d4ff;
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.submit_button {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: #ffffff;
    padding: 1rem 2rem;
   border : none;
	 border-radius   :  8px;
    font-size   :    1rem;
	font-weight: 600;
    cursor: pointer;
	 transition: all 0.3s ease;
   margin-top: 1rem;
}

.submit_button:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.main_footer {
  background: linear-gradient(135deg, #0a1f3f 0%, #1a3a52 100%);
	   color: #ffffff;
	   margin-top: 4rem;
	   padding-top: 3rem;
}

.footer_content {
        max-width: 1400px;
    margin: 0 auto;
  display :     grid;
	grid-template-columns: 1fr 3fr;
    gap  :        3rem;
  padding: 2rem;
}

.footer_logo_section 
 {
  display: flex;
   align-items: flex-start;
}

.footer_logo {
   height    :  60px;
	 width: auto;
    object-fit: contain;}

.footer_info    {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.footer_block h4 {
          font-size: 1.1rem;
  margin-bottom: 1rem;
	 color     :#00d4ff;
   font-weight: 600;
}

.footer_block ul {
  list-style: none;
}

.footer_block ul li {
  margin-bottom: 0.8rem;
}

.footer_block a {
    color: #e0e0e0;
  text-decoration: none;
    transition: color 0.3s ease;
}  

.footer_block a:hover     {
  color: #00d4ff; 

}

.footer_block p {
	color    :  #e0e0e0;
       font-size: 0.95rem;
     margin-bottom: 0.8rem;
}

.footer_bottom {
               text-align: center;
	padding: 2rem;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  color: #999999;
}@media (max-width: 1024px) {
    .nav_links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #0a1f3f;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
        align-items: stretch;
    }

    .nav_links.active {
        left: 0;
    }

    .nav_links a {
        padding: 1.5rem;
        display: block;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .burger_toggle {
        display: block;
    }

    .hero_content h1 {
        font-size: 2.5rem;
    }

    .yacht_showcase {
        grid-template-columns: 1fr;
    }

    .footer_info {
        grid-template-columns: 1fr;
    }

    .footer_content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero_section {
        height: 400px;
        margin-top: 60px;
    }

    .hero_content h1 {
        font-size: 1.8rem;
    }

    .hero_content p {
        font-size: 1rem;
    }

    .features_grid {
        grid-template-columns: 1fr;
    }

    .coaching_grid {
        grid-template-columns: 1fr;
    }

    .prestige_yacht_showcase h2 {
        font-size: 1.8rem;
    }

    .showcase_details h3 {
        font-size: 1.5rem;
    }

    .contact_section {
        padding: 2rem 1.5rem;
    }

    .contact_section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .nav_container {
        padding: 0.6rem 1rem;
    }

    .logo_image {
        height: 40px;
    }

    .hero_section {
        height: 300px;
        margin-top: 60px;
    }

    .hero_content h1 {
        font-size: 1.4rem;
    }

    .hero_content p {
        font-size: 0.9rem;
    }

    .cta_button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .features_grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .coaching_section {
        padding: 2rem 1rem;
    }

    .coaching_section h2 {
        font-size: 1.6rem;
    }

    .coaching_card {
        padding: 1.5rem;
    }

    .prestige_yacht_showcase {
        padding: 0 1rem;
    }

    .cta_consultation {
        padding: 2rem 1rem;
        margin: 2rem 1rem;
    }

    .cta_consultation h2 {
        font-size: 1.6rem;
    }

    .footer_info {
        font-size: 0.85rem;
    }

    .footer_logo {
        height: 50px;
    }
}.services_hero {

         margin-top: 70px;
   position: relative;
  height: 500px;
  overflow: hidden;
  display: flex;
   align-items: center;
  justify-content: center;
     }

.services_hero_bg {
  position: absolute;
   width: 100%;
    height: 100%;
	object-fit: cover;
   z-index: 1;
}

.services_hero_overlay {

    position:    absolute;
    width: 100%;
		 height: 100%;
  background: linear-gradient(135deg, rgba(10, 31, 63, 0.75) 0%, rgba(26, 58, 82, 0.6) 100%);
   z-index: 2;
}

.services_hero_content {
        position: relative;
    z-index: 3;
          text-align: center;
    color     :#ffffff;
  max-width: 800px;
   padding    :  2rem; 

}

.services_hero_content h1    {
  font-size: 3rem;
   font-weight: 700;
    margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services_hero_content p {
   font-size  :       1.2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);

}

.services_overview {
  max-width: 1400px;
	margin: 3rem auto;
    padding: 2rem;
    text-align: center;
}

.services_overview h2 {
     font-size: 2.5rem;
    color: #0a1f3f;
  margin-bottom: 1.5rem;
  font-weight: 700;}

.services_intro_text {
   max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
  color: #555555;
   line-height: 1.8;
	
}

.services_detailed {
	max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service_card_detailed {
  display: grid;

	     grid-template-columns: 1fr 1fr;

	    gap   :   3rem;

	  align-items: center;

	          margin-bottom: 4rem;

	   animation: fadeInUp 0.6s ease forwards; 

}

.service_card_detailed.alternate  {
     grid-template-columns: 1fr 1fr;


}  

.service_card_detailed.alternate .service_card_image {
    order  : 2;
}

.service_card_detailed.alternate .service_card_content {
    order: 1;
}  

.service_card_image


{
  width: 100%;
   border-radius  :     12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        object-fit: cover;
   height: 400px;


}

.service_card_content h3 {
  font-size: 2rem;
   color: #0a1f3f;
   margin-bottom: 1rem;
                    font-weight: 600;
}

.service_card_content p {
   font-size: 1rem;
  line-height: 1.7;
    margin-bottom: 1.5rem;
   color: #555555;
}

.service_features {
   list-style: none;
  margin-top: 1.5rem;

}

.service_features li {
  color: #0a1f3f;
    padding: 0.8rem 0;
	 padding-left: 2rem;
   position: relative;
    font-weight: 500; 

}

.service_features li:before {

	  content: "›";
    position: absolute;
    left: 0;
   color :#00d4ff;
   font-weight: bold;
  font-size: 1.5rem;


} 

.pricing_section {
  background: linear-gradient(135deg, #f0f7ff 0%, #f9f0ff 100%);
   padding: 4rem 2rem;
   margin: 4rem 0;
}

.pricing_section h2 {
     font-size: 2.5rem;
  text-align: center;
   color: #0a1f3f;
    margin-bottom    :  1rem;
  font-weight: 700; 


}

.pricing_intro {

	  text-align: center;
	color: #555555;
  font-size: 1.05rem;
        margin-bottom: 3rem;


}

.pricing_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    max-width:      1200px;
  margin: 0 auto;
}

.pricing_tier {
         background :   #ffffff;
   border-radius: 12px;
  padding: 2.5rem;
	 text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	 border: 2px solid transparent;
}

.pricing_tier:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
   border-color: #00d4ff;


}

.pricing_tier.featured


{
   border: 2px solid #00d4ff;
  transform: scale(1.05);
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.pricing_tier h4 {
                    font-size: 1.4rem;
	color: #0a1f3f;
    margin-bottom: 1rem;
    font-weight: 600;
}

.price_range {
	font-size  :   2rem;
     color: #00d4ff;
    font-weight: 700;
	 margin-bottom: 0.5rem;
}

.price_desc {
          font-size: 0.9rem;
                    color: #888888;
   margin-bottom  :      1.5rem;
}

.price_features {
  list-style: none;
    text-align: left;
    margin  :   1.5rem 0;
}

.price_features li {
    padding: 0.6rem 0;
   color: #555555;
  padding-left    :1.5rem;
   position: relative;
}

.price_features li:before {
  content: "✓";
    position: absolute;
   left: 0;
  color: #00d4ff;
   font-weight: bold;
}

.why_prestige

{
					max-width: 1400px;
  margin: 4rem auto;
   padding: 0 2rem;
	
} 

.why_prestige h2 {
   	 font-size: 2.5rem;
   text-align: center;
  color: #0a1f3f;
  margin-bottom: 3rem;
    font-weight: 700;


}

.why_grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why_item
	{
  background: #f8f9fa;
    border-radius :10px;
  padding:   2rem;
  transition: all 0.3s ease;
  border-left: 4px solid #00d4ff;
}

.why_item:hover {

	  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.1); 
	
	}

.why_item h4 {
    font-size : 1.3rem;
   color: #0a1f3f;
  margin-bottom: 1rem;
  font-weight :        600;
}

.why_item p {
  color: #555555;
  line-height: 1.6;
    font-size: 0.95rem;


}

.add_services {

  background: linear-gradient(135deg, #0a1f3f 0%, #1a3a52 100%);

	    color: #ffffff;

		padding: 4rem 2rem;

	    margin: 3rem 0;


}

.add_services h2 {

   font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
	font-weight: 700;


}

.add_services_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
    max-width   :      1400px;
      margin: 0 auto;
     }

.add_service_item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 10px;
     padding: 2rem;
    transition:   all 0.3s ease;
  backdrop-filter: blur(10px);
} 

.add_service_item:hover		{
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.5);
  transform: translateY(-5px); 

}



.add_service_item h4 {
    font-size: 1.2rem;
    margin-bottom  :    0.8rem;
    color: #00d4ff;
}

.add_service_item p {
    font-size: 0.95rem;
   color: #e0e0e0;
   line-height: 1.6;}

.faq_section {
   max-width: 900px;
	margin     :  4rem auto;
	 padding: 0 2rem;
}

.faq_section h2
	{
               font-size   :    2.5rem;
    text-align: center;
  color: #0a1f3f;
  margin-bottom: 3rem;
                    font-weight: 700;
}

.faq_list {
   gap: 1.5rem;
  display: grid;
}

.faq_item  {

    background: #f8f9fa;
  border-radius: 10px;
  padding: 2rem;
    border-left: 4px solid #00d4ff;
    transition: all 0.3s ease;}

.faq_item:hover {
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.1);
}

.faq_question {
	font-size  :     1.1rem;
  color:   #0a1f3f;
         font-weight: 600;
    margin-bottom: 0.8rem;
    cursor: pointer;
} 

.faq_answer {
    color: #555555;
  line-height: 1.7;
  font-size  :  0.95rem;
}

.testimonials_section {

	  background: linear-gradient(135deg, #f0f7ff 0%, #e8f1ff 100%);
   padding: 4rem 2rem;
    margin: 3rem 0;
	}

.testimonials_section h2 {
	  font-size: 2.5rem;
	 text-align: center;
    color: #0a1f3f;
    margin-bottom: 3rem;
	font-weight :700;
}

.testimonials_grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2.5rem;
  max-width: 1400px;
   margin: 0 auto;

     }

.testimonial_card {
  background: #ffffff; 
  border-radius: 12px; 
   padding: 2rem; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    border-top: 4px solid #00d4ff; 
    transition: all 0.3s ease;
}

.testimonial_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.15);
}

.testimonial_text {
    font-size: 1rem;
 color: #555555;
  line-height: 1.7;
   margin-bottom: 1.5rem;
     font-style: italic;
}

.testimonial_author {
	font-weight: 600;
	color :#0a1f3f;
    font-size: 0.95rem;
}

.cta_services

{

  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: #ffffff;
    text-align: center;
  padding: 3.5rem 2rem;
    margin :        3rem 0;
   border-radius: 15px;
   max-width: 1400px;
    margin-left: auto;
    margin-right: auto;


}

.cta_services h2 {
  font-size: 2.2rem;
    margin-bottom     :1rem;
    font-weight: 700;
}

.cta_services p {
         font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thankyou_container {
    min-height: 70vh;
   display: flex;
   align-items: center;
   justify-content   :       center;
	margin-top: 70px;
  background: linear-gradient(135deg, #f0f7ff 0%, #f9f0ff 100%);
	 padding :       2rem; 
	
}

.thankyou_content {
   background: #ffffff;
    border-radius: 20px;
    padding: 3rem 2rem;
   max-width: 700px;
   text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success_icon {
   margin-bottom:      2rem;
}



.check_icon {
   width   :     80px;
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(0, 212, 255, 0.3));
  animation: scaleIn 0.6s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou_content h1 {
			font-size: 2.5rem;
  color: #00d4ff;
	margin-bottom: 0.5rem;
    font-weight: 700;
}

.thankyou_content h2 {
         font-size: 1.5rem;
	 color: #0a1f3f;
    margin-bottom: 2rem;
  font-weight: 600;
}

.thankyou_message

{

  margin-bottom: 2.5rem;
  line-height: 1.8;
        font-size: 1rem;
	 color: #555555;
	} 

.thankyou_next_steps		{

    background: #f8f9fa;
      border-radius: 12px;
     padding: 2rem;
      margin-bottom: 2rem;
       text-align :  left;


}

.thankyou_next_steps h3 {
   color   :       #0a1f3f;
  font-size: 1.3rem;
    margin-bottom: 1rem;
   font-weight :600;
}

.steps_list
	{
   list-style   :  none;
}

.steps_list li {
  color: #555555;
   padding: 0.7rem 0;
    padding-left: 2rem;
        position: relative;
}

.steps_list li:before 
 {
  content: "›";
   position: absolute;
	left: 0;
  color: #00d4ff;
    font-weight: bold;
  font-size: 1.5rem;
}

.thankyou_contact_info  {
     background: linear-gradient(135deg, #e8f4ff 0%, #f0e8ff 100%);
    border-radius: 12px;
  padding  :     2rem;
   margin-bottom: 2rem;}

.thankyou_contact_info h3 {
  color: #0a1f3f;
   font-size : 1.2rem;
   margin-bottom:1rem;
    font-weight: 600;
}

.thankyou_contact_info p		{


   color: #555555;
    margin-bottom: 0.5rem;

}

.urgent_phone {
   color: #00d4ff;
	   font-size: 1.1rem;
	    margin: 1rem 0;
	
}

.urgent_hours {
    font-size: 0.9rem;
   color: #888888;
}

.thankyou_actions {
	display: flex;

	   gap   :   1rem;

	    flex-wrap: wrap;

	               justify-content: center;

	      margin-bottom: 2rem;
}

.button_primary {
   display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: #ffffff;
    padding: 1rem 2rem;
    border-radius   :     8px;
    text-decoration: none;
   font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

.button_primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.4);
}

.button_secondary {
  display: inline-block;
    background: #f8f9fa;
       color: #0a1f3f;
  padding: 1rem 2rem;
    border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    border  :     2px solid #00d4ff;
  transition: all 0.3s ease;
}

.button_secondary:hover   {
    color: #ffffff;
	  transform: translateY(-2px);
		 background: #00d4ff;
}



.thankyou_social_message


{

  color: #888888;
    font-size: 0.9rem;
   padding-top: 1rem;
	 border-top: 1px solid #ddd;
	} 

.related_services {
   max-width: 1400px;
	margin    :        4rem auto;
  padding: 0 2rem;
}  

.related_services h2 {
   font-size: 2.2rem;
  text-align: center;
    color:       #0a1f3f;
   margin-bottom: 3rem;
   font-weight :    700;
}

.related_grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap    :2rem;
}

.related_card {
  background     :        #f8f9fa;
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.related_card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.15);
}

.related_image {
    width: 100%;
  height: 200px;
    object-fit: cover;
}

.related_card h4 {
    font-size: 1.2rem;
     color: #0a1f3f;
      padding: 1.5rem 1.5rem 0.5rem;
  font-weight: 600;
}

.related_card p {
    color:    #555555;
    padding :     0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
	flex-grow :  1;
}

.related_link {
    color: #00d4ff;
   text-decoration: none;
    padding: 1.5rem;
    font-weight  :   600;
    transition: all 0.3s ease;
}

.related_link:hover {
   color: #0099cc;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1024px) {
    .service_card_detailed {
        grid-template-columns: 1fr;
    }

    .service_card_detailed.alternate {
        grid-template-columns: 1fr;
    }

    .service_card_detailed.alternate .service_card_image {
        order: 1;
    }

    .service_card_detailed.alternate .service_card_content {
        order: 2;
    }

    .pricing_tier.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services_hero {
        height: 350px;
    }

    .services_hero_content h1 {
        font-size: 2rem;
    }

    .services_hero_content p {
        font-size: 1rem;
    }

    .services_overview h2 {
        font-size: 2rem;
    }

    .service_card_detailed {
        margin-bottom: 3rem;
    }

    .service_card_image {
        height: 250px;
    }

    .pricing_grid {
        grid-template-columns: 1fr;
    }

    .testimonials_grid {
        grid-template-columns: 1fr;
    }

    .thankyou_content {
        padding: 2rem 1.5rem;
    }

    .thankyou_content h1 {
        font-size: 2rem;
    }

    .thankyou_actions {
        flex-direction: column;
    }

    .button_primary,
    .button_secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services_hero {
        height: 280px;
    }

    .services_hero_content h1 {
        font-size: 1.5rem;
    }

    .services_overview h2 {
        font-size: 1.6rem;
    }

    .service_card_content h3 {
        font-size: 1.4rem;
    }

    .pricing_grid {
        gap: 1.5rem;
    }

    .why_grid {
        grid-template-columns: 1fr;
    }

    .add_services_grid {
        grid-template-columns: 1fr;
    }

    .faq_section {
        padding: 0 1rem;
    }

    .thankyou_content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .check_icon {
        width: 60px;
        height: 60px;
    }

    .thankyou_content h1 {
        font-size: 1.8rem;
    }

    .thankyou_content h2 {
        font-size: 1.2rem;
    }

    .related_grid {
        grid-template-columns: 1fr;
    }
}.policy_section {
   margin-top: 70px;
  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f7ff 100%);
    min-height   :70vh;
}

.policy_container {
	   max-width:        900px;

	   margin: 0 auto;

	   text-align: left;

	   background : #ffffff;

	    border-radius: 15px;

		padding: 3rem 2.5rem;

	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policy_container h1 {
     font-size: 2.8rem;
    color: #0a1f3f;
   margin-bottom :       2rem;
    font-weight: 700;
    border-bottom: 3px solid #00d4ff;
    padding-bottom: 1rem;


}

.policy_container h2 {
    font-size: 1.8rem;
       color: #1a3a52;
       margin-top: 2.5rem;
     margin-bottom: 1.2rem;
       font-weight:600;
     position  :        relative;
      padding-left: 1rem;
} 

.policy_container h2:before {
  content: "";
    position: absolute;
    left: 0;
  top: 0;
  height: 100%;
   width: 4px;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border-radius: 2px;
}

.policy_container p {
  color: #555555;
    line-height: 1.8;
   margin-bottom: 1.3rem;
   font-size: 1rem;
}


.policy_container strong {
   color    :    #0a1f3f;
    font-weight: 600;
}

.policy_container ul {
	list-style: none;
   margin-bottom: 1.5rem;
}

.policy_container li {
  color: #555555;
  margin-bottom: 0.8rem;
  padding-left: 2rem;
   position  :       relative;
   line-height    :1.7;

}

.policy_container li:before {
  left: 0;

  color: #00d4ff;

    font-weight: bold;

  position: absolute;

  content: "›";

	 font-size: 1.5rem;
}@media (max-width: 1024px) {
    .policy_container {
        padding: 2.5rem 2rem;
    }

    .policy_container h1 {
        font-size: 2.2rem;
    }

    .policy_container h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policy_section {
        margin-top: 60px;
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy_container {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }

    .policy_container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy_container h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .policy_container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy_section {
        padding: 40px 1rem;
    }

    .policy_container {
        padding: 1.5rem 1rem;
        border-radius: 10px;
    }

    .policy_container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policy_container h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-left: 0.8rem;
    }

    .policy_container p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .policy_container li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }
}