* {
    margin: 0px;
   padding: 0;
	 box-sizing: border-box;
}

body {

  font-family: 'Arial', sans-serif;
    line-height: 1.6;
   color: #333;
    overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.primary-navigation {
  position: fixed; 
	    top: 0; 
		left: 0; 
	    right: 0; 
	  background: rgba(255, 255, 255, 0.95); 
	  backdrop-filter: blur(10px); 
	  z-index: 1000; 
		 padding: 15px 0; 
	  border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper 
 {
               max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display     :flex;
    justify-content:   space-between;
    align-items: center;
}

.brand-section .company-logo {
  height: 45px;
    width: auto;
}

.navigation-links {
    display: flex;
  list-style: none;
    gap: 30px;
}

.navigation-links a{
   text-decoration: none;
		 color: #333;
	        font-weight: 500;
	     transition: color 0.3s ease;
}

.navigation-links a:hover {
    color: #2c5aa0;
}

.menu-toggle  {
   display: none;
    flex-direction: column;
    cursor: pointer;
  gap: 3px;
}

.menu-toggle span {
   width: 25px;
	 height: 3px;
    background: #333;
    transition: 0.3s;
}

.hero-banner {
  margin-top: 80px;
 min-height: 600px;
        display: flex;
   align-items: center;
 padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
       max-width: 1200px;
               margin     :       0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap     :     60px;
   align-items: center; 
	
}

.hero-content h1 {
  font-size: 3.2rem;
    font-weight: bold;
               color:    #1a365d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
   font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.cta-buttons    {
	  display: flex;
   gap   :20px;

}

.primary-btn, .secondary-btn{
    padding: 15px 30px;
   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: #1e4080;
  transform: translateY(-2px);
}

.secondary-btn    {
  background: transparent;
   color: #2c5aa0;
    border     :      2px solid #2c5aa0;
}

.secondary-btn:hover {
    background     : #2c5aa0;
  color   :     white;
}

.hero-visual img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-overview {
   padding    :100px 0;
  background: white;
}

.features-overview h2 {
    text-align: center;
  font-size: 2.5rem;
   color: #1a365d;
 margin-bottom: 60px;
}

.features-grid {
	         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
	}

.feature-item {
  text-align: center;
   padding :      30px;
  border-radius: 12px;
   background: #f8f9fa;
               transition: transform 0.3s ease;
}

.feature-item:hover {
     transform: translateY(-5px);
     }

.feature-item h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
   margin-bottom: 15px;}

.feature-item p {
   line-height: 1.6;
   color: #666;
}

.services-section {
    padding   :        100px 0;
   background: #f8f9fa;
}

.services-section h2 {
   text-align: center;
    font-size: 2.5rem;
  color: #1a365d;
   margin-bottom: 60px;


}

.services-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
   background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
	
} 

.service-card img {
    width: 100%;
    height    :       250px;
  object-fit    : cover;
}

.service-card h3 {
   font-size: 1.4rem;
    color: #2c5aa0;
  margin: 20px 25px 15px;


}

.service-card p {
	margin  :        0 25px 20px;
  color: #666;
   line-height: 1.6;
}

.service-card ul {
   margin: 0 25px 25px 45px;
   color: #666;
}

.service-card li {
  margin-bottom: 5px;
}

.cta-section {
    padding: 100px 0;
   background: #2c5aa0;
   color: white;
}

.cta-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items  :center;
}

.cta-content h2 {
               font-size: 2.3rem;

	  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
   margin-bottom: 30px;
	 line-height: 1.6;
}

.cta-button {
   background: white;
     color: #2c5aa0;
   padding: 15px 30px;
   text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
   display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
   background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-image img {
    width: 100%;
   border-radius: 12px;
}

.testimonials {
  padding: 100px 0;
    background: white;
}

.testimonials h2 {
  margin-bottom: 60px;
   text-align: center;
        font-size: 2.5rem;
    color: #1a365d;
}

.testimonial-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.testimonial {
   background: #f8f9fa;
   padding: 30px;
      border-radius:   12px;
  border-left: 4px solid #2c5aa0;
}

.testimonial p {
  font-style    :        italic;
   margin-bottom: 20px;
	 color: #555;
    line-height: 1.6;
	
}

.author {
   font-weight :       600;
    color: #2c5aa0;
}

.contact-section {
 padding: 100px 0;
    background   :      #f8f9fa;
	
}

.contact-section h2 {
    text-align: center;
  font-size  :       2.5rem;
 color: #1a365d;
  margin-bottom: 60px;
}

.contact-layout {


    display: grid;
    grid-template-columns: 1fr 2fr;
   gap: 60px;}

.contact-info h3 {
	font-size: 1.5rem;
   color: #2c5aa0;
   margin-bottom: 30px;
}

.info-item {
    margin-bottom: 25px;


}

.info-item strong {

	    color: #1a365d; 
  display    :    block; 
   margin-bottom :      5px;
}

.contact-form {
	background:  white;
   padding: 40px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    color: #333;
   font-weight: 600;
   margin-bottom  :       8px;
         display    :  block;
}

.form-group input,
.form-group select,
.form-group textarea {

	    width: 100%;
  padding: 12px;
	border: 2px solid #e0e0e0;
	border-radius: 6px;
   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 {
    background: #2c5aa0;
    color: white;
  padding: 15px 30px;
  border    :none;
   border-radius: 8px;
  font-size: 16px;
    font-weight: 600;
    cursor: pointer;
               transition: all 0.3s ease;
}

.submit-btn:hover {
	  transform: translateY(-2px);
   background: #1e4080;


}

.site-footer{
	 background: #1a365d;
  color: white;
  padding: 60px 0 20px;

}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
   display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.footer-brand img {
   height: 50px;
    width: auto; 
	
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;
}

.footer-column h4		{
   margin-bottom: 20px;
	color: #fff;
}

.footer-column ul {
   list-style: none;
}

.footer-column li {
        margin-bottom: 10px;
}

.footer-column a    {
	color: #ccc;
   text-decoration: none;
   transition   :   color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.footer-column p {
  color   :  #ccc;
   line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #333;
           margin-top :40px;
     padding-top: 20px;
      text-align: center;
     max-width: 1200px;
           margin-left  : auto;
     margin-right : auto;
     padding-left: 20px;
     padding-right: 20px;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navigation-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .navigation-links.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}.about-hero {

  margin-top: 80px;
        padding  :  120px 0;
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
   color    :     white;
  text-align: center;

}

.about-hero-content h1 {
   font-size: 3rem;
    margin-bottom: 25px;
  font-weight: bold;
}

.about-hero-content p

{
  font-size: 1.3rem;
  max-width: 800px;
         margin   :   0 auto;
      line-height: 1.7;
}

.company-story {
  padding: 100px 0; 
	    background: white;
}

.story-layout {
  gap: 60px;
   display: grid;
  align-items: center;
   grid-template-columns: 1fr 1fr;
}

.story-content h2
	{
     font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 30px;
}

.story-content p


{
    margin-bottom: 25px;
    color: #555;
  line-height: 1.8;
    font-size: 1.1rem;
     }

.story-image img {
    width: 100%; 
  border-radius: 15px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.team-expertise {
    padding: 100px 0;
   background: #f8f9fa;
}

.team-expertise h2 {

	  color: #1a365d;
  font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
	}

.expertise-grid
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.expertise-card {
    background: white;
  padding: 35px;
   border-radius    :12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2c5aa0;
}

.expertise-card:hover {
  transform: translateY(-8px);

	  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.expertise-card h3 {
  color: #2c5aa0;
  font-size: 1.4rem;
       margin-bottom: 15px;
   font-weight: 600;
}

.expertise-card p {
    color: #666;
  line-height    : 1.7;
}

.methodology   {
    padding: 100px 0;

	  background: white;
}

.methodology-layout {


  display: grid;
    grid-template-columns: 1fr 1fr;
    gap   :       70px;
    align-items     :      center;
}

.methodology-content h2 {
	 font-size: 2.5rem;
    color: #1a365d;
   margin-bottom: 40px;
}

.method-step {

	  margin-bottom   :    30px;
    padding-left    :        20px;
    border-left: 3px solid #2c5aa0;

}

.method-step h4 {
          color: #2c5aa0;
  font-size: 1.3rem;
   margin-bottom   :        10px;
   font-weight: 600;
	}

.method-step p {
   color: #666;
    line-height: 1.6;
}

.methodology-visual img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.achievements {
   padding: 100px 0;
  background  :    #2c5aa0;
   color  :  white;
}

.achievements h2 {
  text-align: center;
  font-size: 2.5rem;
   margin-bottom: 60px;
}

.stats-grid {
    display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}

.stat-item {
   text-align: center;
   padding: 20px;
}

.stat-number {
   font-size   : 3.5rem;
    font-weight: bold;
   margin-bottom: 10px;
    color: #fff;
}

.stat-label {
    font-size: 1.1rem;
	color: #e2e8f0;
} 

.values {
   padding     : 100px 0;
    background: #f8f9fa;
}

.values h2  {
	  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 60px;
     }

.values-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.value-item {
	 background: white;
   padding: 40px;
   border-radius: 12px;
   text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.value-item:hover {
     transform: translateY(-5px);
  -moz-transform: translateY(-5px);}

.value-item h3 {
          color     :#2c5aa0;
   font-size: 1.5rem;
  margin-bottom     :   20px;
   font-weight: 600;
}

.value-item p {
   line-height: 1.7;

	color: #666;
}

.why-choose-us {
   padding: 100px 0;
   background: white;
}

.choice-layout
{
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.choice-content h2 {
  font-size: 2.5rem;
   color: #1a365d;
  margin-bottom: 40px;
}

.benefits-list {
  list-style: none;
    padding: 0; 

}

.benefits-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
   color: #555;
   font-size: 1.1rem;
	position: relative;
   padding-left: 30px;
}  

.benefits-list li:before {
	  content: "✓";
  position: absolute;
    left: 0;
  color: #2c5aa0;
   font-weight: bold;
    font-size: 1.2rem;
     }

.choice-visual img  {
   width:     100%; 
	   border-radius: 15px; 
	  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.thankyou-section {
  margin-top: 80px;
   padding: 100px 0;
   background: #f8f9fa;
  min-height: calc(100vh - 80px);
}

.thankyou-content {
	 text-align: center;

  max-width:800px;

                    margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px; 

}

.checkmark {
  width: 80px;
	height: 80px;
    background: #28a745;
   border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
	 font-size: 40px;
    color:   white;
   margin: 0 auto;
  animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
    font-size: 3rem;
    color: #1a365d;
  margin-bottom: 25px;
}

.main-message {
    margin-bottom: 50px;
         font-size: 1.2rem;
  line-height: 1.7;
    color   :#555;
}

.next-steps {
    margin-bottom: 60px; 
	
}

.next-steps h2 {
 font-size: 2rem;
   color: #1a365d;
    margin-bottom: 40px;
}  

.steps-grid {
  display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
   margin-bottom: 40px;
}

.step-item		{
    background: white;
    padding: 30px;
     border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
   width: 40px;
       height: 40px;
  background: #2c5aa0;
    color    :    white;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-weight: bold;
  margin: 0 auto 20px;
}

.step-item h3 {
    color: #2c5aa0;
  margin-bottom: 15px;
   font-size: 1.3rem;
}

.step-item p {
     color: #666;
         line-height: 1.6;

}

.additional-info {
  margin-bottom: 50px;
}

.additional-info h2 {
   font-size: 2rem;
   color: #1a365d;
   margin-bottom: 30px;
}

.info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
    margin-bottom: 40px;
}

.info-card {
     background: white;
    padding: 25px;
    border-radius     :      8px;
     border-left: 4px solid #2c5aa0;}

.info-card h3 {
   color: #2c5aa0;

    margin-bottom: 10px;

    font-size   :   1.2rem;
}

.info-card p {
  color: #666;
	line-height: 1.6;
	font-size: 0.95rem; 

}

.contact-reminder {
	 background: white;
	padding: 30px;
  border-radius :      12px;
  margin-bottom: 40px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.contact-reminder h3 {
   color: #1a365d;
    margin-bottom: 15px;
}

.contact-reminder p {
   color: #666;
  margin-bottom: 15px;
}

.urgent-contact {
    color: #2c5aa0;
	 font-size:     1.1rem;
} 

.action-buttons {
  display: flex;
    gap: 20px;
    justify-content     :        center;
   flex-wrap: wrap;
}

.thankyou-visual {
  margin-top: 60px;
      text-align: center;
}

.thankyou-visual img    {
    max-width: 100%;
    border-radius  :12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .story-layout,
    .methodology-layout,
    .choice-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-content h2,
    .methodology-content h2,
    .choice-content h2 {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .values-layout {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .expertise-card,
    .value-item,
    .step-item {
        padding: 25px;
    }
}.container h1
{
    font-size: 2.5rem;
  color: #1a365d;
   margin-bottom: 30px;
   text-align    :  center;
}

.container h2 {
   color: #2c5aa0;
  margin: 30px 0 15px;
   font-size: 1.8rem;
}

.container p {
    font-size: 1.1rem;
  color: #555;
   line-height: 1.6;
	 margin-bottom: 20px;
}

.container ul {
  list-style: disc;
               margin: 0 0 20px 20px;
  color:       #555;
}

.container li {
    margin-bottom   :    10px;
}@media (max-width: 768px) {
    .container h1 {
        font-size: 2rem;
    }

    .container h2 {
        font-size: 1.5rem;
    }

    .container p {
        font-size: 1rem;
    }
}