* {

		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;
   background:     #ffffff;
	
}

img		{
    max-width: 100%;
    height: auto;
  display    :block;
} 

.main-navbar {

	 background: #1a1a2e;
  padding: 1rem 0;
  position    :  sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
	}

.main-navbar.scroll-down
	{
  transform: translateY(-100%);
}

.main-navbar.scroll-up {
  transform: translateY(0);
}

.nav-wrapper {
  max-width: 1400px;
  margin: 0 auto;
    padding: 0 20px;
  display    :flex;
    justify-content: space-between;
	align-items: center;
}

.brand-area {
      display: flex;
    align-items: center;}

.logo-img {
  height: 45px;
   width :    auto;
}

.nav-links {
    display: flex;
       list-style: none;
     gap: 2.5rem;
      align-items: center;
}

.nav-links a {
     color: #ecf0f1;

	  text-decoration: none;

	  font-weight: 500;

		 transition: color 0.3s;

	   font-size: 1.05rem;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-toggle {
   display: none; 
	  flex-direction: column; 
	  background: none; 
	  border: none; 
	   cursor: pointer; 
	  padding: 0.5rem;
}

.nav-toggle span {

	  width: 25px;
   height: 3px;
    background: #ecf0f1;
	margin    :        3px 0;
   transition: 0.3s;
   border-radius: 3px;
     }

.nav-toggle.open span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
  opacity:0;
}


.nav-toggle.open span:nth-child(3)
{
  transform: rotate(45deg) translate(-5px, -6px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 80px 20px;
 display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
   align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-content h1 {


	font-size: 3rem; 
	   margin-bottom: 1.5rem; 
	  font-weight: 700; 
	      line-height: 1.2;
	}

.hero-desc {
   font-size: 1.25rem;
    margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button {
   display: inline-block;
	background   :    white;
   color: #667eea;
	 padding    :      15px 40px;
   border-radius   : 50px;
   text-decoration: none;
    font-weight: 600;
     transition :all 0.3s;
   font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2); 

}

.hero-visual img		{
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.intro-block {
   padding: 80px 20px;
  background: #f8f9fa;
	
}

.content-container {
	max-width: 900px;
   margin: 0 auto;
}

.intro-block h2 {

  font-size: 2.5rem;
	margin-bottom: 1.5rem;
  color: #1a1a2e;
  text-align: center;
	}

.intro-block p {
	font-size: 1.1rem;
    margin-bottom: 1.2rem;
   color: #555;
      text-align: center;


}

.services-area {
   padding: 80px 20px;
      max-width: 1400px;
   margin: 0 auto;
}

.services-area h2 {
   text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
    color  :   #1a1a2e;
}  

.services-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;


}

.service-card {
      background: white; 
	  border-radius: 15px; 
	   overflow: hidden; 
	  box-shadow: 0 5px 20px rgba(0,0,0,0.1); 
	  transition: transform 0.3s;

	}


.service-card:hover {

  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);


}

.service-card img {
    width: 100%; 
         height: 250px; 
   object-fit: cover; 

}

.service-card h3 {
 padding: 1.5rem 1.5rem 1rem;
  font-size: 1.5rem;
  color: #1a1a2e;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
  color: #666;
    line-height: 1.7;
}

.methodology-section {
  background: #1a1a2e;
    color: white;
   padding: 80px 20px;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items     :center;
}

.text-block h2 {
  font-size: 2.5rem;
   margin-bottom:        1.5rem;
}

.text-block p {
  margin-bottom: 1.2rem;
   opacity: 0.9;
	font-size: 1.1rem;
	line-height    :  1.8;
}

.visual-block img {
    border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.cta-section {


  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	padding: 80px 20px;
	text-align: center;
   color: white;}

.cta-content h2 {
   font-size: 2.8rem;
    margin-bottom: 1rem;


}

.cta-content p {
                    font-size: 1.3rem;
  margin-bottom: 2rem;
               opacity: 0.95;
}

.cta-btn-secondary {
   display: inline-block;
   background: white;
  color: #f5576c;
         padding: 15px 45px;
  border-radius   :     50px;
  text-decoration: none;
   font-weight: 600;
   transition: all 0.3s;
  font-size: 1.1rem;
}



.cta-btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.benefits-area {

   padding: 80px 20px;
  max-width :       1400px;
    margin: 0 auto;
	}

.benefits-area h2
{
    text-align: center;
  font-size: 2.5rem;
         margin-bottom: 3rem;
   color: #1a1a2e; 

}



.benefits-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.benefit-item {
    background  :        #f8f9fa;
		 padding: 2rem;
    border-radius: 12px;
   border-left :       4px solid #667eea;
}

.benefit-item h3


{
   font-size     :    1.4rem;
    margin-bottom: 1rem;
	color: #1a1a2e;
}

.benefit-item p {


   color: #666;
	line-height: 1.7;


}

.contact-section {
  padding: 80px 20px; 
   background: #f8f9fa; 

}

.contact-container {
   margin: 0 auto;
  gap: 60px;
	display: grid;
   max-width  :      1200px;
   grid-template-columns: 1fr 1.5fr;
}

.contact-info h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
   color: #1a1a2e;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
   margin-bottom: 2rem;
}

.info-details p     {
    margin-bottom: 1rem;
         font-size: 1.05rem;
}

.contact-form {
   background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.form-group {
        margin-bottom   :     1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width     : 100%; 
	  padding: 12px 15px; 
	    border: 2px solid #e0e0e0; 
	    border-radius: 8px; 
	                    font-size    : 1rem; 
	   font-family: inherit; 
	  transition: border-color 0.3s;
}  

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group select   {
  cursor   :  pointer;
}

.submit-btn {
  width: 100%;

    background: #667eea;

   color: white;

    padding: 15px;

   border: none;

	border-radius: 8px;

   font-size: 1.1rem;

    font-weight     :        600;

  cursor: pointer;

  transition: background 0.3s;
}

.submit-btn:hover {
        background: #5568d3;
}

.main-footer {
   background:       #1a1a2e;
  color     :   #ecf0f1;
   padding: 60px 20px 20px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
    display: grid;
   grid-template-columns: 1.5fr 1fr 1fr;
   gap: 40px;
	 margin-bottom: 2rem;
}

.footer-logo {
  height :   50px;
  width: auto;
  filter: brightness(0) invert(1);
          margin-bottom     :     1rem;
}

.footer-info h3,
.footer-nav h3 {
					font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

.footer-info p {
      margin-bottom: 0.5rem;
   opacity: 0.9;
} 

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
   margin-bottom: 0.7rem;
}

.footer-nav ul li a {
    color: #ecf0f1;
  -moz-transition: color 0.3s;
   text-decoration: none;
	-webkit-transition: color 0.3s;
    transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #3498db;
}

.footer-bottom   {
    text-align: center;
		 padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   opacity: 0.8;
}@media (max-width: 968px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .hero-section {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }
  
  .hero-content h1 {
    font-size: 2.2rem;
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-list {
    grid-template-columns: 1fr;
  }
}.about-hero	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding   :       100px 20px 80px;
  text-align    :     center;
    color: white;
}

.about-hero-content h1 {

    font-size     :        3.2rem; 
	   margin-bottom: 1rem; 
	    font-weight: 700;



}

.subtitle-text {
          font-size: 1.3rem;
	opacity: 0.95;
  max-width: 700px;
   margin: 0 auto;
}

.story-section	{
  padding  :    80px 20px;
	 background  :     #f8f9fa;
}

.story-container {
	max-width: 1400px;
  margin: 0 auto;
   display: grid;
      grid-template-columns: 1.2fr 1fr;
	gap: 60px;
  align-items:  center;
}

.story-text h2 {
				 font-size: 2.5rem; 
  margin-bottom: 1.5rem; 
    color: #1a1a2e;
}

.story-text p

{


  font-size: 1.1rem;
    line-height: 1.8;
    color   :      #555;
    margin-bottom: 1.5rem;}

.story-image img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mission-area {
  padding: 80px 20px;
	background: white;
}

.mission-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.mission-wrapper h2 {
   font-size: 2.5rem;
    text-align: center;
               margin-bottom: 1.5rem;
    color: #1a1a2e;
}

.mission-lead {
   font-size: 1.2rem;
        text-align: center;
    max-width    :      900px;
  margin: 0 auto 3rem;
  color: #666;
   line-height: 1.8;
}

.mission-points {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;


}



.mission-card {
    border-radius: 12px;
    padding: 2rem;
  border-top     :        4px solid #667eea;
   background: #f8f9fa;
}

.mission-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
  color: #1a1a2e;
}

.mission-card p {
      color: #666;
   line-height: 1.7;
}

.approach-section	{
    padding: 80px 20px;
   background: #1a1a2e;
  color: white;
}

.approach-content    {
  max-width: 1400px;
   margin: 0 auto;
}

.approach-content h2 {
  font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-grid {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap     :       30px;
}

.approach-item {
  background: rgba(255,255,255,0.05);
	 padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid #3498db;
}

.approach-item h3 {
  color   : #3498db;
   margin-bottom: 1rem;
    font-size  :     1.4rem;
}

.approach-item p {
   opacity: 0.9;
	   line-height: 1.7;
}

.values-block {
   padding: 80px 20px;
   background: white;
}

.values-content {
   max-width: 1400px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.values-visual img {
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);


}

.values-text h2 {
	 font-size: 2.5rem;
        margin-bottom: 2rem;
	color: #1a1a2e;
}

.values-list {
  list-style: none;
}

.values-list li		{
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
   font-size: 1.1rem;
    color: #555;
  line-height: 1.7;
}

.values-list li:last-child {
    border-bottom: none;
}

.expertise-section {
    padding: 80px 20px;
  background: #f8f9fa;

}

.expertise-section h2 {
    font-size   :       2.5rem; 
   text-align: center; 
  margin-bottom: 3rem; 
   color: #1a1a2e;
}

.expertise-container {
  max-width: 1400px;
   margin: 0 auto;
  display    :      grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.expertise-block {
  background: white;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.expertise-block img {
	   width: 100%;
    height    :        280px;
      object-fit: cover;
}

.expertise-block h3
	{
   padding: 1.5rem 1.5rem 1rem;
    font-size:  1.6rem;
                    color: #1a1a2e;
}

.expertise-block p {
	    padding: 0 1.5rem 1.5rem;
	color: #666;
  line-height :     1.7;
               font-size: 1.05rem; 

	}

.why-us-section {
  padding: 80px 20px;
	 background: white;
}

.why-us-wrapper {
       max-width: 1400px;
                    margin: 0 auto;
}

.why-us-wrapper h2 {
  font-size: 2.5rem;
    text-align: center;
   margin-bottom: 1.5rem;
    color    : #1a1a2e; 
	
}

.intro-why   {
    color: #666;
    font-size: 1.2rem;
   max-width: 800px;
  margin  : 0 auto 3rem;
    text-align: center;
}

.reasons-grid {
        display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
	   gap: 30px;
}

.reason-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding    : 2rem;
    border-radius: 12px;
   color: white;

}

.reason-box h4 {
    font-size: 1.4rem;
  margin-bottom: 1rem;
}

.reason-box p {

  line-height: 1.7;
  opacity: 0.95;
}

.contact-info-section {
	 padding: 80px 20px;
    background: #f8f9fa;
}

.contact-info-wrapper {
   max-width :       1000px;
     margin: 0 auto;
    text-align :       center;
}

.contact-info-wrapper h2 {
    font-size: 2.5rem;
   margin-bottom: 1rem;
    color: #1a1a2e;
}

.contact-info-wrapper > p {
    font-size: 1.1rem;
  color    :    #666;
   margin-bottom: 3rem;
     }

.contact-details-grid {
 display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap :30px;
     }

.contact-detail {
    background: white;
        padding  :       2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);


}

.contact-detail h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
   color:        #667eea;

}

.contact-detail p {

    font-size: 1.05rem;
    color: #555;
   line-height: 1.6;
	} 

.thankyou-hero {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thankyou-container {
    max-width: 1400px; 
	   margin: 0 auto; 
	   display     :     grid; 
	    grid-template-columns: 1.2fr 1fr; 
	  gap: 60px; 
	   align-items: center;
}

.thankyou-content   {
       color: white;
}

.success-icon {
   margin-bottom: 2rem;
}

.thankyou-content h1 {
    font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;

}

.thankyou-message {
    font-size: 1.2rem;
   margin-bottom: 3rem;
      opacity: 0.95;
   line-height:    1.7;
}

.next-steps {
  background: rgba(255,255,255,0.1);
    padding :    2rem;
   border-radius  :      15px;
   margin-bottom: 2rem;
}

.next-steps h2 {
    font-size: 2rem;
           margin-bottom: 2rem;

}

.steps-list{

	   display:     flex;
                    flex-direction: column;
  gap: 1.5rem;

}

.step-item	{
		 display: flex;
	gap: 1.5rem;
   align-items: flex-start;
}

.step-number {
  background: white;
  color: #667eea;
	width: 40px;
    height: 40px;
  border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content : center;
  font-weight: 700;
  font-size: 1.2rem;
       flex-shrink: 0;
}

.step-content h3 {

	         font-size: 1.3rem;
   margin-bottom: 0.5rem;
}

.step-content p {
  opacity: 0.9;
  line-height: 1.6;
}


.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
   display   :       inline-block; 
  padding: 15px 35px; 
  border-radius    :  50px; 
    text-decoration: none; 
   font-weight: 600; 
   transition: all 0.3s; 
       font-size: 1.05rem;
}

.btn-primary {
    background: white;
  color: #667eea;
}

.btn-primary:hover {

	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);


}

.btn-secondary {
   background:        transparent;
   color: white;
   border     :       2px solid white; 
	
}

.btn-secondary:hover {
	    background: white;
        color: #667eea;}

.thankyou-visual img  {
    border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.additional-info {
   padding: 80px 20px;
  background: #f8f9fa;
}

.info-wrapper  
  {
    max-width  :     1400px;
  margin  :  0 auto;
}

.info-wrapper h2 {
 font-size: 2.5rem;
        text-align :   center;
  margin-bottom: 3rem;
    color     : #1a1a2e;
}

.info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 30px;
}

.info-card {
   background: white;
       padding: 2rem;
       border-radius: 12px;
     box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-card h3 {
   font-size:  1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.info-card p {
  color: #666;
               line-height: 1.7;
}

.contact-bottom {
    padding: 80px 20px;
	 background: white;
  text-align: center; 

}

.contact-bottom-wrapper {
	  max-width: 800px;
  margin:      0 auto;


	}

.contact-bottom-wrapper h2	{
  font-size: 2.5rem;
	 margin-bottom: 1rem;
   color: #1a1a2e;
}  

.contact-bottom-wrapper p {
    font-size: 1.1rem;
       color: #666;
  margin-bottom   :     1rem;
}

.phone-large {
   margin: 2rem 0;
  font-size: 1.8rem;
    color: #667eea;
}

.address-info {
  color: #555;
}@media (max-width: 968px) {
  .story-container,
  .values-content,
  .thankyou-container {
    grid-template-columns: 1fr;
  }
  
  .about-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .expertise-container {
    grid-template-columns: 1fr;
  }
  
  .thankyou-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 640px) {
  .about-hero-content h1 {
    font-size: 2rem;
  }
  
  .subtitle-text {
    font-size: 1.1rem;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}.policySection {
    padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
	    max-width: 800px;
   text-align: left;
   margin: 0 auto;

}

.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;
    }
}