* {
          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-color: #f8f9fa;
}

.container {
               margin: 0 auto;
                    padding: 0 20px;
    max-width: 1200px;
}


.nav-wrapper {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
  width     :        100%;
   z-index: 1000;
}

.nav-container   {
  max-width: 1200px;
      margin: 0 auto;
   padding: 0 20px;
    display: flex;
  justify-content: space-between;
   align-items: center;
  height: 70px;
}

.nav-brand .logo-img


{
  height: 45px;
	   width: auto;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: #ecf0f1;
   text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
   padding: 10px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}  

.burger-menu {
    display: none;
    flex-direction: column;
  cursor :        pointer;
     gap: 4px;
}

.burger-line {
   width     :       25px;
    height: 3px;
	background-color: #ecf0f1;
   transition: 0.3s;
}

.hero-section {
  margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  overflow: hidden;
}

.hero-content {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
    display: grid;
    grid-template-columns :       1fr 1fr;
   gap: 60px;
   align-items: center;
}

.hero-text h1 {

	  font-size :     3.2rem;
   margin-bottom: 25px;
	line-height :       1.2;
   font-weight: 700;}

.hero-text p {
    font-size: 1.3rem;
	 margin-bottom: 40px;
   opacity: 0.9;
   line-height: 1.6;
}

.hero-buttons {
	display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
   padding: 15px 30px;
  text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
  background-color    :  #e74c3c;
  color: white;
}

.btn-primary:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-secondary {

	    background-color: transparent;
    color: white;
  border: 2px solid white;
     }

.btn-secondary:hover {
	 background-color: white;
  color: #764ba2;
}

.hero-image img {
  width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-section {
    padding: 100px 0;
    background-color: #ffffff;


}



.services-section h2 {
  text-align: center;

    font-size: 2.8rem;

    margin-bottom    :       60px;

                    color: #2c3e50;

 font-weight: 700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px; 

}

.service-card {
  background: linear-gradient(145deg, #f8f9fa, #e9ecef); 
	  padding: 40px; 
	    border-radius: 20px; 
	    transition: all 0.3s ease; 
	  border: 1px solid #dee2e6;
}

.service-card:hover


{
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-content h3 {
   font-size: 1.6rem;
  margin-bottom     : 20px;
	color: #2c3e50;
   font-weight: 600;
}

.service-content p {
   color: #6c757d;
   line-height: 1.7;
   font-size: 1.05rem;
}

.experience-section {

  padding: 100px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;


}

.experience-content {
    display: grid;
   grid-template-columns  : 1fr 1fr;
  gap: 60px;
    align-items: center;
}

.experience-text h2


{
  font-size: 2.5rem;
       margin-bottom: 30px;
   font-weight: 700;
}

.experience-text p {
	       font-size    :1.15rem; 
		margin-bottom: 40px; 
	                    opacity: 0.95; 
	  line-height: 1.7;}

.experience-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
  display: flex;
    flex-direction: column;
   align-items: center;
}

.stat-number {
      font-size: 2.5rem;
   font-weight: 700;
  color: #ffeaa7;
	 margin-bottom: 10px;
	}

.stat-label {
   font-size: 0.95rem;
    text-align  :    center;
      opacity: 0.9;
}

.experience-image img {
       width  :      100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	}

.cta-section {
	padding: 80px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
   text-align   :center;
   color: white;
}

.cta-content h2 {
    font-size: 2.8rem;
   margin-bottom: 25px;
   font-weight: 700;
	
}

.cta-content p {
    font-size: 1.2rem;
	 margin-bottom: 40px;
  opacity: 0.95;
    max-width: 600px;
   margin-left:      auto;
   margin-right: auto;
}

.btn-cta {


   background-color: #2d3436;
		 color     :   white;
   padding: 18px 40px;
	text-decoration: none;
   border-radius:  50px;
  font-weight: 600;
   font-size :      1.1rem;
  transition: all 0.3s ease;
  display: inline-block;

}

.btn-cta:hover {
  background-color: #636e72;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 52, 54, 0.4);
}

.training-programs


{
    padding: 100px 0;
    background-color: #f8f9fa;
}

.training-programs h2  {
   	text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
   color: #2c3e50;
    font-weight:700;
}

.programs-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;}

.program-card {
    background-color: white; 
	border-radius: 20px; 
        overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
    transition: all 0.3s ease;

}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.program-card img {
 height: 250px;
   width: 100%;
    object-fit   :  cover;
}

.program-info {
	 padding: 35px;
}

.program-info h3 {
  font-size: 1.5rem;
    margin-bottom: 20px;
   color: #2c3e50;
    font-weight: 600;
}

.program-info p {
    color    :      #6c757d;
    line-height: 1.7;
    font-size  :  1.05rem;
}

.contact-section


{
  padding: 100px 0;
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
}

.contact-wrapper {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: start;
}  

.contact-info     {
    color: white;
}

.contact-info h2  {
   font-size: 2.5rem;
    margin-bottom  :   25px;
  font-weight: 700;
}

.contact-info p {
    line-height: 1.6;
  font-size: 1.15rem;
    margin-bottom: 40px;
  opacity: 0.95;
}

.contact-details {
   display    :      flex;
    flex-direction    :  column;
  gap     :     20px;
}

.contact-item {
	    display: flex;
    flex-direction: column;
  gap :      5px;

}

.contact-item strong {
  font-weight: 600;
   opacity  :      0.9;
}

.contact-item span {
   font-size: 1.1rem;
} 

.contact-form-wrapper {
    background-color: white;
    padding     :       40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
   flex-direction: column;
  gap: 25px;
}

.form-group {
	display: flex;
    flex-direction    :  column;
  gap: 8px;
}

.form-group label {
       font-weight: 600;
   color: #2c3e50;
  font-size: 0.95rem;

}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px;
   border: 2px solid #e9ecef;
               border-radius     :        10px;
					font-size: 1rem;
   transition: border-color 0.3s ease;
   background-color: #f8f9fa; 
	
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
   border-color: #6c5ce7;
	background-color: white;
}

.submit-btn {
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
   color: white;
  padding: 18px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
         transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(232, 67, 147, 0.4);
}

.footer {
   background-color: #2c3e50;
    color   :  #ecf0f1;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;

		grid-template-columns  :    1fr 2fr;

	  gap :        60px;

				margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 20px;
	   opacity: 0.8;
	  line-height: 1.6;

}

.footer-logo {
   height :  40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-section h4 {
   margin-bottom: 20px;
  font-weight: 600;
   color: #3498db;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {

	   margin-bottom: 12px;
}

.footer-section ul li a {
   text-decoration: none;
                    transition: color 0.3s ease;
  color: #bdc3c7;
}

.footer-section ul li a:hover {

	   color: #3498db; 
	
     }

.footer-bottom {
    border-top: 1px solid #34495e;
  padding-top: 30px;
  text-align    :       center;
  opacity: 0.7;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: #2c3e50;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .experience-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }

    .experience-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}.about-hero 
 {
  margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
			margin-bottom: 25px;
  font-weight: 700;
} 

.about-hero-content p {
   max-width: 800px;
  font-size:1.25rem;
    opacity: 0.95;
    margin     :0 auto;
   line-height: 1.7;
}

.company-story {
    padding: 100px 0;
   background-color: #ffffff; 
	
}

.story-grid {
          display: grid;
	grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}

.story-content h2 {
	font-size: 2.5rem;
  margin-bottom: 30px;
   color: #2c3e50;
    font-weight     :   700;
}

.story-content p

{
    font-size   :1.1rem;
    line-height: 1.7;
   margin-bottom: 25px;
  color: #555;
}

.story-highlights {
  display    :    flex;
   gap: 40px;
    margin-top: 40px;
}

.highlight-item {
   display: flex;
   flex-direction: column;
    align-items   :     center;
  text-align :    center;
}

.highlight-number {
 font-size  :2.2rem;
  font-weight: 700;
    color: #3498db;
   margin-bottom: 10px;
}

.highlight-text {
    font-size: 0.95rem;
   color: #7f8c8d;
  font-weight: 500;
}

.story-image img	{
  width: 100%;
   height: auto;
	 border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-vision {
	 padding: 80px 0;
  background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    color: white;
}

.mission-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
 gap: 60px;
}

.mission-block,
.vision-block {
    padding: 40px;
  background-color: rgba(255,255,255,0.1);
	 border-radius: 15px;
  backdrop-filter: blur(10px);
}

.mission-block h3,
.vision-block h3 {
	font-size: 1.8rem;
  margin-bottom: 20px;
    font-weight: 600;
}

.mission-block p,
.vision-block p {
    font-size   :       1.1rem;
   line-height: 1.7;
   opacity: 0.95;
}

.team-expertise {
  padding: 100px 0;
    background-color: #f8f9fa;
}

.team-expertise h2 {
   text-align: center;
                    font-size: 2.8rem;
   margin-bottom: 60px;
  color: #2c3e50;
    font-weight: 700;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.expertise-card {
   background-color: white;
	padding: 40px;
    border-radius : 20px;
	 text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}


.expertise-card:hover {
  transform: translateY(-10px);
}

.expertise-icon {
       margin-bottom: 25px;



}

.expertise-icon img {
  width: 80px;
         height: 80px;
	border-radius: 50%;
    object-fit: cover;
}

.expertise-card h4 {


  font-size:        1.5rem;
   margin-bottom: 20px;
    color: #2c3e50;
  font-weight: 600;}

.expertise-card p {
  color :     #6c757d;
  line-height: 1.7;
    font-size     :        1.05rem;
}

.approach-methodology {
   padding: 100px 0;
  background-color: #ffffff;
}

.approach-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 60px;
  align-items: start;
}

.approach-text h2    {
               margin-bottom: 30px;
   font-weight: 700;
    font-size  :      2.5rem;
  color: #2c3e50;
}

.approach-text p {
   font-size: 1.1rem;
   margin-bottom: 40px;
    color: #555;
    line-height: 1.7;
}

.methodology-steps {
    display: flex;

  flex-direction: column;

  gap: 30px;
}

.step-item {


    display: flex;
   gap: 20px;
    align-items: start;
     }

.step-number {
    width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :      white;
          border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-weight:    700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5    {
  font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
} 

.step-content p {
    color: #6c757d;
	line-height: 1.6;
   margin   :      0; 
	
}

.approach-image img {
         width: 100%;
    height: auto;
         border-radius    :       15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section   {
	padding     :        100px 0;
  background: linear-gradient(135deg, #fa7671 0%, #fd79a8 100%);
   color: white;
}

.values-section h2 {
     text-align  :        center;
   font-size: 2.8rem;
                    margin-bottom: 60px;
   font-weight: 700;
	
}

.values-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 40px;
}

.value-item {
  background-color: rgba(255,255,255,0.1);
  padding: 35px;
   border-radius   : 15px;
    text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.value-item h4{
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.value-item p   {


   font-size: 1.05rem;
   line-height: 1.7;
  opacity: 0.95;


}

.thankyou-main {
   margin-top:  70px;
   padding: 80px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  min-height: calc(100vh - 70px);
  display   :flex;
  align-items   : center;
}

.thankyou-content {
    text-align: center;
   color: white;
    max-width: 800px;
   margin: 0 auto;
}

.success-animation {


   margin-bottom: 40px;}

.checkmark-circle {
  width    :      100px;
    height     :       100px;
       background-color: #00b894;
    border-radius: 50%;
    margin: 0 auto 30px;
  display: flex;
 align-items: center;
   justify-content: center;
  animation: scale-in 0.5s ease-out;
}

.checkmark {
    width: 40px;
   height: 20px;
  border: 4px solid white;
    border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    animation: checkmark-draw 0.5s ease-out 0.3s both;


}@keyframes scale-in {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmark-draw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 40px;
        height: 0;
    }
    100% {
        width: 40px;
        height: 20px;
    }
}.thankyou-content h1 {
     font-size: 3rem;
    margin-bottom: 25px;
   font-weight: 700;


}

.success-message {
    font-size: 1.25rem;
  margin-bottom: 50px;
	 opacity: 0.95;
  line-height: 1.7;
}

.next-steps {
  background-color: rgba(255,255,255,0.1);
   padding: 40px;
  border-radius: 20px;
   margin-bottom: 40px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.next-steps h3 {
    font-size: 1.8rem;
      margin-bottom: 30px;
       text-align: center;
	font-weight: 600;
}

.steps-timeline {
    display: flex;
   flex-direction: column;
  gap: 25px;

}

.timeline-item {
    display: flex;
    gap: 20px;
  align-items: start;
}

.timeline-icon {
    width  :  40px;
  height: 40px;
  background-color: #fd79a8;
   color: white;
    border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
    font-weight   :      700;
   flex-shrink: 0;
}

.timeline-content h4 {
  font-size: 1.2rem;
     margin-bottom: 8px;
    font-weight: 600;
} 

.timeline-content p {
  opacity: 0.9;
	line-height: 1.6;
          margin  :     0;
}

.additional-info{
  margin-bottom: 40px;
}

.additional-info h3
{
    font-size: 1.8rem;
    margin-bottom: 30px;
	 font-weight: 600;
}

.info-cards

{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 25px;


}

.info-card {
  background-color: rgba(255,255,255,0.1);
   padding: 30px;
  border-radius  :  15px;
        text-align: left;
  backdrop-filter: blur(10px);
}

.info-card h4 {
  font-size: 1.3rem;
               margin-bottom: 15px;
   font-weight: 600;
}

.info-card p {
   opacity: 0.9;
  line-height: 1.6;
  margin : 0;
}

.thankyou-actions {
                    display: flex; 
	    gap: 20px; 
	  justify-content: center; 
	   margin-bottom: 40px; 
	  flex-wrap: wrap;

}

.contact-reminder {
  background-color: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-reminder p

{
  margin: 5px 0;
}

.contact-reminder a  
  {
     color: #ffeaa7;
   text-decoration: none;
    font-weight: 600;
}

.contact-reminder a:hover {
     text-decoration: underline;
	}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-grid,
    .mission-content,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-highlights,
    .expertise-grid,
    .values-grid {
        gap: 30px;
    }

    .story-highlights {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .steps-timeline {
        gap: 20px;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .thankyou-actions .btn-primary,
    .thankyou-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .expertise-card,
    .next-steps,
    .info-card {
        padding: 25px;
    }

    .methodology-steps {
        gap: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}.cookies-section,
.privacy-section{
                    padding: 100px 0; 
	background-color: #f8f9fa;
}

.cookies-section h1,
.privacy-section h1 {
  font-size: 2.8rem;
	   margin-bottom    :    40px;
	  color: #2c3e50;
	  font-weight: 700;
	    text-align: center;
}

.cookies-section h2,
.privacy-section h2 {
	    font-size: 1.8rem;
    margin-bottom: 20px;
   color: #2c3e50;
  font-weight: 600;
	}

.cookies-section p,
.privacy-section p {
    font-size: 1.1rem;
   color: #6c757d;
  line-height: 1.7;
   margin-bottom: 20px;
}

.cookies-section ul,
.privacy-section ul {
    list-style: disc;
		padding-left: 40px;
	    margin-bottom: 20px;
}

.cookies-section ul li,
.privacy-section ul li {
   font-size     :    1.1rem;
          color: #6c757d;
   line-height: 1.7;
  margin-bottom: 10px;
}@media (max-width: 768px) {
    .cookies-section h1,
    .privacy-section h1 {
        font-size: 2.2rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .cookies-section p,
    .privacy-section p,
    .cookies-section ul li,
    .privacy-section ul li {
        font-size: 1rem;
    }
}