* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

.navigation-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.brand-section .logo-mark {
    height: 45px;
    width: auto;
}

.menu-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-trigger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: #34495e;
    transition: all 0.3s ease;
}

.mobile-menu-trigger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-trigger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-trigger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-item {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-nav-item:hover {
    color: #3498db;
}

.hero-banner {
    padding: 120px 2rem 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><circle cx="30" cy="30" r="4"/></g></svg>');
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.main-headline {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-cta, .secondary-cta {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.primary-cta {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
}

.primary-cta:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.6);
}

.secondary-cta {
    background: transparent;
    color: white;
    border-color: white;
}

.secondary-cta:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.value-proposition {
    padding: 100px 2rem;
    background: #f8f9fa;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #3498db;
    display: block;
    margin: 1rem auto 0;
    border-radius: 2px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-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, box-shadow 0.3s ease;
    border-left: 5px solid #3498db;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefit-text {
    color: #7f8c8d;
    line-height: 1.6;
}

.services-showcase {
    padding: 100px 2rem;
    background: white;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-item:nth-child(even) {
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-visual {
    position: relative;
}

.service-image {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-details {
    padding: 1rem;
}

.service-name {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #34495e;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.conference-announcement {
    padding: 100px 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.conference-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.conference-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.conference-subtitle {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.conference-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.conference-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.highlight-item {
    background: rgba(52, 152, 219, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(52, 152, 219, 0.5);
    font-weight: 500;
}

.conference-cta {
    display: inline-block;
    padding: 15px 30px;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.conference-cta:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.conference-image {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.consultation-call-to-action {
    padding: 80px 2rem;
    background: #ecf0f1;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.cta-subtext {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.contact-section {
    padding: 100px 2rem;
    background: white;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.contact-text {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    padding: 1rem;
    border-left: 4px solid #3498db;
    background: #f8f9fa;
}

.info-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.info-value {
    color: #7f8c8d;
}

.contact-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 15px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background: #2980b9;
}

.page-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 2rem 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #bdc3c7;
    font-size: 1rem;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.column-title {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #3498db;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.contact-detail {
    color: #bdc3c7;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
}

.copyright-text {
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .menu-links {
        display: none;
    }

    .mobile-menu-trigger {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .action-buttons {
        justify-content: center;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .conference-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 2rem;
    }

    .conference-highlights {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }

    .hero-banner {
        padding: 100px 1rem 60px;
    }

    .main-headline {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}.nav-link.active 
 {
   color: #3498db;
}

.nav-link.active::after	{

	   width: 100%;
     }

.about-hero {
   padding: 120px 2rem 80px;
     background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
     color: white;
        min-height: 70vh;
     display: flex;
     align-items: center;
}

.about-hero-content {
    max-width    :1200px;
   margin: 0 auto;
    display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
} 

.about-main-title {
  font-size: 3rem;
     font-weight: 800;
  margin-bottom: 1rem;
	color: white;
}

.about-hero-subtitle {
  font-size: 1.3rem;
               color: #3498db;
    margin-bottom: 2.5rem;
  font-weight: 500;
}

.hero-stats {
  display: flex;
   gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
   display: flex;
    flex-direction: column;
  align-items: flex-start;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
               line-height: 1;
}

.stat-label		{


  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;

}

.about-hero-img {
   width: 100%;
   max-width: 500px;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.story-section {

   padding: 100px 2rem;
  background: #f8f9fa;
     }

.story-layout {
     display     :    grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
     }

.story-heading {
   font-size: 2.5rem;
     font-weight     :700;
    margin-bottom:     2rem;
      color: #2c3e50;
}

.story-text p {
  font-size  :      1.1rem;
    line-height: 1.8;
   color: #7f8c8d;
  margin-bottom: 1.5rem;
}

.story-image {
  width: 100%;
  max-width: 450px;
	 border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mission-values {
    padding: 100px 2rem;
   background: white;
}

.values-grid {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {


    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
   overflow: hidden;

}  

.value-card::before {
	  content: '';
    position: absolute;
  top: 0;
   left: 0;
  width   :  100%;
    height :       4px;
  background: linear-gradient(90deg, #3498db, #2980b9);}

.innovation-card {
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    color: white;
}

.excellence-card {
  background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: white;
}

.partnership-card {
  background: linear-gradient(135deg, #fdcb6e 0%, #e17055 100%);
  color    :       white;
}

.impact-card {
  background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
     color:      white;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-title{
   font-size: 1.5rem;
    font-weight   :      600;
    margin-bottom: 1rem; 

}

.value-description {
     line-height    :    1.7;
    opacity: 0.9;
}

.team-showcase {

	padding: 100px 2rem;
         background: #f8f9fa;}

.team-intro {
   text-align     :   center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.team-description    {
    font-size: 1.2rem;
   line-height: 1.7;
    color: #7f8c8d;
}

.expertise-areas {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
  margin-top: 3rem;
}

.expertise-item {
	background: white;
    padding   :  2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
 border-left: 4px solid #3498db;
}

.expertise-title {
  font-size: 1.3rem;
               font-weight: 600;
    margin-bottom: 1rem;
   color: #2c3e50;
} 

.expertise-text {
   color: #7f8c8d;
   line-height: 1.6;
}

.methodology-section {
   padding: 100px 2rem;
    background: white;
}

.methodology-layout{
   display: grid;
    grid-template-columns     :        1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.methodology-image {
   width: 100%;
  max-width: 450px;
  border-radius   :    12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.methodology-title {
  font-size: 2.5rem;
   font-weight: 700;
    margin-bottom: 2rem;
   color: #2c3e50;
}

.methodology-steps {
         display: flex; 
   flex-direction: column; 
   gap :       2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background : #3498db;
  color: white;
	width: 40px;
    height: 40px;
  border-radius: 50%;
    display: flex;
        align-items: center;
 justify-content :     center;
  font-weight: bold;
   font-size: 1.1rem;
    flex-shrink: 0;
}

.step-title {
  font-size: 1.2rem;
  font-weight    :       600;
  margin-bottom: 0.5rem;
   color: #2c3e50;
	
}  

.step-description {
  color:    #7f8c8d;
   line-height    :    1.6;
}

.achievements-section{
   padding: 100px 2rem;
    background: #f8f9fa;
}

.achievements-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
  margin-bottom     :      4rem;
	}

.achievement-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;
}

.achievement-card:hover {
  transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);

}

.achievement-icon {
  margin-bottom: 1.5rem;
}

.achievement-img {
      width:        80px;
   -moz-border-radius:     50%;
    -webkit-border-radius: 50%;
  height: 80px;
  border-radius: 50%;
   object-fit: cover;
	}

.achievement-title {
   font-size: 1.3rem;
  font-weight :       600;
    margin-bottom   :      1rem;
  color: #2c3e50;
}

.achievement-desc {
  color: #7f8c8d;
    line-height: 1.6;
}

.clients-statement {
   background: white;
  padding: 3rem;
    border-radius  :        12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.clients-title {
   font-size  :        2rem;
    font-weight: 600;
  margin-bottom  :    1.5rem;
   color: #2c3e50;
}

.clients-text {
  max-width: 700px;
  font-size: 1.1rem;
    line-height: 1.7;
  color: #7f8c8d;
  margin: 0 auto;
}

.thankyou-main {
   min-height: 80vh; 
	  padding: 120px 2rem 80px; 
	  background: linear-gradient(135deg, #00b894 0%, #00a085 100%); 
	    display: flex; 
	    align-items: center;
}

.thankyou-container {
   max-width: 1000px;
   margin:  0 auto;
    width: 100%;
}

.success-content {
	background: white;
    border-radius: 20px;
   padding: 4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        text-align: center;
  margin-bottom: 3rem;
	
}

.success-visual {
   margin-bottom: 2rem;
}

.success-icon {
   display: flex;
	  justify-content : center;
	
}

.checkmark-circle {
  width: 80px;
   height: 80px;
   border-radius: 50%;
   background: #00b894;
  display: flex;
   align-items: center;
  justify-content: center;
        animation    :       scaleIn 0.6s ease-out;
} 

.checkmark {
	   width: 30px;
    height: 15px;
    border: solid white;
    border-width: 0 0 4px 4px;
  transform: rotate(-45deg);
 animation: checkmarkDraw 0.3s ease-out 0.3s both; 

	}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 30px;
        height: 15px;
    }
}.thankyou-title {
  font-size: 2.8rem;
   font-weight: 700;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.thankyou-subtitle 
 {
   font-size: 1.3rem;
    color: #00b894;
    margin-bottom   : 2.5rem;
   font-weight: 500;
}

.confirmation-details {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top: 2rem;}

.detail-card {
               background: #f8f9fa;
    padding: 2rem;
   border-radius: 12px;
   border-left: 4px solid #00b894;
   text-align: left;
} 

.detail-title 
 {
    font-size: 1.3rem;
	font-weight: 600;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.detail-text {
  color: #7f8c8d;
  line-height: 1.7;
}

.next-steps {
    background: white;
    border-radius: 20px;
  padding  :   3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.steps-title {


    font-size: 2rem;
    font-weight: 600;
          text-align: center;
    margin-bottom: 2rem;
    color :     #2c3e50;}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.step-card
{


   display: flex;
  flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
  border:  2px solid #f1f2f6;
     }

.step-card:hover {
  transform: translateY(-5px);
    border-color: #00b894;
}

.step-image {
          width: 100%;
   height: 150px;
    object-fit: cover;
	border-radius:  8px;
}

.step-title {
    font-size :    1.2rem;
	 font-weight: 600;
	color: #2c3e50;
   margin-bottom: 0.5rem;
}

.step-description {
    color: #7f8c8d;
    line-height: 1.6;
  margin-bottom: 1rem;
}

.step-link
{
   color: #00b894;
    text-decoration :     none;
  font-weight: 500;
	transition: color 0.3s ease;
}

.step-link:hover

{
  color: #00a085;
  text-decoration: underline;
}

.contact-reminder {

	                    background: white;
	        border-radius: 20px;
	    padding: 3rem;
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	    text-align: center;
	}

.reminder-title {
   font-size: 1.8rem;
               font-weight: 600;
  color: #2c3e50;
  margin-bottom:       1rem;
}

.reminder-text {
   color: #7f8c8d;
   line-height     :     1.7;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
   margin-right: auto;
}

.contact-methods {
  display: flex;
  justify-content: center;
   gap: 3rem;
       flex-wrap: wrap;
}

.contact-method {
	  display: flex;
   flex-direction: column;
  gap: 0.5rem;
}

.method-label {
    font-weight: 600;
  color: #2c3e50;
}

.method-value {
  color: #00b894;
    font-weight: 500;


}@media (max-width: 768px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-main-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methodology-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .expertise-areas {
        grid-template-columns: 1fr;
    }

    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }

    .success-content {
        padding: 2.5rem;
    }

    .next-steps {
        padding: 2rem;
    }

    .contact-reminder {
        padding: 2rem;
    }

    .confirmation-details {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 2rem;
    }

    .success-content {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .contact-methods {
        flex-direction: column;
        gap: 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;
    }
}