* {

	   margin: 0;
    padding:        0;
   box-sizing: border-box;
	}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
                    color: #334155;
    background-color: #ffffff;
    overflow-x:  hidden;
}

.content-container {
   max-width   :  1200px; 
    margin     :        0 auto; 
  padding: 0 24px;
	
}

.primary-nav {
               position: fixed;
    top: 0;
	 left: 0;
   right     : 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
   z-index     :   1000;
    padding: 16px 0;
}

.navigation-wrapper {
    max-width: 1200px;
	margin: 0 auto;
  padding: 0 24px;
   display: flex;
  justify-content: space-between;
          align-items: center;
}

.brand-section {
   display: flex;
   align-items: center;
               gap    : 12px;
}

.company-logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
  color: #1e293b;
}

.menu-items 
 {
   display:      flex;
      gap: 32px;
    align-items: center;
}

.nav-link {
  text-decoration: none;
    color :      #64748b;
   font-weight: 500;
   transition: color 0.3s ease;
                    position: relative;
}

.nav-link:hover,
.nav-link.active		{
  color: #2563eb;

}

.nav-link.active::after {
    -moz-border-radius: 1px;
  bottom   : -8px;
    background: #2563eb;
  left: 0;
  content: '';
    position: absolute;
         right  :       0;
   height: 2px;
   border-radius: 1px;
}

.mobile-menu-trigger {


   display: none;
   background  :    none;
    border: none;
          cursor: pointer;
   flex-direction: column;
   gap     :        4px;
  padding: 8px;

}

.burger-line {
  width: 24px;
	 height: 2px;
  background: #64748b;
  transition: all 0.3s ease;
   border-radius: 2px;
}

.mobile-menu-trigger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-trigger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-trigger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}



.mobile-nav-panel {
    position: fixed;
        top: 76px;
	left: -100%;
   width: 100%;
  height: calc(100vh - 76px);
   background: white;
  transition: left 0.3s ease;
    z-index: 999;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
   gap: 24px;
}

.mobile-nav-panel.active {
  left: 0;
}

.mobile-nav-item
{
  text-decoration: none;
  color: #64748b;
    font-size: 1.2rem;
	font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #f1f5f9;
}

.hero-area


{
   padding: 140px 0 100px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  min-height: 600px;
}

.hero-area .content-container {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

}

.hero-content {
   max-width: 500px;
}

.main-heading {
	font-size: 3.2rem;
               font-weight: 800;
  color: #1e293b;
   line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
    color: #475569;
    line-height     :       1.6;
    margin-bottom: 40px;


}

.cta-buttons {
  flex-wrap: wrap; 
		 gap: 16px; 
	   display: flex;
}

.primary-btn,
.secondary-btn {
  text-decoration     :none;
  padding: 16px 32px;
   border-radius: 12px;
    font-weight: 600;
  font-size    :    1rem;
				 transition: all 0.3s ease;
   display: inline-block;
  text-align: center;
   border: 2px solid transparent;
}

.primary-btn {
  background: #2563eb;
    color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);}

.primary-btn:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);

}

.secondary-btn {
   background: transparent;
   color   :#2563eb;
     border-color: #2563eb;
}

.secondary-btn:hover
{
  background :  #2563eb;
    color: white;
  transform: translateY(-2px);
}

.hero-visual
{
  text-align: center;
}

.hero-image {
    max-width: 100%;
	height     :        auto;
   border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.services-section {
    padding: 120px 0;
   background: #ffffff;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
  text-align: center;
  margin-bottom: 60px;
} 

.services-grid {
    display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;
}

.service-card {
    background: #f8fafc;
   border-radius: 20px;
  padding: 40px 32px;
   text-align: center;
   transition: all 0.3s ease;
   border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.service-card:hover


{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #2563eb;
}

.service-image {
       width: 100%;
   height: 200px;
	object-fit: cover;
   border-radius: 12px;
   margin-bottom: 24px;
}

.service-name {
           font-size: 1.5rem;
  font-weight: 600;
   color: #1e293b;
    margin-bottom: 16px;
}

.service-desc {
                  color: #64748b;
    line-height: 1.6;
   font-size: 1.05rem;

}

.consultation-cta {
    padding: 120px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
}

.consultation-cta .content-container {
   display: grid;
         grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
}

.cta-heading {
    font-size: 2.4rem;
	font-weight: 700;
	 margin-bottom: 24px;
   color: white;
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.6;
  margin-bottom: 32px;
       color: #cbd5e1;
}

.consultation-btn {
          display: inline-block;
  background: white;
   color: #2563eb;
    text-decoration: none;
    padding: 16px 32px;
  border-radius  :     12px;
   font-weight     :  600;
   transition   :       all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);


}

.consultation-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);}

.cta-visual {
    text-align: center;
}

.cta-image {
   max-width: 100%;
	height: auto;
    border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.expertise-area

{
    padding: 120px 0;
    background: #f8fafc;
}

.expertise-grid {
  display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap :      32px;
}

.expertise-item {
	 background: white;
    padding: 40px 32px;
   border-radius: 16px;
  text-align: center;
   border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
   border-color: #cbd5e1;
}

.expertise-title {
  font-size: 1.3rem;
    font-weight: 600;
  color: #1e293b;
    margin-bottom: 16px;
}

.expertise-text {
   color: #64748b;
      line-height:        1.6;
}

.contact-section {
  padding  :   120px 0;
   background: #ffffff;
}

.contact-wrapper {
   display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 80px;
   max-width: 1000px;
          margin: 0 auto;
}

.consultation-form {
    display: flex;
   flex-direction: column;
   gap    :   24px;
}

.form-group {
   display: flex;
   flex-direction     :   column;
    position: relative;
}

.form-label {

	   font-weight     :       500;
   color: #374151;
  margin-bottom: 8px;
       font-size :0.95rem;


}

.form-input,
.form-select,
.form-textarea {
    padding: 16px 20px;
	border: 2px solid #e5e7eb;
	border-radius: 10px;
    font-size   :    1rem;
    transition: all 0.3s ease;
    background:       #fafbfc;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {

	  outline     :     none;
	border-color: #2563eb;
   background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); 
	
}

.form-group.focused .form-label {

    color: #2563eb;
	}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
   border-color: #dc2626;
}

.form-textarea {
  resize: vertical;
	    min-height: 120px;
}

.submit-btn   {
    background  :   #2563eb;
   color    :    white;
		 padding: 18px 36px;
   border: none;
  border-radius: 12px;
    font-weight: 600;
 font-size: 1.1rem;
	 cursor: pointer;
    transition: all 0.3s ease;
       margin-top: 16px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.contact-info  
  {
  padding: 40px 32px;
   border-radius: 16px;
  height: fit-content;
   border: 1px solid #e2e8f0;
  background  :  #f8fafc;
	
}

.info-title {
		font-size: 1.4rem;
   font-weight: 600;
    color: #1e293b;
               margin-bottom: 24px;
     }

.contact-details {

	   display: flex;
    flex-direction: column;
  gap: 20px;



}

.contact-item {
		color: #64748b;
   line-height: 1.6;

}

.contact-item strong {
    color: #374151;
  display: block;
    margin-bottom: 4px;
}

.site-footer {
         background: #1e293b;
   color: #cbd5e1;
      padding: 60px 0 20px;
}

.footer-content
{


    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
	 gap: 40px;
    margin-bottom    :40px;

}

.footer-brand {
        max-width: 300px;
}

.footer-logo {


  height: 40px;
    width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);}

.footer-description {
   color: #94a3b8;
   line-height: 1.6;
    font-size : 0.95rem;
}

.footer-heading {
    color     :    #f1f5f9; 
	    font-weight: 600; 
	        font-size: 1.1rem; 
	   margin-bottom: 16px;
}

.footer-menu {
 list-style: none; 
	  display: flex; 
	  flex-direction: column; 
	   gap: 12px;
}

.footer-link {
   color: #94a3b8;
    text-decoration: none;
  transition: color 0.3s ease;
   font-size: 0.95rem;
}

.footer-link:hover {
    color: #cbd5e1;
}



.footer-address,
.footer-phone {
   color: #94a3b8;
    line-height: 1.5;
 font-size: 0.95rem;
}

.footer-phone {
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid #374151;
 padding-top: 20px;
    text-align: center;
}

.copyright {
   color: #94a3b8;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .mobile-menu-trigger {
        display: flex;
    }

    .desktop-menu {
        display: none;
    }

    .hero-area .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .main-heading {
        font-size: 2.4rem;
    }

    .cta-buttons {
        justify-content: center;
    }

    .consultation-cta .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 16px;
    }

    .navigation-wrapper {
        padding: 0 16px;
    }

    .hero-area {
        padding: 120px 0 80px;
    }

    .main-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 32px 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .expertise-item {
        padding: 32px 24px;
    }

    .contact-info {
        padding: 32px 24px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 14px 16px;
    }
}.about-hero {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-text-content {
    max-width     :      600px;
} 

.page-main-title {
      font-size: 3.5rem;
      font-weight    :   700;
   color: #1e293b;
   margin-bottom     : 24px;
       line-height: 1.1;
}

.hero-intro-text {
  line-height: 1.6;
   font-size: 1.2rem;
   color: #475569;
}

.about-hero-visual

{
    flex: 1;
   -ms-flex: 1;
  text-align: center;
}

.about-main-image  
  {
    max-width: 100%;
                    height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mission-section {
	 padding: 100px 0;
   background: #ffffff;
}

.mission-title
	{

	       font-size: 2.8rem;
  font-weight: 600;
    color: #1e293b;
  margin-bottom: 32px;
  text-align: center;}

.mission-description {
       font-size:      1.1rem; 
  color: #64748b; 
    line-height: 1.7; 
   max-width: 800px; 
  margin: 0 auto 60px; 
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
   margin-top: 60px;
}

.value-item {
  text-align: center;
	padding: 40px 24px;
   background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.value-heading {
   font-size: 1.4rem;
  font-weight: 600;
    color: #2563eb;
    margin-bottom: 16px;
}

.value-text  {
  color: #64748b;
    line-height: 1.6;
}

.story-section {
     padding: 100px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);}

.story-wrapper {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap    : 60px;
    align-items: center;
}

.story-visual img {
  width: 100%;
   border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.story-title {
    font-size: 2.4rem;
   font-weight: 600;
  color: #1e293b;
      margin-bottom   :24px; 
	
}

.story-text {
    color   :  #475569;
  line-height: 1.7;
  margin-bottom: 20px;
        font-size: 1.05rem;

}

.expertise-showcase {
    padding: 100px 0;
   	background: #ffffff;
}

.expertise-blocks {
     display  :flex;
    flex-direction: column;
   gap: 60px;
   margin-top: 60px;
} 

.expertise-block
	{
    display: grid;
   grid-template-columns  :       300px 1fr;
   gap: 40px;
    align-items   :    center;
      padding: 40px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
   border-radius: 20px;
   border   :  1px solid #e2e8f0;
}

.expertise-block:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.expertise-block:nth-child(even) .expertise-img {
  order: 2;
}

.expertise-img {
   width: 100%;
  height  :      200px;
  object-fit: cover;
    border-radius: 12px;
}

.expertise-name {
               color: #1e293b;
    font-size: 1.6rem;
   font-weight: 600;
    margin-bottom: 16px;
}

.expertise-detail {
	font-size: 1.05rem;
  line-height  :    1.6;
   color: #64748b;
}

.approach-section {
  padding     :    100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
}

.approach-title {

	font-size: 2.8rem;
   font-weight: 600;
    text-align:      center;
  margin-bottom: 40px;
	color:     white;}

.approach-intro {
   font-size: 1.1rem;
  text-align     : center;
  max-width: 800px;
        margin: 0 auto 80px;
    line-height: 1.7;
	color: #cbd5e1;

}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.step-item  
  {
	text-align: center;
  padding  :      40px 20px;
}

.step-number  
  {
   display: inline-block;
	width: 60px;
  height: 60px;
   background: #2563eb;
    color:white;
  border-radius: 50%;
    font-size: 1.5rem;
   font-weight: 700;
  display: flex;
  align-items    : center;
   justify-content: center;
  margin: 0 auto 20px; 
	
}

.step-title {
    font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
   color: white;
}

.step-desc {
  color: #cbd5e1;
       line-height  :       1.6;
}

.thankyou-hero {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.thankyou-content {
	text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.success-indicator {
   margin-bottom: 40px;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
      background: #10b981;
    border-radius :      50%;
    display: flex;
  align-items: center;
		justify-content: center;
   margin: 0 auto;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.checkmark   {
        width: 30px;
     height: 15px;
  border: 3px solid white;
  border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    margin-top   :     -5px;
	}  

.thankyou-title {
   font-size: 3rem;
	 font-weight: 700;
    color: #065f46;
	margin-bottom: 24px;
}

.thankyou-message {
   font-size: 1.2rem;
   color: #047857;
    line-height: 1.6;
 margin-bottom: 60px;
}

.thankyou-visual {
     margin-top  :        40px;
}

.thankyou-image {
   max-width: 100%;
    height: auto;
    border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.next-steps  {
	  background: white;
	padding: 60px 40px;
    border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
   text-align: left;
  margin-top: 60px;
     }

.steps-title {


	font-size: 2rem;
    font-weight: 600;
  color: #1e293b;
  text-align: center;
                    margin-bottom: 40px;

}

.steps-list {
    display   :        flex;
                    flex-direction: column;
    gap   : 30px;
}


.step-element {
    display: flex;
   align-items: flex-start;
   gap     :    20px;
}

.step-marker
	{
   width  :   40px;
    height: 40px;
    background: #2563eb;
    color: white;
  border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
    font-weight: 700;
      flex-shrink: 0;
}

.step-heading    {
  font-size     :        1.2rem;
   font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}  

.step-text {

	    color: #64748b;
  line-height: 1.6;
}

.additional-info {
    padding: 80px 0;
        background: #f8fafc;
	
}

.info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
    background: white;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  text-align: center;
  border: 1px solid #e2e8f0;
}

.card-title 
 {
    font-size: 1.3rem;
  font-weight :        600;
  color: #1e293b;
   margin-bottom     :       16px;
}

.card-text
{

    color: #64748b;
  line-height: 1.6;}

.back-to-site {
    background: white;
   text-align: center;
  padding: 60px 0; 
	
}

.back-actions {
    display: flex;
   gap: 20px;
   justify-content: center;
   flex-wrap:   wrap;
}@media (max-width: 768px) {
    .page-main-title {
        font-size: 2.5rem;
    }

    .about-hero {
        padding: 80px 0 60px;
    }

    .hero-text-content, .about-hero-visual {
        margin-bottom: 40px;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-block,
    .expertise-block:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expertise-block:nth-child(even) .expertise-img {
        order: 0;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }

    .next-steps {
        padding: 40px 20px;
    }

    .step-element {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .back-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        padding: 30px 20px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .expertise-img {
        height: 180px;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }
}