:root {
    --primary-color: #1a3a52;
    --accent-color: #2d5f8d;
    --light-bg: #f5f7fa;
    --text-color: #2c3e50;
    --border-color: #e0e6ed;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
}

* {
  margin: 0;
    padding: 0;
   box-sizing: border-box;
}

html {
    scroll-behavior     :   smooth;
	}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-color);
       line-height: 1.6;
  background-color: var(--white);
}

.navigation-bar {
	position: sticky;
    top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
   z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
    padding :       0 20px;
    display: flex;
   justify-content: space-between;
	align-items: center;
    height: 70px;
}

.logo-section {
    flex-shrink: 0;
}

.nav-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);

}

.burger-menu {
   display: none;
	flex-direction: column;
   background: none;
  border: none;
   cursor: pointer;
        gap: 6px;
   padding: 8px;}

.burger-line {
	   width: 25px;
  height    :2.5px;
  background-color: var(--text-color);
   border-radius: 2px;
   transition: all 0.3s ease;


}

.nav-menu  {
                    display: flex;
    gap: 40px;
   align-items: center;
}

.nav-link {
    text-decoration: none; 
  color: var(--text-color); 
  font-weight: 500; 
  transition: color 0.3s ease; 
   position    :    relative;
}

.nav-link::after {
     content: '';
   position: absolute;
  bottom: -5px;
    left: 0;
   width: 0;
   height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s ease;

}

.nav-link:hover  
  {
  color: var(--accent-color);
	
}

.nav-link:hover::after {
		width     :     100%;
}

.hero-section {
    margin     :      0 auto;

  gap: 40px;

   padding: 60px 20px;

   display: grid;

               max-width: 1200px;

  align-items   :        center;

    grid-template-columns: 1fr 1fr;


}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
   margin-bottom :      20px;
}

.hero-subtitle {
        font-size: 1.25rem;
   color: #666;
               margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
   display: inline-block;
  padding: 14px 40px;
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(45, 95, 141, 0.3); 

}

.hero-image img {
  width: 100%;
	height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.features-section {
  background-color: var(--light-bg);
    padding    : 80px 20px;
}

.features-container {
        max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.feature-card:hover {

	  transform: translateY(-8px);
     box-shadow: var(--shadow-md);
     }

.feature-card h3 {
   font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-card p {
				 color    :     #666;
    font-size: 0.95rem;
   line-height: 1.8;
}

.about-section {
	max-width    :      1200px;
  margin: 0 auto;
   padding: 80px 20px;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 50px;
  align-items     :center; 
	
}

.about-section h2 {
   font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 30px;
    line-height: 1.3;
}

.about-section p {
         font-size: 1.05rem;
  color: #555;
    margin-bottom: 20px;
                    line-height: 1.9;
}

.about-image img {

               width: 100%;
   height  :     auto;
    border-radius :     12px;
  box-shadow: var(--shadow-md);


}

.services-showcase {

	  background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
	 padding: 80px 20px;

}

.services-showcase h2 {
    text-align: center;
    font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 60px;
} 

.services-grid {

   max-width: 1200px;
    margin: 0 auto;
    display :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 35px;

}

.service-item {
  background-color: var(--white);
    border-radius: 12px;
	overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition    :      all 0.3s ease;
}

.service-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.service-item img {
        width: 100%;
    height  :220px;
    object-fit     :     cover;
	}

.service-item h3 {
  padding: 25px 25px 10px;
	font-size: 1.4rem;
  color: var(--primary-color);
}

.service-item p {
  padding: 0 25px 25px;
   color    :    #666;
    font-size:      0.95rem;
  line-height: 1.7;
	
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
	padding:   80px 20px;
  text-align: center;
}

.cta-content {
    margin: 0 auto;
  max-width: 800px;
}

.cta-section h2 {
   font-weight: 700;
  font-size: 2.5rem;
  margin-bottom :       20px;
}

.cta-section p {
  font-size: 1.15rem;
	 margin-bottom: 35px;
   opacity: 0.95;
     line-height :1.8;
}

.cta-button-primary {
  display: inline-block;
  padding: 16px 50px;
  background-color: var(--white);
  color: var(--primary-color);
   text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
	transition: all 0.3s ease;
  font-size: 1.05rem;
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    max-width: 800px;
   margin: 0 auto;
   padding: 80px 20px;
}

.contact-section h2 {
  text-align: center;
    font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 50px;
}

.contact-form {

  background-color: var(--light-bg);
   padding: 40px;
   border-radius     :12px;
  box-shadow: var(--shadow-sm);


}

.form-group {
   margin-bottom: 25px;
}  

.form-group label {
    display: block;
  margin-bottom: 10px;
   font-weight :       600;
  color: var(--primary-color);
   font-size:  1rem;
}

.form-group input,
.form-group select,
.form-group textarea

{

       width: 100%;
   padding: 12px 15px;
  border: 1px solid var(--border-color);
   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: var(--accent-color);
     box-shadow: 0 0 0 3px rgba(45, 95, 141, 0.1); 

}

.submit-button {
    width     :      100%;
   padding:   14px;
  background-color: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
   font-weight: 700;
	 cursor     :     pointer;
         transition: all 0.3s ease;
}

.submit-button:hover 
 {
  background-color: var(--primary-color);
  transform: translateY(-2px);
}

.footer-section {
     background-color: var(--primary-color);
  color: var(--white);
   padding: 60px 20px 30px;
	}

.footer-content {
    max-width: 1200px;
   margin:   0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
                    margin-bottom: 40px;
}

.footer-column h4 {
   margin-bottom: 20px;
   font-size     :     1.1rem;
}

.footer-column a {
   display: block;
  color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
   margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-logo {
    height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-column p {
   line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem; 

}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
               text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-color);
        padding: 20px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 50px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 25px;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-section h2 {
        font-size: 2rem;
    }

    .services-showcase h2 {
        font-size: 2rem;
    }

    .cta-button,
    .cta-button-primary {
        padding: 12px 30px;
        font-size: 0.95rem;
    }

    .nav-container {
        height: 60px;
    }

    .nav-logo {
        height: 40px;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  color: var(--white);
   padding: 100px 20px;
   text-align: center; 

}



.services-hero-content h1 {
    font-size   :  3.2rem;
   margin-bottom    :     20px;
    font-weight: 700;
}

.services-hero-content p {
	 font-size: 1.3rem;

    opacity: 0.95;

	max-width: 700px;

   margin: 0 auto;

  line-height: 1.6;


} 

.services-detailed {
   padding: 80px 20px;
}

.services-container
	{
	max-width:        1200px;
	 margin: 0 auto;
}

.service-detail-card {
   display   :grid;
	grid-template-columns: 1fr 1fr;
 gap: 50px;
          align-items: center;
   margin-bottom: 100px;
}

.service-detail-reverse {


  grid-template-columns: 1fr 1fr;
   direction: rtl;
     }

.service-detail-reverse > * {
   direction: ltr;
}

.service-detail-image {


    overflow: hidden;
    border-radius: 12px;
  box-shadow: var(--shadow-md);

}

.service-detail-image img {
  width: 100%;
    height: auto;
  display: block;
}

.service-detail-content h2 {
   font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom  :  20px;
   line-height: 1.3;
}

.service-detail-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 25px;
    line-height: 1.8;
}

.service-features {
  display: grid;
	  grid-template-columns: 1fr 1fr;
	 gap: 15px;
	    margin    :       30px 0;
	
     }

.feature-item {


          padding: 12px 16px;
  background-color: var(--light-bg);
  border-left: 4px solid var(--accent-color);
  border-radius     : 4px;
       font-size: 0.95rem;
  color: var(--text-color);
     font-weight: 500;

}

.service-highlight {
	padding: 15px 20px;
  background-color: rgba(45, 95, 141, 0.08);
    border-radius   :  8px;
  color: var(--primary-color);
               font-style: italic;
	 margin-top: 20px;
  border-left: 4px solid var(--accent-color);
}

.pricing-section {


  background-color: var(--light-bg); 
   padding: 80px 20px; 
  text-align: center;

}

.pricing-section h2   {
  font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom:    60px;
}

.pricing-grid {
       max-width: 1000px;
    margin: 0 auto;
   display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 30px;}

.pricing-card {

	  background-color: var(--white);
  padding: 40px 30px;
     border-radius: 12px;
  box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
  position: relative;}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.pricing-card.featured  
  {
  border: 3px solid var(--accent-color);
  transform: scale(1.05);
}

.badge {
       position: absolute;
  top: -15px;
   left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent-color);
  color: var(--white);
    padding: 8px 20px;
   border-radius: 20px;
	font-size: 0.8rem;
  font-weight: 700;
   text-transform:      uppercase;
}

.pricing-card h3 {
	 font-size: 1.5rem;
  color: var(--primary-color);
   margin-bottom:  15px;
}

.price
	{
	 font-size: 2.2rem;
  color: var(--accent-color);
   font-weight   :     700;
    margin-bottom: 25px;
}

.pricing-features {
  list-style: none;
  text-align: left;
   margin-bottom: 30px;
}

.pricing-features li
{

   padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
   color: #666;
    font-size: 0.95rem;

}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-button {

    display: inline-block;
  padding: 12px 35px;
  background-color: var(--light-bg);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
        cursor: pointer;
     }

.pricing-button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.pricing-button.primary {
  background-color: var(--accent-color);
  color: var(--white);
  border-color: var(--accent-color);
}

.pricing-button.primary:hover	{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}


.testimonials-section {
    padding: 80px 20px;
  background-color: var(--white);
}

.testimonials-section h2 {

   text-align   :        center;
	font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 60px;
     }

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial-card {
  background-color: var(--light-bg);
    padding     : 40px;
  border-radius: 12px;
  border-left: 5px solid var(--accent-color);
    transition:   all 0.3s ease; 

}

.testimonial-card:hover {
  box-shadow: var(--shadow-md); 
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1.05rem;
  color: #555;
	margin-bottom: 20px;
    line-height: 1.8;
	font-style: italic;
}

.testimonial-author {
  color: var(--accent-color);
                    font-weight: 600;
   font-size: 0.95rem;

}

.faq-section {
  background-color: var(--light-bg);
    padding: 80px 20px;
}

.faq-section h2 {

	  text-align: center;
    font-size: 2.8rem;
  color: var(--primary-color);
	margin-bottom: 60px;


}

.faq-container {
	max-width: 900px;
  margin: 0 auto;
}

.faq-item {


  background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
	}

.faq-button {


   width: 100%;
   padding: 20px 25px;
  background-color: var(--white);
	 border: none;
   text-align: left;
  font-size: 1.1rem;
    font-weight: 600;
  color: var(--primary-color);
   cursor: pointer;
    transition: all 0.3s ease;
	 display: flex;
  justify-content: space-between;
   align-items: center; 
	
}

.faq-button:hover {
  background-color: var(--light-bg);
   padding-left: 35px;
}

.faq-button::after {
  content: '▼';
                    font-size: 0.8rem;
   transition: transform 0.3s ease;
}

.faq-item.active .faq-button::after {
  transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
  overflow: hidden;
 transition: max-height 0.3s ease;
  background-color: var(--light-bg);
}

.faq-item.active .faq-content {
                    max-height: 500px;
}  

.faq-content p		{
        padding: 0 25px 25px;
   color: #555;
  line-height: 1.8;
    font-size: 0.95rem;
	
}

.thankyou-section {
   	min-height: 70vh;
	    padding: 60px 20px;
	  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);


}  

.thankyou-container {
   max-width: 700px;
      margin: 0 auto;
   text-align: center;
}



.success-icon {

  width: 120px;
   height: 120px;
  margin    :   0 auto 30px;
  background-color: rgba(45, 95, 141, 0.1);
    border-radius   :50%;
   display: flex;
  align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;

}

.success-icon svg {
    width: 70%;
   height     :70%;
  color: var(--accent-color);
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {


   font-size: 3rem;

  color: var(--primary-color);

    margin-bottom: 15px;

        font-weight   :        700;
     }

.thankyou-message {
   font-size: 1.3rem;
	  color     :        #666;
		margin-bottom     :      40px;
	  line-height   :  1.6;
}

.confirmation-details {
  background-color: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
   margin-bottom: 50px;
  border-left: 5px solid var(--accent-color);
}

.confirmation-details p {
                    color: #555;
     margin-bottom: 15px;
               font-size     :        1rem;
   line-height: 1.7;
}

.timeline {
  color: var(--accent-color);
    font-weight: 600;
   font-size  :     0.95rem;
}

.next-steps {
  background-color: var(--white);
  padding: 40px;
   border-radius: 12px;
  box-shadow: var(--shadow-sm);
	margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 25px;
   text-align: center;
}

.steps-list {
    list-style: none;
     counter-reset: step;
}

.steps-list li {
    counter-increment: step;
   padding     :     15px 0 15px 50px;
    position    :      relative;
    color: #555;
  font-size     :    1rem;
    line-height: 1.6;


}  

.steps-list li::before  {
     content: counter(step);
    position: absolute;
    left     :        0;
  top: 0;
	width: 35px;
    height: 35px;
  background-color: var(--accent-color);
  color: var(--white);
   border-radius: 50%;
  display: flex;
  align-items     :    center;
   justify-content: center;
                    font-weight: 700;

}

.helpful-links {
   margin-bottom     :      40px;
}

.helpful-links h2 {

	       font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 25px;
} 

.links-grid {
       display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px;
}

.helpful-link {

		display: inline-block;
   padding: 15px 25px;
  background-color: var(--accent-color);
  color: var(--white);
     text-decoration: none;
    border-radius:   8px;
  font-weight: 600;
  transition: all 0.3s ease;

	}

.helpful-link:hover	{
  background-color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-info     {
  background-color: var(--light-bg);
  padding: 30px;
   border-radius: 12px;
}

.contact-info h2 {


    font-size: 1.6rem;
  color: var(--primary-color);
   margin-bottom     :     15px;
     }

.contact-info p {
   color: #555;
   font-size: 1rem;
	 margin-bottom:      10px;
  line-height: 1.6;
	
}

.contact-details     {
  color: var(--accent-color);
   font-weight: 600;
  font-size: 1.05rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-reverse {
        grid-template-columns: 1fr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .pricing-section h2 {
        font-size: 2rem;
    }

    .faq-button {
        font-size: 1rem;
        padding: 16px 15px;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .next-steps {
        padding: 25px;
    }

    .steps-list li {
        padding-left: 45px;
    }
}.policy-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
  min-height: 60vh;
} 

.policy-container
{
  max-width: 900px;
   margin: 0 auto;
         text-align: left;
}

.policy-container h1 {
  font-size: 3rem;
  color: var(--primary-color);
    margin-bottom:       50px;
                    font-weight: 700;
   text-align: center; 
	
}

.policy-container h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
    margin-bottom: 20px;
	margin-top: 40px;
  font-weight: 600;
  border-left: 5px solid var(--accent-color);
   padding-left: 20px; 
	
}

.policy-container p {
    line-height: 1.9;
   color: #555;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.policy-container p:last-child {
    margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container h1 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .policy-container p {
        font-size: 1rem;
    }
}@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 25px;
        padding-left: 15px;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}