* {
   margin: 0;
  box-sizing: border-box;
    padding: 0;
}

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, #1e3a8a 0%, #2563eb 100%); 
	  padding: 1rem 0; 
	    position: sticky; 
	   top: 0; 
	  z-index: 1000; 
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 1.5rem;
  display: flex;
    justify-content: space-between;
   align-items: center;
}

.nav-logo {
   display: flex;
  align-items: center;

}

.logo-img {
	height: 40px;
                    width:       auto;
  filter: brightness(0) invert(1);
}

.nav-burger {

   flex-direction: column;
    padding: 0.5rem;
	display: none;
                    background: none;
       cursor: pointer;
   border: none;
}

.nav-burger span
{
      width :       25px;
     height: 3px;
     background-color: white;
     margin     :    5px 0;
      transition: 0.3s;
      border-radius: 2px;


}

.nav-menu


{
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
	color: white;
    text-decoration: none;
	font-weight     :500;
  transition: 0.3s ease;
	position: relative;
}

.nav-menu a:hover {
   color: #fbbf24;
}

.nav-menu a::after {
	  content: '';
	position: absolute;
  bottom: -5px;
   left    :       0;
  width: 0;
    height  : 2px;
  background-color: #fbbf24;
  transition :   width 0.3s ease;
	} 

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
	max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 1.5rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items  :      center;
  min-height:     70vh;
}

.hero-content h1 {
	font-size: 3.5rem;
   margin-bottom  : 1.5rem;
               color: #1e3a8a;
    line-height     :       1.2;
}

.hero-content p {
   font-size: 1.25rem;
    color: #555;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
  display: inline-block;
     padding     :   1rem 2.5rem;
     background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
      color: white;
      text-decoration: none;
       border-radius: 50px;
     font-weight: 600;
      transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5); 
	
}

.hero-image {
   position: relative;
}

.hero-image img {
    width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
   animation   :      float 3s ease-in-out infinite;
}@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}.experience {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);

    padding: 5rem 1.5rem;

		 max-width: 1200px;

  margin     : 0 auto;

}

.experience h2 {
          font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
   color: #1e3a8a;
	
}

.experience-grid		{
	 display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
        gap: 2rem;
}

.experience-card {
    background: white;
    border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.experience-card img		{
	   height :       250px;
  width: 100%;
   object-fit: cover;


}

.experience-card h3

{
    font-size: 1.5rem;
   padding: 1.5rem 1.5rem 0.5rem;
     color: #1e3a8a;
}

.experience-card p {
   padding: 0 1.5rem 1.5rem;
    color: #555;
  line-height: 1.7;
}

.services-preview {
	padding   :       5rem 1.5rem;
   max-width:  1200px;
   margin     : 0 auto;
}

.services-preview h2 {
  font-size: 2.5rem;
  text-align  : center;
    margin-bottom: 3rem;
  color: #1e3a8a; 

}

.services-content{

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
        margin-bottom: 2rem;
	}

.service-item {
     background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
                    padding: 2rem;
	 border-radius: 12px;
   border-left: 4px solid #ff6b6b;
  transition: all 0.3s ease;


}

.service-item:hover {
  transform: translateX(5px);
      border-left-color     :       #2563eb;
	
}

.service-item h3 {
    font-size: 1.3rem;
   color: #1e3a8a;
  margin-bottom: 1rem;
}

.service-item p {
  color:  #555;
   line-height: 1.7;
}

.secondary-cta {
    display: block;
	text-align: center;
    padding: 0.8rem 2rem;
    background-color: #2563eb;
	 color: white;
    text-decoration  :  none;
   border-radius: 8px;
    font-weight: 600;
   width: fit-content;
   margin: 0 auto;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background-color: #1e40af;
  transform: translateY(-2px);
}

.romantic-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 4rem 1.5rem;
	 max-width:    1200px;
          margin: 2rem auto;
    border-radius: 20px;
}

.romantic-content h2 {
   font-size: 2.3rem;
   color: #92400e;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.romantic-content p {


    font-size: 1.1rem;
    color: #78350f;
  margin-bottom: 2rem;
    line-height: 1.8;
     }

.romantic-content img  
  {
   width: 100%;
	height     :    auto;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    padding: 4rem 1.5rem;
  text-align :  center;
    color: white;
          margin: 3rem 0;
}

.cta-wrapper h2 {
  font-size     :     2.5rem;
   margin-bottom: 1rem;
}

.cta-wrapper p {
          font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.primary-cta {
  display: inline-block;
  padding: 1.2rem 3rem;
    background-color: #ff6b6b;
  color: white;
   text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
       transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4); 
	
}


.primary-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
	
}

.contact {
      max-width: 700px;
   margin   : 4rem auto;
    padding: 0 1.5rem;
}

.contact h2    {
   font-size: 2.3rem;
                    color: #1e3a8a;
   margin-bottom: 2rem;
    text-align: center;
}


.contact-form {
    background     :     white;
  padding:       2.5rem;
   border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group 
 {

  margin-bottom: 1.5rem;



}

.form-group label {
    display :  block;
   margin-bottom: 0.5rem;
    font-weight: 600;
  color   :  #2c3e50;
}  

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 0.8rem;
  border: 2px solid #e5e7eb;
 border-radius: 8px;
  font-family: inherit;
   font-size: 1rem;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {

	   outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input:invalid {
 border-color: #dc2626;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;


}

.submit-btn {

         width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
   color: white;
    border: none;
  border-radius: 8px;
    font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
         transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}

.submit-btn:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
   color: #e5e7eb;
   padding: 4rem 1.5rem 2rem;
   margin-top: 4rem;
}


.footer-container  {

	    max-width: 1200px;
       margin  :      0 auto;
  display: grid;
    grid-template-columns: 1fr 3fr;
   gap: 3rem;
   margin-bottom: 2rem;
     }

.footer-logo{
  display     : flex;
  align-items: flex-start;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap   :        2rem;
     }

.footer-section h4 {
	font-size: 1.1rem;
  margin-bottom: 1rem;
    color: white;
}  

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
    transition     :       color 0.3s ease;
         text-decoration :none;
   color: #d1d5db;
}

.footer-section a:hover {
   color: #fbbf24;
}

.footer-section p {
   color: #d1d5db;
  line-height  :1.7;
   margin-bottom: 0.5rem;
}

.footer-bottom {
	text-align: center;
  padding-top     :  2rem;
  border-top: 1px solid #374151;
  color:     #9ca3af;
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .experience h2,
    .services-preview h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .experience,
    .services-preview,
    .romantic-section {
        padding: 3rem 1.5rem;
    }

    .contact {
        margin: 2rem 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        justify-content: center;
    }

    .romantic-content h2 {
        font-size: 1.8rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .services-content {
        grid-template-columns: 1fr;
    }

    .cta-wrapper p {
        font-size: 1rem;
    }

    .primary-cta,
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}.services-hero{
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%); 
  color: white; 
   padding: 5rem 1.5rem; 
 text-align    :      center; 
   min-height: 35vh; 
      display: flex; 
	flex-direction: column; 
    justify-content    : center; 
       align-items: center;
}

.services-hero h1     {
    font-size: 3rem;
   line-height: 1.2;
   margin-bottom: 1rem;


}

.services-hero p {
	    max-width: 600px; 
  opacity: 0.95; 
   font-size  :      1.3rem;}



.services-section {
  max-width: 1200px;
  margin: 4rem auto;
   padding: 0 1.5rem;
}

.services-container {
   display: flex;
	    flex-direction: column;
	    gap: 3rem;
}

.service-full {
	display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
	background:white;
   padding: 2rem;
			border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-details h2 {
  font-size: 2rem;
    color: #1e3a8a;
  margin-bottom: 1rem;
}

.service-price {
   font-size: 1.5rem;
  color    :#ff6b6b;
  font-weight:600;
      margin-bottom: 1rem;
}

.service-details p


{
	color     :#555;
   line-height :1.8;
	margin-bottom: 1.5rem;
} 

.service-details h4 {
   font-size: 1.1rem;
    color: #1e3a8a;
   margin-bottom: 0.8rem;
}

.service-features {
   list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {


        padding: 0.5rem 0;
        color: #555;
    padding-left: 1.5rem;
  position: relative;}

.service-features li:before {
  content: "✓";
         position   :     absolute;
    left: 0;
  color: #10b981;
  font-weight: bold;
    font-size: 1.2rem;
}

.services-grid-section {
    max-width: 1200px;
  margin     :     5rem auto;
  padding: 0 1.5rem;
}

.services-grid-section h2  
  {
        font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
    color    :       #1e3a8a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-card-large     {
  background   :white;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   display: flex;
   flex-direction:       column;
}

.service-card-large:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); 

}

.card-image {
    width: 100%;
	height: 280px;
   overflow: hidden;


}

.card-image img {
  width: 100%;
         height: 100%;
   object-fit : cover;
   transition: transform 0.3s ease;

}

.service-card-large:hover .card-image img {
  transform: scale(1.08);
}

.card-content 
 {
    padding: 2rem;
    flex-grow: 1;
    flex-direction    :   column;
    display: flex;
}

.card-content h3 {
   font-size: 1.5rem;
               color: #1e3a8a;
     margin-bottom: 0.5rem;
	
}

.card-price {
    font-size    :       1.3rem;
    color: #ff6b6b;
    font-weight: 600;
         margin-bottom: 1rem;
}


.card-content p {
   color: #555;
    line-height: 1.7;
   margin-bottom     :    1.5rem;
  flex-grow: 1;
}

.card-content h4 {
  font-size  : 0.95rem;
   color: #1e3a8a;
    margin-bottom    :0.8rem;
  font-weight: 600;
}

.features-list {
    list-style: none;
  margin-bottom :       1.5rem;
}

.features-list li {
  padding: 0.4rem 0;
   color :  #555;
  padding-left     :1.5rem;
    position     :        relative;
    font-size: 0.95rem;

}

.features-list li:before {
       color: #2563eb;
        position: absolute;
  content: "→";
	 font-weight: bold;
    left: 0;
	
}

.service-cta {
   display: inline-block;
    padding: 0.9rem 1.8rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
   color: white;
   text-decoration: none;
   border-radius   :       8px;
	font-weight: 600;
    transition: all 0.3s ease;
  text-align     :     center;
   width: fit-content;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.why-choose-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
  padding: 5rem 1.5rem;
  max-width: 1200px;
   margin: 0 auto;
}

.why-choose-section h2

{


  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
   color: #1e3a8a;
     }

.why-grid {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;

}


.why-card {
    background:     white;
          padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    transition :   all 0.3s ease;
    border-top: 4px solid #2563eb;
}

.why-card:hover
{
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
   border-top-color    :#ff6b6b;
}

.why-card h3 {
  font-size: 1.3rem;
   	 color: #1e3a8a;
       margin-bottom: 1rem;
}

.why-card p {
	    color: #555;
  line-height: 1.7; 
	
}

.pricing-comparison {
    max-width: 1200px;
	margin: 5rem auto;
    padding: 0 1.5rem;
}

.pricing-comparison h2 {
	   font-size: 2.5rem;
    text-align: center;
  margin-bottom     :     2.5rem;
		color: #1e3a8a;

}


.pricing-table {
	background   :        white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
   display: grid;
     grid-template-columns: 2fr 1fr 1fr 1fr;
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color :    white;
	font-weight: 600;
    gap: 1rem;
}



.pricing-col {
   padding: 1.5rem;
   text-align: left; 



}

.pricing-row {
  gap: 1rem;
  transition: background-color 0.2s ease;
	grid-template-columns  :      2fr 1fr 1fr 1fr;
   border-bottom: 1px solid #e5e7eb;
  display     :       grid;
} 

.pricing-row:hover
	{


          background-color  : #f9fafb;

}



.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row .pricing-col {
    padding: 1.5rem;
    color: #555;

}

.testimonials-section {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
   padding: 5rem 1.5rem;
  max-width: 1200px;
    margin: 3rem auto;
  border-radius: 20px;
}

.testimonials-section h2 {
   font-size: 2.5rem; 
	   text-align  : center; 
	   margin-bottom: 3rem; 
	   color  :   #92400e;
}

.testimonials-grid
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   border-left: 4px solid #ff6b6b;
}

.testimonial-text {
  color: #2c3e50;
   line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
  font-size : 1rem;
}

.testimonial-author {


     color: #78350f;
   font-weight: 600;
   margin-top: 1rem;
}

.booking-cta {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
	color: white;
   padding: 4rem 1.5rem;
    text-align:center;
    margin: 3rem 0;
}

.booking-cta h2 {
   font-size: 2.5rem;
  margin-bottom   :  1rem;
}

.booking-cta p  
  {
                    font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity: 0.95;
}

.booking-button {
   display: inline-block;
   padding: 1.2rem 3rem;
   background-color: #ff6b6b;
  color: white;
  text-decoration     : none;
   border-radius: 50px;
    font-weight   :      600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.booking-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.thankyou-hero
{
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
     padding: 4rem 1.5rem;
     min-height: 100vh;
       display  :       flex;
       align-items: center;
     justify-content: center;
}

.thankyou-container
{
  max-width: 700px;
   text-align :       center;
       background: white;
   padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
	    margin-bottom: 2rem;
  display: flex;
      justify-content: center;

}

.success-icon svg {
	 animation: scaleIn 0.6s ease; 
   -moz-animation:  scaleIn 0.6s ease;

}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1 {
  font-size: 2.5rem;
	 margin-bottom: 0.5rem;
    color: #1e3a8a;
}

.thankyou-subtitle {
  font-size: 1.3rem;
    color: #10b981;
	font-weight: 600;
    margin-bottom: 2rem;

}

.thankyou-content {
    background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  margin-bottom   :     2rem;
}

.thankyou-content p {
                    color: #555;
  line-height: 1.8;
   margin-bottom: 1rem;
}

.thankyou-content p:last-child{
   margin-bottom    :    0;
}

.next-steps {
 margin: 3rem 0; 
    text-align: left; 

}

.next-steps h3 {
   font-size: 1.5rem;
                       color: #1e3a8a;
     margin-bottom: 1.5rem;
   	text-align: center;
}

.steps-list {
	 display: flex;
   flex-direction: column;
      gap: 1.5rem;
}

.step {
       gap: 1.5rem;
               display: flex;
  align-items: flex-start;
}

.step-number {
  width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    border-radius: 50%;
  display     :      flex;
    align-items: center;
   justify-content  :      center;
	font-weight: 600;
    flex-shrink:      0;
}

.step-text h4 {
    font-size: 1.1rem;
    color     :   #1e3a8a;
               margin-bottom: 0.5rem;
}

.step-text p {
  color: #555;
  line-height: 1.6;
    margin:      0;
    font-size: 0.95rem;
}

.explore-section {
  margin : 2.5rem 0;
  padding  :   2rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.explore-section h3 {
    font-size: 1.3rem;
   color: #1e3a8a;
       margin-bottom: 0.8rem;
	
}

.explore-section p {


    color: #555;
    margin-bottom: 1.5rem;


}

.explore-buttons		{
  display    :        flex;
    gap  : 1rem;
   justify-content: center;
    flex-wrap: wrap;
}

.explore-btn 
 {
  padding: 0.8rem 1.8rem;
   border-radius: 8px;
     text-decoration: none;
        font-weight: 600;
   transition: all 0.3s ease;
               display: inline-block;
}

.explore-home {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
   color: white;
}

.explore-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.explore-services {
  background-color: #2563eb;
       color: white;
}

.explore-services:hover {
    background-color: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.contact-info-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
   padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0 0;
}

.contact-info-box h3 {
  font-size: 1.2rem;
  color: #92400e;
        margin-bottom: 1rem;
   text-align: center;
}

.contact-info-box p {
  color: #78350f;
   text-align: center;
   margin: 0.5rem 0;
}

.contact-phone {
	         font-size: 1.2rem;
  margin-top: 1rem !important;
}

.contact-address {


   font-size: 0.95rem;

}

.faq-section

{
    max-width: 800px;
	margin:    4rem auto;
    padding: 0 1.5rem;
}

.faq-section h2    {
   text-align: center;
   color: #1e3a8a;
  font-size: 2rem;
   margin-bottom: 2.5rem;
}

.faq-container
{
  display: flex;
    gap: 1.5rem;
      flex-direction: column;
}

.faq-item {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2563eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

  transform: translateX(5px);


     }

.faq-item h4 {

	  font-size: 1.1rem;

	   color: #1e3a8a;

	  margin-bottom  :    0.8rem;
}

.faq-item p {

   color: #555; 
  line-height   :        1.7; 
   margin: 0;
}

.cta-button-secondary {
    display  :       inline-block;
   padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color  : white;
   text-decoration: none;
  border-radius    :   50px;
    font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-button-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
}@media (max-width: 768px) {
    .service-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .service-details h2 {
        font-size: 1.5rem;
    }

    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .pricing-col {
        padding: 1rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .step {
        gap: 1rem;
    }

    .explore-buttons {
        flex-direction: column;
    }

    .explore-btn {
        width: 100%;
        text-align: center;
    }

    .faq-section {
        padding: 0 1rem;
    }

    .service-card-large {
        margin: 0;
    }

    .card-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-details h2 {
        font-size: 1.3rem;
    }

    .why-card h3 {
        font-size: 1.1rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .thankyou-container {
        padding: 1.5rem;
        border-radius: 15px;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .next-steps h3,
    .explore-section h3,
    .contact-info-box h3,
    .faq-section h2 {
        font-size: 1.2rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .service-features,
    .features-list {
        margin-bottom: 1rem;
    }
}.policySection {
    padding: 80px 2rem;
   background :   #f8f9fa;
    min-height: 100vh;
}

.policyContainer {
   max-width: 900px; 
    margin: 0 auto; 
   text-align: left; 
		 background:     white; 
   padding: 3rem; 
   border-radius: 15px; 
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);


}

.policyContainer h1 {
  font-size: 2.8rem;
   color: #1e3a8a;
        margin-bottom: 0.5rem;
        font-weight: 700;
     line-height: 1.2;
}

.policyContainer > p:nth-of-type(1) {
  color: #999;
  font-size : 0.95rem;
  margin-bottom     :     2rem;
   font-style: italic;
}

.policyContainer h2 {
	font-size: 1.8rem;
    color: #2c3e50;
  margin-top: 2.5rem;
   margin-bottom    :1.2rem;
   font-weight: 700;
  line-height: 1.3;
}

.policyContainer p
{
     color: #555;
    margin-bottom: 1.5rem;
	line-height  :   1.8;
    font-size: 1.05rem;
   text-align: justify;
}

.policyContainer p:last-of-type {
  margin-bottom:0;
}



.policyContainer h2:first-of-type {
    margin-top: 1rem; 

}

.policyContainer a {

	    color: #2563eb;
    text-decoration: none;
	transition: color 0.3s ease;
  font-weight: 500;
}

.policyContainer a:hover {
   color: #1e40af;
  text-decoration: underline;
	}

.policyContainer ul,
.policyContainer ol {
				 margin-bottom: 1.5rem;
    margin-left: 1.5rem;
  color :  #555; 

}



.policyContainer li {
  margin-bottom: 0.8rem;
  line-height: 1.8;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 12px;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.5rem;
        margin: 0 auto;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .policyContainer > p:nth-of-type(1) {
        margin-bottom: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.policyContainer {

	  animation: fadeInUp 0.6s ease-out;
}@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        max-width: 100%;
        box-shadow: none;
        padding: 0;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        orphans: 3;
        widows: 3;
    }
}