* {

   padding: 0;
    margin: 0;
  box-sizing: border-box;
	}

body {


  font-family: 'Arial', sans-serif;
       line-height: 1.6;
     color: #333;
       overflow-x: hidden;


}



.container {
		max-width:    1200px;
    margin: 0 auto;
    padding   :        0 20px;
}

.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 {
   display: flex;
    justify-content: space-between;
   align-items: center;
    padding   :      1rem 2rem;
    max-width: 1400px;
  margin: 0 auto; 
	
}



.brand-logo		{

          height: 45px;
  width: auto;}

.nav-links
{
   display: flex; 
	    list-style: none; 
	  gap: 2.5rem;
} 

.nav-links a {
    text-decoration     :       none;
   color: #2c3e50;
    font-weight: 500;
   transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover {
  color: #e74c3c;
}

.nav-links a::after {
  bottom: -5px;
  position: absolute;
  height: 2px;
    left: 0;
   background-color    :     #e74c3c;
   transition: width 0.3s ease;
  content: '';
   width: 0;
}

.nav-links a:hover::after {
         width: 100%;
}

.nav-toggle {

	  display: none;
   flex-direction: column;
    cursor: pointer;
          gap: 4px;}

.nav-toggle span {
  transform-origin: center;
    background: #2c3e50;
  transition: 0.3s;
    width: 25px;
  height: 3px;
}

.hero-section {
  margin-top: 80px;
   min-height: 90vh;
   display     :       flex;
      align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 4rem 2rem;
}

.hero-content {
  flex: 1;
    max-width: 600px;
    padding-right: 2rem;
}

.hero-content h1 {
  color: #2c3e50;

   line-height: 1.2;

    font-weight: 700;

  margin-bottom: 1.5rem;

    font-size: 3.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
   line-height: 1.6;
}

.hero-actions {
   display: flex;
		gap: 1.5rem;
	    flex-wrap: wrap; 
	
}

.hero-image {
   flex: 1;
	display: flex;
   justify-content  :      center;
  align-items   :  center;
}

.hero-image img {
   max-width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.btn {
  display: inline-block;
   padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 50px;
   font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
          cursor  :      pointer;
    font-size: 1rem; 

}

.btn-primary {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3); 
	
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.btn-secondary    {
    background: transparent;
   color: #2c3e50;
  border: 2px solid #2c3e50;
}

.btn-secondary:hover {
  background: #2c3e50;
    color: white;
  transform: translateY(-2px);
}

.btn-accent {
	  background: linear-gradient(45deg, #3498db, #2980b9);
         color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
	}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);


}

.services-section {
  padding: 6rem 0;
  background: white;
}

.services-section h2 {
    text-align: center;
   font-size: 2.8rem;
        color: #2c3e50;
    margin-bottom: 4rem;
          font-weight: 700;
}

.services-grid {
               display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 3rem;
  margin-top: 2rem;
}

.service-card {
  background: white;
    border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition  :       all 0.3s ease;
   border: 1px solid #f1f3f4;
}

.service-card:hover {


  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);


}

.service-card img  {


   width: 100%;
   height:  200px;
   object-fit: cover;
   border-radius: 10px;
  margin-bottom: 1.5rem;}

.service-card h3 {
  font-size: 1.5rem;
   color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
   color: #6c757d;
  line-height: 1.6;
}


.cta-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color  :white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;

                    margin-bottom     : 1.5rem;

   font-weight: 700;
}

.cta-content p {

                    font-size: 1.2rem;
	margin-bottom: 2.5rem;
    opacity: 0.95;
       max-width: 700px;
   margin-left: auto;
    margin-right: auto;
	}

.about-preview {
    padding: 6rem 0;
   background: #f8f9fa;
}

.about-content {
    grid-template-columns: 1fr 1fr;
   display: grid;
   gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size     :   2.5rem;
   color: #2c3e50;
   margin-bottom :       1.5rem;
   font-weight: 700; 
	
}

.about-text p {
  color: #6c757d;
   margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}

.expertise-list {
 list-style   :   none;
   margin-top: 2rem;
}

.expertise-list li {
   padding  :    0.8rem 0;
    padding-left: 2rem;
  position    :      relative;
                    color: #495057;
   font-weight: 500;
}

.expertise-list li::before {
  content: '✓';
   position: absolute;
	 left     :     0;
  color: #e74c3c;
  font-weight: bold;
    font-size: 1.2rem;
} 

.about-image img {
   width: 100%;
	 border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); 

}

.contact-section {
    padding: 6rem 0;
    background: white;
}



.contact-section h2 {
   text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
	 margin-bottom: 4rem;
    font-weight: 700;
	


}

.contact-wrapper {
    display: grid;
 grid-template-columns: 1fr 1fr;
  gap: 4rem;
    max-width: 1000px;
  margin: 0 auto;
}

.contact-info h3 {


    font-size: 1.8rem;
  color: #2c3e50;
	margin-bottom: 1rem;
  font-weight: 600;


}

.contact-info p {
   color: #6c757d;

	  margin-bottom: 2rem;

	    line-height: 1.6;

	        font-size: 1.1rem;
}

.contact-details {

   margin-top     :2rem;

}

.contact-item   {
	margin-bottom: 1.5rem;


}

.contact-item strong {
    color: #2c3e50; 
        font-size: 1.1rem; 
         display: block; 
  margin-bottom: 0.5rem;
}

.contact-item p {
  margin: 0;
	color: #495057;
}

.contact-form {


	background: #f8f9fa;
    padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border :        2px solid #e9ecef;
  background   :   white;
         border-radius:  10px;
  font-size: 1rem;
    padding: 1rem;
    transition: all 0.3s ease;
	width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus
	{
    outline: none;
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group textarea {
	resize: vertical;
  min-height: 120px;
}

.main-footer {
  background: #2c3e50;
  color: white;
   padding: 3rem 0 1rem;
}

.footer-container {
  max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.footer-brand {
   margin-bottom: 2rem;
   text-align: center; 
	
}

.footer-logo {
  height     : 40px;
  filter: brightness(0) invert(1);
}

.footer-content {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap     :        2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
			margin-bottom: 1rem;
   color: #ecf0f1;
  font-weight: 600; 
	
}

.footer-section ul {
    list-style: none;
}


.footer-section ul li {
  margin-bottom:    0.5rem;
}


.footer-section ul li a {
   color: #bdc3c7;
               text-decoration     :   none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover  
  {
   color: #e74c3c;
}

.footer-section p {
  line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
	 border-top: 1px solid #34495e;
    padding-top: 1rem;
  text-align: center;
  color  :        #95a5a6;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 2rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .services-section h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .services-section,
    .about-preview,
    .contact-section {
        padding: 4rem 0;
    }
}.nav-links a.active-page {
   color: #e74c3c;
}

.nav-links a.active-page::after {
   width: 100%;
}

.about-hero	{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: white;
    padding     :        8rem 0 5rem;
     margin-top: 80px;
    text-align: center;
}

.about-hero-content h1 {
   font-size: 3.2rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-hero-subtitle	{
  font-size: 1.3rem;
  opacity: 0.9;
    max-width: 800px;
      margin  :      0 auto;
   line-height  :    1.6;
}

.mission-section    {
   padding :       6rem 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  :        #2c3e50;
	  margin-bottom: 2rem;
	  font-weight: 700;
}

.mission-text p {
    color: #6c757d;
  margin-bottom: 1.5rem;
   line-height: 1.7;
    font-size: 1.1rem;
}

.mission-image img    {
  width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.expertise-section {
   padding   :      6rem 0;
	background: #f8f9fa;
}

.expertise-section h2    {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
  font-weight: 700;
}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 3rem;
}

.expertise-item {
    background: white;
   padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}


.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
    margin-bottom: 2rem;
}

.icon-circle {
   width: 80px;
    height: 80px;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  border-radius: 50%;
   display: flex;
  align-items  :   center;
  justify-content: center;
    margin   :      0 auto;
  color: white;
   font-size: 2rem;
    font-weight: bold;
}

.expertise-item h3 {
          font-size: 1.5rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 600;
}  

.expertise-item p {

    color: #6c757d;
  line-height: 1.6;

}

.approach-section  
  {
   padding: 6rem 0;
   background: white;
}

.approach-content {
   align-items: center;
        gap: 4rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
}

.approach-text h2 {
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 2rem;
  font-weight: 700;
}

.approach-text p {


    color: #6c757d;
	margin-bottom: 2rem;
       line-height  :1.7;
  font-size: 1.1rem;
     }

.methodology-steps
	{
    margin-top:    2rem; 
	
}

.step-item


{
    margin-bottom: 2rem;
	padding-left: 1.5rem;
   border-left: 3px solid #e74c3c;
}

.step-item h4 {
    color: #2c3e50;
   font-size: 1.2rem;
   margin-bottom     :   0.5rem;
   font-weight: 600;
}

.step-item p {
   color     :       #6c757d;
  margin     :0;
    line-height: 1.6;
}

.approach-image img {
	width: 100%;
	border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.experience-section {
    padding: 6rem 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    text-align: center;
}

.experience-section h2 {
   font-size: 2.8rem;
    margin-bottom: 2rem;
  font-weight: 700;
}

.experience-text p {
  font-size: 1.2rem;
  opacity: 0.95;
   margin-bottom: 1.5rem;
  max-width: 800px;
   margin-left: auto;
	margin-right: auto;
  line-height: 1.6;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap :     2rem;
  margin-top: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
	  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
    color: #ecf0f1;}

.stat-label {
   font-size: 1.1rem;
  opacity: 0.9;
}


.values-section {
   padding: 6rem 0;
   background     :   #f8f9fa;
}

.values-section h2 {
    text-align: center;
  font-size: 2.8rem;
                    color: #2c3e50;
  margin-bottom:4rem;
	 font-weight   :    700;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.value-card {


  background   : white;
    border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition :   all 0.3s ease;

}

.value-card:hover{
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); 
	
}

.value-card img {
    width: 100%;
   height: 200px;
    object-fit:       cover;
}

.value-card h3     {
   font-size: 1.5rem;
               color: #2c3e50;
   margin: 1.5rem 2rem 1rem;
  font-weight : 600;
}

.value-card p {

    color: #6c757d;
    margin: 0 2rem 2rem;
  line-height: 1.6;

}  

.commitment-section {
  padding   :    6rem 0;
    background: white;
}

.commitment-content {
  text-align: center;
    max-width: 900px;
   margin  :       0 auto;
}

.commitment-content h2 {
   font-size    :        2.8rem;
    color: #2c3e50;
   margin-bottom: 2rem;
   font-weight :      700;
}

.commitment-content p {
    color: #6c757d;
   margin-bottom: 2rem;
    line-height:   1.7;
  font-size: 1.1rem;
}

.commitment-features {
                    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	    gap: 2rem; 
	               margin-top  :   3rem;
}

.feature-item {
    text-align: center;
	padding: 1.5rem;
}

.feature-item h4


{
	color     :#2c3e50;
					font-size: 1.3rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.feature-item p
	{
   color: #6c757d;
   margin: 0;
   line-height: 1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
  padding    :      8rem 0 6rem;
    margin-top: 80px;
   text-align: center;
}

.thankyou-content h1 {
   font-size: 3.2rem;
  margin-bottom    :      1.5rem;
	font-weight: 700;
}

.thankyou-subtitle {
   font-size: 1.3rem;
  opacity     :        0.95;
   max-width: 700px;
  margin: 0 auto;
    line-height: 1.6;
}

.success-icon {
  margin-bottom: 3rem;
}

.checkmark

{
  width: 100px;
  height: 100px;
   border-radius :  50%;
  display: block;
  margin: 0 auto;
    position: relative;
}

.checkmark-circle {
   width   :     100px;
  height: 100px;
   position: absolute;
    left: 0;
          top: 0;
  background: rgba(255, 255, 255, 0.2);
   border-radius: 50%;
   border: 3px solid white;
  animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem {
    width: 3px;
   height: 25px;
	 background: white;
  left: 42px;
  top: 38px;
  position: absolute;
  transform: rotate(45deg);
   animation: checkmark-stem 0.6s ease-in-out 0.3s both;
}

.checkmark-kick {
   width: 14px;
  height  :  3px;
	background: white;
  left: 35px;
  top: 55px;
   position: absolute;
  transform: rotate(-45deg);
    animation: checkmark-kick 0.6s ease-in-out 0.5s both;
}@keyframes checkmark-circle {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes checkmark-stem {
    0% { height: 0; }
    100% { height: 25px; }
}

@keyframes checkmark-kick {
    0% { width: 0; }
    100% { width: 14px; }
}.next-steps-section {
   padding: 6rem 0;
   background    :   #f8f9fa;
}

.next-steps-section h2 {
  text-align: center;
     font-size: 2.8rem;
       color: #2c3e50;
   margin-bottom: 4rem;
   font-weight: 700;
}

.steps-timeline {


   max-width: 800px;
  margin: 0 auto;}

.timeline-item {
                    display: flex;
	margin-bottom: 3rem;
    position: relative;
}


.timeline-item::after {
  content: '';
  position: absolute;
	 left: 35px;
   top: 70px;
   width: 2px;
  height: calc(100% + 1rem);
    background    :        #e9ecef;


}

.timeline-item:last-child::after {
    display: none;
}

.timeline-marker {
  flex-shrink: 0;
   margin-right: 2rem;
}

.step-number {
  width   :       70px;

  height: 70px;

  background: linear-gradient(45deg, #27ae60, #2ecc71);

   border-radius: 50%;

    display: flex;

          align-items: center;

   justify-content: center;

      color: white;

          font-size: 1.5rem;

    font-weight: bold;
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
      margin-bottom: 1rem;
  font-weight: 600;
}

.timeline-content p {
    color: #6c757d;
    line-height: 1.6;
  margin-bottom: 0.5rem;
}

.timeline-duration {
  color     :     #27ae60;
   font-weight: 600;
  font-size     :     0.9rem;
}

.preparation-section {
	  padding: 6rem 0;

	    background: white;

}

.preparation-content{
   display:       grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
		 align-items: center;
}

.preparation-text h2 {
    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 2rem;
   font-weight   :       700;
}

.preparation-text p {
  color: #6c757d;
    margin-bottom: 2rem;
   line-height: 1.7;
  font-size: 1.1rem;
} 

.preparation-list {
   margin-top :    2rem; 
	
}



.prep-item
{
    margin-bottom: 2rem;
    padding: 1.5rem;
	background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.prep-item h4   {
  color: #2c3e50;
   font-size: 1.2rem;
    margin-bottom: 0.5rem;
                    font-weight: 600;
}



.prep-item p {
  color: #6c757d;
         margin: 0;
  line-height: 1.6;
}

.preparation-image img {
    width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.urgent-contact-section

{


    padding: 4rem 0;
  background: #f8f9fa;


}

.urgent-contact-card {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
  padding: 3rem;
    border-radius: 20px;
   text-align: center;
   max-width: 600px;
   margin: 0 auto;
  box-shadow: 0 20px 50px rgba(231, 76, 60, 0.2);
}

.urgent-contact-card h2 {
       font-size: 2rem;
    margin-bottom: 1rem;
  font-weight    : 700;
	}

.urgent-contact-card p {
    margin-bottom: 2rem;
        opacity :  0.95;
    line-height: 1.6; 
	
}

.urgent-contact-info {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 2rem;
    margin-top: 2rem;
     }

.contact-detail strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size    :       1.1rem;
}

.phone-link {
   color: white;
    text-decoration: none;
	font-size: 1.3rem;
	 font-weight: bold;
}

.phone-link:hover {
    text-decoration: underline;
}

.contact-detail p {

	opacity: 0.9;
   margin: 0;}

.resources-section
	{
    padding: 6rem 0;
  background: white;
}

.resources-section h2 {
 text-align: center;
    font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 4rem;
  font-weight     :   700;
}

.resources-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 3rem;
     }

.resource-card {

	   background: #f8f9fa;
	border-radius: 15px;
    overflow: hidden;
   transition: all 0.3s ease;
    border: 2px solid transparent;}


.resource-card:hover {
  transform: translateY(-5px);
          border-color: #27ae60;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.resource-card img {
    width  : 100%;
  height: 200px;
  object-fit: cover;
}

.resource-card h3 {
    font-size: 1.5rem;
   color     :  #2c3e50;
   margin: 1.5rem 2rem 1rem;
  font-weight: 600;
}

.resource-card p {
   color: #6c757d;
                    margin: 0 2rem 2rem;
		 line-height   :  1.6;
}

.confidence-section {
    padding: 6rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  text-align: center; 

}

.confidence-content h2 {
  font-size: 2.8rem;
   margin-bottom     :    3rem;
    font-weight: 700;
}

.confidence-stats {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
  margin-bottom: 3rem;
}

.confidence-item {
  text-align: center;
}

.stat-large {
	display: block;
  color: #ecf0f1;
  font-weight    :bold;
   margin-bottom: 1rem;
  font-size: 4rem;
}

.confidence-item p {
  font-size  :1.1rem;
   opacity: 0.9;
   line-height: 1.6;
	
}

.confidence-text {
	font-size : 1.2rem;
    opacity: 0.95;
                    max-width: 800px;
  margin:       0 auto;
	line-height: 1.6;
}@media (max-width: 1024px) {
    .mission-content,
    .approach-content,
    .preparation-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .urgent-contact-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .expertise-grid,
    .values-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .confidence-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline-item::after {
        display: none;
    }
    
    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 6rem 0 4rem;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid,
    .confidence-stats {
        grid-template-columns: 1fr;
    }
    
    .commitment-features {
        grid-template-columns: 1fr;
    }
    
    .urgent-contact-card {
        padding: 2rem;
    }
}.policy-section {
   padding: 6rem 0;
   background: #f8f9fa;
}

.policy-section h2 {
  font-size: 2.5rem;
	color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.policy-content {
  max-width: 800px;
    margin: 0 auto;
} 

.policy-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;

}@media (max-width: 768px) {
    .policy-section {
        padding: 4rem 0;
    }

    .policy-section h2 {
        font-size: 2rem;
    }

    .policy-content p {
        font-size: 1rem;
    }
}