* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
  background  :     #fafafa;
}

html {
    scroll-behavior: smooth;
}

.navbar {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
  padding: 1.2rem 0;
   position: sticky;
	top: 0;
         z-index: 1000;
  box-shadow: 0 4px 15px 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 img {
    height: 45px;
   width  :auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
	color: #fff;
    text-decoration: none;
  font-weight: 500;
    font-size  :        1rem;
  transition: all 0.3s ease;
  position: relative;
}


.nav-link:after {
  content: '';
               position: absolute;
  bottom: -5px;
     left   :    0;
   width :   0;
   height: 2px;
   background: #00d4ff;
  transition :width 0.3s ease;
}

.nav-link:hover:after {
   width: 100%;
}


.nav-toggle {
  display: none;
  flex-direction: column;
	cursor: pointer;
}

.burger-line  
  {
	width: 25px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
	 transition   :      all 0.3s ease;
  border-radius    :    2px;
}

.hero {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  padding: 5rem 2rem;
    max-width  :      1200px;
    margin: 0 auto;
  min-height: 600px;
}

.hero-content h1  {
	font-size: 3.2rem;
   font-weight    :  700;
   line-height:       1.2;
    margin-bottom:1.5rem;
    color    :  #1a3a52;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
   display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
   color: white;
    text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
    transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);
}

.hero-image {
  position     : relative;

	    height: 100%; 

}

.hero-img 
 {
  width: 100%;
  height    :100%;
    object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.offerings {
	    background: #fff;
	                    padding: 5rem 2rem;
     }  

.section-header {
  text-align: center;
   max-width: 600px;
    margin: 0 auto 3rem; 

}

.section-header h2 {
  color: #1a3a52;
  font-size: 2.5rem;
   margin-bottom: 0.8rem; 
	
}

.section-header p {
    font-size: 1.1rem;
    color  :#666; 

}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.offering-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 2.5rem;
	border-radius: 12px;
    border: 1px solid #e0e6ed;
	transition: all 0.3s ease;
    text-align: center;
}

.offering-card:hover  
  {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border-color: #00b4d8;
}

.card-icon		{
  width     :70px;
		 height: 70px;
   margin:        0 auto 1.5rem;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
   border-radius: 50%;
	display: flex;
               align-items: center;
    justify-content: center;
}

.icon-svg {
    width: 40px;
   height: 40px;
    fill: white;
}

.offering-card h3 {
  font-size: 1.5rem;
  margin-bottom   :   1rem;
   color     :  #1a3a52;
}

.offering-card p {
    font-size: 0.95rem;
	color: #555;
    line-height: 1.7;
}

.destinations
{
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap   :        3rem;
   align-items     :  center;
	padding     :   5rem 2rem;
  max-width: 1200px;
   margin: 0 auto;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 150, 199, 0.05) 100%);
}

.destination-content h2   {

	    font-size    :  2.5rem;
    margin-bottom: 1rem;
    color: #1a3a52;

}

.destination-content > p {
    font-size: 1.05rem;
	color: #555;
    margin-bottom: 2.5rem;
   line-height     :     1.8;
}

.destination-list {
  display: flex;
  flex-direction: column;
   gap: 1.5rem;
}



.destination-item {
    padding: 1.5rem;
	background: white;
  border-left: 4px solid #00b4d8;
		 border-radius    :   8px;
}

.destination-item h4 {
    font-size: 1.2rem;
    color    :        #1a3a52;
   margin-bottom: 0.5rem;




}

.destination-item p {
    color   :    #666;
   font-size   :0.95rem;
}

.dest-img {
      width: 100%;
   border-radius   :       15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}



.experience {

	  padding: 5rem 2rem;
    background : #fff;


}

.experience h2 {

	    text-align :   center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #1a3a52;}

.experience-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   max-width :1200px;
    margin: 0 auto;


}

.exp-box
	{
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f9ff 100%);
    padding    : 2rem;
  border-radius: 12px;
          position: relative;
					border: 1px solid #e0e6ed;
}

.exp-number {
	font-size: 3rem;
   font-weight: 700;
   color: #00b4d8;
  opacity    :    0.3;
  position: absolute;
  top: 1rem;
   right: 1.5rem;
}

.exp-box h3 {
  font-size: 1.3rem;
    color     :      #1a3a52;
   margin-bottom: 1rem;
  position: relative;
   z-index: 1;
}

.exp-box p {
    color :        #555; 
	   font-size: 0.95rem; 
	   line-height: 1.7; 
	   position: relative; 
	  z-index:    1;
}


.gallery {
			padding: 5rem 2rem;

	  background: linear-gradient(135deg, rgba(26, 58, 82, 0.02) 0%, rgba(0, 180, 216, 0.02) 100%);
}

.gallery h2 {
    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
	color: #1a3a52;
}

.gallery-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
   margin: 0 auto;
}

.gallery-item {
    overflow: hidden;
               border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img

{


	width: 100%;
  height: 300px;
  object-fit: cover;
	transition   :    transform 0.3s ease;
	}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

.cta-section {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
    color: white;
  padding: 4rem 2rem;
   text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.15rem;
   margin-bottom: 2rem;
			opacity: 0.95;
}  

.cta-button-large
{
   display: inline-block;
   padding: 1.1rem 3rem;
  background: #00d4ff;
    color: #1a3a52;
   text-decoration: none;
   border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
   transition: all 0.3s ease;
}

.cta-button-large:hover {
    background    :   #00b4d8;
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.contact-section {
               padding: 5rem 2rem;
          background: #fff;
}

.contact-container {
    max-width: 700px;
   margin: 0 auto;
}

.contact-section h2 {
    margin-bottom: 0.5rem;
  font-size: 2.5rem;
          color: #1a3a52;
 text-align: center;
}

.contact-intro  
  {
   text-align: center;
   color: #666;
               margin-bottom: 2.5rem;
   font-size: 1.05rem;
}

.contact-form {
			display: flex;
   flex-direction: column;
   gap: 1.5rem; 

}

.form-group {
  display: flex;
   flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
    font-weight: 600;
 color: #1a3a52;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.9rem;
          border    :  2px solid #e0e6ed;
  border-radius   :        8px;
	 font-size: 1rem;
      font-family: inherit;
    transition   :        all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus   {
   outline: none;
  border-color: #00b4d8;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
     }

.form-button {
   padding: 1rem;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
	color : white;
 border: none;
    border-radius: 8px;
    font-weight     :       700;
    font-size: 1.05rem;
    cursor: pointer;
               transition   :        all 0.3s ease;
    margin-top: 0.5rem;
}

.form-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);




}

.footer {
   background: #1a3a52;
	 padding: 3rem 2rem 1.5rem;
  color     : #fff;
}

.footer-content {
       max-width: 1200px;
	    margin   :        0 auto;
	   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	   gap: 2rem;
	   margin-bottom: 2rem;
}

.footer-section h4 {

	    margin-bottom: 1.2rem;
    font-size    :        1.1rem; 

     }

.footer-logo-img  
  {


    height:     50px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}  

.footer-links li {
                    margin-bottom: 0.7rem;
}

.footer-links a {
    color: #b0b8c1;
 text-decoration: none;
  transition: color 0.3s ease;


}

.footer-links a:hover {
   color: #00d4ff;
}

.footer-contact {
 color: #b0b8c1;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-phone {
    color: #00d4ff;
   font-weight: 600;
}

.footer-bottom {
   text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top:       1.5rem;
  color: #8892a0;
  font-size: 0.9rem;
     }
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #1a3a52;
        flex-direction: column;
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .destinations {
        grid-template-columns: 1fr;
    }

    .offerings-grid,
    .experience-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-img {
        height: 250px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
    color: white;
    padding    :   4rem 2rem;
	text-align: center;
}

.services-hero-content h1 {
  font-size: 2.8rem;
    margin-bottom: 0.8rem;
  font-weight: 700;
}

.services-hero-content p     {
   font-size: 1.2rem;
   opacity: 0.95;

}

.services-intro {
  padding: 3rem 2rem;
    background: #fff; 
	
}

.intro-container {


  max-width: 900px;
   margin :       0 auto;
	text-align: center;}

.intro-container h2 {
	font-size :      2.2rem;
  margin-bottom: 1.5rem;
    color :      #1a3a52;
}

.intro-text 
 {
   font-size: 1.05rem;
   color: #555;
   line-height: 1.8;
}

.detailed-services {
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     }

.services-container {
	 max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.service-card-large {
    background: white;
    border-radius    :       12px;
  padding     :    2.5rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
       border-top   :     4px solid #00b4d8;
}



.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.service-icon-large {
    width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
   border-radius: 50%;
    display :        flex;
  align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-service {
   width: 45px;
       height: 45px;
    fill: white; 
	
}

.service-card-large h3   {
   font-size: 1.5rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.service-duration {
    color: #00b4d8;
		font-weight: 600;
     font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.service-details p {

	  color: #555;
    line-height: 1.7;
   margin-bottom: 1.5rem;
  font-size: 0.95rem;}

.service-list {
      padding: 0;
   list-style: none;


}

.service-list li {
   padding: 0.5rem 0 0.5rem 1.5rem;
   color: #555;
   position  :     relative;
   font-size: 0.95rem;
}

.service-list li:before {
  content: '•';
    color: #00b4d8;
  font-weight   :     bold;
  position  :      absolute;
   left: 0;
}

.service-comparison 
 {
    padding: 4rem 2rem;
	background: white;
}

.comparison-container {
   max-width: 1000px;
	margin: 0 auto;
}

.comparison-container h2 {

	   text-align: center;
   font-size: 2.2rem;
  margin-bottom: 2.5rem;
	 color: #1a3a52;
	} 

.comparison-table {
        background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.table-header {
     display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
    color: white;
    font-weight  :700;

}

.header-cell {
  font-size: 0.95rem;
  padding: 1.2rem;
          text-align: center;
}

.table-row {
    display: grid; 
	   grid-template-columns: 1fr 1fr 1fr 1fr; 
	     border-bottom: 1px solid #e0e6ed;
}

.table-row:last-child	{
  border-bottom: none;
     }

.table-cell     {
    padding: 1.2rem;
         text-align: center;
  color: #555;
  font-size: 0.95rem;
}

.table-row:nth-child(even) {
     background  :   #f8f9fa;}


.service-packages {
   padding: 4rem 2rem;

	  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 150, 199, 0.05) 100%);
}  

.service-packages h2 {
   text-align: center;
   font-size: 2.2rem;
   margin-bottom: 3rem;
    color: #1a3a52;
}

.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;
  border-radius: 12px;
	padding  :2.5rem;
   text-align: center;
    position: relative;
    transition: all 0.3s ease;
	 border: 2px solid transparent;
	}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-card.featured {

	   border-color: #00b4d8;
  transform: scale(1.05);
}

.package-badge {
   position: absolute;
  top     :   -12px;
    left: 20px;
  background: #00b4d8;
   color: white;
    padding: 0.4rem 1rem;
   border-radius: 20px;
   font-size: 0.85rem;
    font-weight: 700;
}

.featured-badge {


  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);}

.package-card h3 {

  font-size: 1.8rem;
  color: #1a3a52;
    margin: 1.5rem 0 1rem;

}

.package-price {
   font-size: 2.5rem;
	 color: #00b4d8;
    font-weight:      700;
   margin: 0;


}

.package-duration {
   font-size     : 0.95rem;
   color: #999;
 margin-bottom: 1.5rem; 

}

.package-features {
    list-style    :none;
  padding: 1.5rem 0;
   text-align: left;
 border-top    : 1px solid #e0e6ed;
  border-bottom: 1px solid #e0e6ed;
}

.package-features li {
  padding: 0.7rem 0 0.7rem 1.5rem;
   color: #555;
  position: relative;
   font-size     :  0.95rem;
}

.package-features li:before {
  content: '✓';
               color: #00b4d8;
   font-weight: bold;
  position: absolute;
   left: 0;
}

.package-btn {
     margin-top: 1.5rem;
	 padding: 0.85rem 2rem;
   background: #f0f4ff;
    color: #00b4d8;
    border: 2px solid #00b4d8;
  border-radius: 8px;
        font-weight     :      600;
	cursor: pointer;
    transition: all 0.3s ease;
          width :        100%; 
	
}

.package-btn:hover


{
	background: #00b4d8;
    color: white;
}

.premium-btn {
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
                    color: white;
  border-color: transparent;
}

.premium-btn:hover {
  background: linear-gradient(135deg, #0096c7 0%, #007ba7 100%);
}

.coaches-team {
  padding: 4rem 2rem;
    background: white;
}

.coaches-team h2 {


       text-align: center;
  font-size :    2.2rem;
	margin-bottom: 0.5rem;
   color: #1a3a52;
}

.team-intro 
 {
  text-align:  center;
	color: #555;
   margin-bottom: 3rem;
   font-size: 1rem;
}

.coaches-grid
{
  display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :     2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.coach-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-radius: 12px;
   padding: 2rem;
   text-align: center;
   border: 1px solid #e0e6ed;
    transition  : all 0.3s ease;
}

.coach-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	border-color    :     #00b4d8;}

.coach-avatar {
	width  :      100px;
    height: 100px;
    margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
       border-radius: 50%;
	display: flex;
	align-items: center;
    justify-content:  center;
}

.coach-icon {
          width: 60px;
  height: 60px;
   fill: white;


}

.coach-card h4  {
	font-size: 1.3rem;
  color: #1a3a52;
    margin-bottom: 0.3rem;
}

.coach-title {
    color    :  #00b4d8;
   font-size: 0.9rem;
  font-weight: 600;
    margin-bottom: 1rem;
}

.coach-bio {
    color: #555;
    font-size: 0.95rem;
  line-height   : 1.6;
}

.why-voyage	{
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
        color: white;

}

.why-voyage h2 {
    text-align: center;
   font-size  :  2.2rem;
    margin-bottom: 3rem;


}

.why-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
			margin     :       0 auto;
}

.why-item    {
    text-align: center;
}


.why-icon {
	 width: 70px;
	height: 70px;
  background: rgba(255, 255, 255, 0.15);
   border-radius: 50%;
  display: flex;
  align-items: center;
   justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-why {
  fill: #00d4ff;
   height: 40px;
    width: 40px;
}

.why-item h4 {
	 font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.why-item p {
	  opacity: 0.9;
   line-height    :    1.6;

}

.testimonials-section {
      padding: 4rem 2rem;

		background: white;
}

.testimonials-section h2 {
   text-align: center; 
               font-size: 2.2rem; 
    margin-bottom: 3rem; 
   color: #1a3a52;
}

.testimonials-grid


{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
	 margin: 0 auto;
}

.testimonial-card {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f9ff 100%);
    padding: 2rem;
 border-radius: 12px;
   border-left: 4px solid #00b4d8;
}

.testimonial-text {
    color: #555;
	font-size: 1rem;
  line-height: 1.8;
    margin-bottom  :   1rem;
   font-style  :       italic;
}

.testimonial-author {

	   color: #1a3a52;
   font-weight: 600;
    font-size: 0.95rem;

}

.faq-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 150, 199, 0.05) 100%);
}

.faq-section h2 {
   text-align: center;
   font-size: 2.2rem;
    margin-bottom: 3rem;
   color: #1a3a52;
}

.faq-container {
  max-width :    800px;
  margin  :      0 auto; 

}

.faq-item
{
       background: white;
   margin-bottom: 1.5rem;
   border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
	}

.faq-question {
  padding: 1.5rem;
  -o-transition: all 0.3s ease;
    background: #f8f9fa;
   margin: 0;
   cursor: pointer;
  font-size: 1.05rem;
	color: #1a3a52;
    transition:  all 0.3s ease;
  font-weight: 600;
}

.faq-question:hover {
   background: #e8f1f8;
}

.faq-answer    {
   padding     :        1.5rem;
   color  :  #555;
    line-height: 1.7;
   display: none;
}

.faq-answer.active {
     display: block;
}

.thankyou-section {
  min-height: 80vh;
          display: flex;
  align-items: center;
  justify-content: center;
          padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.05) 0%, rgba(0, 150, 199, 0.05) 100%);
}

.thankyou-container
	{
    background: white;
    border-radius: 15px;
  padding: 3rem;
   max-width  :     700px;
   text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
     width    :    100px;
    height     :     100px;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
          border-radius    :  50%;
    display: flex;
  align-items: center;
   justify-content: center;
    margin: 0 auto 2rem;
}

.check-icon {
     height: 60px;
	    fill :white;
	    width: 60px;
}

.thankyou-section h1 {
  font-size: 2.5rem;
   color:#1a3a52;
    margin-bottom: 0.5rem;
}

.thankyou-subtitle     {
               font-size: 1.2rem;
   color: #00b4d8;
  margin-bottom: 2rem;
    font-weight: 600; 

}

.thankyou-message {
  text-align: left;
    margin   :   2rem 0;
}

.thankyou-message p    {

	 color: #555;

	    line-height: 1.8;

	    margin-bottom   :  1.5rem;
	}

.message-box {
    background: #f8f9fa;
    padding: 1.5rem;
   border-radius    :       8px;
      margin-bottom: 1.5rem;
    border-left: 4px solid #00b4d8;
}

.message-box h3 {
   color: #1a3a52;
  margin-bottom: 1rem;
	text-align: center;
}

.next-steps {
  list-style: none;

  padding: 0;
}

.next-steps li {
	 padding: 0.7rem 0 0.7rem 2rem;
   color: #555;
    position: relative;
   counter-increment: step-counter;
}

.next-steps li:before {
  content: counter(step-counter);
   position: absolute;
    left     :   0;
   background: #00b4d8;
  color: white;
   width: 25px;
   height: 25px;
  border-radius: 50%;
   display: flex;
   align-items  :     center;
  justify-content: center;
        font-size: 0.8rem;
    font-weight: 700;
}

.next-steps {
  counter-reset: step-counter;
}

.contact-info-box {
  background: linear-gradient(135deg, #1a3a52 0%, #2c5282 100%);
  color: white;
   padding: 1.5rem;
        border-radius: 8px;
   margin: 1.5rem 0;
}

.contact-info-box h4 {
       margin-bottom     :        0.8rem; 

	}

.contact-info-box p {
    margin  :     0.3rem 0;
    font-size: 0.95rem;
}

.contact-phone {
   font-size  :    1.1rem;
	margin: 0.8rem 0 !important;
}

.thankyou-actions {
 display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.action-button {
   padding: 1rem 2rem;
          border-radius: 8px;
   text-decoration: none;
	 font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.action-button.primary {
     background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
      color: white;


}

.action-button.primary:hover {
     transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 180, 216, 0.3);}

.action-button.secondary {

	    background: white;
   	color: #00b4d8;
       border: 2px solid #00b4d8;
	}

.action-button.secondary:hover {

   background: #f0f4ff;
	}

.explore-section {
  padding: 4rem 2rem;
  background: white;
}

.explore-section h2 {
   text-align: center;
  font-size: 2.2rem;
    margin-bottom :   3rem;
    color:   #1a3a52;
}

.explore-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  max-width: 1200px;
	 margin: 0 auto;
}

.explore-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	 padding: 2rem;
               border-radius: 12px;
                    text-align: center;
  border: 1px solid #e0e6ed;
    transition: all 0.3s ease;
}

.explore-card:hover {
  transform: translateY(-8px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.explore-icon {
   width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    border-radius: 50%;
	display: flex;
  align-items :    center;
   justify-content: center;
   margin: 0 auto 1.5rem;
}

.explore-icon-svg {
   width: 40px;
               height  :   40px;
	 fill: white;
}

.explore-card h3 {
    font-size: 1.2rem;
  color: #1a3a52;
    margin-bottom    :        0.8rem;
}

.explore-card p {
  color: #555;
    font-size: 0.95rem;
  margin-bottom: 1.5rem;
   line-height: 1.6;
}

.explore-link {
       color    :        #00b4d8;
   text-decoration: none;
    font-weight: 600;
    transition:all 0.3s ease;
  display: inline-block;

}


.explore-link:hover {
       color: #0096c7;
  transform: translateX(5px);

}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr 1fr;
    }

    .header-cell:nth-child(n+3),
    .table-cell:nth-child(n+3) {
        display: none;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .next-steps li {
        font-size: 0.95rem;
    }
}.policy-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.03) 0%, rgba(0, 150, 199, 0.03) 100%);
    min-height: 100vh;
} 

.policy-container {
   max-width:        900px;
    margin: 0 auto;
    text-align: left;
         background :white;
  padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {

	    font-size: 2.8rem;

    color: #1a3a52;

   margin-bottom    :      2rem;

  font-weight: 700;

  border-bottom: 3px solid #00b4d8;

   padding-bottom: 1rem;


}

.policy-container h2 {
    font-size     :    1.8rem;
   color: #1a3a52;
  margin-top: 2.5rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.policy-container p {
  color    :   #555;
	    margin-bottom   :      1.5rem;
	   line-height: 1.85;
		 font-size: 1rem;
}

.policy-container p:last-child {


  margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container {
        padding: 1.5rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}