* {
   margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
   color: #333;
    background-color: #f8f9fa;
}



.main-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    position    :     fixed;
  top: 0;
   width: 100%;
 z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-wrapper 
 {
   position: relative;
}

.nav-container		{
  max-width: 1200px;
   margin: 0 auto;
	 display   : flex;
    justify-content: space-between;
   align-items     :  center;
   padding :      1rem 2rem;

}

.brand-section {
     flex-shrink    :   0;
}

.company-logo    {
  height: 45px;
    width: auto;
}

.desktop-menu {
  display: flex;
   list-style    :       none;
               gap: 2rem;
}

.desktop-menu a  {
    color: #ecf0f1;
   text-decoration: none;
    font-weight: 500;
   transition: color 0.3s ease;
   padding: 0.5rem 1rem;
}

.desktop-menu a:hover {
  color: #3498db;
	
}

.mobile-trigger {
        display: none;
       flex-direction: column;
	 cursor: pointer;
   padding: 0.5rem;
}

.burger-line {
    width     :     25px;
   height: 3px;
   background-color: #ecf0f1;
   margin: 3px 0;
  transition    :      0.3s;
}

.mobile-navigation {
   display: none;
  background: #2c3e50;
	position: absolute;
   top: 100%;
   left: 0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-menu-list {
  list-style: none;
  padding: 1rem 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-list a {
   display: block;
  color   :    #ecf0f1;
   text-decoration: none;
    padding: 1rem 2rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-list a:hover {
  background-color: rgba(52, 73, 94, 0.8);
}


.page-content {
  margin-top: 80px;
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding:  80px 0;
	min-height: 600px;
   display: flex;
    align-items: center;
}

.hero-content {
   max-width: 1200px;
    margin: 0 auto;
    padding    :        0 2rem;
}

.content-wrapper {

	   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items: center;

}

.main-heading {
	font-size: 3.2rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-description {
	 margin-bottom  :    2rem;
   font-size :  1.2rem;
  opacity: 0.9;
}

.action-buttons

{

		display: flex;
	gap: 1rem;
   flex-wrap: wrap;
	}

.primary-button, .secondary-button {
  padding: 15px 30px;
    border-radius: 8px;
         text-decoration: none;
  font-weight: 600;
    transition    : all 0.3s ease;
    display: inline-block; 

}

.primary-button {

	  background-color :        #e74c3c;
   color: white;
    border: 2px solid #e74c3c;
	}

.primary-button:hover {
  background-color: #c0392b;
   border-color: #c0392b;
  transform: translateY(-2px);
}

.secondary-button


{
    background-color: transparent;
    color: white;
  border: 2px solid white;
}

.secondary-button:hover {
    background-color: white;
    color: #667eea;
     }

.hero-image {
    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.services-overview  
  {
    padding :       100px 0; 
	background-color: white;
}

.section-container {
	     max-width   :   1200px;
  margin  :       0 auto;
   padding: 0 2rem;}

.section-title
{
	text-align :       center;
   font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
  font-weight: 700;
}

.services-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
   gap: 2.5rem;
}

.service-card {
          background     :        white;
	border-radius: 15px;
    padding: 2rem;
  box-shadow: 0 10px 25px 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 40px rgba(0,0,0,0.15);
}

.service-image {
   height: 200px;
  object-fit: cover;
   border-radius: 10px;
                    margin-bottom: 1.5rem;
    width: 100%;
}

.service-title  {
       font-size: 1.5rem;
   color     : #2c3e50;
    margin-bottom: 1rem;
	font-weight: 600;
}

.service-text {
  color: #666;
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding: 80px 0;
    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-description {
			font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity :     0.9;
}

.cta-button {
   background-color: white;
  color: #f5576c;
   padding: 15px 35px;
    border-radius: 8px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-visual {
  width  :100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);

}

.benefits-section {
	padding: 100px 0;
  background-color: #f8f9fa;


}

.benefits-wrapper {
	  max-width   :1200px;
   margin: 0 auto;
	 padding: 0 2rem;


}

.benefits-title {
  color: #2c3e50;
   font-weight: 700;
   font-size: 2.5rem;
	margin-bottom: 3rem;
 text-align: center;
	
} 

.benefits-list {
   display  :grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	    gap   : 2rem;
}

.benefit-item {
   display: flex;
  align-items    :    flex-start;
  gap: 1.5rem;
   background: white;
    padding:     2rem;
 border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.benefit-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: 700;
	 font-size: 1.2rem;
  flex-shrink: 0;}

.benefit-heading
{
          font-size: 1.3rem;

   color: #2c3e50;

    margin-bottom: 0.5rem;

    font-weight: 600;
}

.benefit-text  
  {
  color: #666;
    line-height: 1.6;
}

.contact-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	 color: white;


}

.contact-container {
  max-width: 1200px;
    margin: 0 auto;
   padding  :  0 2rem;
  display  :  grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-title {
   margin-bottom: 1.5rem;
    font-weight: 700;
  font-size  :  2.5rem;
}

.contact-description {
    font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-details 
 {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
    border-radius  :10px;
  backdrop-filter: blur(10px);
}

.contact-item {
  margin-bottom    :   1rem;
  font-size: 1rem;
}

.contact-form {
	 background: white; 
  padding: 2.5rem; 
	 border-radius: 15px; 
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}


.form-label {
    display     :     block;
   color: #2c3e50;
        font-weight: 600;
    margin-bottom: 0.5rem;


}

.form-input, .form-select, .form-textarea {
    width: 100%;

	  padding: 12px 15px;

	  border: 2px solid #e0e0e0;

	   border-radius     :   8px;

	  font-size: 1rem;

	   transition: border-color 0.3s ease;

	   font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
	  outline: none;
	 border-color: #4facfe;
}

.form-textarea {
      resize: vertical;
	min-height: 100px;

}

.submit-button {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
    padding: 15px 30px;
    border: none;
  border-radius: 8px;
    font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
		transition: transform 0.3s ease;
  width: 100%;

}

.submit-button:hover {
  transform: translateY(-2px);
}

.site-footer {
   background-color: #2c3e50;
  color: #ecf0f1;
  padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;
	margin: 0 auto;
    padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; 

}

.footer-logo {
   height: 40px;
  width:       auto;
    margin-bottom  :1rem;
  filter: brightness(0) invert(1);
}

.footer-description {
  color    :       #bdc3c7;
      line-height: 1.6;
   margin-bottom: 1.5rem;

}

.footer-heading 
 {
       font-size: 1.2rem;
   margin-bottom: 1rem;
   color: white;
   font-weight    :        600;


}

.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: #3498db;
}

.footer-contact p {
    margin-bottom: 0.5rem;
  color: #bdc3c7;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
   padding: 2rem;
   border-top: 1px solid #34495e;
  text-align:      center;
   color: #bdc3c7;
    margin-top: 2rem;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-trigger {
        display: flex;
    }
    
    .mobile-navigation.active {
        display: block;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .section-container, .benefits-wrapper, .contact-container, .footer-content {
        padding: 0 1rem;
    }
    
    .main-heading {
        font-size: 2rem;
    }
    
    .hero-area {
        padding: 60px 0;
    }
    
    .services-overview, .benefits-section, .contact-section {
        padding: 60px 0;
    }
    
    .service-card, .contact-form {
        padding: 1.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
}.about-hero {


  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
      padding: 120px 0 80px;
    color: white;
	}

.about-hero-content {
  grid-template-columns: 1fr 1fr;
    display: grid;
  max-width: 1200px;
    gap     :        3rem;
  align-items :       center;
    margin: 0 auto;
  padding: 0 2rem;
}

.about-main-title {
  font-size: 3rem;
  font-weight: 700;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.about-subtitle {
    font-size    : 1.3rem;
  opacity  :     0.9;
   line-height: 1.5;
}

.about-hero-image {
  width :       100%;
  height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.company-story{
    padding: 100px 0;
   background-color: white;
}

.story-container {
    align-items: center;
  display  :  grid;
               padding: 0 2rem;
    gap: 4rem;
    grid-template-columns    :        1fr 1fr;
    margin: 0 auto;
	 max-width    :1200px;
}

.story-heading {
   font-size: 2.5rem;
    color   :        #2c3e50;
   margin-bottom: 2rem;
    font-weight: 700; 
	
}

.story-text p {
    font-size :      1.1rem;
	 line-height: 1.7;
   color: #555;
   margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
   height     :        auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.expertise-areas {
	    padding    :     100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	}

.expertise-wrapper {
  max-width: 1200px;
  margin: 0 auto;
	 padding: 0 2rem;
}

.expertise-title {
    text-align: center;
     font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
   font-weight: 700;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}


.expertise-card {
    background: white;
   padding: 2.5rem 2rem;
               border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-icon {
    margin-bottom: 1.5rem;
} 

.icon-placeholder {
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius : 50%;
	 margin: 0 auto;
}

.expertise-card-title {
          font-size: 1.4rem;
 margin-bottom: 1rem;
  font-weight: 600;
	color: #2c3e50;
}

.expertise-description {
  color: #666;
    line-height: 1.6;
}

.values-section
	{
   padding: 100px 0;
    background-color   :white;
}

.values-container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.values-title {
   text-align:center;
   font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom    :     3rem;
	font-weight: 700;
}

.values-content {
   display  :        grid;
   grid-template-columns   :   1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.values-list {
  display: grid;
   gap     :   2rem;
}

.value-item {
   border-radius: 8px;
       padding: 1.5rem;
   	border-left:     4px solid #667eea;
       background: #f8f9fa;
}

.value-name {
   font-size: 1.3rem;
         color: #2c3e50;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.value-desc {
    color: #666;
    line-height: 1.6;
}

.values-visual {
   width:       100%;
   height  :   auto;
    border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.approach-methodology {
   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.methodology-wrapper {
   max-width: 1200px;
	margin: 0 auto;
    padding: 0 2rem;
}

.methodology-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
    font-weight: 700;
}

.methodology-steps {

          display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	  gap: 2rem;

}

.step-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
	 text-align: center;
  backdrop-filter: blur(10px);
}

.step-number {
    font-size: 2.5rem;
   font-weight: 700;
                    margin-bottom: 1rem;
   color: #fff;
}

.step-title {
    font-size: 1.3rem;
   margin-bottom: 1rem;
		 font-weight: 600;
}

.step-description {

	   opacity: 0.9;
   line-height  :  1.6;}

.results-showcase  {
  padding: 100px 0;
   background-color: white;
}

.results-container {
   max-width: 1200px; 
   margin:  0 auto; 
    padding: 0 2rem;
}


.results-title {
      text-align  :  center;
         font-size   :    2.5rem;
   color  : #2c3e50;
    margin-bottom: 3rem;
    font-weight :  700;
	}

.results-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 2rem;
    margin-bottom: 3rem;
} 

.result-card {
  text-align: center; 
   padding: 2rem; 
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); 
  border-radius: 15px; 
    color: white;
}

.result-number {
   font-size: 3rem;
    font-weight:     700;
    margin-bottom :        1rem;
}

.result-description {
   font-size: 1rem;
    opacity  :   0.9;
}

.results-image-wrapper {
   text-align: center;
   margin-top: 3rem;
}

.results-image		{
    max-width: 600px;
  width: 100%;
                    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          padding: 120px 0 80px;
	color: white;
  min-height: 100vh;
    display: flex;
  align-items: center; 

}

.thankyou-container {
	    max-width: 1200px;
  margin: 0 auto;
   padding     :    0 2rem;
    display  :        grid;
	 grid-template-columns :       2fr 1fr;
   gap: 4rem;
   align-items: center;}

.success-icon {
  text-align: center;
        margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
   background-color: #27ae60;
   border-radius: 50%;
    display: inline-flex;
    align-items: center;
  justify-content: center;
    margin: 0 auto;
   animation: scaleIn 0.6s ease-out;
}

.checkmark {
	       width: 20px;
    height: 35px;
    border: solid white;
   border-width: 0 4px 4px 0;
  transform: rotate(45deg);
	}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou-title {
  font-size :   2.8rem;
   font-weight: 700;
   text-align: center;
  margin-bottom: 1.5rem;
}


.thankyou-message {
    font-size:    1.2rem;
  text-align: center;
  margin-bottom: 3rem;
      opacity: 0.9;
   line-height: 1.6;
}

.next-steps {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius: 15px;
  margin-bottom: 3rem;
  backdrop-filter: blur(10px);
}

.steps-title {
   font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align:       center;
  font-weight: 600;
}

.steps-list
{
   display: grid;
   gap: 1.5rem;
}

.step-item-thankyou {
    display: flex;
    align-items: flex-start;
  gap: 1.5rem;
}

.step-icon {
   width: 40px;
  height: 40px;
    background-color :       #e74c3c;
	border-radius   :        50%;
   display: flex;
        align-items: center;
   justify-content: center;
   font-weight: 700;
   flex-shrink: 0; 

}

.step-text h3 {
   font-size  :  1.2rem;
    margin-bottom: 0.5rem;
   font-weight: 600;
}

.step-text p {
               opacity: 0.9;
   line-height: 1.5;
}

.additional-info {
  background: rgba(255,255,255,0.1);
   padding :    2rem;
    border-radius :15px;
    margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.info-title {
		 font-size: 1.6rem;
   margin-bottom: 1rem;
   font-weight: 600;
     }

.info-text {

	  margin-bottom: 2rem;
  opacity: 0.9;
	line-height: 1.6;




}

.action-buttons-thankyou {
   display: flex;
    gap: 1rem;
  flex-wrap: wrap;
}

.primary-action-btn, .secondary-action-btn {
	padding: 12px 25px;
	    border-radius: 8px;
	  text-decoration: none;
	    font-weight: 600;
	   transition: all 0.3s ease;
	  display: inline-block;
}

.primary-action-btn {
   background-color: #e74c3c;
   color: white;
   border: 2px solid #e74c3c;
}

.secondary-action-btn {
         background-color :   transparent;
	color: white;
	border: 2px solid white;
}

.primary-action-btn:hover  {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.secondary-action-btn:hover {
  background-color: white;
  color: #667eea;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
  backdrop-filter: blur(10px);
}

.reminder-title {
    font-size: 1.4rem;

    margin-bottom: 1rem;

    font-weight: 600;
}

.reminder-text    {
  margin-bottom: 1.5rem;
  opacity: 0.9;
   line-height: 1.6;
}

.reminder-contact {
    display: grid;
    gap: 0.5rem;
}

.contact-detail
{
       font-size: 1rem; 
	
     }

.thankyou-image {

	   width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .about-hero-content, .story-container, .values-content, .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-main-title, .thankyou-title {
        font-size: 2.2rem;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .action-buttons-thankyou {
        justify-content: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero, .thankyou-hero {
        padding: 80px 0 60px;
    }
    
    .company-story, .expertise-areas, .values-section, .approach-methodology, .results-showcase {
        padding: 60px 0;
    }
    
    .about-main-title, .thankyou-title {
        font-size: 1.8rem;
    }
    
    .section-title, .expertise-title, .values-title, .methodology-title, .results-title {
        font-size: 2rem;
    }
    
    .action-buttons-thankyou {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action-btn, .secondary-action-btn {
        width: 100%;
        text-align: center;
    }
}