* {
    margin:        0px;

    padding: 0;

	box-sizing: border-box;}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
   background-color: #ffffff;
}

.container {
   max-width: 1200px;
  margin: 0 auto;
          padding: 0 20px;
}

.main-navigation {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
               max-width: 1200px;
    margin: 0 auto;
	display :       flex;
    justify-content  : space-between;
  align-items: center;
   padding: 1rem 20px;
}

.logo-section .nav-logo {
   height: 45px;
  width: auto;
  filter: brightness(0) invert(1);

}

.nav-links {
   display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-item {
	 color: white;
         text-decoration: none;
     font-weight: 500;
    transition: color 0.3s ease;
}

.nav-item:hover {
  color: #74b9ff;
}

.burger-menu     {
                    cursor: pointer;
      flex-direction: column;
  display: none;
    gap: 4px;
}  

.burger-line {
   width: 25px;
       height: 3px;
      background :      white;
     transition    :0.3s;
}

.mobile-menu {
   display     :    none;
  flex-direction: column;
         background: #1e3c72;
               padding: 1rem 0;
}

.mobile-link {
	 color: white; 
  text-decoration: none; 
	padding: 0.8rem 2rem; 
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-section {
  display: flex;
    align-items: center;
	 min-height: 100vh;
   padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
	   flex: 1;
    max-width: 600px;
   margin-right: 3rem;
	}

.hero-title {
    color: #1e3c72;
  font-size: 3.2rem;
     margin-bottom: 1.5rem;
   font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
    color:       #6c757d;
               margin-bottom: 2.5rem;
	 line-height: 1.6;
} 

.hero-buttons {
    display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
    padding: 15px 30px;
   text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
}  

.primary-btn {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.secondary-btn {
   background: transparent;
   color: #1e3c72;
     border: 2px solid #1e3c72;
}

.secondary-btn:hover {

	  background: #1e3c72;
    color: white;

}

.hero-image {
   flex: 1;
  max-width: 500px;


}  

.hero-image img {
  width: 100%;
                    height    :      auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 100px 0;
    background: white;
}

.section-heading {

	 text-align: center;
  font-size :       2.8rem;
  color: #1e3c72;
          margin-bottom: 4rem;
    font-weight: 700;

}

.services-grid {
        display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
   background: #f8f9fa;
  padding     :    2.5rem;
   border-radius: 12px;
  text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); 

}



.service-card img {
  object-fit: cover;

		width: 100%;

	   margin-bottom: 1.5rem;

	  border-radius:        8px;

	   height: 200px;
}

.service-card h3{
    font-size: 1.5rem;
    color:       #1e3c72;
       margin-bottom: 1rem;
   font-weight: 600;
}

.service-card p {

    color: #6c757d;
    line-height :        1.6;
	}

.expertise-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
}

.expertise-content
	{
    max-width: 800px;
    margin: 0 auto;
          text-align: center;
}

.expertise-content h2 {
    font-size: 2.5rem;

	    margin-bottom :  2rem;

	    font-weight: 700;
}

.expertise-content p {
	font-size     :        1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.expertise-list {
    text-align: left;
   max-width: 600px;
     margin: 0 auto;
}

.expertise-list li {
    padding: 0.8rem 0; 
	  border-bottom: 1px solid rgba(255,255,255,0.2); 
	   font-size: 1.1rem;
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  text-align: center;
	 color: white;
}

.cta-content h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
               font-weight: 700;
}

.cta-content p {
   font-size: 1.2rem;
   margin-bottom:       2.5rem;
    max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.cta-button {
   display: inline-block;
    padding: 18px 40px;
   background   :     white;
    color: #0984e3;
   text-decoration: none;
    border-radius: 8px;
    -moz-transition: all 0.3s ease;
  font-weight: 700;
  font-size: 1.1rem;
   transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);}

.contact-section {
    padding: 100px 0;
  background: #f8f9fa; 
	
}

.contact-title {
    text-align   :center;
   font-size: 2.5rem;
 color: #1e3c72;
	margin-bottom: 3rem;
  font-weight: 700;
}

.contact-wrapper {
   display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
          max-width: 1200px;
	margin: 0 auto;

}  

.contact-info h3 {
    color: #1e3c72;
    font-size: 1.5rem;
  margin-bottom: 2rem;
    font-weight: 600;
} 

.contact-item {
       margin-bottom: 2rem;
}



.contact-item strong {
   color: #1e3c72;
  display     :     block;
   margin-bottom:  0.5rem;
}

.contact-form {
	 background     : white; 
  padding  :     3rem; 
   border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display:   block;
  margin-bottom: 0.5rem;
  color: #1e3c72;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width:    100%;
   padding: 12px;
   -webkit-border-radius: 6px;
  border: 2px solid #e9ecef;
   -moz-transition: border-color 0.3s ease;
  -moz-border-radius: 6px;
    -webkit-transition: border-color 0.3s ease;
	border-radius: 6px;
	 font-size: 1rem;
   -o-transition: border-color 0.3s ease;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #74b9ff;
}

.submit-btn {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
   color: white;
    padding: 15px 30px;
   border: none;
   border-radius: 8px;
	 font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(116, 185, 255, 0.4);
}

.main-footer {
    background: #1e3c72;
 color: white;
    padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.footer-logo {
   height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-section h4	{
   margin-bottom: 1.5rem;
  font-size: 1.2rem;
   font-weight: 600;
}

.footer-links

{
  list-style  :    none;
}

.footer-links li
	{
  margin-bottom: 0.8rem; 

}

.footer-links a {
    color   :  #bdc3c7;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
   color: white;
}

.footer-description {
    color: #bdc3c7;
 line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
  padding-top: 2rem;
   text-align: center;
  max-width: 1200px;
   margin-left: auto;
   margin-right: auto;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 60px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}.nav-item.active {
	color: #74b9ff !important;
   font-weight: 600;
}

.about-hero

{
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   padding: 140px 0 80px;
    color: white;
   text-align: center;


}

.about-title {
   font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;


}

.about-lead {
  font-size: 1.4rem;
      max-width: 800px;
 margin: 0 auto;
      line-height: 1.6;
   opacity: 0.9;
}

.company-story {
    padding : 100px 0;
   background: white;
}

.story-grid  
  {
   display: grid;
    grid-template-columns    :      1fr 1fr;
    gap     : 4rem;
         align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
   color: #1e3c72;
   margin-bottom: 2rem;
  font-weight: 700;


}

.story-content p {

  font-size :  1.1rem;
  line-height: 1.7;
	color: #5a6c7d;
  margin-bottom: 1.5rem;
	}

.company-stats {
   gap: 2rem;
    margin-top: 3rem;
    display     :    flex;
}

.stat-item
	{
          text-align :   center;
   flex: 1;
}

.stat-number {
   display: block;
    font-size: 2.5rem;
    font-weight: 700;
  color: #74b9ff;
    margin-bottom: 0.5rem;
}

.stat-label {

   font-size: 0.9rem;
  color: #6c757d;
       font-weight    :  500;
}

.story-image img {
	 width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	}

.methodology-section {
   padding: 100px 0;
    background :      #f8f9fa;
}

.methodology-title {
   font-size: 2.5rem;
    margin-bottom: 4rem;
  font-weight: 700;
   color: #1e3c72;
	text-align: center;
}

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.methodology-step {
                    background: white;
       padding     :2.5rem;
                       border-radius: 12px;
     text-align: center;
      position: relative;
     box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
}

.methodology-step:hover {
  transform: translateY(-5px);

}

.step-number {
   display: inline-block;
   width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
   font-weight:    700;
  line-height: 60px;
   margin-bottom: 1.5rem;
}

.methodology-step h3 {
       font-size: 1.3rem;
	color    :  #1e3c72;
    margin-bottom: 1rem;
  font-weight: 600;
}

.methodology-step p {
  color: #6c757d;
    line-height: 1.6;
}

.values-section {
    padding: 100px 0;
    background: white;
}

.values-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap     : 4rem;
    align-items: center;
}

.values-text h2 {
   font-size  :    2.5rem;
   color: #1e3c72;
  margin-bottom: 2.5rem;
  font-weight    :      700;
}


.value-item 
 {


   margin-bottom    : 2rem;
  padding-bottom: 1.5rem;
      border-bottom: 1px solid #e9ecef;
     }

.value-item:last-child {
      border-bottom:    none;
}

.value-item h4 {


               font-weight :    600;
  font-size: 1.2rem;
    color: #1e3c72;
   margin-bottom     :     0.8rem;

}

.value-item p {
  color: #6c757d;
  line-height  :1.6;
}

.values-image img {
	 width: 100%;
    height: auto;
               border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.expertise-showcase {
    padding: 100px 0;
    background:       #f8f9fa;
	
}

.expertise-showcase h2 {

	   text-align: center;
   font-size: 2.5rem;
   color: #1e3c72;
   margin-bottom: 4rem;
  font-weight: 700;}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.expertise-card {
    background: white;
   border-radius: 12px;
   overflow     :   hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card img {
    width: 100%;
  height: 250px;
	object-fit: cover;
}

.expertise-card-content {
  padding: 2rem;
}

.expertise-card-content h3 {
    font-size: 1.4rem;
	color: #1e3c72;
   margin-bottom: 1rem;
    font-weight: 600;
}

.expertise-card-content p {
  color: #6c757d;
   line-height: 1.6;
} 

.team-commitment 
 {
	padding: 100px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
        text-align: center;
}

.commitment-content {
  max-width: 900px;
   margin: 0 auto;
}

.commitment-content h2 {
    font-size     :        2.5rem;
				 margin-bottom: 2.5rem;
    font-weight     :    700;
	


}

.commitment-text {
    font-size: 1.2rem; 
               line-height: 1.7; 
   margin-bottom: 2rem; 
    opacity:0.95;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    padding: 140px 0 80px;
               color: white;
    text-align: center;
}

.thankyou-content {
  max-width: 600px;
   margin: 0 auto;
}

.success-icon {
    margin-bottom: 2rem;
}


.checkmark-circle {
   width: 80px;
  height     :    80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
   justify-content: center;
  margin-bottom: 1rem;
     }

.checkmark {
    width:        24px;
  height: 24px;
   border: 3px solid white;
  border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    margin-top: -6px;
}

.thankyou-title	{
  font-size: 3rem;

  font-weight: 700;

    margin-bottom: 1rem;

  line-height: 1.2;
}

.thankyou-subtitle {
     font-size: 1.3rem;
   opacity: 0.9;

}

.confirmation-details	{
  padding: 100px 0;
    background: white; 
	
}

.confirmation-grid {
      display: grid;
	 gap: 4rem;
	 grid-template-columns: 1fr 1fr;
  align-items: center;

}

.confirmation-info h2 {
    font-size: 2.5rem;
   color: #1e3c72;
    margin-bottom: 3rem;
  font-weight: 700; 

}

.next-steps {
   space-y: 2rem;
}

.step-item {
   display: flex;
  align-items: flex-start;
   gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.step-icon {

	    width  :        50px;
   height: 50px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
	 border-radius: 50%;
    display: flex;
	align-items: center;
    justify-content: center;
   font-weight: 700;
    font-size: 1.2rem;
	flex-shrink: 0;
     }

.step-content h3 {
      font-size: 1.3rem; 
  color: #1e3c72; 
  margin-bottom: 0.8rem; 
	font-weight: 600;

}

.step-content p {
       color: #6c757d;
  line-height :        1.6;
}

.confirmation-image img  {
  width: 100%;
   height     :    auto;
	border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.additional-resources {
	background: #f8f9fa;
   padding: 100px 0;
}

.additional-resources h2 {
   text-align    :   center;
   font-size: 2.5rem;
  color: #1e3c72;
   margin-bottom: 4rem;
    font-weight: 700;}

.resources-grid {
		 display     :  grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.resource-card {
    background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition     :        transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
     } 

.resource-card img {
  width: 100%;
    height: 220px;
  object-fit: cover;
}

.resource-content {
 padding: 2rem;
}

.resource-content h3 {
  font-size: 1.4rem;
   color: #1e3c72;
   margin-bottom: 1rem;
  font-weight    :  600;
}

.resource-content p		{
	  color: #6c757d;
	line-height: 1.6;
	margin-bottom: 1.5rem;

}

.resource-link {
    color: #74b9ff;
   text-decoration     :      none;
   font-weight: 600;
  transition   :     color 0.3s ease;
}

.resource-link:hover {
    color   :   #0984e3;
}

.contact-reminder {
         padding  :    100px 0; 
	    background: white; 
	   text-align: center;
}

.reminder-content h2 {
  font-size: 2.5rem;
   color: #1e3c72;
	margin-bottom: 1.5rem;
        font-weight: 700;
}

.reminder-content p {
   font-size: 1.2rem;
  color :  #6c757d;
   margin-bottom: 3rem;
   max-width: 600px;
  margin-left: auto;
	 margin-right: auto;
}

.emergency-contact


{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
   margin: 0 auto;
}

.contact-method{
  background: #f8f9fa;
  padding   :      2.5rem;
   border-radius: 12px;
}

.contact-method h4 {
	    font-size: 1.3rem;
    color:#1e3c72;
	margin-bottom: 1rem;
  font-weight:  600;}

.contact-method p {
  font-size: 1.1rem;
    color: #2c3e50;
  margin-bottom: 0.8rem;
   line-height: 1.5;
}

.availability {
	font-size: 0.9rem;
   color: #6c757d;
   font-style: italic;
}@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-lead {
        font-size: 1.2rem;
    }
    
    .story-grid,
    .values-content,
    .confirmation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-contact {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-title {
        font-size: 2.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-title,
    .thankyou-title {
        font-size: 2rem;
    }
    
    .story-content h2,
    .methodology-title,
    .values-text h2,
    .expertise-showcase h2,
    .commitment-content h2,
    .confirmation-info h2,
    .additional-resources h2,
    .reminder-content h2 {
        font-size: 2rem;
    }
    
    .methodology-step,
    .contact-method,
    .resource-content {
        padding: 2rem;
    }
}.cookies-section, .privacy-section{
  padding: 100px 0;
   background: #f8f9fa;
}

.cookies-content, .privacy-content {
   max-width:        800px;
   margin: 0 auto;
	color: #2c3e50;
}

.cookies-content h2, .privacy-content h2 {

	   font-size: 1.8rem;
    color: #1e3c72;
   margin-bottom: 1rem;
  font-weight: 600;
}

.cookies-content p, .privacy-content p {
    margin-bottom: 1.5rem;
  line-height: 1.7;
}

.cookies-list, .privacy-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.cookies-list li, .privacy-list li {


   padding: 0.8rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);

}@media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 80px 20px;
    }

    .cookies-content h2, .privacy-content h2 {
        font-size: 1.6rem;
    }
}