* {
    margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color     :        #333;
               background-color: #fff;
}

.primary-nav
{
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   position: fixed;
   top: 0;
  width     :  100%;
  z-index  :    1000;
    border-bottom    :   1px solid #e5e5e5;
  padding: 0.8rem 0;
}

.nav-container {
	 max-width: 1200px;
         margin: 0 auto;
  display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 20px;
}

.brand-logo {
        height: 45px;
      width: auto;}

.nav-links {
    display: flex;
   list-style: none;
    gap: 2rem;
}

.nav-links a {
  text-decoration: none;
    color: #2c3e50;
	 font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
   color: #3498db;
}

.burger-menu {
  gap: 4px;
       display: none;
      cursor: pointer;
     flex-direction: column;
}

.burger-menu span {
    width: 25px;
  height: 3px;
          background: #2c3e50;
  transition: 0.3s;
}



.hero-section {
   padding :     120px 20px 80px;
   max-width: 1200px;
  margin: 0 auto;
    display  :       grid;
  grid-template-columns     :  1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.hero-content h1 {
   color: #2c3e50;
	margin-bottom: 1.5rem;
               font-size: 2.5rem;
    line-height:        1.2;
}



.hero-content p {


    font-size: 1.1rem;
  color: #555;
   margin-bottom: 2rem;
	}

.hero-actions    {
    display: flex;
    gap  :        1rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
  padding: 12px 24px;
   text-decoration: none;
	border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s;
}

.cta-primary {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
   background: transparent;
   color: #3498db;
  border: 2px solid #3498db;
}

.cta-secondary:hover {
	background: #3498db;
  color: white;
}

.hero-visual img {
   width: 100%;
    height: 400px;
    object-fit: cover;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 80px 20px;
    background: #f8f9fa;
}

.container {
	 margin: 0 auto;
    max-width: 1200px;
}

.services-overview h2 {
   color: #2c3e50;
	 text-align: center;
				 font-size: 2.2rem;
                    margin-bottom   :    3rem;
}

.services-grid {
   display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
}

.service-card {
	    background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
     }

.service-card:hover  
  {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
   height: 200px;
   object-fit: cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;


} 

.service-card h3	{
    color: #2c3e50;
  margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p    {
    color: #666;
  line-height: 1.7;
}

.methodology-section {
    padding  :  80px 20px;
}

.methodology-content {
    display: grid;
  gap   :      3rem;
    align-items: center;
  grid-template-columns   :     1fr 1fr;
}

.method-text h2{
	font-size: 2.2rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
}

.method-text p{

	    margin-bottom    :     1.5rem;
   color: #555;
  font-size: 1.1rem;


}

.method-text ul {

   list-style: none;

	padding-left: 0;
}

.method-text li {
   padding: 0.5rem 0;
  color: #555;
  position: relative;
    padding-left: 20px;
}

.method-text li:before {
  content: "→";
   color: #3498db;
   position: absolute;
  left: 0;
}

.method-visual img {
   width: 100%;
  height: 350px;
   object-fit: cover;
   border-radius: 12px;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
  text-align: center;
}

.cta-content h2    {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {

          font-size: 1.1rem;

   margin-bottom: 2rem;

  opacity: 0.9;
     }

.cta-btn-large   {
     -o-transition     :    all 0.3s;
   display: inline-block;
    padding: 15px 30px;
    background: #3498db;
   -moz-transition: all 0.3s;
  -webkit-border-radius: 8px;
	 color: white;
    text-decoration: none;
         border-radius   :       8px;
   -webkit-transition: all 0.3s;
  font-weight  :   600;
	font-size: 1.1rem;
    transition: all 0.3s;


}

.cta-btn-large:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.contact-section {
   padding: 80px 20px;

   background: #f8f9fa;
}

.contact-section h2{
  text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
  margin-bottom: 3rem;
}

.contact-wrapper {
	 gap: 3rem;
   max-width:  1000px;
   margin: 0 auto;
  grid-template-columns: 2fr 1fr;
  display: grid;
}

.contact-form {
   background: white;
	padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group	{
    margin-bottom: 1.5rem;

}

.form-group label {
	 font-weight: 500;
	  display: block;
	    color: #2c3e50;
	    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 12px;
  border: 2px solid #e1e1e1;
   border-radius: 6px;
   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(135deg, #3498db, #2980b9);
  color     :       white;
   border: none;
  border-radius: 6px;
    font-size: 1.1rem;
   font-weight   :    600;
  cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);}

.contact-info {
   background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: fit-content;
}


.contact-info h3		{
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.info-item {
 margin-bottom: 1rem;
	color  :    #555;
}

.site-footer {
    background: #2c3e50;
  color: white;
   padding: 50px 20px 20px;
} 

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
 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: white;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top  :   1px solid #34495e;
    text-align: center;
	color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .cta-primary, .cta-secondary {
        text-align: center;
        width: 100%;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}  

.hero-content-about {
 max-width: 800px;
    margin: 0 auto;
	text-align: center;
}

.hero-content-about h1 {
  font-size: 2.8rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content-about p {
  font-size    :     1.2rem;
    color: #555;
   line-height: 1.8;
}

.our-story {
    padding: 80px 20px;
}

.story-content {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;


}

.story-text h2		{
    font-size: 2.2rem;
   color: #2c3e50;
   margin-bottom: 1.5rem;
}

.story-text p {
    margin-bottom: 1.5rem; 
	  color: #555; 
	    font-size: 1.05rem; 
	   line-height: 1.7;
}

.story-visual img {
   width: 100%;
   height: 350px;
   object-fit: cover;
	 border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.team-section {

	    padding: 80px 20px;

	   background: #f8f9fa;
     }

.team-section h2 {
	 text-align: center;
    font-size: 2.2rem;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
   margin: 0 auto;
}

.team-member {
   background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   text-align: center;
  transition: transform 0.3s;
     }

.team-member:hover {
  transform: translateY(-5px);
}

.member-photo {
   margin-bottom: 1.5rem;
}

.member-photo img {


    width: 100%;
       height: 250px;
    object-fit :   cover;
   border-radius: 8px;}

.team-member h3 {
  color: #2c3e50;
         margin-bottom   :       0.5rem;
  font-size: 1.4rem;
}

.member-role {
   color: #3498db;
  font-weight: 600;
    margin-bottom: 1rem !important;


}

.team-member p {
    color: #666;
          line-height :    1.6;
}

.values-section {
    padding: 80px 20px;
	
}

.values-section h2
	{
               text-align: center;
	    font-size: 2.2rem;
	  color: #2c3e50;
		 margin-bottom: 3rem;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width     : 1200px;
    margin: 0 auto;
}

.value-item {
   padding: 2rem;
               text-align: center;
  border: 2px solid #e9ecef;
	border-radius: 12px;
    transition: all 0.3s;

}

.value-item:hover {
   border-color: #3498db; 
	  transform: translateY(-3px); 
	  -ms-transform: translateY(-3px);
}  

.value-item h3 {

	 color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
	}

.value-item p {

		color: #666;
  line-height: 1.6;}

.achievements-section{
	 padding: 80px 20px;
    background: #f8f9fa;
}

.achievements-content {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
	 grid-template-columns: 1fr 1fr;
   gap   :      3rem;
       align-items: center;
}

.achievements-text h2 {
    font-size:2.2rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
}

.achievements-list {
   list-style: none;
  padding: 0;
}

.achievements-list li {
  padding: 0.8rem 0;
 color: #555;
   position: relative;
   padding-left: 25px;
    font-size: 1.05rem;

}

.achievements-list li:before {
  content: "✓";
	color: #27ae60;
  font-weight: bold;
   position: absolute;
   left: 0;
}

.achievements-visual img {
  width: 100%;
  height: 350px;
   object-fit: cover;
  border-radius: 12px;
}

.approach-section {
   padding: 80px 20px;
}

.approach-section h2 {
      text-align: center; 
     font-size: 2.2rem; 
  color: #2c3e50; 
  margin-bottom: 3rem;
}

.approach-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
		gap: 2rem;
    max-width: 1200px;
          margin:    0 auto;
}

.step-item {
    text-align: center;
  padding: 2rem 1rem;
}



.step-number {
    width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color     : white;
  border-radius  :        50%;
  display: flex;
  align-items: center;
    justify-content: center;
    font-size : 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}


.step-item h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
   font-size: 1.3rem;
}

.step-item p {
	    color: #666;
  line-height: 1.6;




}

.thankyou-hero {
	padding: 120px 20px 60px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
    text-align: center; 

}

.thankyou-content {
    margin: 0 auto;
    max-width: 600px;
     }

.success-indicator {
    margin-bottom  :      2rem;
}

.checkmark-circle 
 {
		width:80px;
       height:    80px;
  background: rgba(255,255,255,0.2);
	 border-radius: 50%;
	display: flex;
   align-items: center;
  justify-content: center;
   margin: 0 auto;
	animation: scaleIn 0.6s ease-out;

}

.checkmark {
  width: 30px;
          height: 15px;
  border: 3px solid white;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
	animation: checkmarkDraw 0.8s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 30px; height: 15px; }
}.thankyou-content h1 {
   font-size  :        2.5rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
}


.lead-text {
  font-size: 1.2rem;
  line-height   :     1.7;
    opacity: 0.95;
}

.next-steps {
    padding     :        80px 20px;
}

.next-steps h2 {
   text-align: center;
    font-size: 2.2rem;
   color    :     #2c3e50;
    margin-bottom: 3rem;


}

.steps-timeline {
	 max-width: 800px;
   	 margin: 0 auto;
       position: relative;
}

.steps-timeline::before {
  content: '';
	 position: absolute;
   left: 30px;
  top: 0;
   bottom: 0;
   width: 2px;
  background: #e9ecef; 
	
}

.timeline-item {
   display: flex;
   margin-bottom: 3rem;
  position: relative;
}

.timeline-marker {
    width   :  60px;
   height: 60px;
    background: #3498db;
  color: white;
  border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
    font-weight: bold;
  font-size: 1.2rem;
   flex-shrink: 0;
   position: relative;
   z-index: 1;
}

.timeline-content 
 {
	margin-left: 2rem;
    padding-top: 0.5rem;
}



.timeline-content h3 {
  color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size     :       1.3rem;
} 

.timeline-content p {
  color: #666;
    line-height: 1.6;
}

.while-waiting {
        padding: 80px 20px;
  background: #f8f9fa;
}

.while-waiting h2 {
    text-align: center;
  font-size: 2.2rem;
       color: #2c3e50;
    margin-bottom: 3rem;
}

.waiting-content {
  max-width: 1200px;
  margin: 0 auto;
   display: grid;
   grid-template-columns   :  1fr 1fr;
   gap: 3rem;
   align-items :center;
}



.waiting-text p {
  color: #555;
  font-size: 1.05rem;
   line-height: 1.7;
    margin-bottom: 2rem;
}

.waiting-tips h3 {
    color: #2c3e50;
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.waiting-tips ul {
    list-style: none;
	 padding: 0;
}

.waiting-tips li {
       padding: 0.5rem 0;
   color: #555;
  position: relative;
        padding-left: 20px;}

.waiting-tips li:before {
  content: "•";
	color: #3498db;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.waiting-visual img {
  width: 100%;
  height: 350px;
  object-fit: cover;
       border-radius: 12px;
	
}

.quick-links {
    padding :      80px 20px;
}

.quick-links h2 {
  text-align: center;
   font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 3rem;
}

.links-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
	background: white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
    transition: transform 0.3s;
}

.link-card:hover {


  transform: translateY(-5px);


}

.link-card h3 {
    color: #2c3e50;
  margin-bottom: 1rem;
    font-size: 1.3rem;
}

.link-card p {

	   color: #666;
  margin-bottom: 1.5rem;
       line-height: 1.6;

} 

.link-btn {
	display: inline-block;
    padding: 12px 24px;
   background: #3498db;
  color: white;
   text-decoration: none;
  border-radius     :6px;
  font-weight    :600;
	transition: all 0.3s;
}

.link-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .steps-timeline::before {
        left: 15px;
    }
    
    .timeline-marker {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        margin-left: 1rem;
    }
    
    .waiting-content {
        grid-template-columns: 1fr;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}