*     {
  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: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.primary-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 1rem 0;
	position: fixed;
	width: 100%;
    top: 0;
  z-index: 1000;
  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 20px;
     }


.brand-section .nav-logo {
          height: 45px;
	width: auto;
}


.menu-items {

    gap: 2rem;
    list-style   :    none;
    display: flex;}

.menu-items a {
   color: white;
          text-decoration: none;
  font-weight: 500;
	transition    :    color 0.3s ease;
  font-size: 16px; 
	
}  

.menu-items a:hover   {
    color: #f8f9fa;
  text-shadow: 0 0 8px rgba(255,255,255,0.3);
}

.mobile-toggle {
   display: none;
	 flex-direction     :   column;
  cursor: pointer;
     gap: 4px;


}

.mobile-toggle span {
  width: 25px;
   height: 3px;
  background: white;
 transition: all 0.3s ease;
}

.hero-area {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
    min-height: 100vh; 
  display: flex; 
	 align-items: center; 
   padding     :        120px 20px 60px;
}

.hero-content {
  max-width: 1200px;
    margin: 0 auto;
  display  : grid;
   grid-template-columns    :   1fr 1fr;
   gap: 4rem;
	align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
	margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {

   font-size: 1.3rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
   line-height: 1.6;


}

.cta-buttons {
    display: flex; 
     gap: 1.5rem; 
  flex-wrap    :    wrap;
}

.primary-btn, .secondary-btn {
    font-weight: 600;
  border-radius: 50px;
  padding: 15px 30px;
   transition: all 0.3s ease;
	text-decoration: none;
 display: inline-block;
   text-align: center;
}

.primary-btn {
	 background:       white;
   color: #667eea;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
} 

.secondary-btn {
   background: transparent;
  color: white;
 border :      2px solid white;
}

.secondary-btn:hover 
 {
   background: white;
    color: #667eea;
}

.hero-visual img{
   width: 100%;
    height     :      auto;
     border-radius    :20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2); 
	
}

.services-overview {
    padding: 100px 0;
  background: #f8f9fa;
}

.services-overview h2 {
  text-align: center;
	 font-size: 2.8rem;
  margin-bottom: 3rem;
   color: #2c3e50;

}

.services-grid
{
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 2.5rem;
   margin-top: 4rem;
	}

.service-card {
  background: white;
    border-radius: 15px;
  overflow  :    hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
     transform: translateY(-10px);
	}

.service-image img {
  width: 100%;
    height: 200px;
    object-fit: cover;
}



.service-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem;
          color :      #2c3e50;
}

.service-card p {
  margin: 0 1.5rem 1.5rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.transformation-process {
    padding: 100px 0; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white;
}

.process-content {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
    display: grid;
	 grid-template-columns:  1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.process-content h2 {
	 font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.process-content > p {
    font-size: 1.2rem;
 margin-bottom: 3rem;
   opacity: 0.9;
}

.process-steps {
	 display     :    flex;
  flex-direction: column;
   gap: 2rem;
}

.step 
 {
  display: flex;
  align-items: flex-start;
	 gap: 1.5rem;
}

.step-number {
  background: rgba(255,255,255,0.2);

    color: white;

    width: 50px;

  height: 50px;

  border-radius   :50%;

   display: flex;

    align-items:       center;

          justify-content: center;

   font-weight: bold;

     font-size     :  1.2rem;

   flex-shrink: 0;
}

.step h4 {
	  font-size: 1.3rem;
    margin-bottom: 0.5rem;
     }

.step p {
               opacity: 0.9;
    line-height: 1.6;
}

.process-visual img {

    width: 100%;
    height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
     }

.cta-section {

	        padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   text-align: center;
  color: white;
     }

.cta-content h2 {
   font-size: 2.5rem;
	margin-bottom: 1rem;
}

.cta-content p {
  font-size    :   1.2rem;
   margin-bottom: 2rem;
    opacity    : 0.9;
}

.cta-button {
    display: inline-block;
  background     :        white;
    color: #f5576c;
   padding: 18px 35px;
   border-radius: 50px;
	 text-decoration: none;
  font-weight  :       600;
  font-size: 1.1rem;
          transition   :     all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);


}

.contact-section
{
  padding: 100px 0;
   background: #f8f9fa;
}

.contact-section h2 {
       margin-bottom: 3rem;
    font-size: 2.8rem;
   color: #2c3e50;
   text-align: center;
}

.contact-wrapper {
     grid-template-columns: 1fr 2fr;
	gap: 4rem;
    margin: 0 auto;
  max-width: 1200px;
     display: grid;}

.contact-info h3 {
   font-size: 1.8rem;
   color: #2c3e50;
  margin-bottom: 2rem;

}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong {
          color: #667eea;
  font-size: 1.1rem;
}

.contact-item p {
   margin-top: 0.5rem;
    color: #7f8c8d;
   line-height: 1.6;
}

.contact-form {
   background: white;
   padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 8px 25px 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%;
  padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
  font-size: 16px;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline:     none;
	   border-color: #667eea;
}

.submit-btn {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 15px 30px;
    border: none;
  border-radius: 50px;
  font-size: 1.1rem;
   font-weight  :     600;
 cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;

}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.site-footer {
  background: #2c3e50;
    color     :        white;
          padding: 60px 0 20px;
}

.footer-content {
	max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; 
	
}

.footer-section h4 {
    margin-bottom: 1rem;
   color: #ecf0f1;
   font-size: 1.2rem;
}

.footer-section p {
  color: #bdc3c7;
                    line-height: 1.6;
}

.footer-logo {
   height    :40px;
  width   :      auto;
   margin-bottom   :   1rem;
  filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
	
}

.footer-links li {
    margin-bottom :        0.5rem;
}

.footer-links a
{
  color: #bdc3c7;
  text-decoration: none;
         transition: color 0.3s ease;
}

.footer-links a:hover {
 color: #ecf0f1;
}

.contact-details p {
    margin-bottom :    0.5rem;
  color: #bdc3c7;
	
}

.footer-bottom		{
  border-top: 1px solid #34495e;
   margin-top: 2rem;
    padding-top: 2rem;
  text-align  :  center;
    color : #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    .menu-items.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .process-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        justify-content: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 120px 0 80px;
   text-align    :center;
 color: white;
}

.about-hero-content h1 {
  font-size: 3rem;
    margin-bottom: 1.5rem;
     font-weight: bold;
}

.our-mission     {
  padding: 100px 0;
  background  :#f8f9fa;
}

.mission-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap:4rem;
   align-items: center;
}

.mission-text h2    {
  font-size: 2.5rem;
    color: #2c3e50;
          margin-bottom: 2rem;

}

.mission-text p {
  color    :  #7f8c8d;
  line-height: 1.8;
   margin-bottom: 1.5rem;
   font-size     :     1.1rem;
}

.mission-visual img {
  width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.our-approach {
    padding: 100px 0;
  background: white; 
	
}

.our-approach h2 {
    text-align: center;
   font-size :  2.5rem;
  color: #2c3e50;
  margin-bottom: 4rem;
}

.approach-grid

{
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 3rem;
}

.approach-item {
   text-align: center;
	   padding: 2rem;
}

.approach-number {
					width: 60px;
     height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  : white;
    border-radius: 50%;
  display: flex;
    align-items  :  center;
    justify-content :   center;
    font-size: 1.5rem;
       font-weight: bold;
   margin  :    0 auto 1.5rem;
}

.approach-item h3{

	   font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 1rem;

}

.approach-item p {
    color: #7f8c8d;
   line-height: 1.6;
}

.expertise-areas    {
	padding: 100px 0;
   background: #f8f9fa;
}

.expertise-content {

	    display: grid;
    grid-template-columns  :        1fr 1fr;
    gap: 4rem;
    align-items: center;
	}

.expertise-visual img {
   width: 100%;
		height: auto;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.expertise-text h2 {
  font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 2rem;
}

.expertise-list {

	                    display: flex;
	flex-direction: column;
   gap :        1.5rem;
}

.expertise-point h4 {
    color: #667eea;
  font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.expertise-point p {
  color: #7f8c8d;
  line-height: 1.6;
}

.why-choose-us {
   padding: 100px 0;
        background: white;
}

.why-choose-us h2 {
  text-align: center;
	 font-size: 2.5rem;
      color: #2c3e50;
                    margin-bottom  :    4rem;
}

.benefits-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap:   2.5rem;
}

.benefit-card {
             background: #f8f9fa;
	 border-radius: 15px;
    overflow: hidden;
   transition  :   transform 0.3s ease;
     }

.benefit-card:hover {
     transform: translateY(-5px);
}

.benefit-image img {
    width: 100%;
		height: 200px;
  object-fit    :     cover;
}

.benefit-card h3 {
  font-size:     1.4rem;
    margin: 1.5rem;
    color: #2c3e50;
}

.benefit-card p {
	 margin: 0 1.5rem 1.5rem;
  color: #7f8c8d;
	line-height: 1.6;
}

.our-values {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :      white;
}

.our-values h2 {
	text-align: center;
   font-size: 2.5rem;
   margin-bottom: 4rem;
}

.values-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
  background: rgba(255,255,255,0.1);
  padding:  2rem;
       border-radius:  15px;
  backdrop-filter: blur(10px);
}  

.value-item h3 {
   font-size: 1.3rem;
	margin-bottom: 1rem;
}

.value-item p {
  line-height: 1.6;
   opacity: 0.9;
}

.thankyou-main {
   min-height    :80vh;
  padding: 120px 0 60px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);


}

.thankyou-content {
  max-width: 800px;
    margin    :        0 auto;
   text-align: center;
  background: white;
  border-radius: 20px;
  padding: 4rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.success-icon {
	  margin-bottom: 2rem; 
	

}

.checkmark-circle {

	   width   :     80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    margin: 0 auto;
   display: flex;
    align-items: center;
	justify-content: center;
   animation: scaleIn 0.5s ease-out;

}

.checkmark {

	  width: 30px;
    height: 15px;
    border: 3px solid white;
    border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.5s 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-content h1 {
   font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
}

.confirmation-message {
	 margin-bottom: 3rem;
}

.main-message


{
      font-size: 1.2rem;
   color: #7f8c8d;
  line-height: 1.6;


}


.next-steps h2 {
      font-size: 1.8rem;
   color: #2c3e50;
  margin-bottom: 2rem;

}

.steps-list	{

		display: flex;
    flex-direction    :   column;
    gap: 1.5rem;
  margin-bottom: 3rem;
   text-align: left;

}

.step-item {
  display: flex;
      align-items: flex-start;
      gap: 1rem;
}

.step-icon {

	    width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:      white;
    border-radius  :      50%;
   display: flex;
   align-items: center;
  justify-content: center;
      font-weight: bold;
    flex-shrink: 0;

}

.step-content h3 {
  color: #2c3e50;
  margin-bottom :   0.5rem;
}

.step-content p {
   color: #7f8c8d;
  line-height    :   1.6;
}

.additional-info {
    margin-bottom: 3rem;}

.info-card {
	  background: #f8f9fa;
	 padding: 2rem;
   border-radius: 15px;
    border-left :       4px solid #667eea;
}

.info-card h3 {
   color: #2c3e50;

  margin-bottom :       1rem;
}

.info-card p {


   color: #7f8c8d;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.phone-number {
   font-size: 1.3rem;

	    font-weight :     bold;

	   color: #667eea !important;
}

.availability
{
          font-size: 0.9rem;
    color: #95a5a6 !important;
}

.explore-more h3 {
    color: #2c3e50;
   margin-bottom: 1.5rem;
}

.suggestions {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.suggestion-link {
   background: #f8f9fa;
  padding   :        1.5rem;
	 border-radius: 10px;
       text-decoration     :        none;
      transition: all 0.3s ease;
  border: 2px solid transparent;
}

.suggestion-link:hover {
   border-color: #667eea;
  transform: translateY(-2px);
} 

.suggestion-link h4 {

	  color: #2c3e50;
		margin-bottom: 0.5rem;


}

.suggestion-link p {
   color: #7f8c8d;
  font-size: 0.9rem;
   line-height: 1.5;
}

.back-to-home
{
    margin-top: 3rem;
}

.home-button
	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding:      15px 30px;
   border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
    transition    :all 0.3s ease;
  display: inline-block;
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}@media (max-width: 768px) {
    .mission-content,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .thankyou-content {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .steps-list {
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .suggestions {
        grid-template-columns: 1fr;
    }

    .values-content {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.cookies-policy,
.privacy-policy   {
    padding    :        120px 0 80px;
  background: #f8f9fa;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.policy-content h1    {
   color  :      #2c3e50;
   margin-bottom   : 2rem;
    font-size: 2.5rem;
    text-align: center;
}

.policy-content h2 {


   font-size: 1.8rem;
  color: #2c3e50;
   margin    :        2rem 0 1rem;
	
     }

.policy-content p {
  color: #7f8c8d;
    line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.policy-content ul {
   list-style: disc;
  margin-left: 2rem;
   margin-bottom: 1.5rem; 
	
}

.policy-content ul li {
   color: #7f8c8d;
       line-height: 1.8;
  margin-bottom: 0.5rem;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .policy-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .policy-content h1 {
        font-size: 2rem;
    }

    .policy-content h2 {
        font-size: 1.5rem;
    }
}