* {
	margin: 0;
    padding: 0;
   box-sizing    :    border-box;
}

html {
     scroll-behavior: smooth;}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
    background     :       #f8f9fa;
}

.main-header {

	  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
          z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	}

.header-wrapper {
          max-width: 1200px; 
    margin: 0 auto; 
    display: flex; 
   justify-content    :    space-between; 
   align-items: center; 
               padding  :        0 2rem;

}

.logo-section {

	    display: flex;
    align-items:        center;
}

.logo-image {
   height: 50px;
   width:  auto;
  filter: brightness(0) invert(1);
	
}

.main-navigation {
   display: flex;
    align-items: center;
}

.burger-toggle {
    display: none;

				background: none;

	    border: none;

	   cursor   :   pointer;

	    padding: 0.5rem;
}



.burger-toggle img {
    width: 28px;
      height: 28px;
     filter: brightness(0) invert(1);
}

.nav-menu {
       list-style: none;
   display: flex;
   gap: 2.5rem; 
	
}

.nav-menu a {


  color: #ffffff;
   text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
     position  : relative;
     }

.nav-menu a::after {
  content: '';
               position: absolute;
    bottom     :   -5px;
    left: 0;
    width: 0;
    height: 2px;
     background: #00d4ff;
	transition: width 0.3s ease;
}

.nav-menu a:hover::after {
                    width: 100%;
}

.nav-menu a:hover {
   color: #00d4ff;
}

.hero-block {
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
  max-width     :   1200px;
	margin: 0 auto;
   padding: 4rem 2rem;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.03), transparent);
     }

.hero-content h1	{
     font-size: 3rem;
    color :      #1a1a2e;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.1rem;
   color: #555;
  margin-bottom: 2rem;


}

.hero-cta-btn {
 display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: white;
    padding: 1rem 2.5rem;
   border-radius: 50px;
	text-decoration: none;
    font-weight: 600;
					transition  :       all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.hero-cta-btn:hover {
	  transform: translateY(-3px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.5);

}

.hero-image img {
	width: 100%;
    border-radius  :    20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    height: 450px;
}

.showcase-section {
     background: white;
  padding   :4rem 2rem;
    margin: 2rem 0;


}

.showcase-header {
   text-align    :   center;
    max-width: 800px;
  margin     :0 auto 3rem;
}

.showcase-header h2 {
   font-size   :        2.5rem; 
	      color:     #1a1a2e; 
	    margin-bottom: 0.5rem;
}

.showcase-header p {
	font-size: 1.1rem;
  color: #666;
}

.showcase-grid {
    display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
  max-width: 1200px;
    margin: 0 auto;
	
}

.showcase-item {
   background: #f8f9fa;
                    border-radius  :      15px;
  overflow: hidden;
          transition     :       all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.showcase-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.showcase-item img {
  width: 100%; 
  height: 250px; 
  object-fit: cover;
}

.showcase-item h3 {
  font-size: 1.4rem;
  color: #1a1a2e;
  padding: 1.5rem 1.5rem 0.5rem;
}

.showcase-item p {
    color   :#666;
	  padding: 0 1.5rem 1.5rem;
	  font-size: 0.95rem;
}

.services-highlight {


  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
               padding: 4rem 2rem;
    margin: 2rem 0;}

.services-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items:center;
  max-width: 1200px;
        margin :  0 auto;
}

.services-content h2 {
   	 font-size: 2.2rem;
    color: #1a1a2e;
  margin-bottom: 1rem;
	}

.services-content > p {
       color: #555;
	margin-bottom: 2rem;
	 font-size: 1rem;
  line-height     :  1.8;
     }

.services-list
{

	                    display   :    flex;
   flex-direction: column;
   gap: 1.5rem;


}

.service-item-small {
    background     :white;
   padding: 1.5rem;
                    border-radius: 12px;
  border-left: 4px solid #00d4ff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.service-item-small:hover {
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.15);
}

.service-item-small h4 {
	color  :        #1a1a2e;
    margin-bottom: 0.5rem;
  font-size: 1.1rem; 
	
}

.service-item-small p {
  color: #666;
  font-size: 0.95rem;
}

.services-image img    {

	    width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
               object-fit: cover;
   height: 400px;}

.consultation-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color: white;
   padding: 4rem 2rem;
   text-align: center;
}

.consultation-wrapper {
   max-width:        800px;
  margin  :0 auto;
}

.consultation-wrapper h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;

}

.consultation-wrapper p {
		font-size: 1.1rem;
    margin-bottom: 2rem;
		 opacity: 0.95;
}

.consultation-btn {
       display: inline-block;
        background:       #00d4ff;
  color: #1a1a2e;
     padding: 1rem 2.5rem;
	 border-radius: 50px;
  text-decoration: none;
     font-weight: 600;
   transition  :      all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);

}

.consultation-btn:hover		{
  transform: scale(1.05); 
	  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.6);
}

.contact-section {
	   background: white;
   padding: 4rem 2rem;


}

.contact-wrapper {
      max-width: 700px;
   margin: 0 auto;}

.contact-section h2 {
         font-size: 2.2rem;
  color: #1a1a2e;
   margin-bottom: 1rem;
          text-align: center;
     }

.contact-intro
	{
   color: #666;
  margin-bottom: 2.5rem;
   font-size: 1rem;
   text-align: center;
}

.contact-form

{
  display: flex;
	 flex-direction: column;
   gap: 1.5rem;
}

.form-group {

	  display: flex;
   flex-direction: column;
	}

.form-group label {
   color: #1a1a2e; 
    font-weight: 600; 
	 margin-bottom: 0.5rem; 
    font-size: 0.95rem;
} 

.form-group input,
.form-group select,
.form-group textarea {
   padding: 0.75rem 1rem; 
   border: 2px solid #e0e0e0; 
   border-radius: 8px; 
    font-family: inherit; 
  font-size: 1rem; 
  transition: all 0.3s ease; 
    color: #2c3e50;

}

.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);
}

.form-group textarea {
   resize: vertical;
    min-height: 120px;
}

.form-submit-btn {

	  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  color: white;
  padding: 1rem 2rem;
	border: none;
    border-radius: 8px;
    font-size: 1rem;
	 font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.main-footer  {

  background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
  color    : #ffffff;
    padding: 3rem 2rem 1rem;
   margin-top: 4rem;
	}

.footer-wrapper {
     max-width:      1200px;
                    margin: 0 auto 2rem;
    display: grid;
  grid-template-columns    : auto 1fr;
  gap :    3rem;
      align-items: flex-start;
}

.footer-logo-section
	{
	 display: flex;
    align-items: center;
}

.footer-logo {
       height: 60px;
	width: auto;
  filter: brightness(0) invert(1);
} 

.footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.footer-column h4 {
    font-size:      1.1rem;
    margin-bottom: 1rem;
	 color: #00d4ff;
}

.footer-column ul  {
  list-style   :   none;
}

.footer-column ul li {
   margin-bottom: 0.5rem;

}

.footer-column a {


  color: rgba(255,255,255,0.8);
    text-decoration: none;
  transition   :     color 0.3s ease;
  font-size: 0.95rem;

}

.footer-column a:hover {
  color   :      #00d4ff;
}

.footer-address {
    font-size: 0.95rem;
  line-height   :      1.8;
   margin-bottom: 1rem;
}

.footer-phone
{
     font-size: 0.95rem;
} 

.footer-column p
{
  color: rgba(255,255,255,0.8);
   font-size: 0.9rem;
   line-height: 1.6;
}

.footer-bottom {

  text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;

}  @media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: #1a1a2e;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .burger-toggle {
        display: block;
    }

    .hero-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-image img {
        height: 300px;
    }

    .showcase-section {
        padding: 2rem 1rem;
    }

    .showcase-header h2 {
        font-size: 1.8rem;
    }

    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .consultation-wrapper h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .showcase-header h2 {
        font-size: 1.5rem;
    }

    .services-content h2 {
        font-size: 1.5rem;
    }

    .consultation-wrapper h2 {
        font-size: 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); 
	          color: white; 
	  padding: 6rem 2rem; 
	   text-align: center;
}

.services-hero-content h1 {
    margin-bottom: 0.5rem;
  font-size: 2.8rem;
}

.services-hero-content p {
  font-size: 1.3rem;
   opacity   :0.95;
}

.services-main {
      padding: 4rem 2rem;
  background: #f8f9fa;
}

.services-container {
  max-width: 1200px;
    margin  :  0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;


}


.service-card {
   background: white;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition  :        all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-card-header {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: white;
   padding:       1.5rem;
}

.service-card-header h2 {
   font-size: 1.5rem;
    margin: 0;
}

.service-card-image {
   width :  100%; 
	    height: 200px; 
	      overflow: hidden;
}

.service-card-image img {
   width: 100%;
   height :        100%;
  object-fit   :      cover;
          transition: transform 0.3s ease;
}

.service-card:hover .service-card-image img{
     transform: scale(1.05);

}

.service-card-content	{
   padding: 2rem;
}

.service-card-content p {

	    color: #555;
	line-height: 1.8;
   margin-bottom: 1.5rem;
}

.service-features {
	   list-style: none;


}

.service-features li {


   color: #333;
    padding: 0.5rem 0;
	padding-left: 1.5rem;
  position: relative;
     }

.service-features li:before {
     content: '✓';
   position: absolute;
   left: 0;
  color: #00d4ff;
 font-weight: bold;
     }

.pricing-section {
  padding     :    4rem 2rem;
    background: white;
}

.pricing-header {
 text-align: center;
  max-width: 800px;
   margin: 0 auto 3rem;
}

.pricing-header h2 {
    font-size:    2.5rem;
   color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.pricing-header p {
   color: #666;
    font-size: 1.1rem;


	}

.pricing-grid {
   display:       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width  :1200px;
       margin: 0 auto;
}

.pricing-card
	{
    background: #f8f9fa;
	border: 2px solid #e0e0e0;
	 border-radius:15px;
  padding: 2rem;
   text-align: center;
    transition: all 0.3s ease;
          position: relative;
}

.pricing-card:hover {

	  transform: translateY(-5px);
    border-color: #00d4ff;
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
	}

.pricing-card-featured {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
  transform: scale(1.05);
    border: none;
} 

.pricing-badge {
   position:   absolute;
	top: -15px;
    left: 50%;
  transform: translateX(-50%);
    background: #f39c12;
	 -webkit-border-radius: 20px;
    color: white;
   padding: 0.5rem 1.5rem;
    -moz-border-radius: 20px;
   border-radius     :    20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-card h3 {
	 font-size:        1.5rem;
    margin-bottom     :    1rem; 
	
}

.pricing-card-featured h3 {
  color: white;
}

.pricing-amount 
 {
    font-size   :      2.2rem;
    font-weight: bold;
    color: #00d4ff;
   margin-bottom   : 0.5rem;
}

.pricing-card-featured .pricing-amount {
    color   :   white;
}

.pricing-period {
  color: #999;
	  font-size: 0.9rem;
	  margin-bottom: 1.5rem;
}

.pricing-card-featured .pricing-period {
  color: rgba(255,255,255,0.8); 
	
}

.pricing-features {
   margin-top: 1.5rem;
   list-style :  none;

}

.pricing-features li {
    color:    #666;
        padding: 0.5rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.pricing-card-featured .pricing-features li     {
  color: rgba(255,255,255,0.9);
  border-bottom-color: rgba(255,255,255,0.2);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.comparison-section {
               padding: 4rem 2rem;
  background: #f8f9fa;
}

.comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}



.comparison-header h2 {
    font-size: 2.2rem;
   color    :   #1a1a2e;
}

.comparison-table-wrapper {


   max-width: 1000px;
	margin: 0 auto;
        overflow-x: auto;


}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
   background: white;
    border-radius: 10px;
  overflow  :   hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-table thead {
     background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
	color: white;

}

.comparison-table th {
   padding: 1.5rem;
	text-align  :  left;
    font-weight  :600; 

}

.comparison-table td {
  padding: 1.2rem 1.5rem;
   border-bottom: 1px solid #e0e0e0;
    color: #555;
}

.comparison-table tbody tr:hover {
     background  :    #f8f9fa;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.process-section {
       padding: 4rem 2rem;
	background: white;
}

.process-header {
       text-align  : center;
	margin-bottom: 3rem;


}

.process-header h2 {
    font-size: 2.2rem;
   color: #1a1a2e;
   margin-bottom: 0.5rem;
}

.process-header p {
    font-size: 1.1rem;
  color: #666;

}

.process-steps {
  max-width: 1100px;
   margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
    gap: 1rem;
   flex-wrap: wrap;
}

.process-step {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    border: 2px solid #e0e0e0;
    border-radius: 15px;
   padding: 2rem;
   text-align:    center;
  flex: 1;
    min-width: 200px;
   transition: all 0.3s ease;
}

.process-step:hover {

  border-color: #00d4ff;
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
  transform: translateY(-5px);
	}

.step-number {
         font-size: 2.5rem;
	font-weight: bold;
          color   :   #00d4ff;
    margin-bottom: 0.5rem;}

.process-step h3


{
                    color: #1a1a2e;
   margin-bottom: 0.5rem;
}

.process-step p 
 {
    color: #666;
  font-size: 0.95rem;
}

.process-arrow    {
  font-size: 2rem;
    color: #00d4ff;
  margin: 0 0.5rem;
}

.faq-section {
    padding: 4rem 2rem;
    background: #f8f9fa; 

}

.faq-header {
          text-align: center;
    margin-bottom: 3rem;
}  

.faq-header h2 {
    font-size: 2.2rem;
 color: #1a1a2e;
}

.faq-container {
  max-width: 800px;
   margin: 0 auto;

}

.faq-item     {

  background: white;
   margin-bottom  :1rem;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06); 
	
	}

.faq-question {
  background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    padding: 1.5rem;
  cursor     :pointer;
  display: flex;
  justify-content  :    space-between;
               align-items: center;
  transition: all 0.3s ease;
   border-bottom: 2px solid #e0e0e0;


}

.faq-question:hover {

	  background: linear-gradient(135deg, #e0f0ff 0%, #f0f8ff 100%);}

.faq-question h3 {
  margin: 0; 
	    color     :      #1a1a2e; 
	  font-size: 1.05rem;
}

.faq-toggle {
    font-size:      1.8rem;
  color: #00d4ff;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {


        padding  : 1.5rem;
    color: #555;
    display  :    none;
}

.faq-item.active .faq-answer

{


    display:      block;}

.faq-answer p {
   margin: 0;


}

.thankyou-section {
      min-height: 100vh;
      display: flex;
      align-items:    center;
       justify-content: center;
   	padding: 2rem;
     background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
}

.thankyou-container {
  max-width: 700px;
	       background: white;
	    border-radius :20px;
	  padding: 3rem;
	   text-align: center;
	  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thankyou-icon {
    color: #00d4ff;
   margin-bottom: 2rem;
   animation: slideIn 0.6s ease;
}

.thankyou-container h1 {
   font-size:       2.5rem;
  color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.thankyou-subtitle{
   font-size: 1.2rem;

	  color: #666;

	  margin-bottom: 2rem;
}  

.thankyou-message	{
	    background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
  border-left: 4px solid #00d4ff;
    margin-bottom: 2rem;
	}

.thankyou-message p
{
  line-height: 1.8;
   color: #555;

}

.thankyou-details {
   display: grid;
    grid-template-columns: 1fr 1fr;
     gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-box {
 background: #f8f9fa;
   padding: 1.5rem;
    border-radius: 10px;
   text-align: left;
}

.detail-box h3


{
   color: #1a1a2e; 
	  margin-bottom: 1rem; 
	  font-size: 1.1rem;
}

.detail-box ul {
	  list-style  : none;
   color: #555;
     }

.detail-box li {
   padding: 0.5rem 0;

    padding-left: 1.5rem;

    position     :  relative;
}

.detail-box li:before {
  content: '→';
	 position:    absolute;
   left: 0;
   color: #00d4ff; 
	
}

.contact-info {
     margin: 0.5rem 0;}

.thankyou-actions	{


	 display :      flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
   flex-wrap: wrap;



}

.btn-primary, .btn-secondary {

   padding: 1rem 1.5rem;
   -o-transition :   all 0.3s ease;
  border-radius  :   8px;
   text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
    -moz-transition     :     all 0.3s ease;

}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
   color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
     box-shadow: 0 6px 25px rgba(0, 212, 255, 0.5);
}

.btn-secondary {
    background: white;
  color: #00d4ff;
  border: 2px solid #00d4ff;
}

.btn-secondary:hover {
 background: #f0f4f8;
}

.timeline-section {
    margin-bottom: 2rem;
}

.timeline-section h2 {
    color: #1a1a2e;
	font-size   : 1.5rem;
    margin-bottom: 1.5rem;
}

.timeline {
  display :    flex; 
	    justify-content: space-between; 
	  gap: 1rem; 
	   flex-wrap: wrap;
}

.timeline-item {
  flex: 1;
       min-width:     120px;
  text-align     :        center;
}

.timeline-dot {

   width: 20px;
    height: 20px;
    background :      #e0e0e0;
	border-radius :   50%;
	 margin: 0 auto 1rem;
                    transition: all 0.3s ease;
	}

.timeline-item.active .timeline-dot

{
  background:        #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.timeline-item h4 {
	  color: #1a1a2e;
          font-size: 0.95rem;
   margin-bottom: 0.25rem;


}

.timeline-item p {
        color: #999;
  font-size     :  0.85rem;
}

.related-services {
  padding: 4rem 2rem;
   background: white;
}

.related-header {
  text-align: center;
    margin-bottom   :  3rem;
}

.related-header h2 {
  font-size :2rem;
	 color: #1a1a2e;
}

.related-grid {
	   max-width: 1000px;
  margin: 0 auto;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;}

.related-card {
	    background: #f8f9fa;
  border-radius: 15px;
  overflow: hidden;
   transition    :   all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);


}

.related-card:hover    {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-card img{
   object-fit     :   cover;
  width:100%;
    height   :    200px;
	
}

.related-card h3 {
   color: #1a1a2e;
  padding: 1.5rem 1.5rem 0.5rem;
}

.related-card p {
  color: #666;
   padding: 0 1.5rem;
    font-size: 0.95rem;
}

.related-card a {
    display: inline-block;
  color     :#00d4ff;
    padding: 1rem 1.5rem;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
}

.related-card a:hover
{
    color  :      #0099cc;
}
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .process-steps {
        flex-direction: column;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .thankyou-details {
        grid-template-columns: 1fr;
    }

    .timeline {
        gap: 0.5rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.8rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .process-step {
        min-width: 150px;
        padding: 1.5rem;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
	 padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  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: #1a1a2e;
    margin-bottom: 2rem;
	border-bottom: 3px solid #00d4ff;
  padding-bottom: 1rem;
	font-weight: 700;
}

.policyContainer h2 {
  font-size: 1.8rem; 
	    color: #2c3e50; 
	    margin: 2rem 0 1rem 0; 
	    font-weight: 600;
}

.policyContainer p {
       color     :        #555;
   margin-bottom  : 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
   text-align: justify;
}

.policyContainer p:first-of-type {
  font-size:    1.05rem;
}



.policyContainer h2 + p {
   margin-top: 0.5rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 10px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: left;
    }
}