* {
    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;
}

.container-wrap {
   margin: 0 auto;
   max-width: 1200px;
    padding: 0 20px;

}

.top-section{
   background: #1a2332;
        position: sticky;
       top :0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1); 
	
}

.navigation-wrapper
{
  padding: 15px 0;
}

.nav-content {

	    max-width     :     1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
  justify-content: space-between;
               align-items: center;
	

}

.brand-link {
	display: block;
}

.company-logo {
         height: 45px;
  width: auto;
}

.menu-toggle {
   display: none;
    flex-direction: column;
  cursor: pointer;
        gap: 5px;
}

.bar-line {
   width:    28px;
   height: 3px;
  background: #ecf0f1;
    transition: all 0.3s; 
	
}

.nav-list{
   display: flex;
                    list-style: none;
   gap: 35px;
}

.nav-list li a {
   color: #ecf0f1;
	    text-decoration: none;
	  font-weight: 500;
	    transition:  color 0.3s;
	   font-size: 16px;
}

.nav-list li a:hover {
  color: #3498db;
}

.hero-block {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       padding: 80px 0;
    color: white;
}

.hero-content-area {
        max-width: 600px;
}

.main-heading {
    font-size: 48px;
    margin-bottom: 20px;
   font-weight: 700;
   line-height: 1.2;
}

.hero-description {
   opacity: 0.95;
   margin-bottom: 30px;
   font-size: 19px;
}

.primary-btn {
  display: inline-block;
   background: #ffffff;
    color   :    #667eea;
               padding: 14px 32px;
    text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.hero-visual {
   margin-top: 40px;
}

.featured-img {
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);

}

.services-zone {
  padding: 70px 0;
    background   :       #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 38px;
    margin-bottom: 50px;
   color: #2c3e50;
}

.services-grid {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	   gap     :      30px;
}

.service-card {
  background: white;
    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition:   transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
			height: 220px;
  object-fit: cover;
}

.service-name {
    padding: 20px 20px 10px;
   font-size: 22px;
                    color: #2c3e50;
}

.service-text {
   padding: 0 20px 20px;
  color: #555;
}

.cta-segment {
  background: #2c3e50;
		padding: 60px 0;
    color  :      white; 
	
}

.cta-inner {
    text-align: center;
    max-width: 800px;
	margin: 0 auto;
}

.cta-headline {
    font-size :     36px;
  margin-bottom: 20px;
}

.cta-subtext {
   font-size: 18px;
   margin-bottom: 30px;
    opacity: 0.9;
     }

.cta-button {
  display: inline-block;
   background: #3498db;
   color: white;
    padding: 14px 32px;
  text-decoration :none;
  border-radius:6px;
   font-weight: 600;
   transition: background 0.3s;
     }

.cta-button:hover {
        background: #2980b9;
}

.approach-area {
         padding: 70px 0;
}

.approach-layout {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items: center; 

}

.approach-title {
   font-size: 34px;
  margin-bottom: 20px;
   color: #2c3e50;
}

.approach-paragraph {
    margin-bottom: 20px;
    color   :       #555;
  line-height: 1.8;
}

.benefits-listing {
  list-style: none; 
	   margin-top: 25px;
}

.benefits-listing li {
   position: relative;
	color: #555;
    padding: 10px 0 10px 30px;
}

.benefits-listing li:before {
  content: '✓';
    position: absolute;
    left     :  0;
  color  : #3498db;
  font-weight: bold;
   font-size: 20px;
}

.approach-photo {
    width: 100%;
	border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-section {
	 padding: 70px 0;
   background: #f8f9fa;
}

.contact-heading 
 {
    text-align: center;
   font-size  :    38px;
  margin-bottom: 15px;
    color: #2c3e50; 
	
}

.contact-intro {
  text-align: center;
  font-size     :   17px;
   margin-bottom: 40px;
    color: #555;
}

.contact-form {
    max-width: 700px; 
	  margin: 0 auto; 
	  background: white; 
	    padding: 40px; 
	    border-radius: 10px; 
	  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-row{
  display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 20px;
  margin-bottom: 20px;
}

.input-group {
   display: flex;
    flex-direction: column;
}

.input-group label {
  margin-bottom: 8px;
      color     :       #2c3e50;
        font-weight: 500; 
	
}

.input-group input,
.input-group select,
.input-group textarea {
  border-radius: 6px;
  font-size: 15px;
   padding: 12px;
   border: 1px solid #ddd;
   font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    outline: none;
  border-color :       #3498db;
	
}

.submit-btn {
   width: 100%;
  padding : 14px;
  background: #667eea;
        color: white;
    border: none;
    border-radius: 6px;
   font-size: 16px;
   font-weight: 600;
   cursor: pointer;
    transition: background 0.3s;
  margin-top: 10px;


}

.submit-btn:hover {
	 background: #5568d3;
}

.footer-zone {
   background    : #1a2332;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
	 height :  40px;
   margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 14px;
  opacity: 0.8;
    line-height: 1.6;
}

.footer-heading {

	font-size: 18px;
  margin-bottom: 15px;
    color: white;


}

.footer-links {
   list-style  :  none;
}

.footer-links li {


    margin-bottom: 10px;
	}

.footer-links a {
    color: #ecf0f1;
   text-decoration: none;
    opacity: 0.8;
 transition: opacity 0.3s;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact-item {
  margin-bottom: 8px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-bottom {
	text-align: center;
               padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright-text {
  font-size   :        14px;
  opacity:        0.7; 

}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: 75px;
        left: 0;
        right: 0;
        background: #1a2332;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-list li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .main-heading {
        font-size: 32px;
    }
    
    .approach-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta-headline {
        font-size: 26px;
    }
}.page-banner	{
  background: linear-gradient(to right, #2c3e50, #3498db);
   padding: 60px 0;
  text-align: center;
  color: white;
}

.banner-title {
    font-size: 42px;
  margin-bottom: 15px;
   font-weight: 700;
}

.banner-subtitle {
  font-size: 18px; 
	   opacity: 0.9;
}

.story-segment {
   padding: 70px 0;
}

.story-layout {
   align-items: center;
   gap: 50px;
	 grid-template-columns: 1.2fr 1fr;
    display  :    grid;
}

.story-heading {

    margin-bottom: 25px;
   color: #2c3e50;
       font-size: 36px;


}

.story-para    {
  margin-bottom: 18px;
    color: #555;
  line-height: 1.8;
}

.story-image {
   width: 100%;
    border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}


.philosophy-zone {
  padding: 70px 0; 
	   background: #f8f9fa;
	
}

.philosophy-title {
               text-align   :   center;
    font-size :    36px;
   margin-bottom     :   50px;
    color: #2c3e50;
}

.philosophy-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 35px;
}

.philosophy-item {
  background     :   white;
     padding: 30px;
   border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.philosophy-number {
  font-size: 48px;
	font-weight :  700;
   color: #3498db;
    margin-bottom: 15px;
  opacity: 0.3;
}

.philosophy-name {
    font-size: 22px;
    margin-bottom: 12px;
	 color: #2c3e50;
}

.philosophy-desc {
  color: #666;
  line-height: 1.7;
}

.approach-detail     {
  padding: 70px 0;
}

.approach-content {
  display: grid;
   grid-template-columns  :  1fr 1fr;
   gap: 50px;
    align-items: start;
}

.approach-img	{
	width: 100%;
    border-radius    :    10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.approach-section-title {
       font-size: 34px;
  margin-bottom: 20px;
    color: #2c3e50;
}

.approach-description {
   margin-bottom: 30px;
  color: #555;
    line-height: 1.8;
}

.step-block   {
  margin-bottom: 25px;
  padding: 20px;
    background: #f8f9fa;
   border-radius: 8px;
  border-left: 4px solid #3498db;
}

.step-title {
       font-size: 19px;
  margin-bottom: 10px;
  color : #2c3e50;}

.step-text {
	color :     #666;
               line-height: 1.7;
}

.values-area


{
   padding: 70px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.values-heading {
  text-align: center;
    font-size: 36px;
     margin-bottom: 50px;

}

.values-columns {
    display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
  background: rgba(255,255,255,0.1);
   padding: 30px;
  border-radius: 10px;
  backdrop-filter: blur(10px); 

}

.value-name {
  font-size: 24px;
	   margin-bottom: 15px;
}

.value-content
{
   opacity: 0.95;
   line-height: 1.7;
}

.commitment-section {

	   padding: 70px 0;
	}

.commitment-wrapper {
	 display :    grid;
   grid-template-columns: 1fr 1fr;
    gap     :        50px;
   align-items: center;
}

.commitment-photo {
    width: 100%;
    border-radius   :10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.commitment-headline {
    font-size: 34px;
  margin-bottom:        20px;
   color: #2c3e50;
}

.commitment-paragraph     {
  margin-bottom: 20px;
  color: #555;
  line-height: 1.8;
}

.commitment-list {
    list-style    :       none;
    margin-bottom: 30px;
}

.commitment-list li {
  padding: 12px 0 12px 30px;
    position: relative;
  color: #555;
}

.commitment-list li:before {
  content: '✓';
    position: absolute;
    left     :      0;
    color: #27ae60;
   font-weight: bold;
   font-size: 20px;
}

.commitment-button {
   background: #667eea;
   -webkit-border-radius     :        6px;
    color: white;
    -moz-border-radius: 6px;
  display: inline-block;
      border-radius   :   6px;
   padding: 14px 32px;
    transition: background 0.3s;
  text-decoration: none;
  font-weight: 600;
}

.commitment-button:hover {
	          background: #5568d3;
}  

.thankyou-container {
	   padding: 80px 0;
  background: #f8f9fa;
  min-height: 70vh;


} 

.thankyou-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
   text-align: center;
}

.success-icon-wrap {
	margin-bottom: 30px;
}

.success-checkmark {
    animation: scaleIn 0.5s ease-out;
      display: inline-block;


}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-heading {
   font-size: 38px;
        margin-bottom: 20px;
    color: #2c3e50;
}

.thankyou-message{
   font-size: 18px;
   margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.thankyou-info {
   font-size: 16px;
	color: #666;
    margin-bottom: 35px;
	
}

.next-steps-area {
  background: #f8f9fa;
   padding: 30px;
  border-radius: 8px;
	margin-bottom: 35px;
      text-align:   left;
}

.next-steps-title {
  font-size: 22px;

  margin-bottom: 20px;

  color: #2c3e50;
}

.steps-list {
    list-style: none;
	 padding: 0;
}



.steps-list li {

   padding: 10px 0 10px 30px;
 position: relative;
    color: #555;
   line-height: 1.6;
}

.steps-list li:before {
  content: '→';
    position: absolute;
	left: 0;
   color: #3498db;
	 font-weight: bold;
}

.action-buttons{
    display: flex;
  gap: 15px;
   justify-content: center;
     margin-bottom: 35px;
                    flex-wrap: wrap;
}

.btn-primary-thank {


   display: inline-block;
    background     :      #667eea;
    color: white;
  padding   :    14px 28px;
    text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
  transition: background 0.3s;
     }

.btn-primary-thank:hover {
	background: #5568d3;
}

.btn-secondary-thank {
   display: inline-block;
  color: #667eea;
   background: white;
      text-decoration: none;
   border-radius: 6px;
        font-weight: 600;
	transition: all 0.3s;
  padding   :  14px 28px;
  border: 2px solid #667eea;
}

.btn-secondary-thank:hover {
   background: #667eea;
  color :   white;
}

.contact-details-box
{
   background: #fff9e6;
    padding: 25px;
   border-radius: 8px;
  border: 2px solid #ffd966;
}

.contact-box-title {
  margin-bottom: 12px;
  color: #2c3e50;
   font-size: 20px;
}

.contact-box-text {
   	margin-bottom: 8px;
    color  :#555;
     }

.contact-box-address {
   color: #666;
    font-size: 14px;
}


.additional-info-zone {
   padding: 60px 0;

}

.additional-title {
   text-align     :    center;
   font-size: 32px;
   margin-bottom: 40px;
   color: #2c3e50;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap :     30px;
}

.info-card {
  background: white;
  border-radius: 10px;
	overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
       transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}  

.info-card-img {
  width: 100%;
  height   :     200px;
                    object-fit: cover;
}

.info-card-title {
   padding    :   20px 20px 10px;
    font-size: 22px;
    color: #2c3e50;
}

.info-card-text {
  padding:      0 20px 15px;
      color: #555;
}

.info-card-link {
    display: inline-block;
	 margin:    0 20px 20px;
         color: #3498db;
    text-decoration  :  none;
  font-weight: 600;
               transition: color 0.3s;


}

.info-card-link:hover {
    color: #2980b9;
}@media (max-width: 768px) {
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .approach-content {
        grid-template-columns: 1fr;
    }
    
    .commitment-wrapper {
        grid-template-columns: 1fr;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}.policySection		{
   padding: 80px 2rem;
   background  : #f8f9fa;
}

.policyContainer
{
    max-width    :  800px;
  margin: 0 auto;
   text-align: left;
}

.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;
    }
}
