* {
    margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
        color    :     #2c3e50;
    background: #ffffff;
}

.navigation-wrapper {
	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 rgba(52, 73, 94, 0.1);
}

.navigation-wrapper.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;
}

.brand-section .company-logo {
    height: 45px;
   width: auto; 

}

.menu-items {
   display: flex;
          gap: 2rem;
}

.nav-link {
  text-decoration: none;
    color:      #34495e;
	font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover

{
   color: #3498db;
}

.nav-link::after {
  content: '';
    position: absolute;
  width: 0;
    height: 2px;
    bottom    :        -5px;
  left: 0;
  background: linear-gradient(90deg, #3498db, #2980b9);
  transition: width 0.3s ease;

}

.nav-link:hover::after   {
    width: 100%;
}

.mobile-trigger
	{
	display: none;

  flex-direction: column;

	cursor: pointer;

    gap: 4px;
}

.burger-line {
   width: 25px;
    height: 3px;
  background: #34495e;
    transition     :  all 0.3s ease;
}

.mobile-trigger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-trigger.active .burger-line:nth-child(2) {
    opacity:  0;
}

.mobile-trigger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-navigation {
   display: none;
  flex-direction: column;
    background: white;
    padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}  

.mobile-navigation.active {
		display: flex;
}

.mobile-link {
   padding: 0.8rem 0;
    text-decoration: none;
    color: #34495e;
   border-bottom: 1px solid #ecf0f1;
}

.hero-section
	{
    margin-top   :        80px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 70vh;
    display   :     flex;
   align-items: center;
}

.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;
	margin-bottom: 1.5rem;
   line-height: 1.2;
  font-weight: 700;
}

.hero-description {
   font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height  :     1.6;
}

.cta-button {
    display: inline-block;
   padding: 1rem 2rem;
  background: linear-gradient(45deg, #f39c12, #e67e22);
   color   :    white;
   text-decoration: none;
  border-radius     :       50px;
   font-weight: 600;
   transition     :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.hero-visual    {
   display: flex;

	    justify-content: center;
}

.hero-image {


	 max-width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.services-overview {
          padding: 5rem 2rem;
      background: #f8f9fa;
}

.content-wrapper {

	   max-width: 1200px;
    margin: 0 auto;
     }

.services-overview h2 {
      text-align    :   center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;

}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
  background: white;
    padding: 2rem;
  border-radius  : 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
         transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-img{
	width: 100%; 
       max-width: 250px; 
    height: 180px; 
  object-fit:       cover; 
    border-radius: 10px; 
   margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
   margin-bottom :        1rem;
                    color: #34495e;
}

.service-card p {
   color: #7f8c8d;
    line-height: 1.6;}

.expertise-showcase {
   	 padding: 5rem 2rem;
        background: white;
	} 

.expertise-content {
  display: grid; 
    grid-template-columns: 1fr 1fr; 
   gap: 3rem; 
  align-items     :  center;
}

.expertise-text h2
{
    font-size: 2.3rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
	
}

.expertise-text p {
  margin-bottom: 1.5rem;
    color: #5d6d7e;
  line-height: 1.7;
    font-size: 1.1rem;
}

.expertise-image {
    width:        100%;
    height: auto;
	border-radius   :      15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p 
 {
    font-size    :     1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
   max-width: 600px;
   margin-left: auto;
  margin-right: auto;
}

.cta-btn-secondary {
  display: inline-block;
   padding: 1rem 2.5rem;
   background: transparent;
   color: white;
               text-decoration: none;
   border: 2px solid white;
	border-radius: 50px;
	font-weight: 600;
   transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
  background: white;

	color: #2c3e50;

  transform: translateY(-2px);
}

.contact-section {
    padding: 5rem 2rem;
  background:      #ecf0f1;
}



.contact-section h2 {
        text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
     }

.contact-form-wrapper {
	max-width: 600px;
    margin: 0 auto;

}

.contact-form {
  background: white;
  padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);

}

.form-group {
   margin-bottom    :  1.5rem; 
	
}

.form-group label {
    display: block;
	margin-bottom: 0.5rem;
  color: #34495e;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
	padding: 0.8rem;
          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   :       #3498db;
}

.submit-button {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
    border: none;
   border-radius:  8px;
   font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.footer-section {
   background: #2c3e50;
   color: white;
          padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
   height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  color: #ecf0f1;
   margin-bottom: 1rem;
}

.footer-column ul {
      list-style: none;
}

.footer-column li {
     margin-bottom: 0.5rem;
}

.footer-column a   {
    color :        #bdc3c7;
  text-decoration: none;
   transition: color 0.3s ease; 
	
}

.footer-column a:hover {
  color: #3498db;
}

.footer-column p {
   color: #bdc3c7;
  line-height: 1.6;
}

.footer-bottom	{
    border-top: 1px solid #34495e;
  padding-top: 1rem;
   text-align: center;
   color: #95a5a6;
}@media (max-width: 768px) {
    .menu-items {
        display: none;
    }
    
    .mobile-trigger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 3rem 1rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}.nav-link.active {
  color: #3498db;
}

.nav-link.active::after {
               width     :     100%;


}

.page-header {
  margin-top: 80px;
    padding:4rem 2rem;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
  text-align     :  center;
}

.header-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.header-subtitle {
    font-size: 1.3rem;
  max-width: 800px;
   margin: 0 auto;
    opacity: 0.9;
  line-height: 1.6;
}

.company-story {
  padding: 5rem 2rem;
   background  : white;
	
}

.story-layout {
   display    :     grid;
   grid-template-columns: 1fr 1fr;
   gap  :     3rem;
   align-items: center;
}

.story-text h2 {
    font-size   : 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.story-text p		{
  margin-bottom: 1.5rem;
     color: #5d6d7e;
    line-height: 1.7;
   font-size: 1.1rem;
}

.story-image {
  width: 100%;
   height: auto;
    border-radius  :      15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}



.methodology-section {
   padding: 5rem 2rem;
   background: #f8f9fa;
}


.methodology-section h2 {


   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2rem;
}

.method-card {
   background: white;
    padding     :      2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  position: relative;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.method-number {
  position: absolute;
   top: -15px;
   left: 2rem;
  background: linear-gradient(45deg, #3498db, #2980b9);
    color    :       white;
    width: 40px;
  height: 40px;
    border-radius: 50%;
     display: flex;
   align-items: center;
  justify-content: center;
    font-weight   :       bold;
  font-size: 1.1rem;
}

.method-card h3 {
    margin-top: 1rem;
    margin-bottom: 1rem;
  color: #34495e;
        font-size: 1.4rem;
}

.method-card p {
     color: #7f8c8d;
  line-height: 1.6;
}

.expertise-areas {
    padding: 5rem 2rem;
  background: white;
}

.expertise-layout {
	display: grid;
    grid-template-columns: 1fr 1fr;
                    gap: 3rem;
   align-items: center;
}

.expertise-img {


	 width: 100%;
    height: auto;
        border-radius  :   15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
     }

.expertise-content h2 {

	  font-size:    2.3rem;
    margin-bottom: 2rem;
  color: #2c3e50;


}

.expertise-list {
    display: flex;
	flex-direction: column;
    gap: 1.5rem;
	}

.expertise-item {
    padding    :   1.5rem;
   background  :      #f8f9fa;
	border-radius: 10px;
 border-left: 4px solid #3498db;
}

.expertise-item h4
{
	    margin-bottom  :  0.5rem;
                    color: #34495e;
    font-size     :      1.2rem;
	}

.expertise-item p {
    color: #7f8c8d;
  line-height: 1.5;
	
}

.values-section {
      padding: 5rem 2rem;
    background    :    #ecf0f1;
}

.values-section h2 {
  text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	    gap: 2rem;
}

.value-card {
     background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
   transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.value-card h3 {

   font-size     : 1.5rem; 
   margin-bottom: 1rem; 
               color: #34495e;}

.value-card p {
    color: #7f8c8d;
  line-height: 1.6;


}

.stats-showcase {
	   padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :     white;}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
	   text-align: center;
	 padding: 1.5rem;
}

.stat-number {
   font-size: 3rem;

  font-weight: bold;

	 margin-bottom: 0.5rem;

  background: linear-gradient(45deg, #f39c12, #e67e22);

       background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
    opacity: 0.9;
}

.thankyou-main {
   margin-top: 80px;
  min-height: calc(100vh - 80px);
   padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-container    {
                    max-width: 800px;
    margin  :      0 auto;
	}

.success-content {

   background: white;
    padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
	margin-bottom: 2rem;
}

.success-icon		{


  margin-bottom: 2rem;
     }

.checkmark-circle {
    width: 80px;
    height: 80px;
               border-radius: 50%;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
    margin: 0 auto;
   display    :flex;
   align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease-out;
}



.checkmark {
   width: 30px;
    height :    15px;
  border     :       3px solid white;
   border-top: none;
    border-right: none;
  transform: rotate(-45deg); 

}
@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.success-content h1
{
  font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom     :        1.5rem;
}

.success-message {
    font-size: 1.2rem;
   color: #5d6d7e;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.next-steps h2
{
  font-size: 2rem;
  color: #34495e;
   margin-bottom: 2rem;
}

.steps-timeline {
  display:       flex;
    flex-direction:    column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.timeline-item {
   display: flex;
   align-items: flex-start;
  gap: 1.5rem;
  text-align: left;
}

.timeline-number {
    width: 40px;
    height: 40px;
  background: linear-gradient(45deg, #3498db, #2980b9);
   color: white;
	 border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
    font-weight: bold;
   flex-shrink: 0;
}

.timeline-content h3 {
	margin-bottom: 0.5rem;
   color     :      #34495e;
}

.timeline-content p {
  color: #7f8c8d;
 line-height: 1.5;
}

.additional-info {
   margin-bottom: 3rem;
}

.info-cards {
	  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	    gap: 1.5rem;
     }

.info-card {
    background: #f8f9fa;
      padding: 1.5rem;
   border-radius: 10px;
    text-align :     left;
}

.info-card h3 {
	 margin-bottom: 0.5rem;
	color: #34495e;
}

.info-card p {
    color: #7f8c8d;
   line-height: 1.5;
}

.action-buttons {
  display: flex;
  gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   -webkit-transition: all 0.3s ease;
	padding: 1rem 2rem;
	 text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
	transition:     all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.primary-btn {
  background: linear-gradient(45deg, #3498db, #2980b9);
  color: white;
}  

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
	}

.secondary-btn {
   background:       transparent;
  color: #3498db;
  border: 2px solid #3498db;
}

.secondary-btn:hover {
   background: #3498db;
   color: white;
}



.contact-reminder {
    background: white;
   padding: 2rem;
   border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.contact-reminder h3  {
	margin-bottom: 1rem;
  color: #34495e;
}

.contact-reminder p     {
   color: #7f8c8d; 
	   margin-bottom: 1rem;
}

.contact-details p  {
    color: #2c3e50;
    font-weight: 500;
    margin: 0.5rem 0;
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-subtitle {
        font-size: 1.1rem;
    }
    
    .story-layout,
    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .success-content {
        padding: 2rem;
    }
    
    .success-content h1 {
        font-size: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .thankyou-main {
        padding: 2rem 1rem;
    }
    
    .success-content {
        padding: 1.5rem;
    }
}.pol {
    margin-top: 5%;
}