* {
	    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;
}

.content-container {
   max-width: 1200px;
      margin  :    0 auto;
   padding: 0 20px;
}  

.main-navigation {

	   background: #1a1a1a;
   padding: 1rem 0;
	position: sticky;
    top   :     0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 

	}

.nav-wrapper {
  margin: 0 auto;
    padding: 0 20px;
  max-width: 1200px;
    align-items: center;
   display: flex;
  justify-content: space-between;
}

.brand-section .brand-logo {

   height: 45px;
  filter: brightness(0) invert(1);
     }

.nav-links {
  display    :       flex;
    gap: 2rem;
    align-items: center;
}

.nav-item


{
    color: #ffffff;
               text-decoration: none;
  font-weight: 500;
   transition: color 0.3s ease;
   font-size: 0.95rem;
}

.nav-item:hover {
    color: #d4af37;
}

.cta-link {
    background    : #d4af37;
       color: #1a1a1a;
   padding: 0.6rem 1.5rem;
   border-radius: 4px;
    transition: background 0.3s ease;
}

.cta-link:hover {
	 background  :    #c19b2e;
  color     :    #1a1a1a;
}

.mobile-trigger {
         display: none;
  flex-direction: column;
	background: transparent;
   border: none;
   cursor: pointer;
  padding : 5px;
}

.mobile-trigger .bar{
  width: 25px;
   height: 3px;
  background :   #ffffff;
  margin: 3px 0;
  transition: 0.3s;
	
}

.hero-area {


  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 80px 0;
     }

.hero-content-box {
    max-width: 1200px;
  margin   :      0 auto;
    padding: 0 20px;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
     align-items: center;
}

.text-column .primary-headline {
    font-size: 3rem;
    color: #1a1a1a;
  margin-bottom: 1.5rem;
   line-height    :       1.2;
   font-weight  :700;
}

.hero-description {
  font-size: 1.1rem;
  color: #495057;
	margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
	display     :     flex;
   gap: 1rem;
}

.primary-btn, .secondary-btn {
    padding: 0.9rem 2rem;
    text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
  background: #d4af37;
	color: #1a1a1a;
}

.primary-btn:hover {
   background: #c19b2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.secondary-btn {
   background: transparent;

	  color: #1a1a1a;

	  border: 2px solid #1a1a1a;
}

.secondary-btn:hover {
  background: #1a1a1a;
   color: #ffffff;
}

.image-column .hero-visual {
      width     :  100%;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}

.services-presentation {

   background: #ffffff;
        padding: 80px 0;
     }  

.section-heading {
       font-weight: 700;
   color: #1a1a1a;
    margin-bottom: 1rem;
   font-size: 2.5rem;
  text-align : center;
	}

.intro-text {
    text-align: center;
    font-size: 1.1rem;
  color: #6c757d;
               max-width: 700px;
    margin: 0 auto 3rem;
}

.service-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-block {
  background: #f8f9fa;
	border-radius: 8px;
                    overflow   : hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover	{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-visual {
  width: 100%;
    height: 250px;
   object-fit: cover;
}

.service-title {
  font-size: 1.5rem;
	color: #1a1a1a;
     padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600; 
	
}


.service-text	{
  padding   :       0 1.5rem 1.5rem;
	color: #495057;
    line-height: 1.7;

}

.approach-methodology {
    padding     :  80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.approach-methodology .section-heading {
	color: #ffffff;
}

.methodology-layout {
         display: grid;
      grid-template-columns   :       1fr 1fr;
  gap: 60px;
  align-items: center;
}

.method-image {
  width   :    100%;
	border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}  

.methodology-intro {
          color :      #e9ecef;
   font-size: 1.1rem;
  margin-bottom: 2rem;
   line-height: 1.8;
}

.methodology-points {
   display: flex;
	 flex-direction: column;
  gap: 1.5rem;
}

.point-item {
	 padding: 1.5rem;
  background: rgba(255,255,255,0.05);
   border-radius: 8px;
	 border-left: 4px solid #d4af37;
}

.point-header {
     color: #d4af37;
    font-size: 1.3rem;
               margin-bottom: 0.5rem;
    font-weight: 600;
}

.point-content {
    color: #ced4da;
   line-height  :        1.7;


}

.cta-banner {
   padding  :     80px 0; 
	  background: linear-gradient(135deg, #d4af37 0%, #c19b2e 100%);
}

.cta-content-area	{
        text-align: center;
  max-width: 800px;
  margin: 0 auto; 
	
} 

.cta-headline {
   font-size: 2.5rem; 
   color: #1a1a1a; 
  margin-bottom: 1rem; 
    font-weight   :     700;
}

.cta-subtext {
    font-size: 1.1rem;
    color: #2c3e50;
   margin-bottom: 2rem;
    line-height:   1.8;
}

.cta-action-btn {
                    display: inline-block;
      padding: 1rem 2.5rem;
   background    :     #1a1a1a;
   color   : #ffffff;
    text-decoration: none;
                    border-radius: 5px;
  font-weight   :     600;
   transition: all 0.3s ease;
}

.cta-action-btn:hover {

   background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);

}

.testimonials-area {

	       padding : 80px 0;
    background: #f8f9fa;
     }

.testimonials-wrapper {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;


}

.testimonial-card {

	    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);

}

.testimonial-quote {
   color: #495057;
    font-style: italic;
          line-height: 1.8;
    margin-bottom     :      1rem;
}

.testimonial-author {
   color: #1a1a1a;
  font-weight: 600;
  text-align: right;
}

.contact-section {
   padding: 80px 0;
  background: #ffffff;
}

.contact-intro {
  font-size: 1.1rem;
    color: #6c757d;
    margin: 0 auto 3rem;
                    text-align: center;
    max-width: 700px;
}

.contact-layout {
    display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}


.contact-form {

	    background: #f8f9fa;
   padding: 2.5rem;
	 border-radius: 8px;
     }

.form-group {
   margin-bottom: 1.5rem;
}

.field-label {
    display: block;
	 margin-bottom: 0.5rem;
  color: #1a1a1a;
   font-weight:    500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
   padding  :      0.8rem;
   border  : 1px solid #ced4da;
  border-radius: 4px;
  font-size  :  1rem;
  font-family: inherit;
   transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
   outline: none;
  border-color: #d4af37;
}

.form-textarea {
	resize:vertical;
}

.submit-btn {
  width: 100%;
   padding: 1rem;
   background: #d4af37;
  color: #1a1a1a;
          border: none;
    border-radius  :     4px;
  font-size: 1rem;
    font-weight: 600;
   cursor: pointer;
   transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c19b2e;
}

.contact-details   {
   background   :  #1a1a1a;
   padding: 2.5rem;
  border-radius: 8px;
   color: #ffffff;
}

.details-heading {
   color: #d4af37;
  margin-bottom: 2rem;
    font-size: 1.5rem;
}

.detail-item {
    margin-bottom: 2rem;


}

.detail-label {
   color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-value {
  color: #e9ecef;
 line-height: 1.6;
}

.main-footer {
    background    :       #1a1a1a;
               color: #ffffff;
    padding: 60px 0 30px;
}

.footer-container {
  max-width: 1200px;
   margin: 0 auto;
       padding: 0 20px;

}

.footer-layout
{
 display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
   margin-bottom: 3rem;
}

.footer-logo	{

    height: 40px;
	 margin-bottom: 1rem;
  filter: brightness(0) invert(1);
	}

.footer-description {
    color: #adb5bd;
	 line-height: 1.7;
   margin-top: 1rem;
}

.footer-heading {
    color: #d4af37;
      margin-bottom: 1rem;
      font-size    :      1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
      margin-bottom  :        0.7rem;
	
}


.footer-links a {
  color: #adb5bd;
  text-decoration: none;
   transition   :  color 0.3s ease; 
	
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-contact {
   color: #adb5bd;
    margin-bottom: 0.8rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
   text-align: center; 
	
}

.copyright-text {
   color    : #6c757d;
}@media (max-width: 768px) {
    .mobile-trigger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 0;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-item {
        padding: 1rem;
        width: 100%;
        display: block;
    }
    
    .hero-content-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .text-column .primary-headline {
        font-size: 2rem;
    }
    
    .methodology-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .text-column .primary-headline {
        font-size: 1.8rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
    margin: 0 auto;
  text-align: left;
   max-width: 800px;
}

.policyContainer h2 {
   font-size: 2.5rem;
   color: #2c3e50;
 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;
    }
}.page-hero-banner
{
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
  padding: 100px 0 80px;
  text-align: center;
}

.banner-title {


    font-size: 3.5rem;
    color: #d4af37;
   margin-bottom: 1rem;
  font-weight: 700; 
}

.banner-subtitle {
	 font-size: 1.3rem; 
	color: #e9ecef; 
	max-width: 800px; 
  margin: 0 auto; 
    line-height: 1.8;
}

.story-section    {
   background: #ffffff;
	          padding: 80px 0;
}

.story-layout {
    display: grid;
   grid-template-columns: 1.2fr 1fr;
  gap: 60px;
    align-items:center;
}

.story-heading     {

   font-size: 2.5rem;
     color   :   #1a1a1a;
  margin-bottom: 2rem;
   font-weight: 700;

}

.story-paragraph {
  color: #495057;
    line-height: 1.9;
	 margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-visual {
    width: 100%;
       border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.values-block {
    background    : #f8f9fa;
  padding  :     80px 0;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   margin-top  :      3rem;
}

.value-card


{
	background: #ffffff;
	padding: 2rem;
	 border-radius: 8px;
   border-top  : 4px solid #d4af37;
    transition    :    transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-title {
      font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
  font-weight: 600;
}

.value-description {
    color: #6c757d;
  line-height: 1.8;
}

.approach-details {
	padding: 80px 0;
    background: #ffffff;
}

.approach-grid {
	 display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: start;


}

.approach-intro {
  color: #495057;
   font-size: 1.1rem;
    line-height: 1.8;
   margin-bottom  :      2rem;

}

.pillar-list {
  display   :      flex;
		 flex-direction: column;
  gap: 2rem;
}

.pillar-element {
    border-left: 3px solid #d4af37;
   padding-left: 1.5rem;
}  

.pillar-name     {
    font-size:   1.4rem;
   color: #1a1a1a;
  margin-bottom: 0.7rem;
   font-weight: 600; 

}

.pillar-text {
   color: #6c757d;

	  line-height: 1.8;
}

.methodology-img {
   width :     100%;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.expertise-showcase


{
   padding: 80px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.expertise-showcase .section-heading {
  color: #ffffff;
	
}  

.expertise-lead {
   text-align: center;
   color :   #e9ecef;
   font-size: 1.1rem;
  max-width     :     700px;
   margin  :0 auto 3rem; 
	
}

.expertise-areas {
  display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
  margin-top : 3rem; 
	
}

.area-box {
  background: rgba(255,255,255,0.05); 
	   padding: 2rem; 
	   border-radius    :      8px; 
	  border: 1px solid rgba(212,175,55,0.3); 
	  transition   :        background 0.3s ease;
}

.area-box:hover {
     background: rgba(255,255,255,0.08);


}

.area-name {
   color: #d4af37;
    font-size    : 1.4rem;
    margin-bottom    :   1rem;
    font-weight: 600;
}

.area-info {
     color: #ced4da;
    line-height: 1.8;
}

.mission-statement {


   padding: 0;
    position: relative;}

.mission-wrapper {

	         position: relative;
    min-height: 500px;
  display: flex;
    align-items: center;
	}

.mission-background {

	  position: absolute;

    width: 100%;

  height: 100%;

  object-fit: cover;

  filter: brightness(0.4);}

.mission-overlay {
    position: relative;
   z-index: 2;
    max-width: 900px;
   margin:        0 auto;
   padding: 80px 20px;
 text-align  :  center;
}

.mission-title    {
  font-size: 3rem;
    color: #d4af37;
   margin-bottom: 2rem;
    font-weight: 700;}

.mission-text {
   margin-bottom: 1.5rem;
	 line-height: 1.9;
   color: #ffffff;
   font-size: 1.2rem;
}

.cta-about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #d4af37 0%, #c19b2e 100%); 

}

.cta-about-content {
        max-width: 800px;
   margin: 0 auto;
               text-align: center;
}

.cta-about-title {
  font-size: 2.5rem;
    color:      #1a1a1a;
  margin-bottom: 1.5rem;
   font-weight: 700;
} 

.cta-about-text {
     font-size: 1.1rem;
  color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.8;
	
}


.cta-about-button {
  display: inline-block;
  padding: 1rem 2.5rem;
    background :   #1a1a1a;
  color: #ffffff;
    text-decoration: none;
  border-radius: 5px;
   font-weight: 600;
  transition: all 0.3s ease;
	
}

.cta-about-button:hover {
  background  :  #000000;
  transform: translateY(-2px);
}

.thankyou-wrapper {
   padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: calc(100vh - 400px);
}

.thankyou-box {
    background: #ffffff;
    padding: 60px 40px;
   border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
               max-width: 900px;
  margin: 0 auto;
   text-align: center;
}

.success-icon-area 
 {
           margin-bottom: 2rem;


}

.checkmark-circle {
   width: 100px;
  height: 100px;
    background: #d4af37;
  border-radius    :   50%;
  display: inline-flex;
   align-items: center;
   justify-content: center;
   position: relative; 
	
}

.checkmark-symbol {
   width: 30px;
	 height: 50px;
   border: solid #ffffff;
               border-width: 0 5px 5px 0;
  transform: rotate(45deg);
	margin-bottom    :       10px;
}

.thankyou-heading {
   color: #1a1a1a;
    font-weight: 700;
   margin-bottom: 1.5rem;
   font-size:        3rem;
}

.thankyou-message {
	font-size: 1.2rem;
    color: #495057;
   line-height: 1.9;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.next-steps-area {
  background: #f8f9fa;
    padding   :    2.5rem;
    border-radius: 8px;
    margin: 3rem 0;

}

.steps-title {
  font-size: 2rem;
    color   :   #1a1a1a;
   margin-bottom: 2rem;
    font-weight :  600;
}

.steps-list {
      display: flex;
  flex-direction: column;
   gap: 2rem;
  text-align: left;
}

.step-item {
   display: flex;
     gap: 1.5rem;
    align-items: start;
}

.step-number {
  width: 50px;
   height: 50px;
         background: #d4af37;
  color   :       #1a1a1a;
    border-radius: 50%;
   display   :        flex;
      align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content   {
       flex: 1;
	}

.step-header {
  font-size: 1.3rem;
	 color   :  #1a1a1a;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-text {
  color: #6c757d;
   line-height: 1.7;
}

.thankyou-actions {
   display: flex;
  gap: 1rem;
  justify-content: center;
	flex-wrap: wrap;
}

.return-home-btn, .learn-more-btn {
      padding: 0.9rem 2rem;
  text-decoration: none;
        border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
     }

.return-home-btn {
   background: #d4af37;
	color  :      #1a1a1a;
}

.return-home-btn:hover {
    background: #c19b2e;
  transform: translateY(-2px);
}

.learn-more-btn {
   border: 2px solid #1a1a1a;
   color: #1a1a1a;
   background: transparent;
}

.learn-more-btn:hover {
    background   : #1a1a1a;
    color: #ffffff;
}

.additional-info-section {
    max-width: 900px;
    margin: 3rem auto 0;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.info-card {
  background: #ffffff;
   padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.info-card-title		{
  margin-bottom: 1rem;
	 font-size: 1.3rem;
    font-weight: 600;
   color    :     #d4af37;
}

.info-card-text {
   color: #495057;
    line-height: 1.7;
}@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .thankyou-heading {
        font-size: 2rem;
    }
    
    .thankyou-box {
        padding: 40px 20px;
    }
    
    .steps-list {
        gap: 1.5rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
}