* {

    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: #fff;
	
}

.main-navigation {
  position: fixed;
   top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  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: 1rem 2rem;
	
}

.logo-section .logo-img {
   height: 45px;
	 width: auto;
}

.nav-links {
  display     :    flex;
   gap: 2rem;
}

.nav-links a {
    text-decoration: none;
  color: #333;
  font-weight: 500;
  transition :        color 0.3s ease;
}

.nav-links a:hover {
   color: #0066CC;
}

.burger-menu {
    display: none;
	 flex-direction: column;
      cursor: pointer;
   gap: 4px;
}

.burger-line {
   width: 25px;
  height    :      3px;
  background-color: #333;
   transition: 0.3s;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
       opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px); 
	
}

.mobile-menu   {
            display: none;
  background: white;
   padding: 1rem 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
     }


.mobile-menu a {
	display: block;
   padding :   0.5rem 0;
    text-decoration: none;
    color: #333;
   font-weight: 500;}

.mobile-menu.show {
          display  :     block;
}

.hero-section {
	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 {
       font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
   color: #1a1a1a;
          line-height :      1.2;
} 

.hero-text p {

    font-size    :  1.2rem;
    margin-bottom   : 2rem;
	 color: #666;


     }

.hero-buttons		{
    display    :    flex; 
	    gap  :       1rem; 
	  flex-wrap: wrap;
}  

.cta-primary, .cta-secondary {
   padding: 1rem 2rem;
    text-decoration: none;
   border-radius: 8px;
  font-weight     :   600;
    transition  :       all 0.3s ease;
  display  :     inline-block;
}

.cta-primary {
    background: #0066CC;
    color: white;
}

.cta-primary:hover

{


  background: #0052A3;
  transform: translateY(-2px);}

.cta-secondary {
   background: transparent;
    color: #0066CC;
  border: 2px solid #0066CC;
}

.cta-secondary:hover {
  background: #0066CC;
   color: white;
}

.hero-image img {
  width: 100%;
  height: auto;
   border-radius  :      12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section  {
  padding: 5rem 2rem;
   background: white;
}

.container {
   max-width :1200px;
   margin: 0 auto;
}

.features-section h2 {
    text-align: center;
			font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #1a1a1a;
}

.features-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
   background: #f8f9fa;
    padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
      font-size: 1.5rem;
    margin-bottom: 1rem;
  color: #0066CC;

}

.feature-card p {
  color: #666;
  line-height: 1.7;
}

.about-preview    {
	   padding: 5rem 2rem;
  background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: white;
}

.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;
}

.about-text p {
  margin-bottom: 1.5rem;
	font-size: 1.1rem;
          line-height: 1.7;
   opacity  : 0.9;
}

.learn-more-btn 
 {
	background: white;
  color: #0066CC;
	 padding: 1rem 2rem;
   text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
   display: inline-block;
  transition: all 0.3s ease; 

}

.learn-more-btn:hover		{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-image img {
   width: 100%;
    height: auto;
   border-radius: 12px;
 -webkit-border-radius: 12px; 
	
}

.services-showcase {
    padding: 5rem 2rem;
   background: #f8f9fa;
	
}

.services-showcase h2 {
    text-align: center;
  font-size: 2.5rem;
  margin-bottom     :  3rem;
   color: #1a1a1a;
}

.services-list {
    display: flex;
               flex-direction: column;
  gap: 3rem;
}

.service-item {
   display   : grid;
    grid-template-columns: 300px 1fr;
  gap: 2rem;
   align-items: center;
    background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.service-item:nth-child(even) {
	  grid-template-columns: 1fr 300px; 


}

.service-item:nth-child(even) .service-content {
   order  :      -1;
}

.service-item img {
	 width: 100%;
   height: 200px;
    object-fit: cover;
  border-radius: 8px;
}

.service-content h3 {
    font-size: 1.8rem;
  margin-bottom: 1rem;
    color: #0066CC;
}

.service-content p {
  color: #666;
    line-height: 1.7;
   font-size: 1.1rem;
}

.cta-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
   color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
   margin: 0 auto;
}

.cta-content h2 {
	  font-size: 2.5rem;
    margin-bottom  :1.5rem;
     }

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;


}

.cta-button {
    background :      #0066CC;
  color: white;
   padding: 1.5rem 3rem;
    text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
  font-size: 1.1rem;
  display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover 
 {
   background: #0052A3;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 102, 204, 0.3);
}

.contact-section {
    padding: 5rem 2rem;
    background: white;
}

.contact-section h2 {
	text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #1a1a1a;
}

.contact-content {
   display: grid;
    grid-template-columns: 1fr 2fr;
   gap: 3rem;
    max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.5rem;
  margin-bottom: 2rem;
       color: #0066CC;
}

.contact-item {
	  margin-bottom: 1.5rem;
     }

.contact-item strong

{
	display: block; 
    margin-bottom: 0.5rem; 
  color: #333;
}

.contact-item p {
  color: #666;
  line-height: 1.6;
}

.contact-form {
     background: #f8f9fa;
   padding: 2rem;
   border-radius: 12px;


}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
   margin-bottom: 0.5rem;
   font-weight: 600;
  color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
   border-radius: 8px;
   font-size     :   1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066CC;
}

.submit-btn {
   background: #0066CC;
	color: white;
   padding: 1rem 2rem;
  border: none;
               border-radius: 8px;
   font-size    :     1.1rem;
    font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;
   width: 100%;
}

.submit-btn:hover {
    background: #0052A3;
  transform: translateY(-2px);
}

.main-footer {


   background: #1a1a1a;
 color: white;
	padding: 3rem 2rem 1rem;
     }

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 3fr;
   gap: 3rem;
  margin-bottom: 2rem;
	}

.footer-logo img {
            height: 60px;
	width: auto;
}

.footer-info {
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
   display: grid;
}

.footer-section h4 {
    margin-bottom: 1rem;
   color: #0066CC;
}

.footer-section p,
.footer-section a {
  color: #ccc; 
  text-decoration: none; 
   line-height: 1.6; 
    margin-bottom: 0.5rem; 
	display: block;
}  

.footer-section a:hover {

		color: white;
     }

.footer-bottom {
  text-align: center;
    padding-top: 2rem;
   border-top: 1px solid #333;
    color: #999;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-section h2,
    .about-text h2,
    .services-showcase h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}.page-header {

  margin-top: 80px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0066CC 0%, #004499 100%);
    color: white;
  text-align: center;

}

.header-content h1 {

	         font-size: 3rem;
	 font-weight: 700;
   margin-bottom: 1rem;


}

.header-content p {
   font-size:        1.3rem;
   opacity  :0.9;
    max-width: 600px;
   margin    : 0 auto;
}

.company-story {
   padding: 5rem 2rem;
   background: white;
}  

.story-content {
  display: grid;

	  grid-template-columns: 1fr 1fr;

	    gap: 3rem;

	  align-items: center;

	    max-width: 1200px;

	               margin: 0 auto;
}

.story-text h2 {
	    color   :#1a1a1a;
  margin-bottom: 2rem;
  font-size: 2.5rem;
	}

.story-text p {
                    margin-bottom: 1.5rem;
   line-height: 1.7;
   color: #666;
	font-size: 1.1rem;
}

.story-image img {
  width: 100%;
   height  :     auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);


}

.mission-section {
   padding:5rem 2rem;
    background: #f8f9fa;
}

.mission-section h2 {
	text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color    :        #1a1a1a;
}

.mission-grid {
	   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap     :    2rem;
       max-width: 1000px;
      margin: 0 auto; 
	


}

.mission-item {
   background: white;
   padding:      2.5rem;
   border-radius: 12px;
	 text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition : transform 0.3s ease;
}

.mission-item:hover {

	  transform: translateY(-5px);}

.mission-item h3 {

  font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #0066CC;}

.mission-item p {


	color: #666;
   line-height    :      1.7;
}

.team-section {
    padding :    5rem 2rem;
  background: white;
}

.team-section h2 {
   text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #1a1a1a;
}


.team-grid {


  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	    gap: 3rem;

	  max-width: 1200px;

	  margin: 0 auto;

}

.team-member {
      background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.member-info h3 {
   font-size: 1.5rem;
   margin-bottom: 0.5rem;
         color: #1a1a1a;
}

.role {
  color: #0066CC;
  font-weight: 600;
	display: block;
  margin-bottom:1rem;
	
}

.member-info p {
   color: #666;
	line-height: 1.7;
    text-align: left;
}

.expertise-section     {

	  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);


}

.expertise-section h2 {

  text-align: center; 
	    font-size: 2.5rem; 
	  margin-bottom: 3rem; 
	    color: #1a1a1a;
     }

.expertise-content {
   display: grid;
	 grid-template-columns: 1fr 1fr;
  gap:3rem;
   align-items: start;
   max-width: 1200px;
    margin: 0 auto;
}

.expertise-item {
  margin-bottom: 2rem;
}

.expertise-item h3 {
  font-size: 1.5rem; 
	         margin-bottom: 1rem; 
		 color: #0066CC;
}

.expertise-item ul {
    list-style: none;
    padding: 0;
}

.expertise-item li {
	  padding-left: 1.5rem;
    position: relative;
   color: #666;
    padding: 0.5rem 0;


}

.expertise-item li:before   {
  content: "✓";
               color: #0066CC;
    font-weight: bold;
   position: absolute;
  left: 0;
}

.expertise-image img {
    width: 100%;
   height: auto;
  border-radius: 12px;
}

.achievements-section {
  padding     :       5rem 2rem;
    background: #1a1a1a;
   color: white;
}

.achievements-section h2 {
	text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
	margin: 0 auto;
}

.achievement-card {
   text-align: center;
    padding: 2rem;
}

.achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: #0066CC;
  margin-bottom: 1rem;
}

.achievement-text h3 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
}

.achievement-text p {
  color:#ccc;
   line-height: 1.6;
}

.methodology-section {
    padding: 5rem 2rem; 
   background: white;
}

.methodology-content    {
    display: grid;
  grid-template-columns  :   1fr 1fr;
   gap: 3rem;
    align-items: center;
    max-width: 1200px;
        margin: 0 auto;
}



.methodology-text h2
{
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  color  :  #1a1a1a;

}

.methodology-text p {
    margin-bottom    :        2rem;
  line-height: 1.7;
	 color: #666;
    font-size: 1.1rem;
}

.methodology-steps {
   display: flex;
       flex-direction   :   column;
   gap: 1rem;

}

.step
{
   padding: 1rem;
  background:    #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0066CC;
}

.step strong  
  {
	font-size: 1.2rem;
    color: #0066CC;

}

.methodology-image img {
               width: 100%;
    height :    auto;
    border-radius :     12px;

}

.testimonials-section {
   padding: 5rem 2rem;
   background: #f8f9fa;
}

.testimonials-section h2  {
			text-align: center;
  font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.testimonial-card  {
    background: white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);


}

.testimonial-card blockquote {
    font-style: italic;
   margin-bottom   :  1.5rem;
   line-height: 1.7;
    color: #333;
    font-size  :     1.1rem;
}

.testimonial-card cite {
    color    :      #0066CC;
  font-weight: 600;
    font-style:   normal;
}

.thankyou-main {
	  margin-top: 80px;
  min-height: calc(100vh - 80px);
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
     }

.thankyou-container {
   max-width : 800px;
                    margin: 0 auto;
}

.thankyou-content {
  background: white;
    padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
   text-align: center;
} 

.thankyou-icon {

	  margin-bottom: 2rem; 
	

}

.checkmark-circle {
    width: 80px;
  height  :       80px;
               background: #0066CC;
 border-radius: 50%;
	display  :  flex;
   align-items: center;
    justify-content: center;
    margin    :0 auto;
          animation: scaleIn 0.5s ease-out;
} 

.checkmark  {
	   width: 30px;
   height : 20px;
  border: 3px solid white;
    border-top: none;
   border-right: none;
  transform: rotate(-45deg);
     animation:checkmarkDraw 0.5s ease-out 0.3s both;

	}@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

@keyframes checkmarkDraw {
    from { transform: rotate(-45deg) scale(0); }
    to { transform: rotate(-45deg) scale(1); }
}.thankyou-content h1 {
          font-size   :       2.5rem;
    margin-bottom:      1.5rem;
    color: #1a1a1a;
}

.thankyou-message {
    margin-bottom: 3rem;
}

.main-message		{
      font-size: 1.3rem;
  margin-bottom: 1rem;
  color   :       #333;
   font-weight: 600;
}

.thankyou-message p	{
    line-height: 1.7;
    color: #666;
	font-size: 1.1rem;
}


.next-steps {
   margin-bottom: 3rem;
  text-align  :        left;
}

.next-steps h2 {
    text-align: center;
   font-size   :     2rem;
    margin-bottom: 2rem;
   color: #1a1a1a;
}

.steps-grid {
  display: grid;
  gap :      1.5rem; 
	
}

.step-item {
  display :     flex;
   align-items: start;
   gap: 1rem;
   padding: 1.5rem;
    background: #f8f9fa;
  border-radius: 12px;
}

.step-number {
   background: #0066CC; 
   color: white; 
  width     :       40px; 
    height   :    40px; 
    border-radius: 50%; 
    display: flex; 
   align-items: center; 
      justify-content     :center; 
  font-weight: bold; 
   flex-shrink: 0;


}

.step-content h3 {
  margin-bottom: 0.5rem;
      color: #1a1a1a;
}

.step-content p {
  color: #666;
   line-height: 1.6; 

}

.contact-reminder {
   margin-bottom: 3rem;
  text-align: left;
}

.contact-reminder h3 {
  text-align: center;
    margin-bottom: 1.5rem;
   color: #1a1a1a;
}

.contact-details {
   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
		gap: 1rem; 
	     background: #f8f9fa; 
	  padding: 2rem; 
	  border-radius: 12px;
}

.contact-item {
   display: flex;
  flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
	color: #0066CC;


}

.contact-item span {
    color :       #666;
}

.additional-resources {
   margin-bottom  :    3rem;
        text-align: left;
}

.additional-resources h3 {
    margin-bottom: 2rem;

  text-align: center;

       color: #1a1a1a;
	}

.resources-grid {
   display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card	{


   background: #f8f9fa;
    padding: 1.5rem;
  border-radius: 12px;
  text-align: center;


}

.resource-card img {
  width     : 100%;
  height :     150px;
  object-fit    :   cover;
   border-radius: 8px;
   margin-bottom: 1rem;
	}

.resource-card h4 {
   margin-bottom: 0.5rem;
   color: #1a1a1a;
}

.resource-card p {
    color: #666;
   font-size: 0.9rem;
   line-height: 1.6;
}

.action-buttons {

	   display: flex;
 gap: 1rem;
       justify-content: center;
  flex-wrap: wrap;
	}

.btn-primary,
.btn-secondary {
   padding: 1rem 2rem; 
    text-decoration: none; 
   border-radius: 8px; 
   font-weight: 600; 
    transition: all 0.3s ease; 
        display :  inline-block;
}

.btn-primary {
   background: #0066CC;
   color: white;
}

.btn-primary:hover {
    background: #0052A3;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
    color: #0066CC;
    border: 2px solid #0066CC;
}

.btn-secondary:hover {
   background: #0066CC;
    color: white;
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .expertise-content,
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-number {
        font-size: 2.5rem;
    }
    
    .thankyou-content {
        padding: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .contact-details {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2rem;
    }
    
    .story-text h2,
    .mission-section h2,
    .team-section h2,
    .expertise-section h2,
    .achievements-section h2,
    .methodology-text h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .next-steps h2 {
        font-size: 1.5rem;
    }
}