* {
  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-color: #ffffff;
}

img {
   max-width: 100%;
        height: auto;
   display: block;
}

a {
    text-decoration: none;
   color  :   inherit;
    transition :all 0.3s ease;
}

.main-header {
   position: fixed;
   top: 0;
    left: 0;
   width: 100%;
   z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.navigation-wrap {
  padding: 0 2rem;
}

.nav-container		{
    max-width: 1200px;
      margin: 0 auto;
    display: flex;
    justify-content: space-between;
  align-items: center;
	padding: 1rem 0;
}

.company-logo {
   height: 45px;
   width: auto;


}

.menu-items {
   display: flex;
    gap    :       2.5rem;
  align-items: center;
}

.nav-link {
     font-weight: 500;
         color: #333;
   position: relative;
  padding: 0.5rem 0;
}

.nav-link:hover {
	color: #2563eb;
}

.nav-link.active::after	{
  content: '';
    position: absolute;
  bottom: -5px;
   left: 0;
   width: 100%;
	height: 2px;
   background: #2563eb;
}

.burger-btn {
	  display: none;
	flex-direction: column;
  background: none;
	 border: none;
 cursor: pointer;
   padding: 0.5rem;
    gap: 4px;
	}

.burger-line {
    width    : 25px;
  height: 3px;
    background-color: #333;
	transition: 0.3s;
}

.burger-open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-open .burger-line:nth-child(2) {
   opacity :     0;
}

.burger-open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-area {
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-content {
    max-width    :      1200px;
  margin    :        0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.main-heading {
  font-size  :3.2rem;
  font-weight: 700;
	line-height: 1.2;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.hero-description {
   font-size: 1.2rem;
   color: #64748b;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.primary-btn, .secondary-btn {
  padding: 1rem 2rem;
    border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
    cursor: pointer;
   border: 2px solid transparent;
  transition: all 0.3s ease;
}

.primary-btn

{
    background: #2563eb;
    color: white;
}

.primary-btn:hover {
    background: #1d4ed8;
  transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
         color: #2563eb;
    border-color     :#2563eb;
}

.secondary-btn:hover {
  background: #2563eb;

   color  :    white;
}

.hero-image {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.services-overview {
    padding: 100px 2rem;
     background: white;
}

.section-container


{
   max-width: 1200px;
    margin  :        0 auto;
} 

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom     :4rem;
    color: #1e293b;
    font-weight: 700;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
   		background  :#f8fafc;
   border-radius: 12px;
	padding: 2rem;
  transition : all 0.3s ease;
    border: 1px solid #e2e8f0;}


.service-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-image {
   border-radius: 8px;
  margin-bottom: 1.5rem;
  width: 100%;
   height :       200px;
   object-fit: cover;
	
}

.service-title {
   font-size: 1.5rem;
   color: #1e293b;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-desc {
  color: #64748b;
    line-height: 1.6;
}

.expertise-section {
  padding: 100px 2rem;
  background  :#f1f5f9;
}

.expertise-layout


{
	display: grid;
   grid-template-columns: 1fr 1fr;
        gap: 4rem;
   align-items:    center;
}

.expertise-text  {
    font-size: 1.1rem;
    color: #475569;
   margin-bottom: 2rem;
    line-height    :        1.7;
}

.benefits-list {
  display: flex;
  flex-direction: column;
	gap: 1.5rem;
}

.benefit-item  {
   padding: 1.5rem;
	 background: white;
   border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-title {
    font-size: 1.2rem;
  color: #1e293b;
    margin-bottom: 0.5rem;
  font-weight: 600;
}  

.benefit-text {
   color: #64748b;
}

.expertise-image {
    border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section {
    padding: 80px 2rem;

	  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

	               color: white;

	  text-align: center;
}  

.cta-container {
   max-width: 800px;
  margin: 0 auto;


}

.cta-heading {
  font-size   :        2.5rem;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-description {
   font-size: 1.2rem;
   margin-bottom: 2.5rem;
   opacity: 0.9;
   line-height: 1.6;
}

.cta-button {
  background: white;
               color: #2563eb;
   padding: 1.2rem 2.5rem;
	border-radius     :  8px;
    font-weight: 600;
  font-size: 1.1rem;
        display: inline-block;
  transition: all 0.3s ease;
	
	}

.cta-button:hover {


  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
         padding   :     100px 2rem;
   background: white;
}

.contact-layout
{
   gap: 4rem;
          margin-top: 3rem;
  display: grid;
    grid-template-columns   :      2fr 1fr;
}

.contact-form {
  background: #f8fafc;

	  padding: 2.5rem;

	    border-radius: 12px;

	   border  :  1px solid #e2e8f0;
}

.form-row
	{
  grid-template-columns: 1fr 1fr;
   display: grid;
   margin-bottom   : 1.5rem;
    gap: 1.5rem;
}

.input-group     {
    display: flex;
	flex-direction: column;
  gap: 0.5rem;
}

.form-label {
   color:     #374151;
    font-weight: 600;
}

.form-input, .form-select, .form-textarea{
   padding: 0.8rem;
   border     : 2px solid #d1d5db;
   border-radius   : 6px;
   font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus
	{
    outline     :  none;
   border-color: #2563eb;
}

.form-submit-btn		{
 background: #2563eb;
  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%;
}

.form-submit-btn:hover {

   background: #1d4ed8;
  transform: translateY(-1px);


}

.contact-info {
    background: #1e293b;
    color    :    white;
   padding    :2.5rem;
   border-radius :     12px;
	 height     :fit-content;
}

.info-title {
          font-size: 1.5rem;
  margin-bottom: 2rem;
   font-weight: 600;
}

.contact-item {


   margin-bottom: 1.5rem;
    line-height: 1.6;


}

.site-footer    {
    background: #1e293b;
   color: white;
    padding: 60px 2rem 30px;
}

.footer-container {
   max-width: 1200px;
    margin: 0 auto;

}

.footer-sections {
       display: grid;
          grid-template-columns: 2fr 1fr 1fr 1fr;
   gap: 3rem;
  margin-bottom: 3rem;
}



.footer-logo {
   height   :        40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
     color: #94a3b8;
  line-height: 1.6;
}

.footer-heading {
   margin-bottom: 1.5rem;
    font-weight: 600;
  font-size: 1.2rem;
}

.footer-menu {
   list-style: none;
    display: flex;
  flex-direction: column;
   gap: 0.8rem;
}

.footer-link {
    color: #94a3b8;
   transition: color 0.3s;
}

.footer-link:hover {
    color: white;
}

.footer-contact-item {
   color: #94a3b8;
   margin-bottom: 0.8rem;
}

.footer-bottom {
  padding-top     :     2rem;
    border-top: 1px solid #374151;
   text-align: center;}

.copyright-text {

	  color: #94a3b8;}@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .menu-items {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-items.mobile-active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .navigation-wrap {
        padding: 0 1rem;
    }
    
    .hero-area {
        padding: 100px 1rem 60px;
    }
    
    .services-overview, .expertise-section, .contact-section {
        padding: 60px 1rem;
    }
    
    .cta-section {
        padding: 60px 1rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}.about-hero {
   padding: 120px 2rem 80px;
  background: linear-gradient(125deg, #f1f5f9 0%, #e2e8f0 100%);
}

.about-hero-content  {
          max-width    :  1200px;
  margin: 0 auto;
          display: grid;
   grid-template-columns:        1.2fr 1fr;
   gap: 3.5rem;
  align-items: center;
}

.about-main-title {
    font-size  : 3rem;
   color     :  #1e293b;
  margin-bottom: 1.8rem;
   font-weight     :  700;
    line-height: 1.1;
}

.about-intro-text  
  {
		font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
}

.about-hero-img {

  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.company-story {
    padding: 90px 2rem;
    background: white;
}

.story-container
{
  max-width: 900px;
    margin: 0 auto;
	 text-align: center;
}

.story-heading {
	font-size: 2.5rem;
    color: #1e293b;
   margin-bottom: 3rem;
    font-weight: 600;
}

.story-paragraph {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 2rem;
  line-height: 1.8;
    text-align: left;
}

.methodology-section {
    padding: 90px 2rem;
    background: #f8fafc;
}

.method-container {
       max-width: 1200px;
  margin: 0 auto;
}

.method-layout {

		 display: grid;
	grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
    align-items   :center;}

.method-image {
	   border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);

}

.method-title  
  {
   font-size: 2.3rem;
    color     : #1e293b;
   margin-bottom: 1.5rem;
    font-weight     :       600;
}

.method-description {
    color: #475569;
    font-size     :       1.1rem;
  line-height  :      1.7;
   margin-bottom: 2.5rem;} 

.approach-elements {
  display: flex;
               flex-direction: column;
    gap: 1.5rem;
}

.approach-item {


   background: white;
  padding: 1.8rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #2563eb;


}

.approach-name {
   font-size: 1.2rem;
  color: #1e293b;
          margin-bottom: 0.8rem;
    font-weight: 600;
}

.approach-desc  {
	color: #64748b;
   line-height: 1.6;
}

.expertise-areas {
	padding: 90px 2rem;
   background: white;
}

.expertise-wrapper {
  max-width: 1200px;
    margin: 0 auto;
}

.expertise-main-title {
  font-size: 2.6rem;
    text-align:  center;
  color: #1e293b;
   margin-bottom:  3.5rem;
    font-weight: 700;
}

.expertise-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 2.5rem;
}

.expertise-card {
   background: #f8fafc;
 border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition  :      all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.expertise-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.expertise-card-content {
    padding: 2rem;
}

.expertise-card-title {
   font-size: 1.4rem;
  color: #1e293b;
   margin-bottom: 1rem;
    font-weight     :       600;
}  

.expertise-card-text {

  color: #475569;
  line-height: 1.6;

}

.values-section {
  padding: 90px 2rem;
   background    :    #f1f5f9;
}

.values-container {
   max-width: 1200px;
	margin: 0 auto;
}

.values-heading {
	 font-size: 2.5rem;
  text-align: center;
  color: #1e293b;
  margin-bottom: 3rem;
   font-weight: 600;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;


}

.value-block {
  background: white;
    padding: 2.2rem;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.value-block:hover {
  transform: translateY(-3px);
}

.value-title  {
   font-size: 1.3rem;
               color: #2563eb;
    margin-bottom: 1rem;
  font-weight: 600;
}

.value-description  {

   color: #475569;
    line-height: 1.6;

}

.contact-cta {
   padding: 80px 2rem; 
	  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%); 
	   text-align: center; 
	    color: white;
}

.contact-cta-content {
     max-width: 800px;
    margin  :     0 auto;
     }

.contact-cta-title {
  font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-cta-text  {
   font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
   line-height: 1.6;
	}

.contact-cta-btn {
  background   :  white;
  color: #2563eb;
   padding: 1.2rem 2.5rem;
   border-radius: 8px;
   font-weight: 600;
  font-size: 1.1rem;
    display :        inline-block;
   transition    :       all 0.3s ease;
}

.contact-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


.thankyou-main {

  padding: 120px 2rem 60px;
	  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
	   min-height: 60vh;
}

.thankyou-container {
	max-width: 1200px;
       margin: 0 auto;
 display :    grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
   align-items: start;
}

.success-icon {
   text-align: center;
    margin-bottom: 2rem;
}

.checkmark-wrapper {
  display: inline-block;
}

.checkmark-circle {
   -webkit-animation: bounce 0.6s ease-in-out;
 width    : 80px;
   height: 80px;
 background: #10b981;
    border-radius: 50%;
   -moz-animation: bounce 0.6s ease-in-out;
   display:  flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: bounce 0.6s ease-in-out;
}@keyframes bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}.checkmark


{
     width: 25px;
    height: 15px;
    border-left :   4px solid white;
  border-bottom  :  4px solid white;
  transform: rotate(-45deg);


}

.thankyou-title {
   font-size: 2.8rem;
   color: #1e293b;
  margin-bottom: 1.5rem;
    font-weight: 700;
 text-align: center;
}

.thankyou-message {
    font-size: 1.2rem;
  color :  #475569;
  line-height: 1.7;
	 margin-bottom: 3rem;
    text-align   :      center;
}

.next-steps {
	margin-bottom: 3rem;
}

.steps-title {
  font-size :2rem;
  color: #1e293b;
   margin-bottom: 2rem;
  font-weight: 600;
    text-align: center;
}

.steps-list {
    display: flex;
   flex-direction: column;
               gap: 1.5rem;
}

.step-item {
    display: flex;
      gap: 1.5rem;
	align-items    :     flex-start;
   background: white;
  padding: 1.8rem;
  border-radius     :        12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    display: flex;
    height  :     40px;
   background: #2563eb;
   font-weight: 600;
               border-radius: 50%;
     align-items: center;
    width: 40px;
	flex-shrink: 0;
  justify-content   :     center;
    color: white;}

.step-content 
 {
   flex: 1;
}

.step-title {
       font-size: 1.2rem;
  color: #1e293b;
    margin-bottom: 0.5rem;
  font-weight: 600;

}

.step-desc {
  color: #64748b;
    line-height   :    1.6;
}

.contact-reminder     {
    -webkit-border-radius: 12px;
          -moz-border-radius: 12px;
    background    :       #fef3c7;
	padding: 2rem;
   border-radius: 12px;
  text-align: center;
	margin-bottom  :       3rem;
   border-left: 4px solid #f59e0b;
}

.reminder-title {

	    font-size: 1.3rem;
 color:#92400e;
   margin-bottom     :      0.8rem;
    font-weight: 600;
	


}

.reminder-text {
      color     :    #a16207;
   margin-bottom: 1rem;
}

.urgent-contact {
    margin-top: 1rem;
} 

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #92400e;
     margin-bottom: 0.5rem;
}

.availability {
  color: #a16207;
   font-size: 0.95rem;}

.action-buttons     {
	display: flex;
   gap   :  1.5rem;
   justify-content: center;
   flex-wrap   :       wrap;
}

.primary-return-btn, .secondary-return-btn {

	padding: 1rem 2rem;
    border-radius: 8px;
  font-weight: 600;
    font-size: 1rem;
   transition: all 0.3s ease;
	text-align: center;
	}

.primary-return-btn {
    background: #2563eb;
    color: white;
}  

.primary-return-btn:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
}

.secondary-return-btn {
   background: transparent;
      color: #2563eb;
   border: 2px solid #2563eb;
}

.secondary-return-btn:hover {
   background: #2563eb;
    color: white;
}

.thankyou-image {
	 border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);

}

.additional-resources	{
   padding: 80px 2rem;
	background: white;
}

.resources-container {
   max-width: 1200px;
   margin: 0 auto;
}

.resources-title{
	font-size: 2.3rem;
   text-align: center;
  color   :       #1e293b;
   margin-bottom    :     3rem;
  font-weight: 600;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.resource-card {
   background: #f8fafc;
    border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-image {
    width: 100%;
   height: 180px;
         object-fit: cover;
}

.resource-title {
  font-size :       1.3rem;
   color: #1e293b;
   margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.resource-text {
  color:  #475569;
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .about-main-title {
        font-size: 2.2rem;
    }
    
    .method-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-return-btn, .secondary-return-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero, .company-story, .methodology-section, .expertise-areas, .values-section {
        padding: 60px 1rem;
    }
    
    .contact-cta, .thankyou-main, .additional-resources {
        padding: 60px 1rem;
    }
    
    .about-main-title {
        font-size: 1.9rem;
    }
    
    .thankyou-title {
        font-size: 1.9rem;
    }
    
    .story-heading, .method-title, .expertise-main-title, .values-heading {
        font-size: 2rem;
    }
}.service-desc h3 {
    font-size: 1.4rem;
   color: #1e293b;
  margin-top: 2rem;
  margin-bottom: 1rem;
   font-weight: 600;
}

.service-desc ul {
    list-style: disc;
       margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.service-desc li {
    color: #64748b;
  line-height: 1.6;
   margin-bottom: 0.5rem;
}

