* {
   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: #ffffff;
     } 

.containerFluid {
	               max-width   : 1200px;
   margin: 0 auto;
   padding: 0 20px;


}

.mainHeader {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   position: sticky;
    top: 0;
  z-index: 1000;
}

.navContainer {
       max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: flex;
    justify-content: space-between;
  align-items: center;
  height: 70px;


}

.brandSection .mainLogo {
  height: 45px;
    width :       auto;
}

.navLinks {
         display :    flex;
  list-style: none;
    gap: 35px;
}

.navLinks a {
    color: white;
    text-decoration: none;
   font-weight: 500;
   font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.navLinks a:hover{
       color: #f0f0f0;
}

.navLinks a::after {
  content: '';
   position: absolute;
   width: 0;
  height: 2px;
   bottom: -5px;
 left: 0;
   background-color: #f0f0f0;
    transition: width 0.3s ease;
}

.navLinks a:hover::after {


   width: 100%;}

.burgerMenu {
          display: none;
   flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.burgerMenu span {
    width: 25px;
    height: 3px;
        background-color: white;
   transition: 0.3s;
   border-radius: 3px;
}

.heroSection {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
	min-height: 85vh;
    display: flex;
  align-items: center;
}

.heroContent {
    max-width: 1200px;
      margin  :    0 auto;
        padding    : 0 20px;
        display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
	align-items: center;
}

.heroText h1 {
    font-size: 3.2rem;
  font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
   line-height: 1.2;
}

.heroText p {
    font-size: 1.2rem;
   color: #5a6c7d;
    margin-bottom: 35px;
    line-height:   1.7;


}

.heroButtons  
  {
          display     : flex;
  gap: 20px;
  flex-wrap:      wrap;
}

.primaryBtn, .secondaryBtn {
   padding: 14px 30px;
    text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
   font-size: 16px;
   transition: all 0.3s ease;
  display: inline-block;


}

.primaryBtn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.primaryBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.secondaryBtn {
          background: transparent;
	color: #667eea;
    border: 2px solid #667eea;
}

.secondaryBtn:hover


{
   background: #667eea;
    color: white;
  transform: translateY(-2px);
}

.heroImage img {
   width: 100%;
          height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefitsSection {
	 padding: 80px 0;
  background-color: #f8f9fa;
}  

.benefitsSection h2 {

	   text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 60px;
   font-weight: 700;
	}

.benefitsGrid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

   gap   :     40px;


}

.benefitCard {
  background: white;
               padding: 40px 30px;
    border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.benefitCard:hover {
  transform: translateY(-5px);
} 

.cardIcon {
  font-size: 3rem;

  margin-bottom: 20px;
}



.benefitCard h3 {
    font-size    :     1.4rem;
  color: #2c3e50;
   margin-bottom   :   15px;
    font-weight: 600;
}

.benefitCard p {
  color: #5a6c7d;
  line-height: 1.6;
}


.servicesSection {
    padding: 80px 0;
  background: white;
}

.servicesSection h2 {
   margin-bottom: 60px;
    font-weight: 700;
    font-size: 2.5rem;
  text-align: center;
  color: #2c3e50;
}

.servicesWrapper {
   display: flex;
    flex-direction: column;
  gap: 60px;
}

.serviceItem {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
}

.serviceItem.reverse {
  direction: rtl;
	
}

.serviceItem.reverse > *

{
    direction: ltr;
}

.serviceItem img {
   width: 100%;

	  height: auto;

	  border-radius   :      12px;

	  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.serviceContent h3 {
	   font-size: 1.8rem;
          color     :    #2c3e50;
      margin-bottom: 20px;
  font-weight     :600;


	}

.serviceContent p  {
    color: #5a6c7d;
    margin-bottom: 25px;
    line-height: 1.7;
  font-size: 1.1rem;
}

.serviceContent ul {
  list-style: none;
   padding-left: 0;
}

.serviceContent li {

  padding :        8px 0;
    padding-left: 25px;
  position: relative;
   color: #5a6c7d;
}

.serviceContent li::before {
  content: '✓';
   position: absolute;
   left: 0;
  color: #667eea;
  font-weight: bold;
}

.ctaSection {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color   :    white;
}

.ctaContainer {
    max-width: 1200px;
   margin: 0 auto;
	padding: 0 20px;
  display: grid;
   grid-template-columns  :    1fr 1fr;
  gap: 50px;
    align-items  :  center;
}  

.ctaContent h2 {
   font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.ctaContent p {
  font-size   :        1.1rem;
   margin-bottom: 30px;
    line-height: 1.7;
   opacity: 0.9;
}

.ctaButton {

  transition   :    all 0.3s ease;
   border-radius: 8px;
   color: #667eea;
  font-weight: 600;
  padding     :  16px 35px;
  text-decoration: none;
  font-size: 16px;
       background: white;
   display: inline-block;
     }

.ctaButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.ctaImage img {
    width: 100%;
    height: auto;
  border-radius: 12px;}

.statsSection {
    padding: 80px 0;
   background-color    :    #f8f9fa;
}


.statsSection h2 {
   text-align: center;
	font-size: 2.5rem;
	color: #2c3e50;
   margin-bottom: 60px;
   font-weight: 700;
}

.statsGrid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px; 

}

.statItem {
  text-align: center;
  background: white;
  padding: 40px 20px;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.statNumber {
	font-size: 3rem;
    font-weight: 700;
  color: #667eea;
    margin-bottom: 10px;
}

.statLabel {
         font-size: 1.1rem;
   color: #5a6c7d;
    font-weight: 500;
}

.contactSection {
  padding: 80px 0;
    background: white;
}

.contactSection h2 {
   text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 60px;
   font-weight: 700;
}

.contactWrapper {
     display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: start;
     }

.contactInfo h3 {
  font-size  :1.6rem;
   color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.contactInfo p
{
   color: #5a6c7d;
   margin-bottom: 30px;
   line-height: 1.7;
}

.contactDetails {

	   display: flex;
       flex-direction: column;
                    gap: 15px;


}

.contactItem

{
     color: #5a6c7d;
	line-height:  1.6;
}


.contactForm {


  background    :#f8f9fa;
	 padding: 40px;
  border-radius    : 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);}

.formGroup     {
  margin-bottom: 25px;
}

.formGroup label {
	   display  :      block;
   margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;


}

.formGroup input,
.formGroup select,
.formGroup textarea {
    width: 100%;
   padding: 12px 15px;
    border: 2px solid #e1e5e9;
         border-radius: 8px;
    font-size   :  16px;
   transition: border-color 0.3s ease;
   font-family: inherit;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {

	    outline: none;
    border-color: #667eea;
	
}

.formGroup textarea {
   resize: vertical;
  min-height: 120px;
}

.submitBtn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 14px 35px;
   border: none;
  border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
  cursor  : pointer;
  transition: all 0.3s ease;
    width: 100%;
}

.submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.mainFooter {
   background: #2c3e50;
   color: white;
    padding: 60px 0 30px;
}

.footerContent {
   max-width: 1200px;
      margin: 0 auto;
 padding :    0 20px;
  display: grid;
   grid-template-columns     :      2fr 1fr 1fr;
    gap: 50px;
}

.footerLogo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footerSection p {
      line-height: 1.7;
  opacity: 0.9;
    margin-bottom: 20px;
}

.footerSection h4 {
         font-size: 1.2rem;
   margin-bottom: 20px;
  font-weight: 600;
}

.footerSection ul {
    list-style: none;
}

.footerSection ul li
	{
   margin-bottom: 10px;
}

.footerSection ul li a {
         color: white;
  text-decoration: none;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footerSection ul li a:hover {
    opacity: 1;
}

.footerContact p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footerBottom {
  max-width: 1200px;
   margin: 0 auto;
    padding :   30px 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
	opacity: 0.8;
}@media (max-width: 768px) {
    .navLinks {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }

    .navLinks.active {
        left: 0;
    }

    .navLinks li {
        margin: 20px 0;
    }

    .navLinks a {
        font-size: 18px;
    }

    .burgerMenu {
        display: flex;
    }

    .burgerMenu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burgerMenu.active span:nth-child(2) {
        opacity: 0;
    }

    .burgerMenu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .heroContent {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .heroText h1 {
        font-size: 2.5rem;
    }

    .heroButtons {
        justify-content: center;
    }

    .benefitsSection h2,
    .servicesSection h2,
    .statsSection h2,
    .contactSection h2 {
        font-size: 2rem;
    }

    .benefitsGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .serviceItem {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .serviceItem.reverse {
        direction: ltr;
    }

    .ctaContainer {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contactWrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contactForm {
        padding: 30px 25px;
    }

    .footerContent {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .statsGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .heroText h1 {
        font-size: 2rem;
    }

    .heroButtons {
        flex-direction: column;
        align-items: center;
    }

    .primaryBtn, .secondaryBtn {
        width: 100%;
        text-align: center;
    }

    .benefitsSection,
    .servicesSection,
    .ctaSection,
    .statsSection,
    .contactSection {
        padding: 60px 0;
    }

    .benefitCard,
    .contactForm {
        padding: 25px 20px;
    }

    .statsGrid {
        grid-template-columns: 1fr;
    }

    .statNumber {
        font-size: 2.5rem;
    }
}.aboutHero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px;
   color: white;
      text-align: center;
}

.aboutHeroContent h1
{
	   font-size: 3rem;
    margin-bottom: 25px;
  font-weight: 700;


}

.aboutHeroContent p {
   font-size     :1.3rem;
    max-width : 800px;
   margin: 0 auto;
   line-height:     1.7;
    opacity: 0.95;
}

.missionSection {
    padding: 80px 0;
  background: white;
}

.missionGrid {
   display   :    grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items: center;
	
}

.missionContent h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 30px;
	 font-weight    :   700;
}

.missionContent p	{
    font-size: 1.1rem;
   color: #5a6c7d;
  line-height: 1.8;
    margin-bottom: 25px;
	
}

.missionImage img {

    width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     }

.valuesSection {
	padding: 80px 0;
  background: #f8f9fa;
}

.valuesSection h2 {
   text-align: center;

   font-size: 2.5rem;

    color: #2c3e50;

   margin-bottom: 60px;

   font-weight: 700;
}

.valuesGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap:      40px;
}

.valueCard {
  background: white;
    padding: 40px 30px;
  border-radius: 15px;
	 text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.valueCard:hover {
  transform: translateY(-8px);


}

.valueIcon {

  font-size: 3.5rem;
  margin-bottom: 25px;
    display: block;


	}



.valueCard h3 
 {
  font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 18px;
  font-weight: 600;
}

.valueCard p {
     color: #5a6c7d;
  line-height: 1.7;
    font-size: 1rem; 
	
}

.approachSection {
  padding :  80px 0;
   background: white;
}

.approachSection h2 {
    text-align: center;
   font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom: 60px;
    font-weight: 700;
}

.approachContent     {
	max-width: 900px;
    margin: 0 auto;
}

.approachItem {
    display: flex;
   gap: 30px;
	margin-bottom :  50px;
     align-items: flex-start;
}

.approachNumber {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  color: white; 
	   width     : 60px; 
	    height: 60px; 
	    border-radius   :      50%; 
	   display: flex; 
	  align-items: center; 
	    justify-content: center; 
	   font-size: 1.4rem; 
	   font-weight: 700; 
	    flex-shrink: 0;
}

.approachText h3 {
		font-size: 1.6rem;
  color: #2c3e50;
	 margin-bottom: 15px;
    font-weight: 600; 
	
}

.approachText p {
               color     :   #5a6c7d;
	 line-height: 1.7;
  font-size: 1.1rem;
}

.teamSection    {
  padding: 80px 0;
	background: #f8f9fa;
}

.teamSection h2 {
     text-align:     center;
   font-size: 2.5rem;
  color   :  #2c3e50;
  margin-bottom: 60px;
    font-weight: 700;
}

.teamContent {
  display   : grid;
    grid-template-columns: 2fr 1fr;
  gap: 60px;
   align-items   :  center;
}

.teamText p {
    font-size: 1.1rem;
         color: #5a6c7d;
  line-height: 1.8;
  margin-bottom: 25px;
}

.teamStats {
    display: flex;
    flex-direction: column;
  gap: 30px;
}

.teamStat {
   background: white;
  padding: 25px;
   border-radius: 12px;
    text-align: center;
  box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.teamStat .statNumber


{
   font-size: 2.2rem;
  font-weight: 700;
       color: #667eea;
	 margin-bottom: 8px;
}

.teamStat .statLabel {
   color    :  #5a6c7d;
    font-weight: 500;
}

.methodologySection {
   padding: 80px 0;
        background: white;
}

.methodologyGrid {
	display: grid;
    grid-template-columns: 1fr 1fr;
   gap  :60px;
   align-items     :       center;


}


.methodologyImage img {
	   width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.methodologyContent h2   {

   font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 25px;
  font-weight: 700;
	}

.methodologyContent > p	{
   font-size: 1.1rem;
	color: #5a6c7d;
	line-height: 1.8;
   margin-bottom: 40px;
}

.methodologyList {
	flex-direction: column;
   display: flex;
   gap:25px;
}

.methodItem h4 {
    font-size: 1.2rem;
   color: #2c3e50;
  margin-bottom: 10px;
   font-weight: 600;
}



.methodItem p {
	 color: #5a6c7d; 
	    line-height: 1.6; 
	    font-size: 1rem;
}

.achievementsSection
{
      background: #f8f9fa;
	padding: 80px 0;
}

.achievementsSection h2    {
  text-align: center;
    font-size :     2.5rem;
    color: #2c3e50;
    margin-bottom: 60px;
          font-weight: 700;
}

.achievementsGrid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;

     }

.achievementCard {
	background: white;
   border-radius   :      15px;
       overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      transition: transform 0.3s ease;
}

.achievementCard:hover {
  transform: translateY(-5px);
}

.achievementCard img		{
   width: 100%;
    height: 200px;
   object-fit: cover;
}

.achievementContent   {
   padding :  30px; 

}

.achievementContent h3 {
      margin-bottom: 15px;
    color: #2c3e50;
   font-weight: 600;
   font-size: 1.4rem;
} 

.achievementContent p {
   color: #5a6c7d;
    line-height: 1.7;
}

.whyChooseSection {
  padding: 80px 0;
      background: white;
}

.whyChooseSection h2 {
     text-align: center;

	    font-size: 2.5rem;

	  color: #2c3e50;

	  margin-bottom: 60px;

	  font-weight: 700;
}

.whyChooseGrid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.choiceReason {
  background: #f8f9fa;
  padding: 35px 30px;
    border-radius     :      15px;
    border-left: 4px solid #667eea;

}

.choiceReason h3 {
    font-size: 1.4rem;
	 color: #2c3e50;
    margin-bottom: 18px;
   font-weight: 600;
}

.choiceReason p {
  color: #5a6c7d;
   line-height: 1.7;
}

.thankyouHero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0;
  color     :       white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thankyouContent {
  text-align: center;
  max-width: 800px;
   margin: 0 auto;
}

.successIcon {
  background: rgba(255,255,255,0.2);
   width: 120px;
   height: 120px;
  border-radius: 50%;
   display: flex;
  align-items :center;
  justify-content: center;
  font-size: 4rem;
    margin     :   0 auto 40px;
  border: 3px solid rgba(255,255,255,0.3);
}

.thankyouContent h1 {
   font-size: 3rem;
	    margin-bottom: 25px;
	    font-weight    :       700;
}

.leadText {
 font-size: 1.4rem;
	margin-bottom: 50px;
   opacity: 0.95;
       line-height: 1.6;
}

.confirmationDetails

{
  background: rgba(255,255,255,0.1); 
   padding: 40px 35px; 
	 border-radius  :      15px; 
                    margin-bottom: 50px; 
  backdrop-filter: blur(10px);
}

.confirmationDetails h2 {
	   font-size: 2rem;
  margin-bottom    :        35px;
    font-weight: 600;
}

.nextSteps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
   text-align: left;
}

.stepItem     {
   display:   flex;
    gap: 20px;
    align-items: flex-start;
}  

.stepIcon {
    font-size: 2.5rem;
  flex-shrink: 0; 
	
}

.stepContent h3 {
  font-size:   1.3rem;
  margin-bottom: 10px;
   font-weight: 600;
}

.stepContent p   {

  font-size: 1rem;
  opacity: 0.9;
	line-height: 1.5;
	}

.additionalInfo {

   margin-bottom: 50px;
}

.additionalInfo h2 {
      font-size: 2rem;
	 margin-bottom: 20px;
    font-weight: 600;

}

.additionalInfo p  
  {
    font-size: 1.1rem;
  margin-bottom   :    35px;
    opacity: 0.95;
   line-height: 1.7; 

}

.actionButtons {

	   flex-wrap:        wrap;
   gap: 20px;
  justify-content: center;
   display: flex;
}

.contactReminder	{
  background: rgba(255,255,255,0.1);
  padding: 30px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}



.contactReminder h3


{
 font-size: 1.5rem;
   margin-bottom     : 15px;
          font-weight   :    600;
}

.contactReminder p {
    margin-bottom: 20px;
	opacity    :0.9;
}

.urgentContact {
    display: flex;
   gap: 40px;
	justify-content   :    center;
	flex-wrap: wrap;
}

.contactDetail {
  font-size: 1.1rem;
	 opacity: 0.95;
}

.thankyouImage {
   display     :  none;
}

.whileWaitingSection


{
    background: white;
    padding: 80px 0;
}

.whileWaitingSection h2


{
    text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
	 margin-bottom: 60px;
  font-weight: 700;
}

.waitingGrid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 40px; 

}

.waitingCard {
  background: #f8f9fa;
    padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.cardNumber {
   font-size: 3rem;
    font-weight: 700;
   color: #667eea;
    margin-bottom: 15px;
}

.waitingCard h3 {
  font-size:  1.4rem;
    color: #2c3e50;
	margin-bottom    : 18px;
    font-weight: 600;
}

.waitingCard p {
  color: #5a6c7d;
    line-height: 1.7;
}

.testimonialSection {
    padding: 80px 0;
      background: #f8f9fa;
}  

.testimonialSection h2 {
    text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 60px;
    font-weight: 700;


}

.testimonialGrid {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap:       40px;
}

.testimonialCard {
     background: white;
    padding: 35px 30px;
    border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
}

.testimonialCard::before  {
  content: '"';
  position: absolute;
  top: 15px;
               left: 25px;
  font-size: 4rem;
   color: #667eea;
  opacity: 0.3;
   font-family: serif;
}

.testimonialContent {
  margin-bottom: 25px;
	padding-top: 20px;
} 

.testimonialContent p {
    color: #5a6c7d;
  line-height: 1.7;
   font-style    :      italic;
   font-size: 1.1rem; 
	
}

.testimonialAuthor strong {
       display: block;
   font-size: 1.1rem;
   color: #2c3e50;
  margin-bottom: 5px;
}

.testimonialAuthor span


{

   color: #667eea;
  font-size: 0.95rem;
    font-weight: 500;}@media (max-width: 768px) {
    .aboutHeroContent h1 {
        font-size: 2.5rem;
    }

    .aboutHeroContent p {
        font-size: 1.1rem;
    }

    .missionGrid,
    .methodologyGrid,
    .teamContent {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .valuesGrid,
    .whyChooseGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .achievementsGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .approachItem {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .nextSteps {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stepItem {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .urgentContact {
        flex-direction: column;
        gap: 15px;
    }

    .thankyouContent h1 {
        font-size: 2.5rem;
    }

    .leadText {
        font-size: 1.2rem;
    }

    .actionButtons {
        flex-direction: column;
        align-items: center;
    }

    .primaryBtn, .secondaryBtn {
        width: 100%;
        max-width: 300px;
    }

    .testimonialGrid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .aboutHero,
    .thankyouHero {
        padding: 100px 0 60px;
    }

    .confirmationDetails,
    .contactReminder {
        padding: 25px 20px;
    }

    .valueCard,
    .waitingCard,
    .testimonialCard {
        padding: 25px 20px;
    }

    .achievementContent {
        padding: 25px 20px;
    }

    .successIcon {
        width: 100px;
        height: 100px;
        font-size: 3rem;
    }
}