* {
         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 {
    max-width     :        1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-nav {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index     :       1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1200px;
    margin: 0 auto;
   display: flex;
    justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.brand-section .brand-logo {
   height: 45px;
    width: auto;
}

.nav-links {

    display: flex; 
						list-style: none; 
	   gap: 2rem;
     }

.nav-links a {
  -webkit-border-radius: 4px;
   color: white;
    text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
    padding :  8px 16px;
  -moz-border-radius    :4px;
    border-radius: 4px;
}

.nav-links a:hover {
  background-color: rgba(255,255,255,0.2);
}

.burger-menu	{
  gap: 4px;
  flex-direction: column;
    cursor: pointer;
  display: none;
}

.burger-menu span {
    width: 25px;
   height :  3px;
    background-color: white;
  transition: 0.3s;
}

.hero-section 
 {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 120px 0 80px;
   display: flex;
    align-items: center;
   min-height: 70vh;
    margin-top: 70px;
}



.hero-content		{
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items  : center;
  padding: 0 20px;

}

.hero-content h1 {
 font-size     :     3.5rem;
   font-weight: 700;
    color: white;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
   margin-bottom   :    2rem;
}

.cta-primary {

	display: inline-block;
  background-color: #4CAF50;
  color: white;
    padding: 16px 32px;
    text-decoration  :   none;
  border-radius: 50px;
   font-weight: 600;
  font-size: 1.1rem;
   transition  :      all 0.3s ease;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);


}

.cta-primary:hover {
   background-color:      #45a049;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.hero-image img {
  width    :    100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-overview {
    padding: 80px 0;
   background-color: #ffffff;
}

.services-overview h2
	{

	  text-align: center;
   font-size:        2.8rem;
	 margin-bottom: 3rem;
	color: #2c3e50;

}

.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 20px rgba(0,0,0,0.1);
         transition: transform 0.3s ease;
   text-align: center;
}

.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 {
                       font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-card p {
  color: #7f8c8d;
  line-height: 1.6;
} 

.methodology-section {
	padding: 80px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.methodology-content {
                       max-width: 1200px;

	   margin: 0 auto;

	   display :   grid;

	    grid-template-columns: 1fr 1fr;

	    gap: 4rem;

	   align-items: center;

	    padding: 0 20px;

}

.methodology-content h2 {
   margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.methodology-content p {
   font-size  :  1.1rem;
   margin-bottom: 2rem;
	line-height: 1.7;
}

.stats-container {
      gap: 2rem;
  display: flex;
}

.stat-item {
   text-align   :     center;
}

.stat-number {
               display: block;
       font-size: 2.5rem;
                  font-weight: 700;
     color: #ffeaa7;
}

.stat-label {
	 font-size: 0.9rem;
    opacity: 0.9;}

.methodology-image img {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.cta-section {
    padding: 60px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
   text-align: center;
   color: white;
     }

.cta-section h2 {

	    font-size    :    2.5rem;
    margin-bottom: 1rem;}

.cta-section p {
    font-size  :1.2rem;
  margin-right: auto;
   margin-bottom: 2rem;
   max-width: 600px;
    margin-left: auto;
}

.cta-secondary {
    display: inline-block;
    background-color: white;
   color: #e17055;
  padding: 16px 32px;
   text-decoration: none;
    border-radius: 50px;
       font-weight: 600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.cta-secondary:hover
{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
	
}

.contact-section {
    padding: 80px 0;
   background-color: #f8f9fa;
}

.contact-section h2 {
  text-align    :    center;
   font-size: 2.5rem;
  margin-bottom:     3rem;
  color: #2c3e50;
}

.contact-wrapper {

	  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  max-width: 1000px;
   margin: 0 auto;}

.contact-info h3 {
  font-size: 1.5rem;
   margin-bottom  :    2rem;
  color: #34495e;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
   color: #2c3e50; 
   margin-bottom: 0.5rem; 
    display   :     block;
}

.contact-form {
     background    :white;
          padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
	margin-bottom: 0.5rem;
   font-weight: 500;
    color: #34495e;
}

.form-group input,
.form-group select,
.form-group textarea {
   width   :        100%;
	padding: 12px;
    border: 2px solid #e9ecef;
   border-radius: 6px;
    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: #667eea;


}

.submit-btn {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 14px 30px;
  border: none;
   border-radius: 6px;
   font-size: 1.1rem;
    font-weight: 600;
	cursor :    pointer;
    transition: all 0.3s ease;
  width: 100%;}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.main-footer		{
   background-color    :        #2c3e50;
  color: white;
  padding: 3rem 0 1rem;

}

.footer-content {
  grid-template-columns: 1fr 3fr;
    padding: 0 20px;
   max-width: 1200px;
  display  : grid;
  margin: 0 auto;
    gap: 3rem;
}

.footer-logo {
               height: 60px;
  filter: brightness(0) invert(1);
}

.footer-info {
   display   :grid;
  grid-template-columns: repeat(3, 1fr);
  gap : 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-section ul {


    list-style: none;


}

.footer-section li {
    margin-bottom :0.5rem;
}

.footer-section a {
	color: #bdc3c7;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
                    color: white;
}

.footer-bottom {
   text-align: center;
   border-top     :1px solid #34495e;
    padding-top : 1rem;
    color: #95a5a6;
    margin-top: 2rem;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-container {
        justify-content: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
   padding    :    140px 0 80px;
  color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
	font-weight: 700;
}

.about-hero-content p {
    font-size: 1.3rem;
   max-width: 800px;
  margin     :    0 auto;
  line-height: 1.6;
 opacity:  0.95;
}

.our-story {
    padding: 80px 0;
          background-color: #ffffff;
}

.story-content {
  grid-template-columns: 1fr 1fr;
    align-items: center;
  gap: 4rem;
  display: grid;
}

.story-text h2 {
    font-size: 2.5rem;
   margin-bottom: 2rem;
    color:     #2c3e50;
}

.story-text p {
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
	margin-bottom: 1.5rem;
}

.story-image img {
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.our-approach {
  padding: 80px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    color: white;


}

.our-approach h2 {
  text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
}

.approach-grid {
         display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;


}



.approach-item {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius :  12px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
} 

.approach-number {
      align-items   :        center;
    font-weight     :  700;
	justify-content: center;
  width: 50px;
  border-radius: 50%;
    height: 50px;
               margin-bottom: 1rem;
  background: white;
   font-size   :     1.5rem;
  display: flex;
  color: #fd79a8;
	}

.approach-item h3 {
  font-size: 1.3rem;
	 margin-bottom: 1rem;
}

.approach-item p {
   line-height: 1.6;
    opacity: 0.9;
}

.expertise-areas {
  background-color: #f8f9fa;

   padding: 80px 0;
}

.expertise-areas h2 {
	   text-align: center;
		 font-size: 2.5rem;
  margin-bottom: 3rem;
   color: #2c3e50;
}

.expertise-content {

    display: grid; 
  grid-template-columns: 2fr 1fr; 
   gap: 3rem; 
    align-items: start;

}

.expertise-list {


    display: grid;
    gap: 2rem;
	}

.expertise-category {
  background: white;
	  padding: 2rem;
	  border-radius: 12px;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.expertise-category h3 {
      font-size: 1.4rem;
    margin-bottom: 1rem;
  color: #34495e;
   border-bottom: 2px solid #667eea;
   padding-bottom: 0.5rem;
     }

.expertise-category ul {

        list-style: none;
	 padding: 0;

}

.expertise-category li {
          padding: 0.5rem 0;
         position: relative;
    padding-left: 1.5rem;
}

.expertise-category li::before {
  content: '✓';
    position: absolute;
    left: 0;
   color: #667eea;
   font-weight: bold;
}

.expertise-image img {

        width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);




}

.achievements {
    padding: 80px 0;
    background-color: #ffffff;
}

.achievements h2  
  {
	text-align: center;
    font-size: 2.5rem;
	margin-bottom: 3rem;
  color: #2c3e50;
}


.achievements-grid {
   display: grid;
   gap: 2rem;
}

.achievement-card {
	display: grid;
    grid-template-columns: 200px 1fr;
   gap : 2rem;
   background: white;
                    padding   :     2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  align-items: center; 

}

.achievement-card img {
		width: 100%;
   height: 150px;
    object-fit: cover;
    border-radius: 8px;


}

.achievement-content h3 {
  font-size: 1.4rem;
   margin-bottom: 1rem;
   color: #34495e;
}

.achievement-content p {
  line-height: 1.6;
  color: #555;
}

.why-choose-us {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
	
}

.reason-item {
  background: rgba(255,255,255,0.1);
    padding     :  2rem;
   border-radius: 12px;
    margin-bottom   :      2rem;
  backdrop-filter: blur(10px);
} 

.reason-item h3 {
  font-size: 1.3rem;
    margin-bottom: 1rem;
   color: #ffeaa7;
}

.reason-item p {


   line-height: 1.6;
    opacity: 0.9;


}

.thankyou-hero {
  background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
   padding: 140px 0 80px;
      color: white;
  text-align: center;
}

.thankyou-content {
  max-width: 600px;
   margin: 0 auto;
}

.success-icon   {
   margin-bottom: 2rem;
}

.checkmark-circle {
   width: 100px;
    height: 100px;
  background: rgba(255,255,255,0.2);
  border-radius    :       50%;
  display: flex;
	align-items: center;
    justify-content: center;
  margin     :   0 auto;
   position: relative;
}

.checkmark {
   width: 40px;
   height: 20px;
    border: 4px solid white;
  border-top: none;
		 border-right: none;
  transform: rotate(-45deg);
    margin-top: -10px;
}

.thankyou-content h1 {


       font-size   :    3rem;
    margin-bottom: 1.5rem;
  font-weight: 700;

}

.main-message {
    font-size    :   1.2rem;
  line-height     :        1.7;
  opacity: 0.95;
}

.what-happens-next

{
    padding    :     80px 0;
  background-color: #f8f9fa;
}

.what-happens-next h2 {
    text-align   :      center;
 font-size: 2.5rem;
   margin-bottom: 3rem;
  color  :  #2c3e50;
}

.steps-timeline {
	max-width: 800px;
    margin  :      0 auto;
}

.timeline-item {
   display: grid;
    grid-template-columns: 80px 1fr;
   gap   :    2rem;
  margin-bottom  : 3rem;
   align-items: start;

}

.timeline-number {
   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	border-radius: 50%;
    display: flex;
        align-items: center;
	 justify-content: center;
  font-size: 1.5rem;
   font-weight: 700;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content h3 {
                    font-size: 1.4rem;
   margin-bottom: 0.5rem;
  color: #34495e;
}

.timeline-content p {
    color: #555;
   line-height: 1.6;
  margin-bottom: 0.5rem;
}

.timeline-duration {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

.meantime-tips {
               padding: 80px 0;
  background-color: #ffffff;
}

.meantime-tips h2 {
  text-align: center;
  font-size:     2.5rem;
  margin-bottom: 3rem;
  color    :     #2c3e50;
}

.tips-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.tip-card {
    background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  border-left: 4px solid #667eea;
   transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-3px);
}

.tip-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #34495e;
}

.tip-card p {
          color: #555;
   line-height: 1.6;
}

.additional-resources {
  padding: 80px 0;
  background-color   :        #f8f9fa;
}

.additional-resources h2 {
   text-align: center;
	 font-size: 2.5rem;
     margin-bottom: 3rem;
      color: #2c3e50;
}

.resource-item {

    display: grid;
        grid-template-columns: 250px 1fr;
    gap: 2rem;
  background: white;
  padding: 2rem;
   border-radius:   12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
  align-items   :  center;}

.resource-item img{
  object-fit: cover;
    height: 150px;
  width: 100%;
	 border-radius: 8px;
}

.resource-text h3		{

	   font-size: 1.4rem;
   margin-bottom: 1rem;
  color: #34495e;
	}

.resource-text p {
      color  :       #555;
	    line-height     : 1.6;}

.emergency-contact {
         padding :    60px 0;
  background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
   color: white;
   text-align: center;
}

.emergency-info h2 {
          font-size: 2.2rem;
    margin-bottom: 1rem;
}

.emergency-info p    {
   margin-left: auto;
	   font-size     :      1.1rem;
	  line-height: 1.6;
	   margin-right: auto;
	    margin-bottom: 2rem;
	    max-width: 600px;


}

.contact-details   {
   display: flex;
    justify-content: center;
	gap: 3rem;
    margin-bottom    :     2rem;
}

.contact-item strong {
   display: block;
   margin-bottom: 0.5rem;
      font-size:    1.1rem;
}

.back-home-btn {
    display: inline-block;
    background-color     : white;
  color: #fd79a8;
         padding: 14px 30px;
  text-decoration: none;
  border-radius: 50px;
   font-weight: 600;
  font-size : 1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.back-home-btn:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,255,255,0.4);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .achievement-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .resource-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .approach-number,
    .timeline-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .checkmark-circle {
        width: 80px;
        height: 80px;
    }

    .checkmark {
        width: 30px;
        height: 15px;
    }
}.cookies-section,
.privacy-section {
   padding: 80px 0;
    background-color: #f8f9fa;

}

.cookies-section h1,
.privacy-section h1 
 {
  text-align: center;
  font-size:      2.8rem;
  margin-bottom: 2rem;
               color: #2c3e50;
} 

.cookies-section h2,
.privacy-section h2 {
    color: #34495e;
	font-size: 1.8rem;
    margin-bottom: 1rem;
   margin-top: 2rem;
}

.cookies-section p,
.privacy-section p {
       font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.7;
  margin-bottom:       1.5rem;}

.cookies-section ul,
.privacy-section ul {
    list-style-type: disc;
    margin-left: 2rem;
  margin-bottom: 1.5rem;
}

.cookies-section li,
.privacy-section li {
  line-height:    1.7;
  color: #7f8c8d;
    font-size: 1.1rem;
}