* {
    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;
    background-color: #fafbfc;
    overflow-x: hidden;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(52, 152, 219, 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-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.brand-section .brand-logo {
    height: 45px;
    width: auto;
}

.navigation-links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-item {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item:hover {
    color: #3498db;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #34495e;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-toggle.active .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero-area {
    margin-top: 70px;
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-area .content-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.main-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 36px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.primary-button {
    background: #e74c3c;
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.secondary-button {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-visual img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.hero-visual img:hover {
    transform: scale(1.05);
}

.services-section {
    padding: 100px 0;
    background: white;
}

.section-heading {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 60px;
    position: relative;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.service-description {
    padding: 0 24px 24px;
    color: #7f8c8d;
    line-height: 1.6;
}

.transformation-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.transformation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.transformation-intro {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.5s ease;
}

.step-item.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.step-content p {
    color: #7f8c8d;
    line-height: 1.5;
}

.transformation-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease;
}

.transformation-visual.animate-in .transformation-image {
    opacity: 1;
    transform: scale(1);
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-primary-button {
    padding: 18px 40px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.3);
}

.cta-primary-button:hover, .cta-primary-button.hover-effect {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.cta-note {
    margin-top: 16px;
    font-size: 0.95rem;
    opacity: 0.8;
    font-style: italic;
}

.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.input-group {
    position: relative;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 16px;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.input-group.focused .form-label {
    color: #3498db;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    background: linear-gradient(135deg, #3498db, #9b59b6);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    min-width: 200px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-address, .contact-phone {
    color: #bdc3c7;
    line-height: 1.5;
}

.contact-phone {
    font-weight: 600;
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #95a5a6;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        gap: 20px;
    }

    .navigation-links.mobile-active {
        transform: translateY(0);
        opacity: 1;
    }

    body.nav-open {
        overflow: hidden;
    }

    .hero-area .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .transformation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .content-container {
        padding: 0 15px;
    }

    .hero-area {
        padding: 60px 0;
    }

    .main-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .services-section, .transformation-section, .contact-section {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        margin: 0 10px;
    }
}.nav-item.active {
    color: #3498db;
   font-weight: 600;
}

.page-hero {
  margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
   color: white;
  text-align:    center;
  position :  relative;
}

.page-hero::before {
  content: '';
    position: absolute;
  top: 0;
  left: 0;
    right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}

.hero-text-content {
    position:        relative;
                    z-index: 2;
	max-width   :  800px;
    margin: 0 auto; 
	
}

.page-main-title {
        font-size: 3rem;
   font-weight: 700;
   margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-hero-description     {
   font-size:        1.3rem;
  opacity   :       0.95;
    line-height: 1.7;
	max-width: 600px;
    margin: 0 auto;
}  

.company-story {
  padding: 100px 0;
  background: white;
}

.story-layout {
  display: grid; 
	   grid-template-columns: 1fr 1fr; 
	   align-items: center; 
	   gap  :  60px; 

}

.story-heading {
    font-size: 2.5rem;
  font-weight: 700;
    color     :       #2c3e50;
 margin-bottom: 30px;
  line-height: 1.3;
} 

.story-paragraph {
       font-size: 1.1rem;
    line-height:  1.8;
    color     :     #5a6c7d;
    margin-bottom: 25px;
}

.story-paragraph:last-child {
    margin-bottom: 0;
}

.story-image {
   width: 100%;
	height: auto;
       border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}  

.values-section    {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-title {

    text-align: center; 
  font-size    :      2.8rem; 
       font-weight: 700; 
   color: #2c3e50; 
	 margin-bottom: 60px; 
    position:    relative;
	


}

.values-title::after {
	  content: '';
  position:absolute;
    bottom: -15px;
    left: 50%;
  transform: translateX(-50%);
    width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #74b9ff, #0984e3);
    border-radius :  2px;}

.values-grid {
  display :grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.value-card {
  background: white;
    padding: 40px 30px;
   border-radius: 20px;
         text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
    margin-bottom: 25px;
}

.value-icon {
  width: 80px;
   height: 80px;
  margin: 0 auto;
   border-radius: 50%;
    position     :     relative;
}

.value-icon.expertise {

  background: linear-gradient(135deg, #74b9ff, #0984e3);
     }

.value-icon.ethics {

  background: linear-gradient(135deg, #00b894, #00a085);


}

.value-icon.growth {
  background: linear-gradient(135deg, #fd79a8, #e84393);
}

.value-icon::after {

	  content: '';
    position: absolute;
   top: 50%;
		 left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
    height: 40px;
  background: rgba(255, 255, 255, 0.3);
   border-radius: 50%;


}

.value-heading	{
  font-size: 1.5rem;
  font-weight: 600;
  color   :      #2c3e50;
    margin-bottom: 15px;
}

.value-description {
    color:    #7f8c8d;
   line-height: 1.6;
}

.approach-methodology {
    padding: 100px 0;
   background: white;
}

.approach-layout {
	 display: grid;
    grid-template-columns: 1fr 1fr;
  align-items: center;
    gap: 60px;
	
}

.approach-title {
   color: #2c3e50;
   font-size  :    2.5rem;
  margin-bottom    :        40px;
    font-weight: 700;
	
}


.methodology-list {
   display: flex;
   flex-direction: column;
  gap: 30px;
}

.method-item {
  display: flex;
   align-items   :     flex-start;
  gap   :    20px;
}

.method-marker {
     background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
  width: 50px;
    height: 50px;
  border-radius: 10px;
  display:     flex;
  align-items: center;
  justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
   flex-shrink: 0;}

.method-title {
   font-size: 1.3rem;
	font-weight: 600;
     color: #2c3e50;
    margin-bottom: 8px;
}

.method-text {
  color:     #7f8c8d;
    line-height     :  1.6;


}

.approach-image {
  width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

}

.expertise-areas	{
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f2f6 0%, #ddd6fe 100%);
}

.expertise-main-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
  color: #2c3e50;
                    margin-bottom: 60px;


}

.expertise-content {
     display: grid;
  grid-template-columns: 1fr 1fr;
         align-items: flex-start;
    gap: 60px;
}

.expertise-intro {
    font-size: 1.2rem;
   color: #5a6c7d;
   margin-bottom: 40px;
    line-height: 1.7;


}

.specialization-areas {
   display: flex; 
	   flex-direction: column; 
	    gap: 30px;


}

.area-group {
    background  :white;
    padding: 25px;
    border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); 

}

.area-title {
	 font-size: 1.3rem;
  font-weight: 600;
    color: #2c3e50;
   margin-bottom: 15px;
} 

.area-list {
    list-style: none;
   display     :      flex;
   flex-direction: column;
    gap: 8px;
}

.area-list li {
  position: relative;
  padding-left: 20px;
    color: #7f8c8d;
    line-height: 1.5;
}

.area-list li::before {
  content: '→';
    position: absolute;
    left: 0;
  color: #74b9ff;
   font-weight: 600;
}

.expertise-image {
  width: 100%;
    height: auto;
    border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-commitment {
	padding: 100px 0;
  background: white;
}


.commitment-wrapper {


   display: grid;
   grid-template-columns: 1fr 1fr;
    align-items: center;
	 gap: 60px;}

.commitment-title {
  font-size: 2.5rem;
  font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.commitment-text {
  font-size    :      1.1rem;
    line-height     :    1.8;
   color:       #5a6c7d;
   margin-bottom   :     25px; 

}

.commitment-stats {
    display: flex;
   justify-content: space-between;
  margin-top: 40px;
    gap: 20px;
}

.stat-item {
  text-align    :     center;
    flex: 1;
}

.stat-number {
 display: block;
	font-size: 2.5rem;
   font-weight: 700;
   color: #74b9ff;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
   letter-spacing: 0.5px;
}

.commitment-image {
  width: 100%; 
  height: auto; 
  border-radius    :  20px; 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.thankyou-main {
    margin-top: 70px;
   padding: 60px 0;
  min-height: calc(100vh - 70px);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thankyou-wrapper {
   display: grid;
    grid-template-columns: 1fr 1fr;
        align-items: center;
  gap: 60px;
 min-height: 500px;
}

.success-icon-container {
	   text-align: center;
  margin-bottom: 40px;

}

.success-icon {

  width: 120px;
   height: 120px;
         margin:        0 auto;
  background: linear-gradient(135deg, #00b894, #00a085);
  border-radius: 50%;
    display   :   flex;
  align-items: center;
  justify-content: center;
	position: relative;
	 animation: successPulse 2s ease-in-out infinite;
	}@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}.checkmark {
    width: 50px;
   height: 25px;
  border: 4px solid white;
	 border-top: none;
    border-right: none;
  transform: rotate(-45deg) translateY(-10px);
   animation: checkmarkDraw 0.8s ease-in-out 0.5s both;
   opacity: 0;
}@keyframes checkmarkDraw {
    0% { opacity: 0; transform: rotate(-45deg) translateY(-10px) scale(0.5); }
    100% { opacity: 1; transform: rotate(-45deg) translateY(-10px) scale(1); }
}.thankyou-title   {
   font-size: 2.8rem;
   font-weight: 700;
    color: #2c3e50;
 margin-bottom: 25px;
   text-align   :     center;
    line-height: 1.2;
}

.thankyou-message
	{
   font-size: 1.3rem;
    color: #5a6c7d;
	 text-align: center;
    margin-bottom: 50px;
  line-height: 1.7;
	max-width   :      500px;
   margin-left: auto;
    margin-right: auto;
}

.next-steps
	{
  margin-bottom: 50px;
}

.next-steps-title {
    font-size: 2rem;
   font-weight: 600;
    color: #2c3e50;
   text-align     :center;
    margin-bottom: 40px;
}

.steps-grid {
	 display  :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 30px;
    margin-bottom: 40px;
}

.step-card {
    background: white;
					padding: 30px 20px;
   border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease; 
	
}

.step-card:hover
	{

	  transform: translateY(-5px);

}

.step-number-badge {
       width: 50px; 
	    height: 50px; 
	  background: linear-gradient(135deg, #74b9ff, #0984e3); 
	   color: white; 
	   border-radius: 50%; 
	    display: flex; 
	    align-items: center; 
	    justify-content  :      center; 
	          font-weight: 700; 
	  font-size: 1.2rem; 
	  margin: 0 auto 20px;
}

.step-title {
   font-size: 1.2rem;
                    font-weight: 600;
   color: #2c3e50;
  margin-bottom:   12px;
}

.step-description{
                    color: #7f8c8d;
  line-height: 1.6;
  font-size: 0.95rem;
}

.additional-info {
   background: white;
    padding: 40px;
    border-radius: 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);

}

.info-title {
    margin-bottom: 15px; 
		 font-size: 1.5rem; 
	   font-weight: 600; 
	   text-align: center; 
	    color: #2c3e50;
}

.info-text		{
   color   :       #5a6c7d;
  line-height: 1.7;
  text-align: center;
}

.action-buttons		{
       display: flex;
  justify-content: center;
  gap:     20px;
  margin-bottom: 40px;
    flex-wrap    :  wrap; 
	
     }

.primary-return-button, .secondary-return-button {
    transition: all 0.3s ease;
    font-weight: 600;
  text-decoration: none;
    border-radius: 10px;
   display: inline-block;
  padding: 16px 32px;
}

.primary-return-button {
  background: linear-gradient(135deg, #74b9ff, #0984e3);
          color: white;
  box-shadow: 0 4px 15px rgba(116, 185, 255, 0.3);
}

.primary-return-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(116, 185, 255, 0.4);
}



.secondary-return-button {
    background: white;
   color: #74b9ff;
  border: 2px solid #74b9ff;
}

.secondary-return-button:hover {
		background: #74b9ff;
        color: white;
}

.contact-reminder {

  text-align: center;
   padding: 25px;
  background: rgba(116, 185, 255, 0.1);
   border-radius: 15px;
}

.reminder-text  
  {
   color: #2c3e50;
   font-size: 1.1rem;
}

.phone-highlight {
  color: #74b9ff;
  font-weight: 600;
     }

.thankyou-image {
  width :    100%;
  height: auto;
         border-radius:   20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .page-main-title {
        font-size: 2.2rem;
    }

    .page-hero-description {
        font-size: 1.1rem;
    }

    .story-layout, .approach-layout, .expertise-content, .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .commitment-stats {
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .thankyou-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .company-story, .values-section, .approach-methodology, .expertise-areas, .team-commitment {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .thankyou-main {
        padding: 40px 0;
    }

    .success-icon {
        width: 100px;
        height: 100px;
    }

    .additional-info {
        padding: 25px;
        margin: 0 15px 40px;
    }

    .contact-reminder {
        margin: 0 15px;
    }

    .story-heading, .approach-title, .commitment-title {
        font-size: 2rem;
    }

    .values-title, .expertise-main-title {
        font-size: 2.2rem;
    }
}.cookies-section, .privacy-section {
  padding    :   100px 0;
  background: white;
}

.cookies-content, .privacy-content   {
   max-width: 800px;
   margin    :   0 auto;
}

.cookies-content p, .privacy-content p {
   color: #7f8c8d;
   line-height: 1.6;
		margin-bottom: 20px;
}

.cookies-content ul, .privacy-content ul   {
   list-style: disc;
    margin-left: 20px;
         margin-bottom  :     20px;
}

.cookies-content ul li, .privacy-content ul li {
   color: #7f8c8d;
     line-height: 1.6;
  margin-bottom: 10px;
}@media (max-width: 768px) {
    .cookies-section, .privacy-section {
        padding: 60px 0;
    }
}