* {

	  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: #fff;
	}

.main-navigation {
          position: fixed;
  top: 0;
	width  : 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-container {
  max-width: 1200px;
   margin: 0 auto;
   display: flex;
         justify-content: space-between;
   align-items: center;
    padding: 1rem 2rem;
}

.brand-section {
   display   :        flex;
        align-items: center;
    gap: 12px;
}

.brand-logo {
      height: 40px;
  width     :    auto;


}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
	color: #2c3e50;
}

.nav-links		{
    display  :        flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {


   text-decoration: none;
	color    :  #2c3e50;
   font-weight: 500;
	transition: color 0.3s ease;
  position     :       relative;


}

.nav-link:hover,
.nav-link.active {
  color: #3498db;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom :    -5px;
   left: 0;
   width: 100%;
   height: 2px;
  background: #3498db;
}

.mobile-toggle {
   display:     none;
   flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.burger-line {
   width: 25px;
    height: 3px;
    background: #2c3e50;
					transition: all 0.3s ease;
}

.hero-section {
         position: relative; 
	    height: 100vh; 
	   display :       flex; 
	   align-items: center; 
	   justify-content: center; 
	  text-align: center; 
		overflow: hidden;
}

.hero-bg {
  position: absolute;
   top: 0;
   left: 0;
   width: 100%;
    height: 100%;
    object-fit: cover;
  z-index: -2;
}  

.hero-overlay {
  position :      absolute;
    top: 0;
  left: 0;
        width: 100%;
   height: 100%;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.8), rgba(44, 62, 80, 0.7));
    z-index: -1;
}

.hero-content {
    max-width: 800px;

	   padding  :   0 2rem;

	  color  :        white;
}

.hero-title 
 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
    font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle  {
   margin-bottom: 2.5rem;
    font-size: 1.3rem;
  opacity: 0.95;
	
}

.hero-actions 
 {
    display: flex;
   gap: 1rem;
    justify-content: center;
   flex-wrap  : wrap;
}

.cta-primary, .cta-secondary {
    -moz-transition: all 0.3s ease;
   padding: 15px 30px;
   text-decoration  :   none;
    border-radius  :50px;
        font-weight: 600;
    transition: all 0.3s ease;
    -o-transition  : all 0.3s ease;
	-webkit-transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
  background: #e74c3c;

    color: white;

  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}


.cta-primary:hover {
  background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.cta-secondary  {
  border: 2px solid white;
	color: white;
   background: transparent;
}

.cta-secondary:hover {

   background: white;
  color :       #2c3e50;



}  

.content-wrapper {
    max-width: 1200px;
	  margin: 0 auto;
			padding: 0 2rem;
}

.services-overview {
         padding:   100px 0;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.section-header {
  text-align: center;
         margin-bottom: 4rem;
}

.section-header h2 {
        font-size   :  2.5rem;
   color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
	max-width  :     600px;
    margin    :     0 auto;
}

.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 ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}


.service-image  
  {
  width: 100%;
				 height: 200px;
   object-fit: cover;
}

.service-content {
	 padding: 1.5rem;
}

.service-content h3 {
	 color:   #2c3e50;
   font-size: 1.4rem;
	margin-bottom: 0.5rem;
	font-weight: 600;
}

.service-content p {
      color: #7f8c8d;
   line-height: 1.6;


}


.cta-section    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     padding :  80px 0;
    color: white; 
	
}

.cta-container	{
   max-width: 1200px;
       margin :     0 auto;
   padding: 0 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.cta-content h2 {

       font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;}

.cta-content p {
    font-size: 1.1rem;
   margin-bottom    :      2rem;
      opacity: 0.9;
}

.cta-button {
    background: #e74c3c;
  color: white;
   padding: 15px 35px;
   text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
         display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
      background: #c0392b;
  transform: translateY(-2px);
}

.cta-image {
	 -webkit-border-radius: 15px;
    width: 100%;
  -moz-border-radius: 15px;
  border-radius: 15px;
  height: 300px;
   object-fit: cover;

}

.program-highlights {
    padding: 80px 0;
	  background: #f8f9fa;
}

.program-highlights h2 {
   text-align: center;
   font-size: 2.5rem;
	color: #2c3e50;
    margin-bottom: 3rem;
		 font-weight: 700;
}

.program-grid	{
   display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
}

.program-item {
    background: white;
  padding: 2rem;
   border-radius: 10px;
   text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.program-item:hover
{
  transform: translateY(-3px);}

.program-item h3 {
   font-size: 1.3rem;
    color:  #2c3e50;
   margin-bottom: 1rem;
   font-weight: 600;
}

.program-item p {
   color  :        #7f8c8d;
  line-height: 1.6;
}

.contact-section {
	        padding: 80px 0;
  background: linear-gradient(to right, #74b9ff, #0984e3);
}

.contact-container {
  max-width    :1200px;
    margin     :        0 auto;
    padding: 0 2rem;
  display    :grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: start;
}

.contact-info {
   color: white;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
   font-weight: 700;
	}

.contact-info p {
  font-size :  1.1rem;
  margin-bottom: 2rem;
   opacity: 0.9;
}

.contact-details  
  {
    display: flex;
    flex-direction   :  column;
    gap: 1rem;
	
}

.contact-item  {
  font-size: 1rem;


}

.contact-form {
   background: white;
   padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
         display: block;
   margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea		{
    width :       100%;
    padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
         font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color     :       #3498db;
}

.submit-btn {

	  width: 100%;
        background  :      #e74c3c;
	 color: white;
    -moz-transition: background 0.3s ease;
    padding: 15px;
  -webkit-transition: background 0.3s ease;
          -moz-border-radius: 8px;
    -webkit-border-radius  :    8px;
  border   :       none;
   border-radius: 8px;
	font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
    transition: background 0.3s ease;
   -o-transition:       background 0.3s ease;
}

.submit-btn:hover {
   background: #c0392b;
}

.site-footer {

	   background:       #2c3e50;
   color: white;
  padding   :50px 0 20px;

}

.footer-content

{
  max-width: 1200px;
   margin: 0 auto;
	padding: 0 2rem;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; 

}

.footer-logo {
  height: 50px;
    width: auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
   margin-bottom: 1rem;
  color    :       #ecf0f1;
  font-weight: 600;
}

.footer-links {
		 list-style: none;
}

.footer-links li {
	margin-bottom :      0.5rem;
}

.footer-links a {
	 color: #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color  :        #3498db;
}

.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: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 5px 15px 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;
    }

    .nav-links {
        flex-direction: column;
        padding: 1rem 2rem;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
   position: relative;
   height: 60vh;
    display: flex;
    align-items: center;
  justify-content: center;
    text-align: center;
  overflow: hidden;
  margin-top: 80px;
}

.story-section {
    padding: 80px 0;
   background: #f8f9fa;
}

.story-grid 
 {
	   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
	 align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
   font-size :      1.1rem;
   line-height: 1.8;
   color: #555;
    margin-bottom    :  1.5rem;
}

.full-width-img {
       width: 100%;
    height: 400px;
   object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);

}

.expertise-section {
 padding: 80px 0;
  background: white;}

.section-title {

	    text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
   font-weight: 700;


}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
               gap: 2rem;
}



.expertise-card
	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 2.5rem;
   border-radius: 15px;
  transition   :        transform 0.3s ease;
	}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}  

.expertise-card p {
   line-height: 1.6;
  opacity: 0.95;
}

.values-section {
      padding :80px 0;
  background: linear-gradient(to right, #74b9ff, #0984e3);
   color: white;
}  

.values-container {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items    :       center;
}

.values-content h2     {
    font-size: 2.2rem;
	 margin-bottom: 2rem;
   font-weight: 700;
}

.values-list {


    display:    flex;
   flex-direction: column;
                    gap: 1.5rem;

}

.value-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-item p {
  opacity: 0.9;
   line-height: 1.6;
}

.values-img		{
	 width: 100%;
   height: 350px;
	object-fit :   cover;
   border-radius: 15px;
}

.approach-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.centered-title {
  text-align: center;
  font-size :      2.5rem;
  color: #2c3e50;
  margin-bottom: 4rem;
   font-weight    :      700;
}

.approach-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 2rem;
}

.step-item {
    background: white;
  padding: 2rem;
	border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.step-number {


  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
   width: 60px;
    height: 60px;
   border-radius   :50%;
  display: flex;
  align-items: center;
  justify-content: center;
    font-size: 1.5rem;
    font-weight   :700;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
  font-size    : 1.3rem;
 color: #2c3e50;
   margin-bottom: 1rem;
   font-weight    :       600;
}

.step-item p {

  color: #7f8c8d;
		line-height: 1.6;
	}

.stats-section {
    padding: 60px 0;
     background    :    #2c3e50;
       color: white;
}

.stats-grid {
  display     :    grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 2rem;
     text-align: center;
}



.stat-item {
    padding: 1rem;
}

.stat-number {
  font-size: 3rem;
   font-weight   :  800;
   color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-label {
   font-size: 1.1rem;
    opacity: 0.9;
}

.thankyou-main {
  min-height: calc(100vh - 160px);
  padding: 120px 0 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.thankyou-container {
   max-width: 1200px;
  margin: 0 auto;
    padding:        0 2rem;
     display: grid;
	grid-template-columns: 1fr 1fr;
       gap: 4rem;
    align-items: center;
}

.success-content {
	color: white;
}

.success-icon-wrapper {
   margin-bottom: 2rem;
  text-align:    center;
}

.success-checkmark {
   width: 80px;
  height     :   80px;
  border-radius: 50%;
	 display: block;
   stroke-width    :  2;
   stroke: #fff;
  stroke-miterlimit: 10;
   margin: 0 auto;
  box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
   position: relative; 

}

.success-checkmark .icon-circle {
	stroke-dasharray: 166;
    stroke-dashoffset: 166;
  stroke-width: 2;
          stroke-miterlimit  :    10;
    stroke: #7ac142;
   fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  position  :        absolute;
  top   : 0;
  left: 0;
    width: 80px;
    height: 80px;
                    border-radius: 50%;
   border: 2px solid #7ac142;
}

.success-checkmark .check-icon {
                       transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
 position: absolute;
	 top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
     }

.icon-line
{
    display: block;
   height: 2px;
    background     :        #7ac142;
   position: absolute;
}

.icon-line.line-tip {
                    top:    46px;
   left  :        14px;
  width: 25px;
  transform: rotate(45deg);
}

.icon-line.line-long		{
		top: 38px;
   left: 30px;
       width  :    47px;
  transform: rotate(-45deg);
}

.success-title {
	font-size :  3rem;
	 margin-bottom: 1rem;
  font-weight: 800;
      text-align: center;
}

.success-message {
   font-size: 1.2rem;
  margin-bottom: 3rem;
   text-align   : center;
   opacity: 0.95;
}

.next-steps {
    margin-bottom: 3rem;


}

.next-steps h2 {
  font-size: 1.8rem;
    margin-bottom: 2rem;
   font-weight:     600;
}

.steps-list    {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.step-point {

	  display: flex;
   gap    :       1rem;
  align-items: flex-start;
	}

.step-indicator {
  background: rgba(255, 255, 255, 0.2);
   color: white;
   width: 40px;
    height: 40px;
  border-radius: 50%;
  display: flex;
    align-items: center;
                    justify-content: center;
   font-weight: 600;
    flex-shrink  :       0;
}

.step-text h3 {
    font-size: 1.1rem;
   margin-bottom: 0.5rem;
          font-weight: 600;

}

.step-text p {
   opacity  :        0.9;
  line-height: 1.6; 

}

.contact-reminder {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
   border-radius:     10px;
  margin-bottom: 3rem;
  text-align: center;
}

.contact-reminder h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    font-weight: 600;
}

.contact-info {
   font-size: 1.2rem;
   font-weight: 600;
  margin-bottom: 0.5rem; 
	
}

.office-hours{
    opacity: 0.9;
}

.return-actions     {
        display: flex;
                    gap: 1rem;
        justify-content: center;
}

.return-home-btn,
.learn-more-btn {
  font-weight: 600;
    border-radius: 50px;
  display: inline-block;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 12px 30px;
}

.return-home-btn {
   background:#e74c3c;
   color: white;
}

.return-home-btn:hover {
  background: #c0392b;
  transform: translateY(-2px);
}

.learn-more-btn {
    background: transparent;
  color: white;
  border: 2px solid white;
}

.learn-more-btn:hover {
	background: white;
    color: #2c3e50;
}

.thankyou-image


{
    width: 100%;
    height     :        400px;
       object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}

@media (max-width: 768px) {
    .story-grid,
    .values-container,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .success-title {
        font-size: 2.2rem;
    }

    .return-actions {
        flex-direction: column;
        align-items: center;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title,
    .centered-title {
        font-size: 2rem;
    }

    .story-content h2,
    .values-content h2 {
        font-size: 2rem;
    }

    .success-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}
