* {
    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: #ffffff;
	
}

.site-navigation{
    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 #f0f0f0;
}

.site-navigation.scrolled


{
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 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 2rem;


}

.brand-logo .logo-img {
    height: 45px;
  width: auto;

}

.nav-links {
  display: flex;
  list-style: none;
    gap: 2rem;

}

.nav-links a {

	   color: #333;
   text-decoration: none;
         font-weight: 500;
   -o-transition: color 0.3s ease;
   transition: color 0.3s ease;


}

.nav-links a:hover


{
  color: #2563eb;
}

.burger-menu {
   display    : none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
                    height: 3px;
                    background: #333;
   transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
    position: absolute;
   top: 100%;
  left: 0;
   width: 100%;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-direction: column;
   padding: 1rem 0;
}

.mobile-menu a {
	padding: 1rem 2rem;
   text-decoration   :none;
  color  :       #333;
   border-bottom: 1px solid #f0f0f0;
} 

.mobile-menu a:hover {
      background   :       #f8f9fa;
    color: #2563eb;


}

.hero-section {
    display: flex;
       align-items    : center;
    min-height    : 100vh;
  padding: 120px 2rem 60px;
  max-width: 1200px;
  margin: 0 auto;
    gap: 4rem;
}

.hero-content


{
   flex: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
	    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 2.5rem;
   max-width: 500px;


}

.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: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);

}

.cta-secondary {
    background: transparent;
   color    : #2563eb;
  border: 2px solid #2563eb;
}

.cta-secondary:hover {
	 background: #2563eb;
    color: white;
}  

.hero-image {
  flex: 1;
}

.hero-image img  
  {
	 width: 100%;
    height: auto;
   border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.services-area {
	 padding: 100px 2rem;
    background: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}


.services-area h2 {
    text-align     :    center;
    font-size: 2.5rem;
   color: #1e293b;
  margin-bottom: 3rem;
    font-weight: 700;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
 margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 12px;
    padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
   height: 200px;
    object-fit: cover;
   border-radius  :8px;
					margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #1e293b;
   font-size: 1.5rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
          color: #64748b;
   line-height: 1.7;
}

.cta-section {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

.cta-section .container {
	 display: flex;
   align-items: center;
   gap: 4rem;
}


.cta-content {
   flex: 1;
}

.cta-content h2 {
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;

}

.cta-content p


{
  font-size: 1.125rem;
               margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-button-large {
    display: inline-block;

	   padding: 1.25rem 2.5rem;

	  background: linear-gradient(135deg, #f59e0b, #d97706);

	  color: white;

	   text-decoration: none;

	   border-radius: 10px;

	   font-weight: 600;

	 font-size   :      1.125rem;

	     transition: all 0.3s ease;

	  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.cta-button-large:hover {

  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);


}

.cta-image
	{
  flex: 1;
}

.cta-image img {
   width: 100%;
    border-radius: 12px;
}

.about-preview {
  padding: 100px 2rem;
}

.about-content h2 {
  font-size: 2.5rem;
	color: #1e293b;
  margin-bottom: 2rem;
  font-weight: 700;
}

.about-content p {
	               font-size: 1.125rem;
    color: #64748b;
   margin-bottom: 2rem;
  line-height: 1.7;

}

.benefits-list {
    list-style: none;
   margin-top  :    2rem;
}

.benefits-list li {
   padding: 0.75rem 0;
   color    :     #64748b;
   position: relative;
    padding-left: 2rem;
}

.benefits-list li:before


{
  content: "✓";
  position: absolute;
    left: 0;
    color: #10b981;
   font-weight: bold;
  font-size    :    1.25rem;
}

.contact-section {
         padding: 100px 2rem;
          background: #f8fafc;
}


.contact-section h2 {
    text-align: center;
    font-size:    2.5rem;
  color: #1e293b;
	margin-bottom: 3rem;
    font-weight: 700;
}

.contact-wrapper {
    display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 4rem;
   max-width: 1000px;
       margin: 0 auto;
}

.contact-form {
    background: white;
   padding: 2.5rem;
  border-radius   :        12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
	
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 1rem;
  border: 2px solid #e2e8f0;
   border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
       border-color: #2563eb;
}

.submit-btn {
    width: 100%;
   padding: 1.25rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.125rem;
    font-weight: 600;
          cursor: pointer;
    transition     : all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.contact-info {
 background: white;
   padding: 2.5rem;
      border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height    :fit-content;
}

.contact-info h3 {
    color: #1e293b;
	   margin-bottom    :   2rem;
		font-size: 1.5rem;
	  font-weight: 600;
}

.contact-item {
   margin-bottom   :2rem;
}

.contact-item strong {


  color: #2563eb;
    display: block;
   margin-bottom: 0.5rem;

}

.main-footer {

    background :     #1e293b;
    color: white;
    padding: 60px 2rem 20px;
}

.footer-content {
    max-width: 1200px;
         margin  :   0 auto;
    display: grid;
   grid-template-columns: 1fr 3fr;
  gap: 3rem;
}

.footer-logo {
   height: 50px;
  filter: brightness(0) invert(1);
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-section h4 {
   font-weight: 600;
  font-size :      1.125rem;
   margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
	color: #cbd5e1;
          text-decoration: none;
  transition    :color 0.3s ease;
}

.footer-section a:hover {
	   color: white;


}

.footer-bottom {

	text-align: center;
   margin-top: 2rem;
   padding-top: 2rem;
   border-top: 1px solid #374151;
   color: #94a3b8;
} @media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 100px 1rem 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .nav-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-area h2,
    .contact-section h2,
    .about-content h2 {
        font-size: 2rem;
    }
    
    .services-area,
    .about-preview,
    .contact-section {
        padding: 60px 1rem;
    }
}.about-hero {
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.about-hero .container {
      max-width: 1200px;
   margin: 0 auto;
          display: grid;
   grid-template-columns: 1fr 1fr;
    gap   :       4rem;
     align-items: center;
}

.about-hero-content h1 {
   font-size: 3rem;
       color: #1e293b;
       margin-bottom   :   1.5rem;
     font-weight: 700;
}

.about-hero-content p {
  font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
}

.about-hero-image img {
    width: 100%; 
    border-radius: 12px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.company-story {
  padding: 100px 2rem;
	
}

.story-content h2 {
    font-size: 2.5rem;
  color: #1e293b;
    margin-bottom: 2rem;
     font-weight: 700;
    text-align: center;
}

.story-content p {
	 font-size: 1.125rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
    max-width: 800px;
  margin-left: auto;
   margin-right: auto;
}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
	 max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.achievement-item {
  text-align: center;
   padding: 2rem;
   background: white;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); 

}

.achievement-item h3 {

	   font-size: 2.5rem;
  color: #2563eb;
    font-weight: 700;
      margin-bottom: 0.5rem;
}

.achievement-item p {
   color: #64748b;
    font-weight: 500;
}

.our-approach {
   padding :100px 2rem;
   background: #f8fafc;
}

.our-approach h2 {
  font-size: 2.5rem;
  color   :       #1e293b;
    text-align: center;
	margin-bottom    :  3rem;
   font-weight :    700;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap :        2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.approach-card {
  background: white;
    border-radius: 12px;
    padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.approach-card:hover
	{
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
}

.approach-card img {
  width: 100%;
    height: 200px;
  object-fit: cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;
}

.approach-card h3 {
  font-size: 1.5rem;
    color: #1e293b;
  margin-bottom: 1rem;
    font-weight: 600;
}

.approach-card p {
    color: #64748b;
  line-height: 1.7;
}

.expertise-areas {
	 padding: 100px 2rem;
}

.expertise-areas h2 {
  font-size  :2.5rem;
  color     :   #1e293b;
    margin-bottom: 3rem;
  font-weight: 700;
    text-align: center;
}

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap  :  4rem;
   align-items: center;
  max-width     :      1200px;
  margin: 0 auto;
}


.expertise-text h3 {
   margin-bottom:       1.5rem;
    font-size: 1.75rem;
   color: #1e293b;
   font-weight: 600;
}

.expertise-list {
    list-style: none;

	    padding   :       0;
}

.expertise-list li {
  padding: 0.75rem 0;
    color: #64748b;
  position: relative;
   padding-left: 2rem;
    line-height: 1.6;
}

.expertise-list li:before {
  content: "→";
   position: absolute;
  left: 0;
    color: #2563eb;
   font-weight: bold;
    font-size: 1.25rem;
}

.expertise-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.values-mission {
  padding : 100px 2rem;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
}

.values-grid {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width  :    1200px;
		margin: 0 auto;
     }

.mission-section h2,
.values-section h2 {
       font-size   :   2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mission-section p {
	font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
}

.values-list {

  list-style: none;
    padding: 0;
	}

.values-list li {
    margin-bottom: 1.5rem;
  line-height: 1.6;
               opacity: 0.9;
}

.values-list strong {
   color: #fbbf24;
    font-weight: 600;
}

.thankyou-hero {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    text-align: center;
}

.thankyou-content {
  max-width: 800px;
    margin: 0 auto;
}

.success-indicator {


   margin-bottom: 2rem;
     }

.checkmark-circle {
	 width: 80px;
 height: 80px;
  border-radius: 50%;
    background: #10b981;
    display: inline-flex;
   align-items: center;
    justify-content: center;
    margin: 0 auto;
  animation: scaleIn 0.6s ease-out;
}

.checkmark {
	    width: 30px;
   height: 15px;
   border: 3px solid white;
                    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
   animation: checkmark 0.8s ease-out 0.3s both;

}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes checkmark {
    from {
        transform: rotate(-45deg) scale(0);
    }
    to {
        transform: rotate(-45deg) scale(1);
    }
}.thankyou-content h1 {
     font-size: 3rem;
    color: #1e293b;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.main-message		{


  font-size: 1.25rem;
   color: #64748b;
    line-height  :1.7;
  margin-bottom: 3rem;}

.next-steps   {
   margin: 4rem 0;
    text-align: left;
}  

.next-steps h2 {
  font-size: 2rem;
   color: #1e293b;
   margin-bottom: 2rem;
				 font-weight: 600;
   text-align: center;
}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    margin-top: 2rem;
}

.step-item {
   background: white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: center; 

}

.step-number {

   width  :        40px;
    height: 40px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
  border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
  font-weight: 700;
   margin: 0 auto 1rem;

} 

.step-item h3 {
  font-size: 1.25rem;
   color: #1e293b;
    margin-bottom: 1rem;
  font-weight: 600;
}

.step-item p		{

        color: #64748b;
  line-height: 1.6;
}

.additional-info {
    background:       white;
                    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin: 3rem 0;
   text-align: left;
} 

.additional-info h2 {
    font-size: 1.75rem;
   color: #1e293b;
    margin-bottom: 1rem;
   font-weight:        600;
}


.additional-info p {
    color: #64748b;

   line-height: 1.7;
}

.action-buttons
{
  display: flex;
   gap: 1rem;
    justify-content: center;
  flex-wrap: wrap;
  margin-top   :  3rem;
}

.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: linear-gradient(135deg, #2563eb, #1d4ed8);
   color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary
{
    background: transparent;
  color: #2563eb;
    border: 2px solid #2563eb;
}

.btn-secondary:hover {
  background: #2563eb;
   color: white;
}

.contact-reminder {
                    padding: 80px 2rem;
	background: #f8fafc;
}

.reminder-content {
    max-width: 600px;
  margin: 0 auto;
   text-align: center;
}

.reminder-content h2 {
    font-size: 2rem;
  color  :  #1e293b;
  margin-bottom: 1rem;
	font-weight: 600;
}

.reminder-content p  
  {
   color: #64748b;
    margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
    background: white;
    padding   :    2rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: left;
}

.contact-item {
    display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #f1f5f9;
			padding: 0.75rem 0;
    margin-bottom: 1rem;
}

.contact-item:last-child
	{
      border-bottom: none;
    margin-bottom: 0;
} 

.contact-item strong {
    color: #2563eb;
   font-weight   :  600;
}

.contact-item span {
   color: #64748b;
}@media (max-width: 768px) {
    .about-hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item {
        flex-direction: column;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .company-story,
    .our-approach,
    .expertise-areas,
    .values-mission,
    .thankyou-hero,
    .contact-reminder {
        padding: 60px 1rem;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark {
        width: 20px;
        height: 10px;
    }
}