* {
    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: #f8f9fa;
}

.section-wrapper {
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 600;
	line-height: 1.3;
    margin-bottom: 1rem;
	color: #1a252f;
}

h1 {
   font-size  :        3.5rem;
   margin-bottom: 1.5rem;
}

h2 {
    font-size :       2.5rem;
   text-align     :        center;
	margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {

    font-size: 1.2rem;
     }

p {
	margin-bottom: 1rem;
   font-size  : 1.05rem;
  line-height: 1.8;
}


a {
    text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.navbar    {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
		position: sticky;
   top: 0;
    z-index: 1000;
	
}

.navbar-container {
    margin: 0 auto;
	max-width: 1200px;
   align-items: center;
   display: flex;
  justify-content  :space-between;
    padding: 0.8rem 20px;
}  

.navbar-brand img {
   height: 94px;
   width     :   auto;

}

.nav-menu {
  display: flex;
	    list-style: none;
	    gap: 2.5rem;

}

.nav-link
	{
  font-size     :    1.05rem;
	font-weight: 500;
  color: #2c3e50;
  padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #3498db;
	       border-bottom-color: #3498db;
}

.burger-menu {
  display    :  none;
   flex-direction: column;
  background  :     none;
  border: none;
    cursor: pointer;
  gap: 0.4rem;
}

.burger-line {
	 width: 25px;
    height: 3px;
   background-color: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-link {
        display: block;
        padding: 1rem 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}.hero {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
         align-items: center;
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
}

.hero-content {
   margin-left  :        15%; 
	
}

.hero-content h1 {
  background: linear-gradient(135deg, #1a252f 0%, #3498db 100%);
       background-clip: text;
       margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.25rem;
       color: #34495e;
      margin-bottom: 2rem;
}

.hero-image {
  border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	
}

.hero-image img {
	width: 100%;
                    height: auto;
    display: block;
}

.btn-primary {
   display: inline-block;
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
               color: white;
    border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }
}.services-preview {
     padding: 4rem 0;
    background-color :#ffffff;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 12px;
  transition: all 0.3s ease;
   text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
     }

.service-icon {
   width: 60px;
                    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items     :        center;
   justify-content: center;
}

.service-icon img     {
   width: 100%;
    height: 100%;
  stroke: #3498db;
  filter: drop-shadow(2px 2px 4px rgba(52, 152, 219, 0.3));
}

.service-card h3 {
               color: #1a252f;
    margin-bottom     :   1rem;
}

.service-card p {
   color: #34495e;
   font-size: 0.95rem;
}

.cleaning-excellence {
  padding: 4rem 0;
   background-color: #f8f9fa;
}

.content-split {
    grid-template-columns : 1fr 1fr;
    gap: 3rem;
    align-items: center;
  display: grid;
}

.content-split.reverse {
  grid-template-columns: 1fr 1fr;
}

.content-split.reverse .image-content {
  order: -1;
}

.text-content h2 {
    text-align: left;
}

.text-content p 
 {
	 color: #555;
    line-height: 1.8;
}

.image-content {
        border-radius    :      15px;

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1); 
	
}

.image-content img {
  width: 100%;
    height: auto;
	 display: block;
     }@media (max-width: 768px) {
    .content-split {
        grid-template-columns: 1fr;
    }

    .content-split.reverse .image-content {
        order: 0;
    }

    .text-content h2 {
        text-align: center;
    }
}.coaching-approach {
               padding: 4rem 0;
	 background-color: #ffffff;


}

.approach-cards {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap   :     2rem;
}

.approach-card {
  padding: 2rem;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
    border-radius: 12px;
    border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.approach-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.approach-card h3 {
	  color: #1a252f;
    margin-bottom: 1rem;
   font-size: 1.3rem;
     }

.approach-card p {
   color: #34495e;
    font-size: 0.95rem;
} 

.professional-standards {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
}

.webinar-coaching {
     padding: 4rem 0;
  background-color: #ffffff;
}

.section-intro {
    font-size: 1.15rem;
  text-align: center;
    color: #555;
    max-width:        700px;
   margin: 0 auto 3rem;
}

.topics-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
}

.topic-item {
    padding: 2rem;
  background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
   border-radius   :12px;
    transition: all 0.3s ease;
}

.topic-item:hover {


  box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
  transform: translateY(-3px);
	}

.topic-item h4 {
  color: #d84315;
  margin-bottom: 0.8rem;
}

.topic-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
    color: #555;
}

.team-expertise {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.specialized-services {
  padding: 4rem 0;
  background-color: #ffffff;
}

.specialized-grid  
  {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.spec-card	{
   padding: 2rem; 
  background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%); 
  border-radius: 12px; 
    border-top:  4px solid #9c27b0; 
	transition: all 0.3s ease;
}

.spec-card:hover {
  box-shadow: 0 10px 30px rgba(156, 39, 176, 0.2);
  transform: translateY(-5px);
}

.spec-card h3 {
  color: #4a148c;
   margin-bottom: 1rem;
    font-size: 1.25rem;
}

.spec-card p {
  color: #555;
   font-size: 0.95rem;
	
}

.success-stories {
   padding: 4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
}

.stories-container{
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.story-card  {
    padding : 2rem;
    background-color    :#ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
   border-left: 5px solid #3498db;
}

.story-card:hover {

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);}

.story-card h3		{
   color: #1a252f;
    font-size: 1.2rem;
  margin-bottom: 1rem;
}

.story-card p {
   color: #555;
  font-size    :        0.95rem;
   line-height:     1.8;
}

.cta-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
	
}

.cta-content {
   text-align   :        center;
                    color    :    white;
}

.cta-content h2 {
   color: white;
       margin-bottom: 1.5rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
   font-size: 1.2rem;
  max-width: 600px;
   margin: 0 auto 2rem;
}

.cta-content .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #2980b9;
}

.cta-content .btn-primary:hover {
	background: #ffffff;
}

.contact-section {
   padding   :      4rem 0;
    background-color: #ffffff;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    margin-top: 2rem;}

.contact-info h3 {
    font-size: 1.4rem;
  margin-bottom:     1.5rem;
  color: #1a252f;
}

.contact-info p {
	color: #555;
  font-size: 1rem;
   margin-bottom: 1rem;
}

.contact-form {
     background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 2rem;
  border-radius: 12px;
     }

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
  margin-bottom: 0.5rem;
   font-weight: 600;
      color: #1a252f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.75rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
   font-family: inherit;
   font-size   :      1rem;
   background-color: #ffffff;
    color :  #2c3e50;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.btn-submit {
   width: 100%;
    padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  border: none;
   border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
        cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
}.footer {
  background: linear-gradient(135deg, #1a252f 0%, #34495e 100%); 
	   color: #ecf0f1; 
	  padding   :3rem 0 1rem;
}



.footer-wrapper {
  max-width: 1200px;
	 margin: 0 auto;
  padding: 0 20px;
}

.footer-content {
     margin-bottom: 2rem;
   gap: 2rem;
   display: grid;
	 grid-template-columns: 1fr 1fr 1fr 1fr;}

.footer-logo {
  display: flex;
  align-items   :   flex-start;


}

.footer-logo-img {
  height: 136px;
   width     :      auto;
  filter: brightness(0) invert(1);
	
}

.footer-section h4 {
  color   :     #ecf0f1;
    margin-bottom: 1rem;
	font-size: 1.1rem;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
    margin-bottom:  0.7rem;
}

.footer-section a {
    color: #bdc3c7;
   transition     :      all 0.3s ease;
}

.footer-section a:hover {
   color: #3498db;
}

.footer-contact p {
    color: #bdc3c7;
  margin-bottom   :   0.5rem;
  line-height: 1.6;
}

.footer-bottom   {
   text-align: center;
    padding-top: 2rem;
  border-top: 1px solid rgba(236, 240, 241, 0.2);
  color  :   #95a5a6;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .footer-logo {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .footer-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-section h4 {
        margin-top: 1rem;
    }
}section {
    scroll-margin-top: 80px;
}@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero {
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .content-split {
        gap: 2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.services-hero h1 {
  color: white;
	 font-size: 3.2rem;
    margin-bottom :     1.5rem;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.95);
   font-size :     1.2rem;
  max-width  :     700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 0;
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }
}.services-main {
    padding   :   4rem 0;
    background-color: #ffffff;
}

.services-tabs {
  display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content    :     center;
}

.tab-button

{
  padding: 0.8rem 1.5rem;
  border:        2px solid #d0d0d0;
   background-color: #f8f9fa;
   border-radius: 8px;
	 cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
  color: #2c3e50;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: #3498db;
	 color: #3498db;
}

.tab-button.active {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #2980b9;
}

.tab-content {
   display: none;
}

.tab-content.active


{
     display: block;
  animation: fadeIn 0.3s ease-in;


}@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
         margin-top: 2rem;
}

.list-item {
    padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 10px;
  border-left: 4px solid #3498db;
  transition: all 0.3s ease;
}

.list-item:hover {
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
	  transform: translateY(-3px);
}

.list-item h4 {
    color: #1a252f;
     margin-bottom: 0.8rem;
       font-size: 1.1rem;
}

.list-item p {
	color: #555;
  font-size: 0.95rem;
		margin-bottom: 1rem;
}

.service-badge {
   display: inline-block;
   padding: 0.5rem 1rem;
	 background-color: #3498db;
          color: white;
  border-radius: 20px;
  font-size: 0.85rem;
    font-weight: 600;
}@media (max-width: 768px) {
    .services-tabs {
        flex-direction: column;
    }

    .tab-button {
        width: 100%;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}.service-packages {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
} 

.section-intro {
   text-align: center;
    color: #555;
  max-width: 700px;
   margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.packages-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.package-card {
             padding: 2.5rem;
   background-color: #ffffff;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition:  all 0.3s ease;
	 position: relative;}

.package-card:hover {
  transform: translateY(-5px);
	  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
	
}

.package-card.featured {
  border: 3px solid #3498db;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.08) translateY(-5px);
}

.featured-badge {
   position: absolute; 
   top: -15px; 
   left: 50%; 
  transform: translateX(-50%); 
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%); 
   color: white; 
   padding: 0.5rem 1.5rem; 
  border-radius: 20px; 
  font-size: 0.85rem; 
  font-weight: 600;
}

.package-card h3 {
	 color: #1a252f;
   margin-bottom: 0.5rem;
   font-size: 1.5rem;
}

.package-description {
  margin-bottom: 1.5rem;
          font-size: 0.95rem;
   color: #888;


}

.package-features {
    list-style: none;
   margin-bottom: 1.5rem;
}

.package-features li {

	   padding: 0.7rem 0;
   color: #555;
  border-bottom :        1px solid #e0e0e0;
  font-size: 0.95rem;

}

.package-features li:before {
  content: "✓ ";
  color: #2ecc71;
   font-weight: bold;
	margin-right: 0.5rem;
}

.package-price {
    font-size: 1.3rem;
  font-weight: 600;
	color: #3498db;
    margin-top: 1.5rem;
}@media (max-width: 768px) {
    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-5px);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}.why-sparkline {
    padding: 4rem 0;
    background-color :   #ffffff;
}

.reasons-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.reason-card {
  padding: 2rem;
  background: linear-gradient(135deg, #e8f8f5 0%, #d5f4e6 100%);
   border-radius: 12px;
  border-top:     4px solid #1abc9c;
   transition: all 0.3s ease;
}

.reason-card:hover{
     box-shadow: 0 10px 30px rgba(26, 188, 156, 0.15);
  transform: translateY(-5px);}

.reason-card h3 {
      color: #1a252f;
   margin-bottom: 1rem;
    font-size: 1.2rem;
}

.reason-card p {
  color: #555;
  font-size: 0.95rem;
}

.cta-booking {
    padding: 4rem 0;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
   text-align  :   center;
  color: white;
}

.cta-booking h2 {
  color :       white;
  margin-bottom: 1.5rem;
}

.cta-booking p
{
  color: rgba(255, 255, 255, 0.95);
         font-size: 1.1rem;
    max-width: 600px;
       margin: 0 auto 2rem;
}

.cta-booking .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color     :   #e67e22;
}

.cta-booking .btn-primary:hover {
  background: #ffffff;
}

.thankyou-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
}

.success-container {
    text-align: center;
  margin: 0 auto;
  max-width: 700px;
}

.success-icon {
   width   :    100px;
   height: 100px;
  margin     : 0 auto 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  border-radius: 50%;
   display: flex;
	 align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.success-icon svg {
    color: white;
   width: 60px;
    height: 60px;
}


.thankyou-hero h1 {
  color: #2ecc71;
  font-size: 2.5rem;
   margin-bottom: 1rem;
}

.thank-you-message {

   margin-bottom: 2.5rem;
    font-size: 1.1rem;
    color: #555;

}

.submission-details {
  background-color: #ffffff;

   padding:      2rem;

  border-radius: 12px;

   margin-bottom: 2rem;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.submission-details h2 {
               text-align: left;
   color: #1a252f;
    font-size: 1.3rem;
  margin-bottom: 1.5rem;

}

.details-box
	{
   text-align: left;
}

.details-box p {
	color: #555;
   margin-bottom: 1rem;
    font-size: 1rem;
}

.status-badge {
   display: inline-block;
	 padding: 0.4rem 1rem;
   background-color   :    #2ecc71;
  color: white;
   border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 600;
}

.next-steps
{
    background-color: #ffffff;
    padding: 2rem;
  border-radius: 12px;
    margin-bottom   : 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.next-steps h2 {
           text-align: center;
   color: #1a252f;
    margin-bottom: 2rem;
}

.steps-list {
   display: grid;
    gap: 1.5rem;
}

.step-item {


    display: grid;
    grid-template-columns: 80px 1fr;
  gap: 1.5rem;
    padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   border-radius: 10px;
    align-items: flex-start;
	}



.step-number {
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
                    color: white;
   border-radius  : 50%;
    display: flex;
    align-items: center;
    justify-content: center;
               font-size: 1.5rem;
   font-weight  :600;
    flex-shrink: 0;
}

.step-content h3 {
  color: #1a252f; 
		 margin-bottom: 0.5rem; 
	  text-align: left;
}

.step-content p {
	 color: #555; 
	  font-size: 0.95rem; 
	  text-align: left; 
	    margin-bottom: 0;
}

.contact-info-box {
   background-color: #ffffff;
   padding: 2rem;
    border-radius: 12px;
         margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.contact-info-box h2 {
	color: #1a252f;
    font-size: 1.3rem;
    margin-bottom    :      1rem;
}

.contact-info-box p {
    color: #555;
    margin-bottom: 0.7rem;
}

.action-buttons {
    display    :     flex;
  gap: 1rem;
   justify-content: center;
  flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
  color: white;
  border-radius     :8px;
  font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);

}

.trust-section {
  padding: 4rem 0;
  background-color: #f8f9fa;
     }

.trust-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trust-item {
    padding: 2rem;
   background-color: #ffffff;
   border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition  :       all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.trust-icon {
  width: 60px;
   height: 60px;
  margin: 0 auto 1rem;
    display: flex;
   align-items: center;
  justify-content: center;
}

.trust-icon img {
          width: 100%;
	 height: 100%;
   stroke: #3498db;
  filter: drop-shadow(2px 2px 4px rgba(52, 152, 219, 0.3));
}

.trust-item h3 {
         color: #1a252f;
  margin-bottom: 1rem;
}

.trust-item p {
   color: #555;
    font-size :   0.95rem;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 0;
    }

    .step-item {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }
}.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
  padding :   5rem 0;
	 text-align: center;
} 

.about-hero h1 {
    color: white;
	font-size: 3.2rem;
   margin-bottom: 1rem;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;


}@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .about-hero p {
        font-size: 1rem;
    }
}.about-intro {
    padding: 4rem 0;
  background-color: #ffffff;
}

.content-layout {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.text-block h2 {
  color:    #1a252f;
  text-align: left;
  margin-bottom: 1.5rem;
   font-size: 1.8rem;
}

.text-block p {
  color: #555;
  line-height: 1.9;
    font-size: 1rem;
	text-align: justify;

}@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .text-block h2 {
        text-align: center;
    }

    .text-block p {
        text-align: left;
    }
}.about-values {


    padding   :    4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
	}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap   :  2rem;
   margin-top: 2rem;
	
}  

.value-card {
    padding: 2rem;
     background-color: #ffffff;
	 border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
                    border-top: 4px solid #3498db; 
	
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
  height: 70px;
    margin: 0 auto 1.5rem;
   display: flex;
   align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-radius: 50%;
}

.value-icon img {
    width: 100%;
   height: 100%;
    stroke: #3498db;
  filter: drop-shadow(2px 2px 4px rgba(52, 152, 219, 0.2));
}

.value-card h3 {
   color: #1a252f;
    font-size: 1.3rem;
  margin-bottom: 1rem;
}

.value-card p {
     color: #555;
   font-size :    0.95rem;
     }@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .value-icon {
        width: 60px;
        height: 60px;
    }
}.about-vision {
  padding: 4rem 0;
  background-color: #ffffff;
}

.vision-content {
   display: grid;
          grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.vision-text h2 {
   margin-bottom: 1.5rem;
	color: #1a252f;
  text-align: left;
  font-size: 2rem;
}

.vision-text p {
   color: #555;
  line-height: 1.9;
  font-size: 1rem;
   text-align: justify;
    margin-bottom: 1.5rem;
}

.vision-image {
   border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.vision-image img {
   width: 100%;
  height: auto;
  display: block;
}@media (max-width: 768px) {
    .vision-content {
        grid-template-columns: 1fr;
    }

    .vision-text h2 {
        text-align: center;
    }

    .vision-text p {
        text-align: left;
    }
}.about-commitment {
   padding: 4rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);}


.commitment-cards {
   display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
   margin-top: 2rem;

}

.commitment-card {
         padding   :      2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  border-left     :        5px solid #2ecc71;
}

.commitment-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(46, 204, 113, 0.15);
}

.commitment-card h3 {
   color: #1a252f;
   margin-bottom: 1rem;
   font-size: 1.1rem;
}

.commitment-card p		{
  color: #555;
  font-size :       0.95rem;
}@media (max-width: 768px) {
    .commitment-cards {
        grid-template-columns: 1fr;
    }
}.about-expertise {
   background-color: #ffffff;
    padding: 4rem 0;
}

.expertise-content {
                    display: grid;
  margin-top: 2rem;
   grid-template-columns:        1fr 1fr;
  align-items: center;
   gap: 3rem;
}

.expertise-stats {
	    gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
   display: grid;
}

.stat-item {
	padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
    color: white;
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
	margin-bottom: 0.5rem;
	color: white;
}

.stat-item p  
  {


  color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
}

.expertise-text p {
    color: #555;
   line-height: 1.9;
  font-size: 1rem;
         text-align: justify;
	margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
    }

    .expertise-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-text p {
        text-align: left;
    }
}.about-approach {
  padding    :       4rem 0;
  background: linear-gradient(135deg, #ecf0f1 0%, #e8f4f8 100%);
}

.approach-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.approach-step {
    padding: 2rem;
    background-color: #ffffff;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  position: relative;
}

.approach-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12); 

}

.step-badge {
    display: inline-block;
   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color :      white;
  border-radius: 50%;
   display: flex;
    align-items: center;
   justify-content: center;
   font-size: 1.8rem;
	font-weight: 700;
  margin: 0 auto 1.5rem;
}

.approach-step h3 {
   color: #1a252f;
    margin-bottom: 1rem;
   font-size: 1.2rem;
}

.approach-step p {
	color: #555;
   font-size: 0.95rem;
}@media (max-width: 768px) {
    .approach-steps {
        grid-template-columns: 1fr;
    }
}.about-why-choose {
   padding: 4rem 0;
    background-color: #ffffff;
}

.why-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.why-item {
	 padding: 2rem;
  background: linear-gradient(135deg, #fff9e6 0%, #ffe8b2 100%);
   border-radius: 12px;
	transition: all 0.3s ease;
  border-left: 4px solid #f39c12;
}

.why-item:hover {
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.15);
  transform: translateY(-3px);
}


.why-icon {


   width : 50px;
   height :        50px;
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
        justify-content: center;}

.why-icon img {
  width: 100%;
  height:      100%;
  stroke: #f39c12;
  filter: drop-shadow(1px 1px 2px rgba(243, 156, 18, 0.3));
}

.why-item h3 {
	 color: #d68910;
   margin-bottom: 0.8rem;
   font-size: 1.1rem;
}

.why-item p {
  color: #555;
  font-size    :        0.95rem;
}@media (max-width: 768px) {
    .why-list {
        grid-template-columns: 1fr;
    }
}.about-contact-cta {
   padding:   4rem 0;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  text-align: center;
    color: white;
}

.about-contact-cta h2 {
   color: white;
    margin-bottom: 1.5rem;
}

.about-contact-cta p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    max-width     :     600px;
    margin: 0 auto 2rem;
}

.about-contact-cta .btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #e67e22;
}

.about-contact-cta .btn-primary:hover {
    background: #ffffff;
}@media (max-width: 768px) {
    .about-contact-cta {
        padding: 3rem 0;
    }

    .about-contact-cta h2 {
        font-size: 1.8rem;
    }

    .about-contact-cta p {
        font-size: 1rem;
    }
}.policySection {
   padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 400px);
}

.policyContainer {
 max-width: 800px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
   font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
  font-weight  :       700;
    text-align: center;
}

.policyContainer h2 {
        margin-bottom:       1.5rem;
    color: #2c3e50;
    font-weight: 600;
   font-size: 2rem;
  margin-top: 2.5rem;
       border-bottom: 2px solid #3498db;
    padding-bottom: 0.5rem;
}

.policyContainer p {
    color: #555;
    margin-bottom: 1.5rem;
  line-height: 1.9;
    font-size: 1.05rem;
       text-align: justify;
}

.policyContainer p:last-child {
	  margin-bottom: 0;


}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.8rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}