* {
   	 margin: 0;
                    padding:        0;
    box-sizing: border-box;
}



body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #333;
    background: #f8f9fa;
}

.primary-navigation {
    position: fixed;
  top  :       0;
    width    :    100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
  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: 1rem 2rem;
}

.company-logo {
    height: 40px;
  width: auto;
}

.nav-menu {

  display     : flex;
   list-style: none;
  gap: 2rem;


}

.nav-menu a {
      text-decoration: none;
  color: #2c3e50;
    font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover {
  color: #3498db;
}

.nav-menu a::after {
  content: '';
  position: absolute;
   width: 0;
  height: 2px;
   bottom   :  -5px;
  left: 0;
    background-color: #3498db;
    transition   :   width 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.mobile-toggle {
   display: none;
    flex-direction: column;
  cursor: pointer;
  width: 30px;
   height: 30px;
  justify-content: space-around;


}

.mobile-toggle span {
    width: 25px;
	height    :    3px;
    background: #2c3e50;
	transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); 

}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}  

.mobile-toggle.active span:nth-child(3)
{
  transform: rotate(-45deg) translate(7px, -6px);}

main {
      margin-top    :        80px;

}

.hero-banner {


  padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color     :        white;
    min-height: 70vh;
		display: flex;
    align-items: center;
	}

.content-container   {
   max-width: 1200px;
	 margin: 0 auto;
    padding: 0 2rem;
}

.hero-banner .content-container {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
	font-weight: 700;
   line-height: 1.2;
}

.hero-text p   {


	font-size   :1.2rem;
  margin-bottom: 2rem;
		 opacity: 0.9;
}

.action-buttons {
   display: flex;
  gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
          padding  :12px 30px;
  text-decoration: none;
  transition: all 0.3s;
   border-radius: 50px;
        display: inline-block;
   font-weight: 600;
}

.primary-btn {
       background: #fff;
    color: #667eea;
}

.primary-btn:hover	{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.secondary-btn {
	 border: 2px solid #fff;
   color: #fff;
}  

.secondary-btn:hover {
  color: #667eea;
	background: #fff;
}

.hero-image img {
   width: 100%;
	 height: auto;
          border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);


}

.services-overview {


  padding: 5rem 0;
   background: #fff;


}

.services-overview h2 {
    text-align: center;
	 margin-bottom: 3rem;
   font-size: 2.5rem;
          color:     #2c3e50;
}

.services-grid  
  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {


  background: #f8f9fa;
   border-radius: 15px;
 padding: 2rem;
    text-align: center;
   transition: transform 0.3s, box-shadow 0.3s; 
	}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
	
}

.service-card img {

	    width: 100%;
    height: 200px;
      object-fit: cover;
  border-radius: 10px;
  margin-bottom :        1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
  color: #2c3e50;
    font-size: 1.5rem;
}

.service-card p {
  color: #666;
    line-height: 1.8; 
	
}

.methodology-section {
  padding  :       5rem 0;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
       color: white;
}

.methodology-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 3rem;
  align-items: center;
}

.method-text h2 {
  font-size: 2.5rem;
    margin-bottom: 2rem;
}

.method-text p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
  opacity: 0.95;
}

.methodology-list 
 {

    list-style: none;
  padding: 0;
	}

.methodology-list li {
   margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.methodology-list li::before {
  content: '→';
    position: absolute;
   left: 0;
    color     :      #fff;
    font-weight: bold;
    font-size: 1.2rem;
}

.method-visual img {
 width   :100%;
  height: auto;
 border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cta-section {
	padding: 4rem 0;

       background   :       #2c3e50;

   color: white;

   text-align:       center;
}

.cta-content h2 {
   font-size: 2.5rem;
    margin-bottom  :   1rem;
}

.cta-content p   {
    font-size: 1.2rem;
	margin-bottom     :  2rem;
       opacity: 0.9;
}

.cta-button {
  background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 40px;
   text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
     font-size: 1.1rem;
  transition: all 0.3s;
 display    :       inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);

	  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-section     {
        padding: 5rem 0;
  background: #f8f9fa;
}

.contact-section h2 {
     text-align: center;
   margin-bottom: 3rem;
   font-size: 2.5rem;
   color: #2c3e50;}

.contact-wrapper {
  display: grid;
    grid-template-columns: 1fr 2fr;
	 gap: 3rem;
}

.contact-info h3 {
  color   :    #2c3e50;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
   	 color: #666;
   	 line-height: 1.8;
}

.contact-form {
    background :   white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
   flex-direction: column;
}

.form-group.full-width {
    grid-column: span 2;
}


.form-group label {
  margin-bottom: 0.5rem;
  color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea{
    padding     :   12px;
	border: 2px solid #e1e8ed;
    border-radius: 8px;
	font-size: 1rem;
    transition  :     border-color 0.3s;
} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline :   none;
    border-color: #3498db;
	
}

.submit-btn 
 {
  width    :       100%;
    padding   : 15px;
  background: linear-gradient(45deg, #667eea, #764ba2);
   color: white;
   border  : none;
         border-radius: 8px;
     font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.main-footer {
    background: #2c3e50;
    color: white;
  padding: 3rem 0 1rem;
}

.footer-container {
   max-width: 1200px;
    margin: 0 auto;
  padding    :   0 2rem;
  display: grid;
   grid-template-columns: 1fr 2fr;
	 gap: 3rem;
}

.footer-logo {
  height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap:      2rem;
}

.link-group h4 {
  margin-bottom: 1rem;
  color: #3498db;
}

.link-group ul {
   list-style: none;
}

.link-group li {
	  margin-bottom    :   0.5rem;

}

.link-group a
{
  color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s;
}

.link-group a:hover {
   color: #3498db;
}

.link-group p {

   color: #bdc3c7;
  line-height: 1.6; 



} 

.footer-bottom {
     border-top: 1px solid #34495e;
   margin-top: 2rem;
   padding-top: 1rem;
    text-align: center;
         color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-banner .content-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}.about-hero {
    padding: 4rem 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
 color: white;
  margin-top     :     80px;
}

.about-hero .content-container {
   display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 3rem;
   align-items: center;
}

.about-intro h1 {
   font-size: 3rem;
    margin-bottom: 1.5rem;
		 font-weight: 700;
}

.lead-text {
     font-size: 1.3rem;
    line-height: 1.7;
	 opacity     :       0.95;
}

.about-image-section img
	{
  width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.mission-section {
  padding: 5rem 0;
  background: #fff;
}

.mission-section h2 {

	   text-align: center;
          font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #2c3e50;
	
}

.mission-content 
 {


   display: grid;
   grid-template-columns: 1.5fr 1fr;
   gap: 3rem;
  align-items: center;


}

.mission-text p {
		margin-bottom: 1.5rem;
    font-size:    1.1rem;
                    line-height    :       1.8;
  color: #555; 

}

.mission-visual img {
   width: 100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.approach-section {
 padding: 5rem 0;
    background: #f8f9fa;
}

.approach-section h2	{
   text-align: center;
   font-size: 2.5rem;
	margin-bottom: 3rem;
   color: #2c3e50;
}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.approach-item {
  background: white;
    padding: 2rem;
    border-radius     :10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.approach-item:hover {
     transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	}

.approach-item h3 {
    font-size: 1.4rem;
	margin-bottom: 1rem;
    color: #4facfe;
}

.approach-item p {
   color: #666;
               line-height: 1.7;
}

.values-section {


  padding: 5rem 0;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
   color: white;

}

.values-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.values-image img {
      width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
     }

.values-text h2 {
   font-size: 2.5rem;
   margin-bottom: 2rem;
}

.value-item {
   margin-bottom: 2rem;
	
}

.value-item h4 {
   margin-bottom: 0.5rem;
          font-size: 1.3rem;
  color: #fff;
}

.value-item p {
  opacity: 0.9;
  line-height: 1.6;
}

.experience-section {
  padding: 5rem 0;
    background: #fff;
}

.experience-section h2 {
	text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
          gap: 2rem;
   margin-bottom: 3rem;
	
}

.stat-item {
  text-align: center;
   padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
   color: #4facfe;
  display: block;
}

.stat-label
	{

    color: #666;
    font-size: 1rem;
   margin-top:     0.5rem;


}

.experience-text p {
   font-size: 1.1rem;
  line-height    :        1.8;
    color: #555;
   margin-bottom: 1.5rem;
}

.philosophy-section
{
  background: #f8f9fa;
   padding: 5rem 0;
}

.philosophy-content {
    display  :     grid;
        grid-template-columns: 1.5fr 1fr;
 gap: 3rem;
    align-items: center;
}

.philosophy-text h2
{
                    font-size: 2.5rem;
  margin-bottom: 2rem;
    color   :      #2c3e50;
}

.philosophy-text p {
   font-size: 1.1rem;
  line-height: 1.8;
    color:   #555;
  margin-bottom: 1.5rem;
}

.philosophy-image img	{
  width: 100%;
    height: auto;
          border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);


}

.cta-about {
	   padding: 4rem 0; 
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
  color: white; 
  text-align:     center;



}

.cta-about h2 {
	   font-size    :      2.5rem;
   margin-bottom: 1rem;


}

.cta-about p {
  font-size: 1.2rem;
	 margin-bottom: 2rem;
  opacity: 0.9;
}



.cta-button-about {


  background: rgba(255,255,255,0.2);
    color : white;
   padding: 15px 40px;
   text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
        font-size: 1.1rem;
   transition: all 0.3s;
    display: inline-block;
  border: 2px solid rgba(255,255,255,0.3);
	}

.cta-button-about:hover 
 {
         background: white;
    color: #f5576c;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);

}

.thankyou-hero  
  {
	padding   :    6rem 0; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
		color: white; 
	   text-align:   center; 
	   margin-top: 80px;
}

.thankyou-content {
   max-width: 600px;
     margin: 0 auto;
	
}

.success-icon {
   margin-bottom  :   2rem;
}

.checkmark-circle {
   width: 100px;
   height: 100px;
    border-radius: 50%;
  background: rgba(255,255,255,0.2);
          display: inline-flex;
   align-items: center;
  justify-content: center;
 margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.checkmark {
   width: 30px;
    height: 15px;
	 border : 4px solid white;
	border-top: none;
   border-right: none;
  transform: rotate(-45deg);}

.thankyou-hero h1 {
          font-size: 3rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.thankyou-message {
    line-height: 1.7;
  opacity   :   0.95;
   font-size: 1.3rem;
}



.next-steps  {
  padding: 5rem 0;
  background: #fff;
}

.next-steps h2 {
        text-align: center;
  font-size: 2.5rem;
   margin-bottom:3rem;
   color: #2c3e50;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-item {
    transition     : transform 0.3s;
    background: #f8f9fa;
  padding   : 2rem;
   border-radius: 10px;
    display: flex;
    gap: 1.5rem;
}

.step-item:hover {
  transform: translateY(-5px);
}

.step-number {

	   width     :   50px;
  height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
    border-radius: 50%;
   display: flex;
  align-items: center;
  justify-content: center;
      font-size: 1.5rem;
  font-weight: 700;
  flex-shrink   : 0;}

.step-content h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
   font-size: 1.3rem;
}

.step-content p {
   color: #666;
  line-height: 1.7;
}

.preparation-tips {
  padding: 5rem 0;
    background: #f8f9fa;
}

.tips-content


{
    display: grid;
    grid-template-columns    : 1.5fr 1fr;
  gap: 3rem;
  align-items:       center;
}

.tips-text h2 {
	font-size: 2.5rem;
   margin-bottom: 2rem;
          color: #2c3e50;
}

.tip-item {
  margin-bottom: 2rem;
   padding: 1.5rem;
   background: white;
   border-radius :      8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tip-item h4 {
   margin-bottom: 0.5rem;
    color: #667eea;
   font-size: 1.2rem;
}

.tip-item p {
  color: #666;
   line-height: 1.7;
}

.tips-image img {
    width: 100%;

	    height     :      auto;

			border-radius: 10px;

	  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonial-section {
   padding: 5rem 0;
    background: white;
}

.testimonial-section h2 {
    text-align  :   center;
        font-size: 2.5rem;
   margin-bottom: 3rem;
                    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
 background: #f8f9fa;
	    padding: 2rem;
	   border-radius: 10px;
	  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.testimonial-card p		{
   font-style: italic;
  color: #555;
  line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
	    color: #2c3e50;
    display:  block;
  margin-bottom: 0.5rem;
	}

.testimonial-author span {
    color: #888;
   font-size:     0.9rem;
}

.additional-resources {
    padding     :    5rem 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
} 

.additional-resources h2 {
        text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.resources-intro {
   text-align: center;
	 font-size: 1.2rem;
    margin-bottom  :  3rem;
	opacity: 0.95;
   max-width: 800px;
   margin-left: auto;
	margin-right: auto;
}

.resources-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap     :2rem;
}

.resource-item 
 {
     background: rgba(255,255,255,0.1);
    padding: 2rem;
     border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
     }

.resource-item h4 {
    margin-bottom: 1rem;
  font-size :    1.3rem;
}

.resource-item p {
   line-height: 1.7;
  opacity: 0.9;
}@media (max-width: 768px) {
    .about-hero .content-container,
    .mission-content,
    .values-content,
    .philosophy-content,
    .tips-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-intro h1,
    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .resources-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.content-section {
  padding:        5rem 0;
    background: #fff;
}

.content-section h1 {
    font-size: 2.5rem;
 color: #2c3e50;
    margin-bottom: 2rem;
	 text-align: center;
}

.content-section h2
{
                       font-size: 1.8rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
  margin-top  :    2rem;


}

.content-section p {
  font-size  :  1.1rem;
	color: #666;
   line-height: 1.8;
    margin-bottom: 1.5rem;
}

.content-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
	    font-size: 1.1rem;
	 color: #666;
    line-height: 1.8;
      margin-bottom: 1rem;

}