* {

	     margin: 0;
   padding: 0;
    box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
  max-width   :       1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
    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-container {
     max-width: 1200px;
   margin: 0 auto;
   display: flex;
	justify-content: space-between;
  align-items: center;
  padding: 1rem 20px;}

.logo {
  height     :  45px;
   width: auto;
}

.nav-menu {
  display: flex;
    gap: 2rem;
}

.nav-link {
  font-weight: 500;
       position: relative;
   transition: color 0.3s;
  color: #333;
  text-decoration: none;
}

.nav-link:hover	{
	   color: #007bff;
     }

.nav-link.active {


    color: #007bff;


}

.nav-link.active::after {
  content: '';
    position: absolute;
   bottom: -5px;
   left: 0;
  width: 100%;
    height: 2px;
    background: #007bff;
}

.nav-toggle {


    display: none;
  flex-direction: column;
  cursor: pointer;

}

.bar {
  transition  :      0.3s;
	 margin: 3px 0;
   width    : 25px;
  height: 3px;
    background: #333;
	
}

.hero-section {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.hero-container {
  max-width: 1200px;
  margin   : 0 auto;
   padding: 0 20px;
   display: grid;
      grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items :    center;
}

.hero-content h1 {
	font-size: 3.5rem;
  font-weight:bold;
      margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;
   margin-bottom: 2rem;
	opacity: 0.9;
   line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
          flex-wrap: wrap;
}

.btn-primary {
   background    :       #ff6b6b;

	                    color: white;

	   padding: 15px 30px;

		 text-decoration: none;

	  border-radius: 50px;

	  font-weight: 600;

	    transition: all 0.3s;

	  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-secondary {
                       background: transparent;
  color: white;
    padding  :   15px 30px;
    text-decoration: none;
   border: 2px solid white;
 border-radius: 50px;
    font-weight: 600;
  transition :  all 0.3s;}

.btn-secondary:hover {
   background: white;
   color: #667eea;
}



.hero-image img {
   width    :     100%;
	border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.services-section {
  padding: 100px 0;
    background: #f8fafc;
}

.services-section h2  
  {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2d3748;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
 background: white;
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover


{
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}  

.service-image img {
   width: 100%; 
    height: 250px; 
   object-fit: cover;
}

.service-card h3		{
    padding: 1.5rem 2rem 1rem;
    font-size: 1.5rem;
    color: #2d3748;
}

.service-card p {
    padding: 0 2rem 2rem;
   color:   #718096;
    line-height: 1.6;
}

.about-preview {
    padding: 100px 0;
}

.about-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
       gap: 60px;
  align-items: center;
} 

.about-text h2 {
  font-size:     2.5rem;
 margin-bottom:        1.5rem;
     color: #2d3748;
}  

.about-text p    {
        font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height:      1.7;
}

.stats-row {
  display    :   flex;
    gap: 2rem;
	margin-bottom: 2rem;
}

.stat-item {
   display     :        flex;
  flex-direction    :   column;
   align-items: center;
    text-align: center;
}

.stat-number {
	font-size: 2.5rem;
    font-weight: bold;
   color: #007bff;
   line-height    :1;
}

.stat-label {
   font-size  : 0.9rem;
   color: #718096;
 margin-top: 0.5rem;

}

.btn-outline {
   background :    transparent;
    color: #007bff;
   padding: 12px 24px;
                    text-decoration: none;
  border: 2px solid #007bff;
    border-radius :6px;
   font-weight     : 600;
  display: inline-block;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: #007bff;
  color    :  white;
}

.about-image img {
	width: 100%;
  border-radius   :    15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
   padding :  80px 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    text-align: center;
  color: white;
}

.cta-content h2 {
   font-size: 2.8rem;
  margin-bottom: 1rem;
}

.cta-content p


{
  font-size: 1.2rem;
   margin-bottom     :      2rem;
  opacity:0.9;
          max-width: 600px;
    margin-left: auto;
    margin-right  :     auto;
}

.btn-cta {
   background: #ff6b6b;
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
   font-weight: 700;
   font-size: 1.1rem;
    display: inline-block;
  transition: all 0.3s;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-cta:hover {

	  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4); 
	


}

.contact-section {
   padding: 100px 0;
               background: #f7fafc;
}

.contact-wrapper {
     gap: 60px;
  align-items: start;
  grid-template-columns: 1fr 1fr;
    display: grid;
}

.contact-info h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;
    color: #2d3748;
}

.contact-info p   {
	    font-size: 1.1rem;
  color: #718096;
    margin-bottom: 2rem;
    line-height: 1.6;


}


.contact-details {
   display   :   flex;
   flex-direction: column;
       gap: 1rem;
}

.contact-item {
    display: flex;
  flex-direction: column;
}

.contact-label {

   font-weight: 600;
         color: #2d3748;
   margin-bottom: 0.25rem;
     }

.contact-form-wrapper {
    background   :       white;
   padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-form {
  display: flex;
   	 flex-direction: column;
    gap: 1.5rem;
}

.form-group {
      display: flex;
	flex-direction     :    column;
}

.form-group label {
   margin-bottom: 0.5rem;

	   font-weight: 600;

	  color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
       padding: 12px;
   border: 2px solid #e2e8f0;
    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 :       #007bff;
}

.btn-submit    {
   background: #007bff;
   color: white;
	padding: 15px;
   border: none;
  border-radius: 8px;
    font-size: 1.1rem;
		font-weight: 600;
  cursor: pointer;
   transition: all 0.3s;
}

.btn-submit:hover {
   background: #0056b3;
  transform: translateY(-1px);
}

.footer {
   background: #1a202c;
    color: white;
	padding: 60px 0 20px;
}

.footer-container {
  max-width: 1200px;
	 margin: 0 auto;
   padding    :     0 20px;
}



.footer-content {
         display: grid;
   grid-template-columns     :      1fr 2fr;
   gap: 3rem;
  margin-bottom: 2rem;
	
}

.footer-brand p {
   margin-top   :       1rem;
               color: #a0aec0;
   line-height  :      1.6;
}

.footer-logo  {

		height: 40px;
  filter: brightness(0) invert(1);
	}

.footer-links {
    display :   grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
     margin-bottom: 1rem;
  color: white;


}

.footer-column ul  
  {
  list-style: none;

}

.footer-column ul li {
   margin-bottom: 0.5rem;
}

.footer-column ul li a {
          color: #a0aec0;
  text-decoration: none;
	 transition: color 0.3s;
}

.footer-column ul li a:hover		{
                    color: white;
} 

.footer-column p {
    color: #a0aec0;
  line-height   :  1.5;
  margin-bottom: 0.5rem;
     }

.footer-bottom {
    border-top: 1px solid #2d3748;
   padding-top: 2rem;
	 text-align: center;
	color: #a0aec0;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-row {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}.about-hero {
    padding: 140px 0 80px;
  background: linear-gradient(135deg, #2c5aa0 0%, #6b46c1 100%);
    color: white;
    text-align: center;
}

.about-hero-content h1 {
  font-size: 3.2rem;
  font-weight: bold;
               margin-bottom: 1.5rem;
}

.about-hero-subtitle {
   max-width: 800px;
  margin: 0 auto;
   font-size: 1.3rem;
   line-height: 1.6;
    opacity: 0.9;
}

.mission-section {
	padding: 100px 0;
  background: white;
}

.mission-content {
  display: grid;
	 grid-template-columns: 1fr 1fr;
	gap: 4rem;
      align-items: center;
}

.mission-text h2 {
    font-size: 2.5rem;
  color: #2d3748;
   margin-bottom: 1.5rem;
}

.mission-text p {
    font-size: 1.1rem;
   color: #4a5568;
   line-height:      1.7;
  margin-bottom     :    1.5rem;
	
	}

.mission-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.values-section		{
    padding: 100px 0;
  background: #f7fafc;
}

.values-section h2 {
  text-align: center;
	    font-size: 2.5rem;
	  margin-bottom: 3rem;
	    color: #2d3748;


}

.values-grid {
                       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;}

.value-card {


	 background: white;
      padding :        2.5rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h3 {
       color: #2b6cb0;
       font-size: 1.4rem;
      margin-bottom: 1rem;


}

.value-card p {
      color: #4a5568;
    line-height    :    1.6;
}

.approach-section {
	padding    :  100px 0;
   background: white;
}

.approach-content 
 {
    display: grid;
   grid-template-columns    :      1fr 1fr;
  gap: 4rem;
   align-items: start;
}

.approach-text h2	{
	 font-size: 2.5rem; 
   color: #2d3748; 
  margin-bottom: 2rem;
}

.approach-steps {
  display: flex;
   flex-direction: column;
    gap: 2rem;
}

.step {
	display: flex;
	 align-items: flex-start;
                    gap: 1.5rem;
}

.step-number
{
   background: #3182ce;
    color: white;
  width: 50px;
   height: 50px;
    border-radius    :     50%;
	display: flex;
  align-items: center;
   justify-content: center;
	font-weight: bold;
	font-size   :  1.1rem;
   flex-shrink: 0;
}

.step-content h4 {
    color: #2d3748;
   font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #4a5568;
  line-height  :  1.6;
}

.approach-image img {
   width  :    100%;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise-section {
   padding: 100px 0;
  background: #f7fafc;
}

.expertise-section h2{
  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2d3748;
}

.expertise-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.expertise-item {
   background: white;
  padding: 2rem;
                    border-radius: 10px;
    border-left: 4px solid #3182ce;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.expertise-item h3 {
   color: #2d3748;
  font-size :       1.3rem;
  margin-bottom  :  1rem;
}

.expertise-item p {
    color: #4a5568;
  line-height: 1.6;
}

.results-section {
   padding: 100px 0;
  background: white;
}

.results-content{
    display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 4rem;
    align-items: center;
}

.results-text h2 {
   font-size: 2.5rem;
   color     :    #2d3748;
   margin-bottom: 1.5rem;
}

.results-text p {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1.1rem;
	margin-bottom: 2.5rem;
}

.results-stats {
    display: flex;
  flex-direction  :column;
       gap: 1.5rem;
}

.result-stat {
       display: flex;
   align-items: center;
   gap: 1rem;

}

.stat-value {
  background: #3182ce;
    color: white;
    padding: 0.8rem 1.2rem;
   border-radius: 8px;
         font-size: 1.3rem;
   font-weight: bold;
   min-width: 80px;
    text-align: center;
}

.stat-desc {
    color: #4a5568;
  font-size: 1rem;

}

.results-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.thankyou-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #48bb78 0%, #38b2ac 100%);
  min-height: 80vh;
}

.thankyou-content	{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap    :  3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.thankyou-main {
  background: white;
    padding:   3rem;
	border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
   text-align: center;
}

.success-icon    {
    margin-bottom: 2rem;
}

.checkmark {
   display: inline-block;
   width: 80px;
    height: 80px;
  position: relative;
	 margin: 0 auto;
}

.checkmark-circle {
   stroke: #48bb78;
  stroke-width: 3;
    fill: none;
  width   :     100%;
  height: 100%;
    border: 3px solid #48bb78;
  border-radius: 50%;
}

.checkmark-stem


{
   width  :        20px;

	    height: 3px;

	     background: #48bb78;

		position: absolute;

	   left: 22px;

	    top: 42px;

	  transform: rotate(45deg);
}

.checkmark-kick  {
  width: 12px;
    height: 3px;
  background: #48bb78;
	position: absolute;
   left     :       16px;
  top: 48px;
  transform: rotate(-45deg);
}

.thankyou-main h1 {
  font-size: 2.8rem;
  color: #2d3748;
	 margin-bottom: 1.5rem;
}

.thankyou-subtitle {
    font-size: 1.2rem; 
	  color: #4a5568; 
	 margin-bottom: 3rem; 
	   line-height: 1.6;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
  font-size: 2rem;

  color: #2d3748;

  margin-bottom    :    2rem;

   text-align: center;
}

.steps-timeline {
    display   :     flex;
  flex-direction: column;
   gap: 2rem;
}

.timeline-step {
    display: flex;
                    align-items: flex-start;
    gap: 1.5rem; 

}

.step-icon {
  background: #48bb78;
   color: white;
   width: 45px;
          height: 45px;
  border-radius: 50%;
    display: flex;
	align-items: center;
          justify-content: center;
  font-weight: bold;
   flex-shrink    :0;
}

.step-text h3 {
   color: #2d3748;
  font-size: 1.2rem;
    margin-bottom   :  0.5rem;
}

.step-text p {
    color: #4a5568;
    line-height: 1.5;
}

.thankyou-image     {
   margin: 2rem 0;
}

.thankyou-image img {
  width: 100%;
  border-radius: 12px;
}

.action-buttons{
  display    :flex;
   gap: 1rem;
    justify-content: center;
  flex-wrap: wrap;
}

.thankyou-sidebar {
    display: flex;
                    flex-direction: column;
  gap: 2rem;
}

.contact-card, .benefits-card {
   background: white;
 padding   :       2rem;
	border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-card h3, .benefits-card h3 {
  color: #2d3748;
  font-size     : 1.3rem;
    margin-bottom: 1rem;
}

.contact-card p, .benefits-card p {
    color: #4a5568;
  line-height:     1.6;
   margin-bottom: 1.5rem;

}

.contact-info p {


    margin-bottom: 0.5rem;
     }

.benefits-list {
   list-style: none;
  padding: 0;
}

.benefits-list li {
  color: #4a5568;
  padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
  padding-left: 1.5rem;
}

.benefits-list li::before {
  content: '✓';
      position: absolute;
    left: 0;
		 color: #48bb78;
    font-weight: bold;
}

.benefits-list li:last-child {
  border-bottom: none;
}@media (max-width: 768px) {
    .mission-content,
    .approach-content,
    .results-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .values-grid, .expertise-grid {
        grid-template-columns: 1fr;
    }

    .results-stats {
        align-items: center;
    }

    .result-stat {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .thankyou-main {
        padding: 2rem;
    }

    .thankyou-main h1 {
        font-size: 2.2rem;
    }
}