* {
   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-color    :       #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} 

.nav-container {
               display:flex;
    align-items: center;
   padding: 0 2rem;
  margin   :      0 auto;
  justify-content: space-between;
    max-width: 1200px;
}

.nav-logo-section {
	flex-shrink: 0;
}

.nav-logo    {

  width: auto;
	transition: transform 0.3s ease;
  height: 45px;
	}

.nav-logo:hover {
  transform: scale(1.05);
}

.nav-menu {
	 display: flex;
    list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-item{
	position: relative;
     }

.nav-link {
    color: #ecf0f1;
   text-decoration: none;
        font-weight: 500;
    -moz-transition: color 0.3s ease;
   transition: color 0.3s ease;
      padding: 0.5rem 0;

}

.nav-link:hover {
   color: #3498db;
  border-bottom: 2px solid #3498db;
}

.nav-burger   {

   display: none;
	flex-direction: column;
   cursor: pointer;
   gap     :       5px;
	}

.nav-burger span {
    width     :       25px;
   height: 3px;
    background-color: #ecf0f1;
    border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {


  transform: rotate(45deg) translateY(12px);
	}

.nav-burger.active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.active span:nth-child(3)


{
  transform: rotate(-45deg) translateY(-12px); 
	
}

.hero-section {
    display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
	max-width: 1200px;
  margin     :       0 auto;
  padding: 4rem 2rem;
}

.hero-content h1 {
     color :  #2c3e50;

	   margin-bottom: 1rem;

	    font-size     :    3.5rem;

	   line-height    :     1.2;
}



.hero-content p {
        font-size: 1.2rem;
  color: #555;
     margin-bottom:2rem;

}

.cta-button-primary {
	  display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
   font-weight:   600;
    transition     :  all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);

}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}


.hero-image {
   overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {


   width: 100%;
  height   :    400px;
      object-fit: cover;
  transition: transform 0.3s ease;
	}

.hero-image:hover img {
  transform: scale(1.05);
}

.services-preview
	{
   max-width: 1200px;
  margin  :       4rem auto;
    padding: 0 2rem;
}

.services-preview h2		{
   font-size: 2.5rem;
	color :      #2c3e50;
   margin-bottom: 3rem;
   text-align   :      center;
	}

.services-grid

{

  display: grid;
  grid-template-columns: repeat(3, 1fr);
 gap: 2rem;
     }

.service-card {
	   background: white;
   border-radius:    15px;
   overflow     :   hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition    : all 0.3s ease;


}

.service-card:hover 
 {

	  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
	padding: 1.5rem;
  color: #2c3e50;
    font-size: 1.5rem;
}

.service-card p {
  padding: 0 1.5rem 1.5rem;
	 color: #555;
    line-height  :   1.8;
	}

.service-card img {
    width: 100%;
	height: 200px;
	 object-fit: cover;
}

.why-budgetly {

  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
    padding: 4rem 2rem;
        margin: 4rem 0;
   display: grid;
    grid-template-columns: 1fr 1fr;
         gap: 3rem;
  align-items: center;
    max-width: 1200px;
    margin-left: auto;
        margin-right: auto;


}

.why-content h2 {
 font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 2rem;
}

.why-features {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
}

.feature-block {


  background: white;
   padding: 1.5rem;
    border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	}

.feature-block h3 {
  color: #3498db;

		 margin-bottom: 0.5rem;

	   font-size: 1.1rem;
	
}

.feature-block p {
  color: #555;
  font-size: 0.95rem;
    line-height: 1.6;
}

.why-image {
  overflow: hidden;
   border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.why-image img {

   width: 100%;
   height: 400px;
   object-fit: cover;
	}

.offerings-section {
  padding: 0 2rem;

	    margin: 4rem auto;

		max-width: 1200px;
}

.offerings-section h2{

	 font-size: 2.5rem;
       color: #2c3e50;
    margin-bottom: 3rem;
   text-align: center;
	} 

.offerings-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2rem;

}

.offering-card


{

	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
   padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
	}

.offering-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.4);
	


}

.offering-card h3   {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.offering-card p {
   font-size :     1rem;
    line-height: 1.7;
	opacity: 0.95;

}

.cta-section {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
          color: white;
   padding   :       4rem 2rem;
    text-align: center;
   margin: 4rem 0;
}

.cta-section h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-section p {
	 font-size: 1.1rem;
	 margin-bottom    :  2rem;
  opacity: 0.95;
}

.cta-button-secondary {
   display: inline-block;
    background: #3498db;
 color: white;
  padding: 1rem 2.5rem;
    border-radius: 50px;
   text-decoration: none;
        font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); 

}

.cta-button-secondary:hover {
   background     :     #2980b9;
  transform: translateY(-3px);
}

.contact-section {
    max-width   :800px;
   margin: 4rem auto;
    padding: 0 2rem;
}

.contact-section h2{
 font-size   :        2.5rem;
  color: #2c3e50;
        margin-bottom  :2rem;
  text-align   :      center;
}

.contact-form {

   background: white;
    padding: 2.5rem;
       border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {


   display: block;
    margin-bottom: 0.5rem;
    color     :    #2c3e50;
    font-weight :    600;
} 

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.75rem;
    border: 2px solid #ecf0f1;
   border-radius: 8px;
  font-size  :    1rem;
  transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline :        none;
	   border-color: #3498db;
	  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
  width: 100%;
   padding   :        1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 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(52, 152, 219, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.footer {
    background: #2c3e50;
	 color: white;
	   padding: 3rem 2rem 1rem;
	   margin-top: 4rem;

}


.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
	gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}


.footer-section h4 {
   margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-section ul    {
	list-style: none;
	
}

.footer-section ul li {
               margin-bottom: 0.5rem;

}

.footer-section ul li a
	{


	 color: #bdc3c7;
    text-decoration     :     none;
    transition  :        color 0.3s ease;




}

.footer-section ul li a:hover {
   color: #3498db;
}

.footer-logo img {
    width: auto; 
       height: 40px;

}

.footer-section p {
   color: #bdc3c7;
  font-size: 0.95rem;
     line-height: 1.8;
    margin-bottom: 0.5rem;

}

.footer-phone 
 {
   color: #3498db;
   font-weight: 600;
    margin-top: 1rem;
}

.footer-bottom  {
   text-align: center;
  padding-top:     2rem;
 border-top: 1px solid #34495e;
   color: #95a5a6;
   font-size: 0.9rem;
}@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-budgetly {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #34495e;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-top: 2px solid #3498db;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-burger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-image img {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .offerings-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-preview h2,
    .offerings-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
}@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-section {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cta-button-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-preview,
    .offerings-section,
    .contact-section {
        padding: 0 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }
}.max-width-container {
      max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color     :       white;
	padding: 5rem 2rem;
   text-align: center;
    margin-top: 3rem;
}

.services-hero-content h1 {
  font-size: 3rem;
               margin-bottom: 1rem;
}

.services-hero-content p {
   font-size: 1.2rem;
   opacity: 0.95;


}

.services-detailed


{
    padding: 4rem 2rem;
}

.services-detailed > .max-width-container > h2 {
	font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 3rem;
                    text-align: center;
}

.service-detail-item {

  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
   margin-bottom  :     4rem;
	 padding-bottom: 3rem;
  border-bottom: 1px solid #ecf0f1;
     }

.service-detail-item.reverse {
  grid-template-columns: 1fr 1fr;
	direction :    rtl;
}  

.service-detail-item.reverse > * {
   direction  :  ltr;
}

.service-detail-text h3 {
  font-size: 2rem;

  color: #2c3e50;

    margin-bottom :    1rem;
}

.service-detail-text p {
  color: #555;
       font-size: 1rem;
   line-height: 1.8;
         margin-bottom: 1.5rem;
}

.service-features {
         display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;

}

.feature-item {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color: white;
      padding: 0.75rem 1rem;
  border-radius: 8px;
		 font-size: 0.95rem;
   font-weight: 500;
}

.service-detail-image {
    overflow: hidden;
	border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-image img {
   width: 100%;
	height: 300px;
    object-fit: cover;
	 transition: transform 0.3s ease;
}

.service-detail-image:hover img 
 {
  transform: scale(1.05);
}

.pricing-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
	padding  : 4rem 2rem;
}

.pricing-section .max-width-container > h2 {
	    font-size: 2.5rem;
   color: #2c3e50;
          margin-bottom: 1rem;
   text-align:    center;
	}

.section-subtitle {
            text-align     : center;
   color: #555;
   margin-bottom: 3rem;
   font-size: 1.1rem;}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap    :        2rem;
}

.pricing-card {
   background    :        white;
	 padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      text-align: center;
                    transition: all 0.3s ease;
         position: relative;
    border    :       2px solid transparent;


}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #3498db;
  transform: scale(1.05);
}

.popular-badge

{

	   position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
    background: #3498db;
    color: white;
    padding: 0.5rem 1.5rem;
   border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 600;
	}

.pricing-card h3 {
   font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom  :        1rem;
  margin-top :        0.5rem;
}

.pricing-amount {

	   font-size: 2.5rem;
  color: #3498db;
   font-weight:  bold;
  margin-bottom :    0.25rem;
	}

.pricing-period
	{


 color: #95a5a6;
    font-size: 0.9rem;
   margin-bottom: 1.5rem;
	}

.pricing-features 
 {
   list-style: none;
    margin-bottom: 2rem;
   text-align: left;


}

.pricing-features li {
          color: #555;
   padding: 0.75rem 0;
  border-bottom: 1px solid #ecf0f1;
}

.pricing-features li:last-child{
  border-bottom: none;


}

.pricing-button {
	  display: block;
   padding: 0.75rem 2rem;
   background     :        #34495e;
   color    :    white;
  text-decoration   :     none;
       border-radius: 8px;
    font-weight: 600;
    transition  :       all 0.3s ease;


}

.pricing-button:hover {
  transform: translateY(-2px);
   background: #2c3e50; 

}

.pricing-button.featured-button {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.pricing-button.featured-button:hover 
 {
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.process-section {
    padding: 4rem 2rem;
}

.process-section .max-width-container > h2 {
  font-size   :      2.5rem;
  color: #2c3e50;
    margin-bottom: 1rem;
   text-align:   center;
}

.process-steps


{
    display: grid; 
  grid-template-columns: repeat(4, 1fr); 
   gap: 2rem; 
    margin-top: 3rem;

}


.process-step {
   text-align: center;
	 padding  :     2rem;
   background     :     white;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease; 
	
} 

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-number {
          width: 60px;
  height:    60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   border-radius: 50%;
	display: flex;
    align-items: center;
    justify-content :center;
   font-size: 2rem;
   font-weight: bold;
   margin: 0 auto 1rem;
}

.process-step h3 {
   color: #2c3e50;
          margin-bottom  :1rem;
	 font-size: 1.2rem;
}

.process-step p {
	color: #555;
    font-size:    0.95rem;
   line-height: 1.6;
}

.expertise-section
	{


  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding: 4rem 2rem;

}

.expertise-section .max-width-container > h2     {
     font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 3rem;
   text-align: center;
}

.expertise-grid {
			display : grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.expertise-card {
      background :white; 
	               padding: 2rem; 
	    border-radius: 15px; 
	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
	  transition: all 0.3s ease; 
	  border-left: 4px solid #3498db;}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 border-left-color: #2980b9;
}

.expertise-card h3 {
   color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.expertise-card p {
	color   :    #555; 
	    font-size: 0.95rem; 
	  line-height: 1.7;
	
}

.testimonials-section {
    padding   :     4rem 2rem;
}

.testimonials-section .max-width-container > h2 {
     font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom     :       3rem;
   text-align:      center;
}

.testimonials-grid {

   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: white;
  padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition   :all 0.3s ease;
  border-top  :  4px solid #3498db;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-text {
  color: #555;

        font-size: 1rem;

   line-height: 1.8;

  margin-bottom: 1.5rem;

  font-style  :        italic;
}

.testimonial-author    {
    color :     #2c3e50;
	    font-weight: 600;
	  font-size: 0.95rem;
}

.cta-final {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
  padding: 4rem 2rem;
    text-align: center;
}

.cta-final .max-width-container > h2 {
          font-size     :    2.5rem;
   margin-bottom     :1rem;


}

.cta-final > .max-width-container > p {
  font-size: 1.1rem;
 margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
			display: inline-block;
  background: #3498db;
    color: white;
   padding     :1rem 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(52, 152, 219, 0.3);
} 

.cta-button-large:hover {
   background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.thankyou-section {
  min-height: calc(100vh - 150px);
	display: flex;
   align-items: center;
   justify-content: center;
    padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.thankyou-container {
   background: white;
   padding: 4rem;
          border-radius   :  20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  max-width: 700px;
    width: 100%;
	 text-align: center; 
	
}

.thankyou-icon {

	    margin-bottom: 2rem;

}

.thankyou-icon img {
    width: 80px; 
	   height: 80px; 
	    stroke: #2ecc71; 
	  filter: drop-shadow(0 0 8px rgba(46, 204, 113, 0.3));
}

.thankyou-section h1 {
	   font-size: 3rem;
    color: #2c3e50;
   margin-bottom: 0.5rem;


}

.thankyou-section h2 {
                    font-size: 1.5rem;
   color: #555;
   margin-bottom: 2rem;
  font-weight    :       500;
}

.thankyou-message	{
  background: linear-gradient(135deg, #ecf0f1 0%, #f5f7fa 100%);
	padding: 2rem;
	 border-radius: 15px;
    margin    :      2rem 0;
}

.thankyou-message p {
	  color: #555;
          margin-bottom: 1rem;
  line-height: 1.8;
}

.thankyou-message p:last-child {
      margin-bottom: 0;
}

.thankyou-next-steps {
  margin     :   3rem 0;
    text-align: left;}

.thankyou-next-steps h3 {
	   font-size     :    1.5rem;
  color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
  display :      grid;
   gap: 1.5rem;
} 

.step-item	{
      display: flex;
					gap: 1.5rem;
   align-items: flex-start;

}

.step-number-circle {
               width: 50px;
  height   :  50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
   font-weight: bold;
   font-size: 1.2rem;
   flex-shrink: 0;
}

.step-content h4		{
   color: #2c3e50;
    margin-bottom: 0.5rem;
   font-size: 1.1rem;
}

.step-content p {
   font-size: 0.95rem;
   color :    #555;
  line-height: 1.6;
}

.thankyou-info-box {
  background: linear-gradient(135deg, #fff5e6 0%, #fff9e6 100%);
 border-left: 4px solid #f39c12;
		padding: 1.5rem;
  border-radius: 10px;
               margin: 2rem 0;
    text-align    :left;
}

.thankyou-info-box h3 {

   font-size: 1.1rem;
       text-align: center;
      margin-bottom: 1rem;
     color: #2c3e50;

}

.info-list {
         list-style    :   none;
  padding: 0;
}


.info-list li {

   color: #555;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  line-height :       1.6;
}

.info-list li:before {

	  content: "✓ ";
     margin-right: 0.5rem;
  font-weight :        bold;
    color: #f39c12;

}

.thankyou-cta {
   margin: 2rem 0;
}


.thankyou-cta p {
   color: #555;
	margin-bottom: 1.5rem;
  font-size: 1rem;
}



.cta-buttons-group     {

   display: flex;
   gap: 1rem;
                    justify-content: center;

}

.button-primary  {
	display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
 padding: 0.75rem 2rem;
   border-radius: 8px;
  text-decoration: none;
    font-weight:   600;
 transition  :      all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.button-secondary {
   display: inline-block;
   background: #34495e;
  color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
			transition: all 0.3s ease;
	
}

.button-secondary:hover {


  background: #2c3e50;
  transform: translateY(-2px);

}

.thankyou-faq {

	  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
   padding     :       2rem;
    border-radius: 15px;
    margin-top: 2rem;
  text-align: left;}

.thankyou-faq h3	{

   text-align: center;
	   margin-bottom  :      1.5rem;
	  font-size  :    1.2rem;
	  color: #2c3e50;
}

.faq-item {
     margin-bottom: 1.5rem;
}

.faq-item:last-child   {
       margin-bottom: 0;
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    cursor     :    pointer;
  transition: color 0.3s ease;
}

.faq-item h4:hover {
   color: #3498db;
}

.faq-item p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;

}@media (max-width: 1024px) {
    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons-group {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-text h3 {
        font-size: 1.5rem;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .cta-buttons-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-image img {
        height: 250px;
    }

    .pricing-section .max-width-container > h2,
    .process-section .max-width-container > h2,
    .expertise-section .max-width-container > h2,
    .testimonials-section .max-width-container > h2,
    .cta-final .max-width-container > h2 {
        font-size: 2rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-section h1 {
        font-size: 1.5rem;
    }

    .step-item {
        gap: 1rem;
    }

    .step-number-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .cta-buttons-group {
        flex-direction: column;
        gap: 0.75rem;
    }
}.policySection {
    padding   :        80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  min-height: calc(100vh - 300px);
}

.policyContainer {


   max-width: 800px;
	 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: 3rem;
  color: #2c3e50;
    margin-bottom   : 2rem;
    font-weight: 700;
    border-bottom: 3px solid #3498db;
  padding-bottom:      1rem;}

.policyContainer h2  {
   font-size   :1.8rem;
   color   :     #2c3e50;
  margin-top   :        2rem;
  margin-bottom: 1rem;
    font-weight   :      600;


}

.policyContainer h2:first-of-type {
     margin-top: 1rem; 
	
}

.policyContainer p {
    color: #555;
    margin-bottom: 1.5rem;
	 line-height: 1.8;
 font-size: 1rem;
	text-align: justify;
}

.policyContainer p:last-child {
   margin-bottom     :0;
}

.policyContainer a {
   color: #3498db;
 text-decoration: none;
    transition: color 0.3s ease;
}

.policyContainer a:hover {
   color: #2980b9;
   text-decoration: underline;
}@media (max-width: 1024px) {
    .policyContainer h1 {
        font-size: 2.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer {
        padding: 2.5rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 10px;
    }

    .policyContainer h1 {
        font-size: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem;
        margin: 0;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}