* {
   margin     :     0;
       padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #2c3e50;
  background-color: #fafafa;
}

.primary-nav {
    position: fixed;
   top: 0;
    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
         z-index: 1000;
    padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1); 

}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
   display: flex;
  justify-content: space-between;
     align-items: center;
  padding: 0 2rem;
}

.site-logo {
    height: 45px;
    width: auto; 
	
}

.menu-navigation ul {
	display  : flex;
    list-style: none;
  gap: 2.5rem;
}

.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-menu-toggle {
    display: none;

	  flex-direction: column;

	    cursor: pointer;

	    padding: 5px;
}

.hamburger-line    {
   -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
   width: 25px;
   height: 3px;
   -o-transition: 0.3s;
  background-color: #34495e;
    margin: 3px 0;
   transition: 0.3s;
}

.hero-banner {
  margin-top: 80px;
   padding:      4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  min-height: 70vh;
                    display:      flex;
    align-items: center;
}  

.hero-content {
 max-width: 1200px; 
	  margin: 0 auto; 
	   padding: 0 2rem; 
	    display: grid; 
		grid-template-columns: 1fr 1fr; 
	    gap: 4rem; 
	   align-items: center;
}  

.hero-title {
   font-size: 3.2rem;
 font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}



.hero-description {
	font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-actions	{

    display: flex;
    gap: 1.5rem;
       flex-wrap: wrap;
     }

.cta-primary, .cta-secondary {
   padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 600;
   border-radius: 8px;
   transition: all 0.3s ease;
  display: inline-block;
}

.cta-primary {
	background    :       #e74c3c;
  color: white;
    border: 2px solid #e74c3c;
}

.cta-primary:hover {
   background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3); 

}


.cta-secondary		{
    background: transparent;
    color: white;
          border: 2px solid white;
}

.cta-secondary:hover {
    background: white;
   color: #667eea;
}

.hero-image  {

	  width: 100%;
	  height: 400px;
	  object-fit: cover;
	    border-radius: 15px;
	  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
     }

.services-overview {
     padding: 5rem 0; 
	   background: white;
	
	}

.content-wrapper {

	       max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
	}

.section-heading {
  text-align: center;
  font-size: 2.8rem;
      margin-bottom: 3rem;
 color: #2c3e50;
  font-weight : 700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
   margin-top: 3rem;
}

.service-card {
	 background: white;
   border-radius: 12px;
   overflow:   hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-img {
   width: 100%;
  height: 250px;
     object-fit    :   cover;
}

.service-card h3 {
  padding: 1.5rem 1.5rem 0.5rem;
   font-size: 1.4rem;
     color: #2c3e50;
 font-weight: 600;
}

.service-desc{
  padding: 0 1.5rem 1.5rem;
  color: #7f8c8d;
   line-height: 1.6;

}

.transformation-cta {
    padding: 4rem 0;
     background: linear-gradient(45deg, #2c3e50, #34495e);
      color: white;
}

.cta-container {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
    display     :grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.cta-heading {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
	font-weight: 700;
}

.cta-text {
  font-size   :  1.1rem;
   margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.cta-button {
  display: inline-block;
    background: #e67e22;
    color: white;
         padding: 1.2rem 2.5rem;
   -moz-transition: all 0.3s ease;
	text-decoration: none;
               border-radius: 8px;
  -o-transition: all 0.3s ease;
   -webkit-border-radius: 8px;
	 font-weight: 600;
	 -webkit-transition: all 0.3s ease;
    transition   :       all 0.3s ease;
}

.cta-button:hover {
 background: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
}

.cta-image  {
   -moz-border-radius: 12px;
    width: 100%;
    height: 350px;
    object-fit :       cover;
    border-radius: 12px;
}

.contact-section {
    padding: 5rem 0;
  background: #f8f9fa;
}

.contact-wrapper {
	   max-width: 1200px;
   margin: 0 auto;
  padding  :   0 2rem;
    display: grid;
       grid-template-columns: 1fr 1fr;
  gap: 4rem;

}

.contact-title {

  font-size :        2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 700;
	
     }

.contact-subtitle {
    font-size: 1.1rem;
       color: #7f8c8d;
   margin-bottom     : 2rem;
}

.contact-details {
	display: flex;
    flex-direction: column;
     gap  :       1rem;
}

.contact-item {
  display: flex;

   flex-direction: column;

  gap   :0.3rem;
}

.contact-item strong {
  color: #2c3e50;
    font-weight: 600;
}

.contact-item span {

	  color: #7f8c8d;


}

.contact-form-container {
   background: white;
    padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	
}

.form-group   {
    margin-bottom: 1.5rem;

}

.form-group label {
		 display: block;
   margin-bottom: 0.5rem;
   color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    font-family: inherit;
    transition: border-color 0.3s ease;
    padding: 0.8rem;
  font-size: 1rem;
   border: 2px solid #ecf0f1;
   border-radius  :      6px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

.form-submit {
  background: #27ae60;
	 -moz-border-radius:   6px;
          color: white;
    -o-transition: all 0.3s ease;
  padding: 1rem 2rem;
    -webkit-border-radius     :   6px;
  border: none;
    border-radius: 6px;
    font-size: 1rem;
	font-weight:    600;
  -moz-transition   :        all 0.3s ease;
    cursor :   pointer;
         transition: all 0.3s ease;
  width: 100%;
}

.form-submit:hover {
   background    :  #229954;
  transform: translateY(-2px);
}

.site-footer {
    background: #2c3e50;
   color: white;
    padding    :3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 3rem;
}

.footer-logo {
  height: 40px;
   width:   auto;
  filter: brightness(0) invert(1);
    margin-bottom    :     1rem;
}

.footer-description {
      color: #bdc3c7;
    line-height    :        1.6;

}

.footer-heading {
   font-size   :  1.1rem;
  margin-bottom: 1rem;
    color     :white;
    font-weight: 600;
}

.footer-menu {
      list-style: none;
}

.footer-menu li {
  margin-bottom  :   0.5rem;
}

.footer-menu a {
                       color: #bdc3c7;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: white;
}

.contact-detail {
  color: #bdc3c7;
  margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
   margin: 2rem auto 0;
    padding: 2rem 2rem 0;
   border-top: 1px solid #34495e;
	 text-align: center;
}

.copyright 
 {
	color: #95a5a6;
}
@media (max-width: 768px) {
    .menu-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .menu-navigation.active {
        display: block;
    }
    
    .menu-navigation ul {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .cta-container,
    .contact-wrapper {
        padding: 0 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
}.about-hero {
   margin-top: 80px;
  padding: 3.5rem 0;
  background: linear-gradient(120deg, #34495e 0%, #2c3e50 100%);
   color: white;
  min-height: 65vh;
  display: flex;
  align-items:     center; 

}

.about-hero-content {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
  display: grid;
                    grid-template-columns: 1.2fr 1fr;
   gap: 3rem;
    align-items: center;
}

.about-main-title		{
    font-size: 2.8rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
  line-height: 1.3;
}

.about-intro     {
       font-size: 1.15rem;
  line-height: 1.7;
    opacity: 0.95;
     }  

.about-hero-img {
   width: 100%;
       height: 350px;
    object-fit: cover;
    border-radius     :     12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.our-story  
  {

    padding : 4.5rem 0;
    background     :      #f8f9fa;

}

.story-container {

    max-width: 1200px;
       margin: 0 auto;
       padding: 0 2rem;

}  

.story-heading
	{
   font-size: 2.5rem;
	text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
  font-weight: 700;
}

.story-content {
   display: grid;
       grid-template-columns: 1fr 1fr;
	gap :   3rem;
    align-items: center;
}

.story-paragraph {
   margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #34495e;
}

.story-img {
     width    :    100%;
	height: 300px;
  object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);}

.our-approach {
   padding    :      4.5rem 0;
    background: white;
}

.approach-wrapper {
   max-width: 1200px;
    margin :      0 auto;
    padding: 0 2rem;
}

.approach-title {
    font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
  color: #2c3e50;
  font-weight: 700;
}

.approach-grid {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.approach-card {
    background: white;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-5px);


}

.approach-image {
    width: 100%;
    height: 220px;
   object-fit: cover;
}

.approach-content {
    padding: 2rem;
}


.approach-subtitle  
  {
  font-size: 1.3rem;
   margin-bottom: 1rem;
  color: #2c3e50;
         font-weight: 600;
}

.approach-description   {
    color: #7f8c8d;
  line-height: 1.6;
}

.values-section {


	padding: 4.5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     }

.values-container {
   max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.values-heading     {
  font-size: 2.5rem;
   text-align: center;
   margin-bottom   :       3rem;
    font-weight: 700;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
	}

.value-item
	{
  background: rgba(255,255,255,0.1);
   padding    :2rem;
   border-radius     :  12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);

}



.value-name {
    font-size: 1.3rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.value-desc {
	line-height: 1.6;
   opacity    :0.9;
}

.thank-you-hero {
   margin-top: 80px;
   padding: 4rem 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: white;
   min-height  :       70vh;
    display: flex;
  align-items: center;
}

.thank-you-container {

	  max-width   :        1200px;
    margin :    0 auto;
    padding     :    0 2rem;
   display  :   grid;
   grid-template-columns: 1.2fr 1fr;
	gap:      3rem;
   align-items: center;


}

.success-icon {
               text-align: center;
    margin-bottom: 2rem;
}

.check-mark {
   width: 80px;
   height: 80px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
    display: inline-flex;
    align-items: center;
   justify-content: center;
    font-size: 2.5rem;
  font-weight: bold;
  border: 3px solid rgba(255,255,255,0.3);
}

.thank-you-title {

  font-size: 2.8rem;
  margin-bottom     : 1.5rem;
    font-weight: 700;
  text-align :  center;
}

.thank-you-message {
  font-size:        1.1rem;
   line-height: 1.7;
  margin-bottom: 3rem;
      opacity: 0.95;
   text-align: center;
}

.next-steps {
         margin-bottom: 3rem;}

.next-steps-title {
  font-size: 2rem;
   margin-bottom: 2rem;
    text-align   :       center;
  font-weight: 600;
}

.steps-list {
   gap: 1.5rem;
	flex-direction: column;
    display: flex;
}

.step-item {
   display  :     flex;
  gap: 1.5rem;
    align-items : flex-start;
  background: rgba(255,255,255,0.1);
	 padding: 1.5rem;
    border-radius: 10px;
  backdrop-filter: blur(5px);
}

.step-number {
				 min-width: 35px;

	   height   :        35px;

	  background: rgba(255,255,255,0.3);

	    border-radius: 50%;

		display: flex;

		 align-items: center;

	    justify-content:        center;

	    font-weight: bold;

	  font-size: 1.1rem;
}

.step-title

{
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-desc {
   opacity   :  0.9;
                    line-height :       1.5;
}

.thank-you-actions {
   display: flex;
	gap: 1.5rem;
       justify-content: center;
   flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
       padding: 1rem 2rem;
    text-decoration   :        none;
   border-radius: 8px;
  font-weight: 600;
    transition    :        all 0.3s ease;
}

.btn-primary {
  background: rgba(255,255,255,0.2);
	   color: white;
	  border: 2px solid rgba(255,255,255,0.3);
}

.btn-primary:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
}

.btn-secondary 
 {
	background: transparent;
   color: white;
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
}

.thank-you-image {
   width: 100%;
   height: 400px;
   object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.what-to-expect {
   padding: 4.5rem 0;
	background: white;
}

.expect-container {
    max-width: 1200px;
	   margin: 0 auto;
	   padding: 0 2rem;
}

.expect-heading {
   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
  font-weight: 700;
}

.expect-grid {
    display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.expect-card {

	    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
   text-align: center;
                    border-left: 4px solid #27ae60;
     }

.expect-title {
   margin-bottom: 1rem;
   font-weight: 600;
    font-size: 1.3rem;
  color: #2c3e50;
}

.expect-text {
    color : #7f8c8d;
  line-height: 1.6;
}

.nav-item.active {
   color: #3498db;
}

.nav-item.active::after {

   width: 100%;}@media (max-width: 768px) {
    .about-hero-content,
    .thank-you-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .about-main-title,
    .thank-you-title {
        font-size: 2.2rem;
    }
    
    .story-content,
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-list {
        grid-template-columns: 1fr;
    }
    
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thank-you-hero {
        padding: 2rem 0;
    }
    
    .about-hero-content,
    .thank-you-container {
        padding: 0 1rem;
    }
    
    .story-container,
    .approach-wrapper,
    .values-container,
    .expect-container {
        padding: 0 1rem;
    }
    
    .about-main-title,
    .thank-you-title {
        font-size: 1.8rem;
    }
    
    .story-heading,
    .approach-title,
    .values-heading,
    .expect-heading {
        font-size: 2rem;
    }
    
    .check-mark {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .step-item {
        padding: 1rem;
    }
    
    .value-item,
    .expect-card {
        padding: 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;
    }
}