* {
    margin: 0;
    padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
        color: #333;
	
}

.main-navigation {
	  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
   width: 100%;
   top    :    0;
    z-index: 1000;
   padding: 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);



}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
   display: flex;
  justify-content: space-between;
   align-items: center;
	 padding: 0 2rem;
}

.company-logo {
   height :        45px;
  width: auto;

}

.nav-links {
  gap: 2rem;
  list-style: none;
  display: flex;
}

.nav-links a {

  color: #333;
   text-decoration    :     none;
   font-weight:        500;
    position: relative;
  transition: color 0.3s ease;

}

.nav-links a:hover {
    color: #2c5aa0;
}

.nav-links a::after {
  content: '';
   position: absolute;
  width: 0;
    height :       2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
 transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.burger-menu {
    gap: 4px;
    cursor: pointer;
  flex-direction: column;
	display: none;

}

.burger-menu span {
    width: 25px;
	    height: 3px;
	  background: #333;
	   transition: 0.3s;
	  border-radius: 3px;
}

.hero-section {
   min-height: 100vh;
     display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding-top: 80px;
}

.hero-content {
   max-width: 1200px;
	margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items     :center;
    padding  :     0 2rem;
}

.hero-content h1 {
      font-size: 3.2rem;
  font-weight: 700;
  color: #1a365d;
   margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
  color: #4a5568;
    margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
       gap: 1rem;
}

.btn-primary, .btn-secondary {
   display: inline-block;
    font-weight: 600;
  transition: all 0.3s ease;
    border-radius: 6px;
  padding :12px 24px;
        text-decoration: none;
}

.btn-primary {
   background: #2c5aa0;
   color: white;
}

.btn-primary:hover    {
    background: #1a365d;
  transform: translateY(-2px);
}

.btn-secondary {
	 background: transparent;
   color: #2c5aa0;
   border: 2px solid #2c5aa0;
	
}

.btn-secondary:hover {
    background: #2c5aa0;
   color: white;
}

.hero-image img {
    width: 100%;
         border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.container {
     max-width: 1200px;

    margin: 0 auto;

   padding: 0 2rem;


}


.expertise-section{
	padding: 80px 0;
    background: white;
}

.expertise-section h2 {
   text-align: center;
	font-size: 2.5rem;
   color: #1a365d;
    margin-bottom: 3rem;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.expertise-card {
   background: #f8fafc;
  padding: 2rem;
   border-radius: 8px;
  -moz-transition: transform 0.3s ease;
    -webkit-border-radius: 8px;
    border-left: 4px solid #2c5aa0;
  transition: transform 0.3s ease;
}

.expertise-card:hover     {
  transform: translateY(-5px);
}

.expertise-card h3 {
       color  : #2c5aa0;
   margin-bottom: 1rem;
    font-size: 1.3rem;
}  

.services-section {
  padding: 80px 0;
	background: #f7fafc;
}

.services-section h2 {
   margin-bottom: 3rem;
  color: #1a365d;
    text-align: center;
   font-size: 2.5rem;
}

.services-wrapper {
    display: flex;
    flex-direction: column;
   gap  :3rem;
}

.service-item
{
	display: grid;
  grid-template-columns: 1fr 2fr;
	gap: 2rem;
    background:       white;
   border-radius     :        12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  align-items: center;
}

.service-item:nth-child(even) {
   grid-template-columns: 2fr 1fr;
}

.service-item:nth-child(even) .service-content {
  order: -1;
}

.service-item img     {
     width: 100%;
  height: 300px;
    object-fit: cover;}

.service-content     {
    padding: 2rem;
}

.service-content h3 {
   margin-bottom: 1rem;

	    font-size: 1.6rem;

	   color   :#1a365d;
}

.service-content ul {

	    margin-top: 1rem;
  padding-left: 1rem;
     }

.service-content li {
          margin-bottom: 0.5rem;
  color: #4a5568;
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
	 color     :     white;
} 

.cta-section .container {


   display: grid;
  grid-template-columns: 2fr 1fr;
        gap: 3rem;
       align-items: center;
	
	}  

.cta-content h2 {
    font-size   :2.8rem;
       margin-bottom: 1.5rem;
}


.cta-benefits  
  {
  display: flex;
  gap: 2rem;
    margin: 2rem 0;
}

.benefit {
  display: flex;
  flex-direction: column;
   text-align: center;
}

.benefit-number {
        font-size :   2.5rem;
  font-weight : 700;
        color: #ffd700;

}

.benefit-text {
   font-size: 0.9rem;
  opacity: 0.9;
}

.btn-primary.large {
  padding: 16px 32px;
   	font-size: 1.1rem;
     margin-top: 1rem;
}

.cta-image img {
   width: 100%;
	border-radius: 12px;
}  

.contact-section {
  padding: 80px 0;
   background: white;
}

.contact-section h2 {
	    text-align: center;
  font-size: 2.5rem;
  color :        #1a365d;
    margin-bottom: 3rem;}

.contact-wrapper {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
   color     :      #2c5aa0;
    font-size: 1.5rem;
   margin-bottom     :      1rem;
}

.contact-details {
           margin-top    :2rem;


	}

.contact-item {
    margin-bottom: 1rem;
       display:    flex;
    gap: 1rem;
}

.contact-item strong {
    min-width: 80px;
	color: #2c5aa0; 
	
}

.contact-form {
    background: #f8fafc;
   padding: 2rem;
  border-radius: 12px;
}

.form-row {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input, .contact-form select, .contact-form textarea {
  padding:      12px;
   border: 2px solid #e2e8f0;
   border-radius   :    6px;
  font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
  border-color: #2c5aa0;
}

.contact-form textarea {
   grid-column: 1 / -1;
   height: 120px;
	 resize  :      vertical;
}  

.contact-form button {
   width: 100%;
  background    :      #2c5aa0;
    color: white;
	border: none;
        padding: 14px;
  border-radius: 6px;
       font-size: 1.1rem;
   font-weight: 600;
	 cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
	background: #1a365d;
}

.main-footer  
  {
  background: #1a202c;
  color: white;
   padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
        display: grid;
	grid-template-columns: 2fr 3fr;
    gap: 3rem;
}

.footer-logo {
       height: 40px; 
	  margin-bottom: 1rem; 
	  filter: brightness(0) invert(1);
     }  

.footer-brand p {
    opacity: 0.8;
    line-height     :      1.6;
}

.footer-links {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
  color: #2c5aa0;
    margin-bottom: 1rem;
   font-size: 1.1rem;
}

.footer-column ul {
   list-style: none;
}

.footer-column ul li {
  margin-bottom  :      0.5rem;
}

.footer-column ul li a {
                    color: #a0aec0;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
   color: white;
}

.footer-bottom {


  border-top: 1px solid #2d3748;
    margin-top: 2rem;
  padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .service-item {
        grid-template-columns: 1fr !important;
    }

    .service-item:nth-child(even) .service-content {
        order: 0;
    }

    .cta-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-benefits {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}.page-header {
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
       color   :  white;
      padding: 120px 0 80px;
   	text-align: center;
}

.page-header h1 {
   font-size: 3rem;
  margin-bottom: 1rem;
   font-weight: 700;
}


.header-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
  max-width: 600px;
    margin :      0 auto;
}

.story-section {
    padding    :       80px 0;
   background: white;
	}

.story-grid {
  display: grid;
   grid-template-columns: 2fr 1fr;
  gap :    3rem;
    align-items: center;
}

.story-content h2 {
   font-size: 2.2rem;
	color: #1a365d;
   margin-bottom: 2rem;
}

.story-content p

{
  margin-bottom: 1.5rem;
   color: #4a5568;
  line-height: 1.7;
}

.story-image img {
   width   :      100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-section {
    padding: 80px 0;
    background: #f7fafc;

}

.mission-section h2 {

    text-align: center;
   font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
     }

.mission-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.mission-card {
   background   : white;
     padding: 2.5rem;
   border-radius :12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}


.mission-card:hover {
  transform: translateY(-5px);
}

.mission-card.primary-card {


  background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
  color : white;
}

.mission-card h3 {
    font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #2c5aa0;
}

.mission-card.primary-card h3 {
	 color: #ffd700;
}

.approach-section {
     padding: 80px 0;
     background: white;
}

.approach-content
{
    display:  grid;
  grid-template-columns: 2fr 1fr;
	 gap: 3rem;
  align-items: center;
}

.approach-text h2 {


   font-size: 2.3rem;
   color: #1a365d;
 margin-bottom: 1.5rem;
     }

.approach-features {
   margin-top: 2rem;
}

.feature-item {
  margin-bottom: 2rem;
    padding-bottom     :   1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.feature-item:last-child {
   border-bottom: none;
}

.feature-item h4 {
    color: #2c5aa0;
       margin-bottom: 0.5rem;
      font-size: 1.1rem;
     }

.approach-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-areas {
   background: #f7fafc;
  padding: 80px 0;
}

.expertise-areas h2 {
    text-align: center;
               font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 3rem;
}

.expertise-item {
    display  :   grid;
   grid-template-columns: 1fr 2fr;
    gap: 3rem;
   margin-bottom: 4rem;
    background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    align-items: center;
}

.expertise-item.reverse {
	grid-template-columns: 2fr 1fr;
}

.expertise-item.reverse .expertise-details {
    order     :  -1;
}

.expertise-item img {
    object-fit: cover;

    height: 280px;

   width: 100%; 
	
}

.expertise-details {
    padding: 2.5rem;
}

.expertise-details h3 {
   font-size: 1.6rem;
  color: #1a365d;
   margin-bottom: 1rem;
}

.expertise-details ul {
   margin-top: 1.5rem;
  padding-left: 1rem;
}

.expertise-details li{
   margin-bottom: 0.5rem; 
   color: #4a5568;
}

.results-section  
  {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c5aa0 0%, #1a365d 100%);
    color: white;
   text-align: center;
}

.results-section h2 {

				font-size: 2.5rem;
    margin-bottom: 3rem;}



.results-stats {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item 
 {
    text-align: center;
}

.stat-number		{
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
   display: block;
}

.stat-label {
  opacity: 0.9;
	font-size    :       1rem;
}

.results-testimonial {
    max-width: 800px;
     margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
    border-radius :        12px;
	 border-left: 4px solid #ffd700;
}

.results-testimonial blockquote {
   font-size: 1.3rem;
         font-style: italic;
   margin-bottom: 1rem;
    line-height: 1.6;
}

.results-testimonial cite {

  font-size: 1rem;
  opacity: 0.8;}

.thankyou-hero  {
  min-height: 80vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding-top: 100px;
     padding-bottom: 80px;


}

.thankyou-content
{
  padding: 0 2rem;
    max-width: 1000px;
  text-align: center;
   margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
  width   :        80px;
	 height: 80px;
   background: #48bb78;
    border-radius: 50%;
   margin: 0 auto;
  position: relative;
   animation: scaleIn 0.5s ease-out;
}

.checkmark


{
     position: absolute;
    top: 50%;
   left: 50%;
  width: 20px;
    height: 35px;
   border: 4px solid white;
    border-top: none;
  border-left: none;
  transform: translate(-50%, -60%) rotate(45deg);


}

@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
   font-size :     3rem;
  color: #1a365d;
   margin-bottom: 1rem;
}

.thankyou-message {
  font-size: 1.3rem;
   color: #4a5568;
  margin-bottom: 3rem;
  max-width: 600px;
    margin-left: auto;
  margin-right: auto;
}

.next-steps{
  margin:     4rem 0;
  text-align: left;
	
}

.next-steps h2 {
      text-align: center;
    font-size: 2.2rem;
    color: #1a365d;
    margin-bottom: 2rem; 

}

.steps-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
   margin-bottom: 3rem;
}

.step-item {
    background: white;
   padding: 2rem;
	 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  display: flex;
    gap: 1rem;
}

.step-number
{
         width: 40px;
    height: 40px;
  background: #2c5aa0;
   color: white;
  border-radius: 50%;
    display    :      flex;
     align-items: center;
   justify-content: center;
   font-weight    :     700;
  flex-shrink: 0;
}

.step-content h3  
  {
   color: #1a365d;
    font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
   line-height: 1.6;
}

.additional-info {
    display: grid;
   grid-template-columns: 1fr 1fr;
       gap: 2rem;
    margin: 3rem 0;
}

.info-card {
   background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: left;
}

.info-card h3 {

   font-size: 1.3rem;
  color: #2c5aa0;
                    margin-bottom: 1rem;}

.thankyou-actions {
   display :   flex;
    gap: 1rem;
    justify-content: center;
   margin-top: 3rem;
}


.thankyou-image {
   margin-top: 3rem;
}

.thankyou-image img {
    width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);


}

.additional-resources {
   padding: 80px 0;
    background: white;
}

.additional-resources h2  
  {
   text-align    :  center;
   font-size     :       2.3rem;
   color: #1a365d;
  margin-bottom: 3rem;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-item {

    background: #f8fafc;
	 border-radius: 12px;
   overflow :     hidden;
  transition     :  transform 0.3s ease;
}

.resource-item:hover {
  transform: translateY(-5px);
}

.resource-item img {
    width: 100%;
   height: 200px;
  object-fit: cover;
} 

.resource-item h3
{
    font-size: 1.3rem;
    color: #1a365d;
   margin: 1.5rem 1.5rem 1rem;
}

.resource-item p {
   color: #4a5568;
	 margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.2rem;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-content {
        grid-template-columns: 1fr;
    }

    .expertise-item, .expertise-item.reverse {
        grid-template-columns: 1fr !important;
    }

    .expertise-item.reverse .expertise-details {
        order: 0;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .additional-info {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}section.container {
  padding: 80px 2rem;
}

section.container h1 {
  font-size: 2.5rem;
    color: #1a365d;
   margin-bottom: 2rem;
  text-align: center;
}

section.container h2 
 {
    font-size: 1.8rem;
    color: #2c5aa0;
   margin: 2rem 0 1rem;
}

section.container p {
  font-size     :      1rem;
    color: #4a5568;
    margin-bottom     :1rem;
	 line-height :    1.8; 


}

section.container ul {
    padding-left: 1.5rem;
   margin-bottom: 1rem;
}

section.container li

{
  margin-bottom :0.5rem;
  color: #4a5568;
}