* {
   margin: 0;
       padding: 0;
      box-sizing  :        border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height:1.6;
  color: #2c3e50;
	overflow-x:    hidden;
	
}

.primary-nav {

  position: fixed;
    top: 0;
    left: 0;
   right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	z-index: 1000;
    padding: 0.8rem 0;
   transition  : all 0.3s ease;
  border-bottom: 1px solid rgba(52, 73, 94, 0.1);


}

.primary-nav.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: 0 2rem;
}

.brand-section	{
    display: flex;
  align-items: center;

}

.nav-logo     {
   height: 45px;
         width: auto;


}

.nav-links {
	display: flex;
    gap :       2.5rem;
}

.nav-item {

	   text-decoration: none;
   color   :       #34495e;
	font-weight: 500;
      position: relative;
   transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-item:hover,
.nav-item.active {
  color :#3498db;
}

.nav-item::after {
  content: '';
  position    :    absolute;
    bottom: -5px;
  left: 0;
   width: 0;
  height: 2px;
    background: #3498db;
   transition: width 0.3s ease;
}

.nav-item:hover::after,
.nav-item.active::after {
   width: 100%;


}

.burger-toggle {
  display: none;
  flex-direction: column;
   cursor: pointer;
  padding   :5px;
} 

.burger-toggle span
	{
  width: 25px;
   height    :  3px;
    background: #34495e;
  margin: 3px 0;
  transition:  0.3s;
  border-radius: 2px;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}


.burger-toggle.active span:nth-child(2) {
   opacity: 0;
}  

.burger-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
   left: 0;
   width: 100%;
   height: 100vh;
  background: rgba(52, 73, 94, 0.95);
    z-index: 999;
    display: flex;
        align-items: center;
  justify-content :        center;
   opacity: 0;
  visibility: hidden;
   transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content {
       display: flex;
  flex-direction: column;
    gap: 2rem;
   text-align: center;
}

.mobile-nav-link {
	color: white;
	 text-decoration: none;
     font-size: 1.5rem;
  font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
         color: #3498db;
}

.hero-segment {
      padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   min-height: 70vh;
  display: flex;
   align-items: center;}

.hero-container {
	 margin: 0 auto;
    max-width: 1200px;
    align-items    :center;
   grid-template-columns: 1.2fr 1fr;
	 gap: 4rem;
    display: grid;
}

.hero-title {
    font-size: 3.2rem;
   font-weight: 700;
  color: #2c3e50;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.2rem;
  color: #5a6c7d;
   margin-bottom: 2.5rem;
  line-height: 1.7;

}

.hero-actions {
	gap: 1.5rem;
  display: flex;
}

.primary-btn, .secondary-btn


{
  text-decoration: none;
   padding: 14px 28px;
	border-radius: 8px;
   font-weight    : 600;
   transition: all 0.3s ease;
   display: inline-block;
  font-size: 1rem;
}

.primary-btn {
    background: #3498db;
       color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
} 

.primary-btn:hover
{
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
	  background: transparent;
    color: #3498db;
   border: 2px solid #3498db;


}



.secondary-btn:hover {
   background: #3498db;
    color: white;
  transform: translateY(-2px);
}

.hero-visual img


{
    width: 100%;
  height:400px;
   object-fit: cover;
   border-radius :12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.content-container {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.services-overview {
   padding: 100px 0;
     background  :white;
}

.section-heading {
                    text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
   font-weight: 700;
}

.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 2.5rem;
}


.service-card

{

	  background: #f8f9fa;
  border-radius: 12px;
   padding: 2rem;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(52, 73, 94, 0.08);

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-visual img {
   width: 100%;
  object-fit: cover;
    height    :    200px;
   margin-bottom   :      1.5rem;
   border-radius: 8px;
}

.service-card h3 {
	font-size  : 1.4rem;
    color: #2c3e50;
  margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
   color: #5a6c7d;
	 line-height: 1.7;
   font-size: 0.95rem;
}

.expertise-showcase {
   padding: 100px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
}

.expertise-content		{
   display: grid;
       grid-template-columns: 1.2fr 1fr;
      gap    :   4rem;
      align-items: center;
}

.expertise-showcase h2 {
         font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead-text {
	font-size: 1.2rem;
          margin-bottom: 2.5rem;
   opacity: 0.9;
         line-height: 1.7;
	
}  

.expertise-features {
		display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.feature-item h4 {
					font-size: 1.2rem;
    margin-bottom: 0.8rem;
	 color: #3498db;
   font-weight: 600;
}

.feature-item p
	{


    opacity: 0.9;
  line-height: 1.6;
	font-size: 0.95rem;
	}

.expertise-visual img
	{
    width: 100%;
          height:  350px;
   object-fit: cover;
  border-radius:     12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-section {
	   padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  text-align: center;
   color: white;}

.cta-content h2 {
   font-size: 2.3rem;
    margin-bottom     : 1.5rem;
    font-weight: 700;
}

.cta-content p {

	  font-size: 1.1rem;
          margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  opacity: 0.95;
   line-height: 1.7;
     }

.cta-button {
  background: white;
    color: #3498db;
    text-decoration: none;
 padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
   font-size   :     1.1rem;
   transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover	{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);


}



.contact-section {
    padding: 100px 0;
   background: #f8f9fa;
}

.contact-wrapper

{
	display: grid;
    grid-template-columns: 1fr 1.5fr;
       gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
   margin-bottom: 2rem;
   font-weight: 600;
}

.contact-details {
  display: flex; 
	    flex-direction: column; 
	    gap: 1.5rem;
}

.contact-item strong {
  color: #3498db;
    display     :    block;
    margin-bottom: 0.5rem;
    font-weight: 600; 

}

.contact-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-form-container {
    background: white;
  padding  :    2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	
}

.form-row {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
    margin-bottom:  1.5rem;
}

.form-group {
                    display: flex;
  flex-direction: column;

}

.form-group.full-width {
    margin-bottom: 1.5rem;

}

.form-group label {
    margin-bottom: 0.5rem;
  font-weight:     500;
    font-size: 0.95rem;
	color  :      #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea{
	   padding: 12px 16px;
   border: 2px solid #e9ecef;
  border-radius: 6px;
    font-size: 0.95rem;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
   font-family: inherit;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline   :  none;
  border-color  :    #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); 
	
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.submit-btn {
      background: #3498db;
   color: white;
  border: none;
   padding: 14px 28px;
	border-radius: 6px;
    font-size: 1rem;
        font-weight: 600;
   cursor    :     pointer;
	transition: all 0.3s ease;
     width: 100%;
	}

.submit-btn:hover {
      background: #2980b9;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);

}

.site-footer {
   background: #2c3e50;
   color: white;
    padding: 60px 0 20px;
}

.footer-content


{
  max-width:     1200px; 
	    margin: 0 auto; 
	    padding :        0 2rem; 
	               display: grid; 
	    grid-template-columns: 1.2fr 1fr 1fr; 
	   gap: 3rem;
}

.footer-brand p {
   margin-top: 1rem;
	 line-height: 1.6;
    opacity   :      0.8;
}

.footer-logo {
    height: 40px;
    width     :   auto;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
	color: #3498db;
    font-weight: 600;
}

.footer-links ul
{
  list-style: none;
}

.footer-links li	{
   margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-contact p {
       opacity: 0.8;

  margin-bottom: 0.8rem;

    line-height: 1.6;

    font-size: 0.95rem;
}

.footer-bottom {

	    max-width: 1200px;
    margin: 0 auto;
   padding: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	 text-align: center;
  margin-top: 2rem;
     }

.footer-bottom p {
   opacity: 0.7;
               font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-segment {
        padding: 100px 1rem 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .content-container {
        padding: 0 1rem;
    }
}.page-header {
    padding: 120px 0 60px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
   text-align: center;
}

.header-content {
    max-width: 800px;

   margin: 0 auto;
}

.page-title {
   font-size  : 3rem;
  font-weight: 700;
   margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.2rem;
	 opacity: 0.9;
  line-height: 1.7;
}

.company-story {
	padding  :  100px 0;
    background: white;
}

.story-layout {
  display: grid;
				 grid-template-columns  : 1.3fr 1fr;
	gap: 4rem;
	align-items   :  center;
}

.story-heading {
   font-size: 2.2rem;
     color: #2c3e50;
       margin-bottom: 2rem;
       font-weight:      700;
}

.story-text  
  {
  color: #5a6c7d;
   line-height: 1.8;
    margin-bottom: 1.8rem;
	 font-size :  1.05rem;
}

.mission-points {
   display: flex;
    flex-direction     :       column;
   gap: 1.5rem;
   margin-top: 2.5rem;
}


.mission-item h4 {
    color: #3498db; 
	  margin-bottom: 0.8rem; 
	         font-size: 1.1rem; 
	   font-weight:  600;
}

.mission-item p {

	  color: #5a6c7d;
  line-height: 1.6;
    font-size: 0.95rem;
     }

.story-visual img {
   width: 100%;
    height: 380px;
   object-fit   :   cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	
}

.methodology-section {
  padding: 100px 0;
    background: #f8f9fa;


}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  :        2rem;
  margin-top: 3rem; 
	
}

.method-card {
    background: white;
   padding: 2.5rem 2rem;
  border-radius: 12px;
    text-align:center;
   position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.method-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
                    color     :  white;
   width: 50px;
   height: 50px;
      border-radius : 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size  :       1.2rem;
   font-weight: 700;
    margin: 0 auto 1.5rem;
}  

.method-card h3{


    color: #2c3e50;
      font-size: 1.3rem;
        margin-bottom: 1rem;
  font-weight: 600;

}

.method-card p {
    color: #5a6c7d;
   line-height: 1.6;
   font-size: 0.95rem;
}

.expertise-areas {
  padding: 100px 0;
    background: white;
}

.expertise-layout {
   display: grid;
    grid-template-columns: 1fr 1.3fr;
	gap: 4rem;
   align-items: center;
    margin-top: 3rem;
}

.expertise-visual img {
   width: 100%;
   height    :    400px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.expertise-list {
   display: flex;
    flex-direction: column;
  gap: 2rem;
}

.expertise-item h4 {
  color    :    #3498db;

	    font-size: 1.2rem;

		margin-bottom: 0.8rem;

	   font-weight: 600;
}

.expertise-item p {
    color: #5a6c7d;
    line-height: 1.7;
   font-size: 0.95rem;
}

.values-section		{
    padding   :     100px 0;
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-grid
	{

    display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2.5rem;
	margin-top: 3rem;
     }

.value-item  {
   padding: 2rem;
   text-align: center;
}

.value-icon {
   margin-bottom     : 1.5rem;
}

.icon-placeholder {
       width: 60px;

	   height   :        60px;

	  background: linear-gradient(135deg, #3498db, #2980b9);

	    border-radius: 12px;

	   margin : 0 auto;
}

.value-item h4 {
   color: #2c3e50;
               font-size: 1.3rem;
    margin-bottom : 1rem;
  font-weight: 600; 

}

.value-item p {
	          color: #5a6c7d;
	 line-height: 1.6;
   font-size: 0.95rem;


}

.why-choose-section

{

   padding: 100px 0;
     background: white;




}

.why-choose-layout {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 4rem;
   align-items    :      center;
}

.why-choose-visual img {
   width: 100%;
   height: 350px;
    object-fit: cover;
	 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-choose-content h2 {
	color: #2c3e50;
	 font-size: 2.2rem;
   margin-bottom: 2.5rem;
   font-weight: 700;
}

.benefits-list {
   display: flex;
  flex-direction    :  column;
   gap     :       2rem;
}

.benefit-item {
       display: flex;
   align-items: center;
    gap: 1.5rem;
}

.benefit-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
    font-size    :       1.5rem;
     font-weight: 700;
  width: 70px;
    height: 70px;
  border-radius: 12px;
   display: flex;
   align-items: center;
	justify-content: center;
 flex-shrink: 0;
	
}

.benefit-text h4	{
	color: #2c3e50;
	font-size: 1.1rem;
   margin-bottom: 0.3rem;
    font-weight: 600;
}

.benefit-text p {
  color    :        #5a6c7d;
   font-size: 0.9rem;
} 

.thankyou-main {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.thankyou-container {
    max-width: 1200px;
                    margin: 0 auto;
	 padding:  0 2rem;
    display: grid;
        grid-template-columns: 1.3fr 1fr;
       gap: 4rem;
   align-items: center;
}

.thankyou-content {
  text-align: center;
}

.success-icon {
	 margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;

	  height: 80px;

	   border-radius: 50%;

	  background: linear-gradient(135deg, #27ae60, #2ecc71);

	    margin: 0 auto;

	         display: flex;

	      align-items: center;

	   justify-content   :       center;

	    position: relative;
}

.checkmark {
   width: 25px;
  height: 15px;
    border: 3px solid white;
   border-top: none;
  border-right: none;
  transform: rotate(-45deg);
   margin-top: -5px;}

.thankyou-title {
    color  :   #2c3e50;
   font-size: 2.5rem;
  margin-bottom   :  1.5rem;
    font-weight: 700; 
	
}

.thankyou-subtitle {
   color: #5a6c7d;
  font-size: 1.2rem;
    line-height: 1.6;
   margin-bottom: 3rem;
     max-width: 500px;
   margin-left: auto;
  margin-right: auto;
}

.next-steps {
   text-align: left;
   margin-bottom: 3rem;
}

.next-steps h3 {
  color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 2rem;
  text-align: center;
   font-weight: 600;
	}

.steps-list {
    display: flex;
   flex-direction: column;
	gap  : 1.5rem;
}

.step-item {
    display: flex;
  align-items: flex-start;
   gap: 1rem;
}

.step-number {
    background     : #3498db;
  color: white;
  width: 30px;
   height: 30px;
    border-radius: 50%;
  display: flex;
    align-items: center;
   justify-content  : center;
  font-weight: 600;
   font-size: 0.9rem;
   flex-shrink:        0;
}

.step-content h4 {
  color    : #2c3e50;
  margin-bottom: 0.5rem;
	font-size: 1rem;
    font-weight: 600;
}

.step-content p {


  color: #5a6c7d;
    font-size: 0.9rem;
   line-height: 1.5;
	}

.additional-info {
  margin-bottom: 3rem;


}

.info-card {
  background: white; 
	  padding  :        2rem; 
	  border-radius: 12px; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	       border-left: 4px solid #3498db;
}

.info-card h4 {

  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.1rem;
   font-weight: 600;

}

.info-card p {


   color: #5a6c7d;
   margin-bottom: 1rem;
    line-height: 1.6;
     }

.phone-link  {
  color: #3498db;
  font-weight: 600;
  font-size:       1.1rem;
  text-decoration: none;
}

.phone-link:hover {
    color: #2980b9;
}

.action-buttons {
   justify-content    :        center;
  display: flex;
	flex-wrap: wrap;
   gap: 1rem;
}  

.thankyou-visual img {
	width: 100%; 
    height   :     400px; 
  object-fit: cover; 
    border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .story-layout,
    .expertise-layout,
    .why-choose-layout,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        text-align: center;
    }
    
    .next-steps {
        text-align: left;
    }
    
    .benefits-list {
        gap: 1.5rem;
    }
    
    .benefit-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 100px 1rem 50px;
    }
    
    .thankyou-main {
        padding: 100px 1rem 60px;
    }
    
    .page-title,
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .method-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .primary-btn,
    .action-buttons .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.policySection {
  padding: 80px 2rem; 
    background     :  #f8f9fa;
}

.policyContainer {
   max-width: 800px;
   margin: 0 auto;
  text-align: left;
}



.policyContainer h2 {
  color: #2c3e50;
   font-size: 2.5rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
}  

.policyContainer p {
   color: #7f8c8d;
   margin-bottom  :        1.5rem;
    line-height     :   1.7;
   font-size: 1.1rem;
}
@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}