* 
 {
   margin: 0;
   padding: 0;
               box-sizing: border-box;
}  

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
   color: #2c3e50;
   font-size: 16px;
}

.container {
  max-width: 1200px;
       margin: 0 auto;
   padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {

	         font-weight  :      700;
  margin-bottom: 1rem;
  color: #1a252f;


}

h1  {
   font-size: 2.5rem;
    line-height    :     1.2;
}

h2 {
	 font-size    : 2.2rem;
   line-height: 1.3;
}

h3 {
  font-size: 1.8rem;
}

h4 {
	  font-size: 1.4rem;
     }

p {
    margin-bottom: 1rem;

    color: #34495e;


}

.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 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
	
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
  align-items: center;
    height    :    70px;
   justify-content: space-between;
  max-width: 1200px;
}

.logo-section {
  flex-shrink: 0;

}

.nav-logo {

   height: 45px;
  width: auto;
	}

.desktop-nav {
	display: flex;
          gap: 2rem; 
	
}

.nav-links a {
  text-decoration :        none;
    color: #2c3e50;
  font-weight: 500;
  padding: 0.5rem 1rem;
	 border-radius   :     25px;
   transition: all 0.3s ease;
	position: relative;
}

.nav-links a:hover {
   background     :   #3498db;
  -webkit-transform: translateY(-2px);
    color: white;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
  background: none;
                    border: none;
   cursor: pointer;
   padding: 5px;
   flex-direction: column;
  justify-content: center;
    align-items: center;
  width: 30px;
	height: 30px;
}

.mobile-menu-toggle span {
   width: 25px;
   height: 3px;
		background: #2c3e50;
    margin: 3px 0;
   transition   :all 0.3s ease;
	border-radius: 2px;
}

.mobile-menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav {
  display: none;
    position :absolute;
    top: 100%;
  left: 0;
		width: 100%;
  background   :      white;
    border-bottom: 1px solid #eee;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active     {
    display: block;
}

.mobile-nav a {
                    display: block;
    padding:     1rem 20px;
  text-decoration: none;
  color: #2c3e50;
     font-weight   :   500;
 border-bottom:    1px solid #f8f9fa;
  transition: background 0.3s ease;
}

.mobile-nav a:hover {
  background: #f8f9fa;
}

.hero-section {
   padding: 120px 0 80px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white; 
	     min-height  :        80vh; 
	  display: flex; 
	   align-items: center;
}

.hero-content {
  max-width: 1200px;
   margin: 0 auto;
   padding     :        0 20px;
	display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 4rem;
  align-items     :    center;
}

.hero-text h1 {
  color: white;
   font-size: 3rem;
  margin-bottom     : 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size :        1.2rem;
   margin-bottom: 2rem;
         opacity: 0.9;
  line-height: 1.7;
}

.hero-buttons
	{
      display: flex;
       gap: 1.5rem;
    flex-wrap: wrap;}

.btn-primary, .btn-secondary {
    padding:12px 28px;
  text-decoration: none;
    border-radius: 30px;
  font-weight    :   600;
  transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #e74c3c;
  color: white;
}

.btn-primary:hover	{
	 background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.4);
}

.btn-secondary {


    background    :        transparent; 
    color: white; 
   border: 2px solid white;

}

.btn-secondary:hover {
    background   : white;
   color: #667eea;
}

.hero-image img {
                    width: 100%;

    height: auto;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-section {
  padding: 100px 0;
  background:   #f8f9fa;
}

.section-header {
   margin-left   :auto;
  margin-bottom: 4rem;
    margin-right: auto;
    max-width:800px;
  text-align :       center;
}

.section-intro {
    font-size: 1.1rem;
    color   :   #7f8c8d;
    line-height: 1.8;
}

.about-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top :  3rem;
}

.about-card {
    background: white;
       padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   opacity: 0;
  transform: translateY(30px);
}

.about-card.animate-in {
  transform: translateY(0);
               opacity: 1;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	
}

.about-card h3 {
     color: #3498db;
          margin-bottom: 1rem;}

.services-section {
 padding:    100px 0;
   background: white;
}


.section-title {
    text-align: center;
   margin-bottom: 4rem;
  color   : #2c3e50;
}

.services-grid {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

   gap: 3rem;

   margin-top:3rem;
}

.service-item {
    background: #f8f9fa;
          border-radius:  15px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.service-item.animate-in {
      opacity: 1;
  transform: translateY(0);

}

.service-item:hover {
  transform: translateY(-8px);
}

.service-item img {
   width: 100%;
  height: 250px;
   object-fit: cover;
}

.service-content {
	  padding: 2rem;
     }

.service-content h3 {
   color :      #e74c3c;
    margin-bottom: 1rem;
}

.service-content ul  
  {
  list-style: none;
         margin-top: 1.5rem;
}

.service-content li {
   position: relative;
    padding-left: 1.5rem;
  margin-bottom: 0.5rem;
	 color: #7f8c8d;
}

.service-content li::before {
  content: "✓"; 
   position: absolute; 
  left: 0; 
   color: #27ae60; 
   font-weight: bold;
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
   text-align: center;

}

.cta-content h2 {
  color: white;
   margin-bottom: 1.5rem;
}

.cta-content p    {
    font-size: 1.1rem;
  margin-bottom: 2rem;
	 opacity: 0.9;
   max-width: 600px;
    margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  padding  :   15px 35px;
   background: white;
    color: #e74c3c;
                    text-decoration: none;
   border-radius: 35px;
  font-weight: 700;
  font-size   :    1.1rem;
  transition   :      all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.methodology-section {
  padding: 100px 0;
  background: white;
}

.methodology-content    {
    display: grid; 
	  grid-template-columns: 1fr 1fr; 
	       gap: 4rem; 
	   align-items: center;
}

.methodology-steps {
    margin-top: 2rem;
}

.step {

	  display: flex;
    align-items: flex-start;
   margin-bottom: 2rem;
   opacity: 0;
  transform: translateX(-30px);
    transition: all 0.6s ease;
     }

.step.animate-in {
   opacity     :     1;
  transform: translateX(0);
}

.step-number {
                    background: #3498db;
   color: white;
   width: 40px;
  height: 40px;
  border-radius   :    50%;
  display: flex;
  align-items: center;
    justify-content: center;
     font-weight:    bold;
    margin-right :    1.5rem;
    flex-shrink: 0;
}

.step-content h4 {
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.methodology-image img {
    width     :  100%;
   height  :       auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.contact-section {
   padding    :  100px 0;
    background: #f8f9fa;
}

.contact-header {
 margin-bottom: 4rem;
  text-align: center;
    max-width: 700px;
          margin-left: auto;
    margin-right: auto;
}

.contact-header p {
    font-size: 1.1rem;
	color: #7f8c8d;
  line-height:1.7;
}

.contact-form


{
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
	display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
	  padding: 12px 16px; 
	    font-size: 1rem; 
	   border-radius  : 8px; 
	   transition: border-color 0.3s ease; 
	  border: 2px solid #e0e6ed; 
	       width   :        100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline    :        none;
    border-color: #3498db;
}



.form-group textarea {
  resize: vertical;
 min-height: 120px;
}

.btn-submit     {
	 width: 100%;
       padding: 15px;
       background : #3498db;
     color: white;
       border: none;
       border-radius: 8px;
       font-size: 1.1rem;
       font-weight: 600;
      cursor: pointer;
           transition: all 0.3s ease;
}

.btn-submit:hover {
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);


}

.main-footer {
   background: #2c3e50;
	color    :      white;
  padding: 60px 0 20px;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
     display: grid;
     grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-section h4 {
    color: white;
	margin-bottom: 1.5rem;

}

.footer-logo img


{
  height  :      40px;
    margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li   {
	 margin-bottom: 0.8rem;
}


.footer-section a {
	color: #bdc3c7;
                    text-decoration:     none;
  transition: color 0.3s ease;
}

.footer-section a:hover {

   color: #3498db;
	}

.contact-info p {
   margin-bottom  : 0.8rem;
    color: #bdc3c7;
}

.footer-bottom {
  text-align: center;
   margin-top: 3rem;
 padding-top: 2rem;
  border-top: 1px solid #34495e;
}

.footer-bottom p	{


   color    :      #95a5a6;
    margin: 0;
	}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        margin-bottom: 2rem;
    }
}.about-hero-section {
	padding: 120px 0 80px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  text-align: center;
}

.about-hero-content h1 {
   color  :white;
     font-size: 3rem;
	margin-bottom: 1.5rem;
  max-width: 900px;
  margin-left: auto;
   margin-right:   auto;
}

.about-hero-subtitle {
    font-size: 1.2rem; 
	opacity: 0.9; 
    max-width :      700px; 
   margin  : 0 auto; 
   line-height: 1.7;
}

.story-section {
  padding   :   100px 0;
	background: white;
}

.story-content {
    display: grid;
	 grid-template-columns: 1fr 1fr;
 gap: 4rem;
    align-items     :  center;
}

.story-text h2	{
   color: #2c3e50;
	margin-bottom: 2rem;
}

.story-text p {
  line-height: 1.8; 
   font-size: 1.1rem; 
   margin-bottom: 1.5rem;
}

.story-highlights  {
    display: flex;
  gap: 2rem;
	margin-top: 3rem;
}

.highlight-item {
    text-align: center;
  flex :1;
}

.highlight-item h4 {
	 font-size: 2.5rem;
   color: #e74c3c;
  margin-bottom: 0.5rem;
}

.highlight-item p{
    color: #7f8c8d;
         font-size: 0.95rem;
}

.story-image img  
  {
   width    : 100%;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-section {
       padding: 100px 0;
    background   :        #f8f9fa;


}

.philosophy-grid {
    display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
          gap: 2.5rem;
  margin-top: 3rem;
}

.philosophy-card {

        background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease;
   border-left: 4px solid #3498db;


}

.philosophy-card:hover {
  transform: translateY(-5px);
}

.philosophy-card h3 {
          color: #2c3e50;
    margin-bottom: 1rem;
}

.methodology-deep-section {
  padding: 100px 0;
        background: white;
}

.methodology-deep-content {

	  display: grid;
      grid-template-columns: 1fr 1fr;
    gap: 4rem;
	 align-items     :center;


}

.methodology-deep-image img {


  width: 100%;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);}

.deep-methodology-steps {

   margin-top: 2rem;

}

.deep-step {
    display: flex;
  align-items: flex-start;
	margin-bottom   :   2.5rem;
    padding: 1.5rem;
  background: #f8f9fa;
   border-radius:   10px;
   transition: transform 0.3s ease;
}

.deep-step:hover	{

	  transform: translateX(10px);
     } 

.deep-step-icon {
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.step-letter {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
    width: 50px;
      height: 50px;
    border-radius: 50%;
  display: flex;
  align-items  :     center;
	justify-content:  center;
    font-weight: bold;
   font-size: 1.2rem;


}

.deep-step-content h4 {
    margin-bottom  :    0.5rem;
	   color     : #2c3e50;
}

.expertise-section {
   padding: 100px 0;
    background: #f8f9fa;


}

.expertise-content
{

	    margin-top: 3rem;
}

.expertise-item {
  display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 4rem;
  align-items     :   center;
         margin-bottom: 4rem;
   padding: 3rem;
  background: white;
   border-radius    :15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.expertise-item.reverse {
  grid-template-columns     : 1fr 1fr;
}

.expertise-item.reverse .expertise-details {
  order: -1;
}

.expertise-item img {


  width:     100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);

}


.expertise-details h3 {
    color: #e74c3c; 
	   margin-bottom: 1.5rem; 
	               font-size   :1.6rem;
}

.expertise-details p {
   font-size: 1.05rem;
   line-height: 1.7;
  margin-bottom: 1.5rem;
}

.values-section {
				 padding: 100px 0;
	background: white;
}

.values-grid     {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-top:     3rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :    white;
         border-radius    :       15px;
   transition    :        transform 0.3s ease;
}

.value-card:hover {
     -webkit-transform: translateY(-8px);
  -ms-transform: translateY(-8px);
  transform: translateY(-8px);
  -moz-transform: translateY(-8px);

}

.value-card h3 {
    color: white;
  margin-bottom: 1rem;
   font-size:1.4rem;
}

.value-card p {

	    opacity: 0.95;
  line-height: 1.6;


}

.thankyou-hero {
	padding: 120px 0 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
   text-align: center;
  min-height: 60vh;
   display: flex;
   align-items    :     center;
}

.thankyou-content {
	 margin: 0 auto;
          max-width: 700px;


}



.success-checkmark {
   width: 80px;
    height: 80px;
    border-radius: 50%;
  display: block;
    stroke-width: 3;
   stroke: #fff;
  stroke-miterlimit    :     10;
   margin: 0 auto 2rem;
  box-shadow: inset 0px 0px 0px #7ac142;
    animation     :   fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
   position     :   relative;
}

.success-checkmark .check-icon {
				 width: 56px;
  height: 56px;
	 position: absolute;
	 left: 12px;
  top: 12px;
   border-radius: 50%;
    background: white;
}

.icon-line {
  height: 3px;
   background-color: #27ae60;
	display: block;
    border-radius: 2px;
   position   :       absolute;
	 z-index: 10;
}

.icon-line.line-tip {
 top: 46%;
   left: 14px;
  width: 25px;
  transform: rotate(45deg);
   animation: icon-line-tip .75s;
}

.icon-line.line-long 
 {
    top: 38%;
    right: 8px;
   width: 47px;
  transform: rotate(-45deg);
   animation: icon-line-long .75s;
}@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}.thankyou-content h1 {
	color     : white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem; 
	
}

.thankyou-subtitle {
    font-size: 1.2rem;
  line-height     :  1.7;
    opacity: 0.9;
}

.next-steps-section {
   padding: 100px 0;
   background: white;
}

.steps-timeline {
      max-width: 900px;
	 margin: 3rem auto 0;
  position: relative;
}

.steps-timeline::before {
  content: '';
    position    : absolute;
  left :      30px;
  top  :0;
			bottom: 0;
    width: 3px;
  background: #e0e6ed;
}

.timeline-item {
  position: relative;
    margin-bottom     :  3rem;
  display: flex;
    align-items     :       flex-start;
}

.timeline-marker {

    position: relative;
  z-index: 2;
	margin-right: 2rem;
}

.timeline-number	{
   width: 60px;
    height: 60px;
    border-radius: 50%;
   background    :  #3498db;
    color: white;
    display: flex;
               align-items: center;
   justify-content: center;
	font-weight: bold;
    font-size    :     1.2rem;
}

.timeline-content{
    flex: 1;
  background: #f8f9fa;
   padding: 2rem;
    border-radius: 12px;
			margin-top: 10px;

}

.timeline-content h3 {
    color: #2c3e50;
  margin-bottom: 1rem;
	
}

.timeline-duration {


   display: inline-block;
  background: #27ae60;
    color: white;
	 padding     :0.3rem 1rem;
	border-radius: 20px;
   font-size: 0.85rem;
 font-weight  :        600;
   margin-top  :        1rem;
}

.preparation-section {
      padding: 100px 0;
   background    : #f8f9fa;
}

.preparation-content {
  display    :        grid;
 grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.preparation-list  {
  margin-top: 2rem;
}

.prep-item {
    background: white;
  padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
   border-left:     4px solid #3498db;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.prep-item h4 {
    color: #2c3e50;
       margin-bottom: 0.8rem;
}

.preparation-image img {
   width:    100%;
   border-radius     :  15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
	
}

.testimonial-preview {
   padding: 100px 0;
     background    :    white;
}

.testimonial-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top  :      3rem;
}

.testimonial-card {
  background: #f8f9fa;

  padding: 2.5rem;

  border-radius: 15px;

    border: 1px solid #e0e6ed;

    text-align: left;

   position: relative;

    transition: transform 0.3s ease;
}


.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
   font-style:        italic;
   font-size: 1.05rem;
   line-height: 1.7;
  margin-bottom: 1.5rem;
    color :#34495e;
}

.testimonial-author {
     display :      flex;
  flex-direction: column;


}



.testimonial-author strong {
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
	color: #7f8c8d;
    font-size: 0.9rem;
}

.explore-more {
  padding   :     80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align: center;
}

.explore-content h2 {
   color: white;
    margin-bottom: 1.5rem;
}



.explore-content p {
	font-size: 1.1rem;
	margin-bottom: 2rem;
   opacity: 0.9;
                    max-width: 600px;
   margin-left: auto;
  margin-right: auto;
}

.explore-buttons {
  display: flex;
  gap: 1.5rem;
   justify-content: center;
                    flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-highlights {
        flex-direction: column;
        gap: 1.5rem;
    }

    .methodology-deep-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .expertise-item,
    .expertise-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .expertise-item.reverse .expertise-details {
        order: 0;
    }

    .preparation-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .steps-timeline::before {
        display: none;
    }

    .explore-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .deep-step {
        flex-direction: column;
        text-align: center;
    }

    .deep-step-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .philosophy-card,
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
}.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;
    }
}