* {
  margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #333;
}

.container {
   max-width: 1200px;
    margin    :    0 auto;
  padding: 0 20px;
}

.primary-nav{
  background     :  #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
   width: 100%;
	 top: 0;
       z-index   :     1000;
}

.nav-container {
   max-width    :        1200px;
   margin: 0 auto;
          padding: 0 20px;
  display: flex;
  justify-content :     space-between;
   align-items: center;
     height: 70px;
}

.brand-logo {
  height: 45px;
  width: auto;
}

.nav-links {


  display: flex;
    gap: 30px;
	}

.nav-links a {
    text-decoration: none;
   transition: color 0.3s ease;
  font-weight     :  500;
   color: #333;
}

.nav-links a:hover {

		color: #2c5aa0;

}

.mobile-toggle {
   display: none;
   flex-direction: column;
    cursor: pointer;
    gap :        4px;
}

.mobile-toggle span {
    width: 25px;
   height     : 3px;
  background: #333;
    transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1) 
 {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
	} 

.mobile-menu {
    display: none;
  flex-direction: column;
   background: #fff;
    padding: 20px;
    border-top: 1px solid #eee;
}

.mobile-menu a {
	 text-decoration    :      none;
	color: #333;
 padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu.active		{
     display: flex;
}

.hero-section {
	margin-top: 70px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-container {

	   max-width: 1200px;
   margin: 0 auto;
     padding   :    0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
          align-items: center;
	}

.main-heading {
   font-size: 3.2em;
          font-weight: 700;
       color: #2c5aa0;
   margin-bottom: 20px;
    line-height: 1.2;
     }

.hero-description {
  font-size: 1.2em;
   color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
   display     :       flex;
  gap :        20px;
}

.primary-btn, .secondary-btn {
  padding: 15px 30px;
   text-decoration: none;
    border-radius: 5px;
	font-weight: 600;
    transition: all 0.3s ease;
}



.primary-btn {
   background: #2c5aa0;
  color: white;
	
}


.primary-btn:hover {
  background: #1e3f73;
	
}

.secondary-btn {
 background: transparent;
    color   :      #2c5aa0;
  border: 2px solid #2c5aa0;
}

.secondary-btn:hover   {
    background: #2c5aa0;
   color: white;
}

.hero-image img {
     width: 100%;
    height: 400px;
    object-fit :       cover;
  border-radius: 10px;
}

.features-grid {
	    padding: 80px 0;
  background: #fff; 

}

.features-grid h2 {
  text-align: center;
		 font-size: 2.5em;
               color: #2c5aa0;
   margin-bottom: 50px;
}

.feature-items {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  text-align  :        center;
   padding: 30px;
  background: #f9f9f9;
   border-radius: 10px;
        transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);



}

.feature-card h3 {
	color: #2c5aa0;
    font-size     :       1.5em;
	margin-bottom: 15px; 

}

.services-section {
    background: #f5f7fa;
   padding: 80px 0;
}

.section-title {
	 text-align: center;
   font-size: 2.5em;
   color: #2c5aa0;
   margin-bottom: 60px;
}

.services-grid {
   display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); 
  gap: 40px;
}

.service-item {


    background: white;
   border-radius  :    10px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
     }

.service-item:hover		{
  transform: translateY(-5px);
}

.service-image img {
   width: 100%;
  height: 250px;
    object-fit: cover;
}

.service-content {
   padding: 30px;


}

.service-content h3 {
    color: #2c5aa0;
    font-size: 1.5em;
  margin-bottom :     15px; 

}

.cta-section {
    padding: 80px 0;
  background: #2c5aa0;
  color: white;
  text-align: center;
}

.cta-content h2 {
        font-size: 2.5em;
	    margin-bottom: 20px;
}

.cta-content p {


   font-size: 1.2em;
  margin-bottom: 30px;
    max-width: 600px;
	margin-left: auto;
	 margin-right: auto;


}

.cta-btn {
  display: inline-block; 
	  padding: 18px 40px; 
	  background: white; 
	    color: #2c5aa0; 
	   text-decoration: none; 
	    border-radius: 5px; 
	    font-weight: 600; 
	  font-size: 1.1em; 
	   transition: all 0.3s ease;


}

.cta-btn:hover  {
    background:        #f0f0f0;
} 

.contact-section {
    padding: 80px 0;
   background: white;
}

.contact-section h2 {
    text-align    :     center;
  font-size: 2.5em;
    color: #2c5aa0;
               margin-bottom: 50px;
}

.contact-wrapper {
    display   :       grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
	max-width: 1000px;
    margin : 0 auto;
}


.contact-info h3 {
    color: #2c5aa0;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom    :20px;
   display: flex;
    flex-direction:   column;
    gap: 5px;
}

.contact-item strong {
    color: #333;
}

.contact-form {
   background: #f9f9f9;
    padding: 40px;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
   display: block;

	   margin-bottom: 8px;

	     color: #333;

	  font-weight  : 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 12px;
   border: 2px solid #ddd;
   border-radius: 5px;
	font-size :        16px;
   transition  : border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.submit-btn {
    width: 100%;
         padding: 15px;
   background: #2c5aa0;
   color: white;
  border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
  cursor: pointer;
      transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #1e3f73;
}

.site-footer {
	padding: 50px 0 20px;
  color: white;
    background: #333;
}

.footer-container {

    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
   display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap     : 40px;
}

.footer-logo {
                    height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
    margin-top: 20px;
}

.footer-section h4     {
    color: white;
   margin-bottom: 20px;
    font-size  : 1.2em;
}

.footer-links		{
  list-style     :        none;
}  

.footer-links li {
   margin-bottom :       10px;
}

.footer-links a {
    color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom  {
	 text-align: center;
	border-top   :    1px solid #555;
   margin-top: 40px;
   padding-top: 20px;
   color: #ccc;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5em;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-items {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2em;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-form {
        padding: 25px;
    }
}.about-main {
  margin-top     :       70px;
}

.about-hero		{
   padding: 60px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
    color: white;
	 text-align: center;
}

.about-hero-content h1 {
  font-size: 3em;
   margin-bottom  :   20px;
	font-weight: 700;
}

.hero-subtitle {
   font-size: 1.3em;
  max-width: 800px;
    margin: 0 auto;
   opacity   :        0.9;
}

.company-story    {
    padding: 80px 0;
   background: white;
}

.story-grid {
	  display:     grid;
    grid-template-columns  :   1.5fr 1fr;
  gap: 60px;
    align-items: center;
     }

.story-content h2 {
    font-size: 2.5em;
  color  : #2c5aa0;
    margin-bottom: 30px;
}



.story-content p {
	 margin-bottom: 20px;
  font-size  :      1.1em;
   line-height: 1.8;
    color: #555;
}

.story-image img {
  border-radius: 10px;
  height: 400px;
  width     :       100%;
	object-fit: cover;
}



.methodology-section {


    padding: 80px 0;
  background: #f5f7fa;


}

.section-heading
	{
  text-align: center;
          color :      #2c5aa0;
    font-size: 2.5em;
	margin-bottom: 60px;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap  :       30px;
}

.method-card {
  background: white;
   padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-number {
   font-size: 3em;
    color: #2c5aa0;
    margin-bottom: 20px;
	 font-weight: 700;
}

.method-card h3 {
   font-size: 1.4em;
  color: #333;
        margin-bottom     :       15px;
}

.values-section {
   padding: 80px 0;
  background: white;
}

.values-container {
  display     :     grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
}

.value-item {
   margin-bottom: 40px;
}

.value-item h3 {
   color: #2c5aa0;
   font-size: 1.5em;
        margin-bottom: 10px;
}

.value-item p {
   line-height: 1.7;
    color: #555;
}

.values-image img {
	  width    :       100%;
   height: 450px;
    object-fit: cover;
  border-radius: 10px;


}

.expertise-section {
   padding: 80px 0;
   background: #f5f7fa;
}

.expertise-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.expertise-card {
    background: white;
  border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.expertise-card:hover  
  {
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.expertise-card img {
  width: 100%;
    height: 250px;
  object-fit   :        cover;
} 

.expertise-content {
    padding: 30px;
}

.expertise-content h3 {
   color: #2c5aa0;
   font-size: 1.4em;
    margin-bottom: 15px;
}

.achievements-section {
    padding: 80px 0;
   background: #2c5aa0;
  color: white;
  text-align: center;
}

.achievements-section .section-heading {
    color  :        white;
  margin-bottom: 60px;
}

.stats-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
     }

.stat-item {
  text-align: center;
}

.stat-number {

		margin-bottom: 10px;
   font-weight :  700;
    font-size: 3.5em;


     }

.stat-label {
  font-size: 1.2em;
  opacity: 0.9;
}

.cta-about {
   padding: 80px 0;
   background: #f5f7fa;
    text-align: center;
}

.cta-about h2 {
    font-size :   2.5em;
    color: #2c5aa0;
   margin-bottom: 20px;


}

.cta-about p	{
   font-size: 1.2em;

	   color: #555;

	    margin-bottom: 30px;

	   max-width: 600px;

	               margin-left: auto;

	   margin-right: auto;
}

.cta-button
{
   text-decoration: none;
         display: inline-block;
    font-weight: 600;
   background: #2c5aa0;
   color: white;
   transition: background 0.3s ease;
  border-radius: 5px;
  padding: 15px 40px;
}

.cta-button:hover {

    background  :     #1e3f73;}

.thankyou-main {
	  margin-top:       70px;

}

.thankyou-hero {
    padding: 100px 0;
  background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color     :  white;
   text-align: center;
}

.thankyou-content {
          max-width: 600px;
    margin: 0 auto;
}

.success-icon {
  margin-bottom: 30px;
}

.checkmark {
    width: 80px;
  height: 80px;
  border-radius: 50%;
	background: white;
	 margin: 0 auto;
  position: relative;
}

.checkmark::after {
  content: '';
  position: absolute;
  left   :  25px;
  top: 35px;
    width: 15px;
 height     :  25px;
    border: solid #27ae60;
    border-width: 0 4px 4px 0;
  transform: rotate(45deg);
}

.thankyou-content h1 {
    font-size: 3em;
    margin-bottom: 20px;
	 font-weight: 700;
}

.thankyou-subtitle {
	font-size    :   1.2em;
    opacity: 0.9;
}

.response-info

{
  padding: 80px 0;
   background: white;
}

.info-grid {
  display: grid;
		grid-template-columns    :  1fr 1fr;
  gap: 60px;
   max-width     :1000px;
    margin: 0 auto;
}

.info-card
{
   background: #f9f9f9;
  padding: 40px;
    border-radius   :       10px;
}

.info-card h3 {
    color: #2c5aa0;
  font-size: 1.8em;
  margin-bottom: 25px;
}

.step-list  
  {

   margin-top : 30px;
	}

.step-item {
   display: flex;
      align-items: flex-start;
   gap: 20px;
   margin-bottom: 25px;
}

.step-number {
          background: #2c5aa0;
	color: white;
          width   :  35px;
                    height: 35px;
    border-radius :50%;
    display: flex;
  align-items: center;
   justify-content   :    center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-item p {
  margin: 0;
    line-height: 1.6;
}

.additional-links {
    margin-top: 30px;

	    display    :  flex;

	  flex-direction    :  column;

	  gap: 15px;
}

.link-button {
	display   :   inline-block;
               padding: 12px 25px;
  background: #2c5aa0;
   color: white;
  text-decoration: none;
  border-radius: 5px;
          font-weight: 500;
    text-align: center;
   transition: background 0.3s ease;
}

.link-button:hover {
  background: #1e3f73;
}

.link-button.secondary {
 background: transparent;
  color: #2c5aa0;
  border: 2px solid #2c5aa0;
}

.link-button.secondary:hover {
  color: white;
  background: #2c5aa0;
}

.contact-reminder {
   padding: 80px 0;
   background     :  #f5f7fa;
}

.reminder-content {
  text-align:  center;
  max-width :       700px;
	margin: 0 auto;
}

.reminder-content h2 {
    color: #2c5aa0;
   font-size: 2.3em;
  margin-bottom: 20px;
}

.reminder-content p {
    font-size: 1.1em;
   color: #555;
  margin-bottom: 40px;
}

.contact-details {
   display: grid;
  grid-template-columns   :    1fr 1fr;
   gap: 30px;
   text-align: left;
}

.contact-method {
  background: white;
  padding:     25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.contact-method strong {
	   display: block;
	 color: #2c5aa0;
 margin-bottom: 8px;


}

.testimonial-preview


{
  padding: 80px 0;
   background: white;
}

.testimonial-preview h2 {
               text-align: center;
  color: #2c5aa0;
  font-size: 2.5em;
  margin-bottom    :   60px;
}

.testimonial-grid {
   display: grid;
  grid-template-columns   : 1fr 1fr;
    gap: 40px;
	 max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
                    background: #f9f9f9;
   padding: 40px;
    border-radius: 10px;
   border-left: 4px solid #2c5aa0;
}

.testimonial-card p	{


               font-style: italic;
   font-size: 1.1em;
	 line-height: 1.7;
  margin-bottom: 25px;
   color: #555;

}

.testimonial-author strong {
	color: #2c5aa0;
    display: block;
   margin-bottom: 5px;
}

.testimonial-author span

{
   color: #777;
   	font-size: 0.9em;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.3em;
    }
    
    .story-grid,
    .values-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.3em;
    }
}

@media (max-width: 480px) {
    .section-heading {
        font-size: 2em;
    }
    
    .method-card,
    .info-card,
    .testimonial-card {
        padding: 25px;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark::after {
        left: 20px;
        top: 25px;
        width: 12px;
        height: 20px;
    }
}.policySection {
  padding: 80px 2rem;
    background: #f8f9fa;
}


.policyContainer {
   max-width: 800px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
   margin-bottom: 1.5rem;
   line-height    :    1.7;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}