* {
    margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
   color: #333;
    overflow-x :  hidden;
}

.main-navigation    {
  position: fixed;
   top: 0;
   width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0;
}

.nav-wrapper {
  max-width: 1200px;

	    margin: 0 auto;

	  display  :       flex;

	    justify-content: space-between;

	  align-items     :        center;

	   padding: 15px 20px;
}

.site-logo {
    height :  45px;
    width: auto; 

}

.desktop-menu {
   display: flex;
   gap: 30px;
}

.nav-link
	{
	 text-decoration: none;
    color: #2c3e50;
	font-weight     :      500;
	 font-size: 16px;
                    transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e74c3c;
}

.mobile-burger {
  display: none;
          flex-direction: column;
    cursor: pointer;
   gap :  4px;


}

.mobile-burger span {
    width: 25px;
    height     :   3px;
    background:        #2c3e50;
    transition: all 0.3s ease;
}

.mobile-dropdown {
  display    :        none;
 position: absolute;
   top: 100%;
    left: 0;
   width: 100%;
   background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    padding: 20px;
   flex-direction: column;
   gap: 15px;


}

.mobile-nav-link {
   text-decoration: none;
   color: #2c3e50;
   font-weight   :      500;
  padding: 10px 0;
   border-bottom: 1px solid #eee;
}

.hero-banner {
    margin-top: 80px;
   padding  :       80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  min-height: 600px;
   display:        flex;
      align-items: center; 
	
}

.hero-content-wrapper		{
      max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
               align-items: center;


     }

.hero-text-area h1 {
   font-size: 3.2rem;
                    line-height: 1.2;
	margin-bottom: 25px;
    font-weight: 700;
}

.hero-description {
  font-size: 1.2rem;
    margin-bottom: 35px;
    opacity     :     0.95;
}

.primary-cta-button {
      font-size: 1.1rem;
  display: inline-block;
	padding: 18px 35px;
  text-decoration: none;
   transition    : all 0.3s ease;
	 color: white;
  font-weight: 600;
   border-radius: 8px;
    background: #e74c3c;
}

.primary-cta-button:hover
	{
   background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.hero-visual img {
  width: 100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.services-showcase {
    background: #f8f9fa;
			padding: 100px 20px;
}

.section-container

{
	 max-width: 1200px;
          margin  :      0 auto;
}

.section-header {
  text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
  font-size: 2.8rem;
         color: #2c3e50;
    margin-bottom: 20px;
}

.section-header p {
   font-size:       1.2rem;
                    color: #7f8c8d;
}

.services-grid {
   display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.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; 
	
}

.service-card:hover

{
  transform: translateY(-8px);
}

.service-card img {
      width: 100%;
  height  :      220px;
  object-fit: cover;

}

.service-card h3 {
  font-size: 1.5rem;
    padding   :    25px 25px 15px;
  color :#2c3e50;
}

.service-card p {
    padding: 0 25px 25px;
    color: #7f8c8d;
   line-height: 1.6;
	
}

.consultation-cta {
    padding: 100px 20px;
    background: #34495e;
   color: white;
}

.cta-content-wrapper  
  {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}  

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-text p {
    font-size: 1.1rem;
   margin-bottom    : 35px;
    opacity:  0.9;
}

.consultation-button {

	    display: inline-block;
	background: #e74c3c;
   color: white;
   padding: 18px 35px;
  text-decoration  : none;
  border-radius    :   8px;
  font-weight: 600;
  transition: all 0.3s ease;
	}

.consultation-button:hover
{
	background  :    #c0392b;
  transform: translateY(-2px);
}

.cta-image img {
    width  :      100%;
  border-radius: 15px;
}

.testimonials-area  
  {
                    padding: 100px 20px;
   background: white; 

}

.testimonials-container {
  max-width: 1000px;
               margin: 0 auto;
    text-align: center;
}

.testimonials-container h2 {
    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 60px;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns  :  1fr 1fr;
   gap: 50px;
}

.testimonial-item {
	   padding: 40px;
   background: #f8f9fa;
          border-radius   :        15px;
    border-left: 5px solid #e74c3c;
	}

.testimonial-item blockquote {
  font-size: 1.1rem;
   font-style: italic;
  margin-bottom: 20px;
                    color: #2c3e50;
}

.testimonial-item cite {
    color: #7f8c8d;
  font-weight: 500;

}

.contact-section

{
  padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}

.contact-info h2 {
   font-size: 2.5rem;
   margin-bottom: 25px;
}

.contact-info p {
  opacity: 0.9;
   margin-bottom: 40px;
	 font-size: 1.1rem;
}

.contact-item {
  margin-bottom: 25px;
	
}

.contact-item strong
{
    display: block;
	margin-bottom: 8px;
   color: #e74c3c;
}

.contact-form {

		background: white;
    padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2); 



}

.form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
} 

.form-field {
  margin-bottom     :     25px;
}

.form-field label {
   display: block;
    margin-bottom: 8px;
    color: #2c3e50;
  font-weight: 500;
	
}

.form-field input,
.form-field select,
.form-field textarea
{
   width: 100%;
   padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
      transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline     :       none; 
	    border-color: #e74c3c;
}

.form-submit-btn {
  width: 100%;
    background: #e74c3c;
   color: white;
                    padding: 18px;
  border     :   none;
   border-radius     :   8px;
  font-size: 1.1rem;
	 font-weight:       600;
   cursor: pointer;
    transition: background 0.3s ease; 
	
}

.form-submit-btn:hover {
   background: #c0392b;
}

.site-footer {
  background:   #2c3e50;
   color: white;
    padding: 60px 20px 20px;
}



.footer-content {
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
   max-width: 1200px;
    display: grid;
	gap: 40px;
    margin   :        0 auto;
    margin-bottom: 40px;
}

.footer-logo		{
    height     :       40px;
	    margin-bottom: 20px;
	  filter: brightness(0) invert(1);
}

.footer-section h4 {
    margin-bottom: 20px;
	color: #e74c3c;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li

{
  margin-bottom: 10px;
}

.footer-section a     {
   color: #bdc3c7; 
   text-decoration: none; 
   transition: color 0.3s ease;
}

.footer-section a:hover {
   color: white;
}  

.footer-bottom  
  {
    border-top: 1px solid #34495e;
	padding-top: 20px;
  text-align: center;
   color: #95a5a6;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-burger {
        display: flex;
    }
    
    .mobile-dropdown.active {
        display: flex;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text-area h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .contact-info h2,
    .cta-text h2,
    .testimonials-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text-area h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .hero-banner {
        padding: 60px 15px;
    }
    
    .services-showcase,
    .consultation-cta,
    .testimonials-area,
    .contact-section {
        padding: 60px 15px;
    }
    
    .contact-form {
        padding: 25px;
    }
}.nav-link.active-page {
   color: #e74c3c;
  font-weight: 600;
}

.about-hero-section {
  margin-top: 80px;
  padding: 80px 20px;
  background: linear-gradient(45deg, #3498db 0%, #2980b9 100%);
   color : white;
}

.about-hero-content {
    max-width: 1200px;
	margin: 0 auto;
	display: grid;
  grid-template-columns: 1.2fr 1fr;
   gap: 50px;
			align-items: center;
}

.about-hero-text h1 {
	font-size: 3rem;
   margin-bottom: 25px;
    line-height: 1.2;
}

.about-subtitle {
  font-size: 1.15rem;
   line-height: 1.7;
  opacity: 0.95;
}

.about-hero-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.story-section {
  padding: 90px 20px;
	background    :       #f8f9fa;
}

.story-container {
     margin: 0 auto;
               max-width: 1100px;

}  

.story-content h2 {
    font-size: 2.6rem;
  text-align: center;
  margin-bottom: 60px;
  color: #2c3e50;
}

.story-blocks		{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
	
}

.story-block {
   background: white;
    padding: 35px;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border-left: 4px solid #3498db; 

}

.story-block h3


{
  font-size: 1.4rem;
	margin-bottom   :18px;
			color: #2c3e50;
}

.story-block p {


    color: #7f8c8d;
    line-height: 1.6;


}  

.approach-section {
	padding: 90px 20px;
   background: white;
	
}

.approach-wrapper


{
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
   gap  :        55px;
   align-items: center;
}

.approach-image img {
	 width: 100%;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.approach-content h2 {
      font-size: 2.4rem;
  margin-bottom: 40px;
          color   :      #2c3e50;
}

.approach-principles {
 display: flex;
   flex-direction: column;
    gap: 30px;
}

.principle-item h4
	{
    font-size: 1.3rem;
         margin-bottom :       12px;
  color: #3498db;
}

.principle-item p {
  color: #7f8c8d;
   line-height: 1.6; 

}

.values-section  
  {
  padding:      90px 20px;
   background   :       #2c3e50;
    color  :        white;
}

.values-container

{
    max-width  :    1200px;
  margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;

  text-align: center;

  margin-bottom: 60px;
}

.values-grid


{
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.value-card {

	  background: rgba(255,255,255,0.1);
   padding: 35px;
   border-radius :    12px;
               text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
	}

.value-card h3 {
   font-size: 1.4rem;
   margin-bottom: 18px;
  color:       #3498db;
}

.value-card p {
       line-height   : 1.6;
   opacity: 0.9;
}

.experience-showcase {
  padding: 90px 20px;
	background: #ecf0f1;

}

.experience-content {
      max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: 1.2fr 1fr;
    gap: 50px;
   align-items: center;
	
}

.experience-text h2 {

	   font-size: 2.4rem;
 margin-bottom:        45px;
	color: #2c3e50;


}

.stats-container {
   display    :      grid;
  grid-template-columns  : 1fr 1fr;
  gap: 30px;


}

.stat-item   {
  text-align: center;
    padding: 25px;
  background: white;
	border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
  font-weight: 700;
   color: #e74c3c;
   margin-bottom: 8px;
	display: block;
}

.stat-label {
      font-size: 0.95rem;
  color:    #7f8c8d;
    font-weight: 500;
	
}

.experience-visual img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.why-choose-section 
 {
   padding :90px 20px;
  background: white;
}

.why-choose-container {
   	max-width     :    1200px;
   margin: 0 auto;

}

.why-choose-container h2 {
  font-size: 2.5rem;
   text-align   :center;
  margin-bottom: 60px;
    color: #2c3e50;
}

.reasons-wrapper {
   display: flex;
    flex-direction: column;
   gap: 50px;
}

.reason-item {
	    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 45px;
     align-items   :center;
}

.reason-item.reverse {
       direction: rtl;
}

.reason-item.reverse .reason-content {
  direction: ltr;
}

.reason-content h3 {
    font-size: 1.6rem;
   margin-bottom: 20px;
    color: #2c3e50;
}

.reason-content p {


  font-size: 1.05rem;
  color: #7f8c8d;
   line-height: 1.6;


}

.reason-item img {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.thankyou-main {

   margin-top: 80px;
   padding: 80px 20px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
   min-height: 70vh;
  display: flex;
   align-items: center;
}

.thankyou-container {
   max-width: 1200px;
   margin :0 auto;
    display: grid;
    grid-template-columns:        1.3fr 1fr;
  gap: 60px;
   align-items: center;
}

.thankyou-content {
  text-align: left;
}

.success-icon		{
   margin-bottom: 30px;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
   border-radius  :50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.checkmark


{

    width: 35px;
	 height: 20px;
  border :    4px solid white;
    border-top: none;
  border-right     :none;
  transform: rotate(-45deg);}

.thankyou-content h1 {
   font-size   :     2.8rem;
     margin-bottom: 25px;
    line-height: 1.2; 

}

.thankyou-message {
    font-size: 1.15rem;
	margin-bottom: 40px;
  opacity: 0.95;
    line-height: 1.6;
}

.next-steps h3 {

	  font-size: 1.5rem;
    margin-bottom: 30px;
  color  : #ffffff;
     }

.steps-list {
   display    :    flex;
  flex-direction: column;
    gap: 25px;
}

.step-item {
	display: flex;
  align-items: flex-start;
    gap: 20px;
}

.step-number {
  min-width: 35px;
    height: 35px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
  display: flex;
   align-items: center;
	justify-content: center;
  font-weight: 600;
    font-size: 1.1rem;
}

.step-content h4 {
  margin-bottom:        8px;
	 font-size: 1.1rem;
}

.step-content p {
	opacity: 0.9;
    line-height :   1.5; 
	
}

.thankyou-visual img {
   width: 100%;
    border-radius :  15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.resources-section {
    padding: 80px 20px;
     background: #f8f9fa;
}

.resources-container {
   max-width: 1200px;
   margin: 0 auto;
}

.resources-container h2 {
  font-size   :    2.3rem;
  text-align: center;
     margin-bottom     :     50px;
  color: #2c3e50;
}

.resource-cards
	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.resource-card {
    background: white;
	border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
	 transition  :   transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {


  width  :100%;
	 height: 200px;
	object-fit: cover;
	}

.resource-content 
 {
     padding: 25px;
	}

.resource-content h3 {
    font-size: 1.3rem;
  margin-bottom: 15px;
  color: #2c3e50;
}

.resource-content p {
   color: #7f8c8d;

		line-height: 1.6;


}

.contact-reminder

{
   padding: 60px 20px;
  background   :   #34495e;
    color: white;
  text-align    :        center;
}

.reminder-content h3 {
	font-size: 1.8rem;
   margin-bottom     :      20px;
}

.reminder-content p {
    font-size: 1.1rem;
  margin-bottom: 30px;
    opacity:   0.9;
}

.contact-info-compact {
   margin-bottom: 35px;

}

.contact-info-compact p {
   margin-bottom: 10px;
}

.return-home-btn {
    display: inline-block; 
	   background: #e74c3c; 
	   color: white; 
	          padding: 15px 30px; 
	  text-decoration: none; 
		border-radius: 8px; 
	   font-weight: 500; 
	   transition: background 0.3s ease;
}

.return-home-btn:hover {
  background: #c0392b;
}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-text h1 {
        font-size: 2.3rem;
    }
    
    .story-blocks {
        grid-template-columns: 1fr;
    }
    
    .approach-wrapper {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .reason-item {
        grid-template-columns: 1fr;
    }
    
    .reason-item.reverse {
        direction: ltr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-text h1 {
        font-size: 1.9rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .story-section,
    .approach-section,
    .values-section,
    .experience-showcase,
    .why-choose-section,
    .resources-section {
        padding: 60px 15px;
    }
}.policySection {
   padding: 80px 2rem;
   background: #f8f9fa;
}  

.policyContainer {
    max-width: 800px; 
	   margin: 0 auto; 
		 text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
         color: #7f8c8d;
  margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size     :       1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}