* {
	    margin: 0; 
	  padding:      0; 
	  box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
   background-color: #fdfdfd;
}

.main-navigation {
	position: fixed;
		 top: 0;
  width :      100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
   transition: all 0.3s ease;
   border-bottom: 1px solid #e0e0e0;
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}



.nav-container {

  max-width: 1200px;
  margin: 0 auto;
     display: flex;
   justify-content:   space-between;
  align-items: center;
  padding: 1rem 2rem;
	}

.site-logo {
  height: 45px;
        width: auto;
}

.nav-links {
   display: flex;
  gap: 2rem; 
	
}

.nav-link
{
  text-decoration: none;
  color: #333;
    font-weight: 500;
  transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
   color: #2c5aa0;
}

.nav-link::after {
     content: '';
   position: absolute;
    bottom: -5px;
	left: 0;
    width: 0;
   height: 2px;
	background: #2c5aa0;
	transition: width 0.3s ease;}

.nav-link:hover::after {
   width: 100%;
}

.mobile-menu-toggle		{

    display    :      none;
     flex-direction: column;
  cursor: pointer;
  padding     :5px;
	}



.mobile-menu-toggle span {
  width: 25px;
   height: 3px;
  background: #333;
  margin: 3px 0;
    transition     :      0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity    :    0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
	  display: none;
  background: white;
   position: absolute;
                    top: 100%;
   left: 0;
                    width: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.mobile-menu.active {
   display:block;
}


.mobile-nav-link {
    display: block;
    padding  :1rem 2rem;
        text-decoration: none;
         color: #333;
       border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.mobile-nav-link:hover {
   background: #f8f9fa;
  color: #2c5aa0;
}

.hero-area {
  margin-top: 80px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
       max-width: 1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1
{
  color: #2c5aa0;
   font-weight: 700;
   font-size: 3.2rem;
   margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
   font-size: 1.2rem;
  color: #666;
  margin-bottom: 2rem;
    line-height : 1.7;
}

.hero-buttons {
  display: flex;
      gap: 1rem;
         flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
          display: inline-block;
}

.primary-cta {
    background: #2c5aa0;
  color: white;
}

.primary-cta:hover {
     background: #1e3f73;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);}

.secondary-cta {
   background: transparent;
	color    :#2c5aa0;
  border: 2px solid #2c5aa0;
}

.secondary-cta:hover {

  background: #2c5aa0;
                    color: white;
  transform: translateY(-2px);
     }

.hero-image img {
	 width: 100%;
   height: auto;
    border-radius    :    12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-section {
  padding:  5rem 2rem;
    background: white;
}

.content-wrapper {
  max-width: 1200px;
    margin: 0 auto;
}

.services-section h2 {
   text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
	color: #2c5aa0;
}

.services-grid {
    display:       grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	   gap: 2rem;
}

.service-card {

	   background:   #f8f9fa;
    padding: 2rem;
    transition: all 0.3s ease;
  opacity: 0;
  text-align: center;
   border-radius: 12px;
  transform: translateY(30px);

}

.service-card.visible
{
  opacity   :   1;
  transform: translateY(0);
	}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
   height: 250px;
    object-fit: cover;
   border-radius:     8px;
	margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
	   margin-bottom: 1rem;
	   color: #2c5aa0;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

.cta-section	{
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c5aa0, #1e3f73);
    color: white;
   text-align: center;
}

.cta-content h2 {

		font-size: 2.5rem;
    margin-bottom    :1rem;

}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom    :  2rem;
  opacity    :      0.9;
}

.cta-button {
    display: inline-block;
	 padding: 1.2rem 2.5rem;
    background: white;
   color   :#2c5aa0;
    text-decoration: none;
    border-radius   :     8px;
   font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-preview {
  padding: 5rem 2rem;
  background: #f8f9fa;
}



.about-content {
  max-width: 1200px;
         margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.about-text h2 {
	 font-size: 2.5rem;
   margin-bottom  :      1.5rem;
  color: #2c5aa0;
}

.about-text p {
  font-size: 1.1rem;
    color: #666;
   line-height: 1.7;
    margin-bottom: 2rem;
}

.stats-row {
  display: flex;
      gap: 2rem;
     flex-wrap: wrap;
}

.stat-item {
  text-align: center;
    flex: 1;
  min-width: 100px;
}

.stat-item strong {
  display: block; 
  font-size: 2rem; 
               color: #2c5aa0; 
	font-weight: 700;
}  

.stat-item span {
  color: #666;
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
       height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 

}

.contact-section {
                       padding: 5rem 2rem;
  background :     white;
     }

.contact-container {
   max-width   :    800px;
	margin:       0 auto;
   text-align: center;
}

.contact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.contact-section p {
   font-size: 1.1rem;
   color :    #666;
   margin-bottom: 3rem;
}

.contact-form {
  text-align: left;
}

.form-row {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
    margin-bottom: 1rem; 

}

.form-group {
   margin-bottom: 1rem;
}

.form-group.full-width {
   grid-column: span 2;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   border-radius: 8px;
    padding: 1rem;
  font-size: 1rem;
   width: 100%;
    border: 2px solid #e0e0e0;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline     :     none;
       border-color: #2c5aa0;
}  

.submit-btn {
   width: 100%;
				 padding: 1.2rem;
	background: #2c5aa0;
	color: white;
  border: none;
   border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover
	{
      background: #1e3f73;
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);

}

.site-footer {
    background:  #333; 
	color: white; 
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
        display:  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4

{
   margin-bottom: 1rem;
   color: #2c5aa0;}

.footer-logo img {
 height: 40px;
  margin-bottom: 1rem;

}

.footer-links {
   list-style:     none;

}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #ccc;
	text-decoration: none;
                    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;


}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #ccc;


}

.footer-bottom {
   padding-top: 2rem;
   text-align: center;
  color: #999;
   margin-top: 2rem;
  border-top: 1px solid #555;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-section h2,
    .about-text h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}.nav-link.active-page {
  color: #2c5aa0;
   font-weight   :  600;
}

.nav-link.active-page::after

{
   width: 100%;
}

.page-header {
    margin-top: 80px;

	    padding: 4rem 2rem 2rem;

	  background: linear-gradient(135deg, #2c5aa0, #1e3f73);

	   color: white;

	  text-align: center;
}

.header-content h1 {
  font-size  :3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.header-content p {
    font-size: 1.3rem;
   opacity    :      0.9;
  max-width     : 600px;
	margin   :      0 auto;
}

.company-story {
  padding: 5rem 2rem;
   background: white;
}

.story-container {


    max-width: 1200px;
  margin: 0 auto;

}  

.story-content {
  display: grid;
       grid-template-columns    :    1fr 1fr;
   		 gap: 3rem;
       align-items: center;
	
}


.story-text h2 {
  font-size: 2.5rem;
   color: #2c5aa0;
   margin-bottom: 2rem;
}

.story-text p {
  font-size: 1.1rem;
    line-height    :   1.8;
   color: #666;
                    margin-bottom  :       1.5rem;
}

.story-image img
{
    width: 100%;
   border-radius  :12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); 
	
}

.team-section


{
  padding: 5rem 2rem;
    background: #f8f9fa;
}

.team-container


{
  max-width: 1200px;
	  margin: 0 auto;
}

.team-section h2 {
          text-align: center;
   font-size: 2.5rem;
    color: #2c5aa0;
  margin-bottom: 3rem;
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
   border-radius: 12px;
   padding  :        2rem;
	text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
}

.member-photo {
 margin-bottom: 1.5rem;
}

.member-photo img {


    width:       150px;
    height: 150px;
  border-radius: 50%;
    object-fit: cover;
	border     :  4px solid #2c5aa0;}

.team-member h3 {
	font-size: 1.5rem;
  color: #2c5aa0;
    margin-bottom    :      0.5rem;
}

.member-title {


   color: #666;
    font-weight:     600;
   margin-bottom    :       1rem; 



}

.member-bio 
 {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem; 
	
}

.values-section {
	padding   :    5rem 2rem;
  background: white;
}

.values-container {
    max-width: 1200px;
   margin: 0 auto;
}

.values-section h2 {


    text-align: center;
 font-size     :   2.5rem;
    color: #2c5aa0;
  margin-bottom: 3rem;}

.values-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.value-card {
    padding: 2rem;
   background: #f8f9fa;
  border-radius: 12px;
   text-align: center;
  border-left: 4px solid #2c5aa0;
}

.value-card h3 {
  font-size: 1.4rem;

   color: #2c5aa0;

    margin-bottom: 1rem;
}

.value-card p   {


    color: #666;
   line-height: 1.6;


}

.approach-section {

    background: #f8f9fa;
   padding:   5rem 2rem;
}

.approach-container {
    max-width: 1200px;
          margin: 0 auto;
}

.approach-content {
	 display: grid;
    grid-template-columns  :  1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.approach-text h2 {
   margin-bottom: 1.5rem;
    font-size: 2.5rem;
  color: #2c5aa0;
}

.approach-text > p {
  font-size: 1.1rem;
   color: #666;
    line-height     :        1.7;
    margin-bottom: 2rem;
}

.approach-steps {
   space-y: 1.5rem;
}

.step-item {
  margin-bottom: 1.5rem;
    padding: 1rem;
  background :       white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);


}

.step-item h4

{
    color: #2c5aa0;
   margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.step-item p {
    color     :    #666;
   font-size: 0.95rem;
    line-height: 1.5;
}

.approach-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stats-section {
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c5aa0, #1e3f73);
               color   :        white;
     }

.stats-container {
    max-width: 1200px; 
	    margin: 0 auto; 
	    text-align: center;
}

.stats-section h2 {
  margin-bottom: 3rem;
   font-size: 2.5rem;
}

.stats-grid

{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-box 
 {
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.1);
   border-radius: 12px;
  backdrop-filter: blur(10px);
}

.stat-number {
  display: block;
       font-size: 3rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
}

.stat-label {
   font-size   :      1rem;
    opacity: 0.9;
}

.thankyou-section {
  margin-top: 80px;
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container {
   max-width: 1200px;
        margin: 0 auto;
   display: grid;
    grid-template-columns     :2fr 1fr;
	gap :     3rem;
   align-items: center;
}

.thankyou-content {
          text-align: center;
}

.success-checkmark
{
   width: 80px;
   height: 80px;
   border-radius: 50%;
    display: block;
	stroke-width: 2;
        stroke: #4bb71b;
  stroke-miterlimit: 10;
    margin: 0 auto 2rem;
          box-shadow: inset 0px 0px 0px #4bb71b;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
   position :   relative;
}

.success-checkmark .check-icon{
	border-radius: 50%;
    background: #4bb71b;
  top: 12px;
    width: 56px;
  position: absolute;
   left: 12px;
    height: 56px;
     }

.success-checkmark .check-icon::before {
  content: '';
         position: absolute;
   left: 18px;
   top: 12px;
  width: 6px;
  height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}  @keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4bb71b;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}.thankyou-content h1 {

   color: #2c5aa0;
   margin-bottom: 1.5rem;
   font-size: 3rem;
     }

.thank-message {
   font-size: 1.2rem;
    color: #666;
   line-height: 1.7;
	margin-bottom: 3rem;
    max-width: 600px;
      margin-left: auto;
   margin-right: auto;
}


.next-steps {
    margin-bottom: 3rem;
  text-align: left;
    max-width: 600px;
	margin-left: auto;
    margin-right: auto;
}

.next-steps h3 {
  color: #2c5aa0;
  font-size: 1.8rem;
  margin-bottom: 2rem;
   text-align: center;
}

.steps-list {
    display: flex;
  flex-direction: column;
   gap: 1.5rem;
}

.step-box {
  display: flex;
   align-items: flex-start;
    gap    :        1rem;
    padding: 1.5rem;
   background : white;
   border-radius     :        12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
   flex-shrink: 0;
  width: 40px;
   height  :     40px;
  background: #2c5aa0;
   color: white;
    border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-content h4 {
    color: #2c5aa0;
  margin-bottom :0.5rem;
    font-size   :    1.1rem;
}

.step-content p {
   color: #666;
   font-size: 0.95rem;
    line-height: 1.5;
}

.additional-info {
    margin-bottom: 3rem;
    max-width: 600px;
  margin-left :      auto;
   margin-right: auto;
}

.additional-info h3 {
   color: #2c5aa0;
      font-size: 1.5rem;
             margin-bottom:   1rem;
}

.additional-info p {
   color: #666;
    line-height: 1.6;
   font-size: 1rem;

}

.thank-actions {
   display: flex;
        gap: 1rem;
    justify-content: center;
   flex-wrap: wrap;
}


.primary-btn, .secondary-btn {
    padding: 1rem 2rem;
       text-decoration :       none;
   	border-radius: 8px;
      font-weight: 600;
      transition: all 0.3s ease;
       display: inline-block;
}

.primary-btn {
    background: #2c5aa0;
    color    : white;
}

.primary-btn:hover   {
      background     :       #1e3f73;
  transform: translateY(-2px);}

.secondary-btn {
	background: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
}

.secondary-btn:hover {
	 background: #2c5aa0;
  color: white;
}

.thankyou-image img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-info-section {
  padding: 4rem 2rem;
    background: white;


}

.contact-info-container {
   margin     :    0 auto;
    text-align: center;
	 max-width: 800px;
}

.contact-info-section h2 {
  font-size: 2.5rem;
  color   :       #2c5aa0;
    margin-bottom: 3rem;
}

.contact-details {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.contact-item {
        padding: 1.5rem;
   background: #f8f9fa;
     border-radius:12px;
}

.contact-item h4

{
  color: #2c5aa0;
   margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-item p {
   color: #666;
    line-height: 1.6;
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .story-content,
    .approach-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .steps-list {
        gap: 1rem;
    }
    
    .step-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .header-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .member-photo img {
        width: 120px;
        height: 120px;
    }
}.content-section {
    padding: 5rem 2rem;
  background: #f8f9fa;
} 

.content-section h1 {
	font-size    :    2.5rem;
  color: #2c5aa0;
   margin-bottom: 1.5rem;
	 text-align: center;
}

.content-section h2 {

	    font-size: 1.8rem;
   color: #2c5aa0;
    margin: 2rem 0 1rem;


}

.content-section p {
   color: #666;
  line-height :  1.7;
  margin-bottom: 1rem;
    font-size: 1.1rem;


}

.content-section ul {
   list-style-type: disc;

	  margin-left :  2rem;

	    margin-bottom: 1rem;
}  

.content-section li {
  font-size: 1.1rem;

	  color: #666;

	    line-height: 1.7;

	   margin-bottom: 0.5rem;
}