*{
    margin: 0;
    padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
    color: #333;
  background-color   :#fff;


}

.content-container {
  max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
	position: fixed;
  top: 0;
    width: 100%;
	z-index: 1000;
    transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
} 

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {


   display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
  max-width: 1200px;
    margin     :      0 auto;
	}

.brand-section .company-logo {
    height: 45px;
    width: auto; 
	
}

.menu-items {
   display     : flex;
	 gap: 2rem;
}

.nav-link	{
  text-decoration: none;
    color: #333;
   font-weight :      500;
        transition: color 0.3s ease;
 position: relative;
}

.nav-link:hover, .nav-link.active {

  color: #4a90e2; 

}

.nav-link.active::after {
  content: '';
    position  :absolute;
   bottom: -5px;
  left: 0;
  width: 100%;
   height    :2px;
   background-color: #4a90e2;
}

.mobile-toggle {
   display: none;
  flex-direction :     column;
  cursor: pointer;
    width: 30px;
   height: 25px;
  justify-content: space-between;
}

.mobile-toggle span	{
    height: 3px;
   background-color: #333;
   transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {


   display     :     none;
    background :  white;
    padding: 1rem 2rem;
    border-top: 1px solid #eee; 

	}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link     {
  display    :        block;
     padding: 0.5rem 0;
    text-decoration: none;
   color: #333;
   font-weight: 500;
}

.hero-banner {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	min-height :   70vh;
    display  :  flex;
  align-items: center;
}

.hero-banner .content-container  
  {
    display: grid;
    grid-template-columns   : 1fr 1fr;
  gap: 60px;
  align-items: center; 
	
}

.hero-text h1 {
   font-size: 3.2em;
   font-weight: 700;
  margin-bottom: 20px;
          line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.5; 
	
	}

.action-buttons {
   display: flex;
	gap: 20px;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
          padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
    background-color: #ff6b6b;

   color: white;
}

.primary-btn:hover {
   background-color: #ff5252;
  transform: translateY(-2px);
}

.secondary-btn {
          background-color: transparent;
  color: white;
        border: 2px solid white;}

.secondary-btn:hover {
    color: #333;
 background-color  :     white;
}

.hero-image {
  width: 100%;
   height  :  400px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.services-overview    {
   padding: 80px 0;
  background-color :       #f8f9fa;
}

.services-overview h2 {
  text-align: center;
   font-size: 2.8em;
   margin-bottom: 60px;
         color: #333;
    font-weight: 700;
}

.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;


}

.service-card

{


	background: white;
      border-radius: 15px;
  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(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-img {
    width: 100%;
   height: 220px;
  object-fit: cover;
}

.service-card h3 {
    font-size: 1.5em;
   margin:  25px 25px 15px;
    color: #333;
   font-weight: 600;
}  

.service-card p {
    padding  :    0 25px 25px;
  color: #666;
   line-height: 1.6;
}

.transformation-process {
   padding: 80px 0;
   background: white;
	
}

.transformation-process .content-container {
   display: grid;
   grid-template-columns: 1fr 1fr;
 gap: 60px;
  align-items: center;
}

.process-content h2 {
    font-size: 2.8em;
	 margin-bottom: 40px;
   color: #333;
    font-weight: 700;
}

.process-steps {
        display   :       flex;
	flex-direction  :   column;
    gap: 30px;
}

.step-item  
  {
    display     :   flex;
    align-items: flex-start;
			gap :20px;
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 50px;
  height   :      50px;
  border-radius   :     50%;
    display: flex;
   align-items: center;
 justify-content: center;
  font-weight: bold;
                    font-size  :1.2em;
         flex-shrink:0;
}

.step-details h4 {
  font-size: 1.3em;
    margin-bottom: 8px;
  color: #333;
    font-weight: 600;
}

.step-details p {
    color: #666;
   line-height: 1.6;
}

.process-image  
  {
		 width: 100%;
     height: 450px;
     object-fit: cover;
   	 border-radius    :  15px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section
{
	   padding: 80px 0;
  background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
   color: white;
    text-align: center;
}

.cta-content h2    {
       font-size: 3em;
   margin-bottom: 20px;
    font-weight : 700;
}

.cta-content p {
    font-size: 1.2em;
   margin-bottom: 40px;
  max-width :      600px;
   margin-left: auto;
   margin-right  :auto;
	opacity: 0.9;
}

.cta-button {
   background-color: white;
   color: #ff6b6b;
          padding  : 18px 40px;
    text-decoration: none;
  border-radius   :   50px;
  font-weight: 700;
 font-size: 1.1em;
  transition: all 0.3s ease;
    display    :       inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}


.contact-section {

   padding: 80px 0;
    background-color:#f8f9fa;


}

.contact-section h2 
 {
    text-align: center;
    font-size: 2.8em;
   margin-bottom: 60px;
   color : #333;
   font-weight: 700;
}

.contact-wrapper {
  display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 60px;
    align-items: start;


}

.contact-info h3 {
    font-size: 1.8em;
  margin-bottom: 30px;
  color: #333;
   font-weight: 600;
}

.info-item {
        margin-bottom: 25px;
}

.info-item strong {
   display: block;
   color: #4a90e2;
   font-size: 1.1em;
   margin-bottom: 8px;
}

.info-item p {
    color: #666;
   line-height: 1.6;
}

.contact-form {
  background: white;
     padding: 40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
       grid-template-columns: 1fr 1fr;
            gap: 20px;
       margin-bottom: 20px;
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
    display: block;
   margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.input-group input,
.input-group select,
.input-group textarea {
  width     :     100%;
    padding: 12px 15px;
   border: 2px solid #e1e5e9;
       border-radius: 8px;
  font-size  :     16px;
   transition: border-color 0.3s ease;
    font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus  
  {
   outline: none;
   border-color: #4a90e2;
	
}

.input-group input.error,
.input-group select.error,
.input-group textarea.error {
  border-color: #ff6b6b;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
   padding: 15px 40px;
  border :       none;
  border-radius: 50px;
 font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
   background-color: #2c3e50;
  color :      white;
   padding: 60px 0 20px;
}

.footer-content {
  display: grid;
   grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
	margin: 0 auto;
     padding: 0 20px;
}

.footer-section h4 {
  font-size: 1.3em;
    margin-bottom: 20px;
   color: #ecf0f1;
    font-weight: 600;
}

.footer-logo {
	 height: 50px;
    width    :auto;
    margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section p {
   color: #bdc3c7;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-links	{
  list-style: none;
}

.footer-links li		{
  margin-bottom: 10px;
}

.footer-links a {
  color: #bdc3c7;
   text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
   	color: #4a90e2;
	}



.contact-details p {
    color: #bdc3c7;
  margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
  padding-top: 30px;
    margin-top:       40px;
  border-top: 1px solid #34495e;
    max-width: 1200px;
   margin-left: auto;
  margin-right :  auto;
   padding-left: 20px;
        padding-right: 20px;
}

.footer-bottom p {
   color: #95a5a6;
    font-size: 0.9em;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-banner .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-image {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .transformation-process .content-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .action-buttons {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .services-overview h2,
    .process-content h2,
    .contact-section h2 {
        font-size: 2.2em;
    }

    .contact-form {
        padding: 25px;
    }
}.about-hero

{
		 padding: 120px 0 60px;
  background: linear-gradient(135deg, #3742fa 0%, #2f3542 100%);
	color: white;
}

.about-intro h1 {
   font-size:    3.5em;
    font-weight     :    700;
  margin-bottom: 25px;
    text-align: center; 

}

.hero-description  
  {
  font-size: 1.4em;
    text-align: center;
  max-width: 800px;
    margin: 0 auto 50px;
  opacity: 0.9;
   line-height: 1.6;
}

.hero-stats {
   display: flex;
	 justify-content: center;
    gap: 60px;
    margin-top    :     40px;
}  

.stat-item {
    text-align: center;
}

.stat-number


{
   display: block;
                    font-size: 3em;
   font-weight    :      700;
   color: #ff6b6b;
 margin-bottom: 5px;
}

.stat-label {
   font-size: 1.1em;
	opacity  :0.8;
}

.our-story {
	padding: 80px 0;
  background-color: white;
}

.story-content {
   display: grid;
   grid-template-columns: 1.2fr 1fr;
  gap: 50px;
   align-items: center;
}

.story-text h2 {


        font-size: 2.8em;
    margin-bottom :        30px;
    color:      #333;
	font-weight    :700;
     }

.story-text p {
  font-size :      1.1em;
  line-height: 1.7;
   color: #555;
   margin-bottom :  20px;
}

.story-image {
	 width: 100%;
  height: 400px;
   object-fit: cover;
   border-radius     : 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}


.our-approach {
	padding :  80px 0;
   background-color   :     #f8f9fa;
}

.our-approach h2	{
     text-align: center; 
  font-size: 2.8em; 
   margin-bottom   :      60px; 
   color   :   #333; 
   font-weight: 700;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px; 

}

.approach-item {
        background     :     white;
    padding: 30px;
    border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.approach-item:hover	{
  transform: translateY(-8px);
}

.approach-img {
    width     :   100%;
   height: 200px;
    object-fit :      cover;
    border-radius: 10px;
  margin-bottom: 20px;
}

.approach-item h3 {
   font-size: 1.4em;
    margin-bottom: 15px;
	 color: #333;
    font-weight: 600;
	
}

.approach-item p {
          color:      #666;
	 line-height: 1.6;
}

.company-values {
  padding: 80px 0;
       background: white;
}

.values-content {
    display :     grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
		align-items  :  center;
}

.values-text h2 {
   color : #333;
    margin-bottom: 40px;
    font-size: 2.8em;
	font-weight: 700;
}

.value-point {
				 margin-bottom:  30px;
    padding:     20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.value-point h4

{
  font-size: 1.3em;
  margin-bottom: 10px;
	 color: #4a90e2;
       font-weight: 600; 
	
}

.value-point p {
	color: #666;
         line-height: 1.6;
}

.values-image {
   width: 100%;
    height: 450px;
  object-fit: cover;
    border-radius     :15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.why-choose-us {
	padding   :  80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.why-choose-us h2 {
  text-align: center;
    font-size: 2.8em;
   margin-bottom    :60px;
    font-weight: 700;
}

.reasons-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.reason-card {
  background: rgba(255, 255, 255, 0.15);
          padding: 30px;
   border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.reason-card h3 {
  font-size: 1.4em;
   margin-bottom: 15px;
    font-weight: 600;
}


.reason-card p {
     opacity: 0.9;
    line-height: 1.6;
     }

.thankyou-hero {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #26de81 0%, #20bf6b 100%);
   color: white;
   text-align: center;
   min-height: 100vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 800px;
  margin: 0 auto;
}

.success-icon {
    margin-bottom: 30px;
}

.checkmark-circle {
   width  :      100px;
   height: 100px;
		border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
    margin: 0 auto;
   display: flex;
   align-items: center;
   justify-content: center;
  animation :      pulse 2s infinite;
	}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.checkmark {

   width: 40px;
   height: 20px;
   border: 4px solid white;
    border-top: none;
   border-right     :       none;
  transform: rotate(-45deg);


     }

.thankyou-content h1 {
  font-size: 3.2em;
    margin-bottom: 20px;
   font-weight    :       700;
}

.confirmation-message {
   	 font-size: 1.3em;
    opacity: 0.9;
   margin-bottom: 50px;
     }

.next-steps {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
   border-radius: 15px;
    margin-bottom: 40px;
  backdrop-filter: blur(10px);
}

.next-steps h2 {
   font-size: 2.2em;
   margin-bottom: 30px;
  font-weight: 600;
}

.steps-list {
    flex-direction: column;

   gap: 20px;

    display: flex;
}

.step-box {
    display: flex;
    align-items    :flex-start;
    gap  :    20px;
   text-align: left;
}

.step-num {
    background: #ff6b6b;
  color: white;
    width: 40px;
     height: 40px;
    border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
  font-weight: bold;
	flex-shrink: 0;
}

.step-info h3  
  {
   font-size: 1.2em;
    margin-bottom: 8px;
  font-weight:    600;
}

.step-info p {
	               opacity: 0.9;
  line-height: 1.5;
     }

.additional-resources{
       margin-bottom: 40px;
}

.additional-resources h2 {
         font-size :      2em;
   margin-bottom: 15px;
   font-weight: 600;
}

.additional-resources p {
               font-size: 1.1em;
   margin-bottom: 25px;
    opacity: 0.9;
}

.resource-links

{
  display: flex;
   gap: 20px;
  justify-content: center;
   flex-wrap  :wrap;
}

.resource-btn    {
  background: white;
 color: #26de81;
  padding  :   15px 30px;
  text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;

}

.resource-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.resource-btn.secondary {
   background: transparent;
   color     :  white;
   border: 2px solid white;
}

.resource-btn.secondary:hover {

	  background: white;
    color    :       #26de81;}

.contact-reminder 
 {

  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
	border-radius: 15px;
  backdrop-filter: blur(10px);
	}

.contact-reminder h3 {
   font-size: 1.5em;
     margin-bottom: 15px;
   font-weight:  600;
}

.contact-reminder p {
	margin-bottom: 8px;
	opacity: 0.9;
}

.phone-number {
    font-size: 1.4em;
   font-weight: 700;
   color: #ff6b6b;
    margin: 15px 0 10px 0 !important;
}

.office-address {
    font-size  :  1.1em;
  opacity: 0.8;
}@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

    .about-intro h1 {
        font-size: 2.5em;
    }

    .story-content,
    .values-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .approach-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2.5em;
    }

    .steps-list {
        text-align: center;
    }

    .step-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .resource-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-intro h1 {
        font-size: 2em;
    }

    .stat-number {
        font-size: 2.5em;
    }

    .thankyou-content h1 {
        font-size: 2em;
    }

    .next-steps,
    .contact-reminder {
        padding: 20px;
    }
}.cookies-policy,
.privacy-policy {

   padding: 120px 0 80px;
    background-color: #f8f9fa;}

.cookies-policy h1,
.privacy-policy h1 {
   font-size: 2.8em;

	    margin-bottom: 40px;

	   color    :   #333;

	   font-weight :  700;

	  text-align: center;
} 

.cookies-policy h2,
.privacy-policy h2 {


  font-size     :1.8em;
   margin: 30px 0 20px;
    color: #333;
   font-weight: 600;
	}

.cookies-policy p,
.privacy-policy p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookies-policy ul,
.privacy-policy ul
	{
    padding-left: 20px;
    margin-bottom: 20px;
}

.cookies-policy ul li,
.privacy-policy ul li {
   color: #666;
  line-height: 1.6;
   margin-bottom: 10px;

}