* {
	margin: 0;
	padding: 0;
   box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --dark-gray: #495057;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

body {

	  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
   font-size: 16px;


}

.container {
    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.main-navigation {
  background: var(--white);
  box-shadow: var(--shadow);
    position  : fixed;
  width: 100%;
  top: 0;
    z-index: 1000;
  transition: all 0.3s ease;
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
	padding: 0 20px;
   display: flex;
  justify-content: space-between;
    align-items: center;
   height :     70px;
}

.nav-logo .logo-img {

	   height: 45px;
	width: auto;
     }

.nav-links {
    display: flex;
  gap: 2rem;
  list-style: none;
	
}  

.nav-link {
    text-decoration: none;
  color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

.nav-link::after {
  content: '';
    position :       absolute;
  width: 0;
   height     :    2px;
    bottom: -5px;
  left  :   0;
  background-color: var(--secondary-color);
       transition     :width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
   width: 100%;
}

.burger-menu {
   display: none;
   flex-direction: column;
    cursor: pointer;
    gap   :4px;
}

.burger-line {
  width: 25px;
    height: 3px;
  background: var(--text-color);
    transition: 0.3s;

}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {

	  transform: rotate(-45deg) translate(7px, -6px);



}

.hero-section {
   margin-top: 70px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-bg) 0%, #e8f4fd 100%);
}

.hero-content {
  display: grid;
	   grid-template-columns: 1fr 1fr;
	     gap: 4rem;
	  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
    line-height: 1.2;
   margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.hero-description {
   font-size: 1.2rem;
  color: var(--gray);
    margin-bottom: 2rem;

}

.hero-buttons {
   display     :  flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-cta {
    padding: 15px 30px;
	border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
                    transition: all 0.3s ease;
    cursor: pointer;
   display: inline-block;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
     background: #2980b9; 
	  transform: translateY(-2px); 
	  box-shadow: var(--shadow-hover);
}

.btn-secondary {


  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
	}

.btn-secondary:hover {
	  background: var(--secondary-color);

	  color: var(--white);

}

.hero-image img {
   width: 100%;
    height :       auto;
    border-radius: 12px;
  box-shadow: var(--shadow-hover);
}

.services-section {
   padding: 80px 0;
  background: var(--white);
}

.section-title {
   font-size: 2.5rem;
    text-align: center;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

}

.service-card	{
  background: var(--white);
    border-radius   :   12px;
    padding: 2rem;
  box-shadow: var(--shadow);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;

}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-card img {

    object-fit: cover;
   width  :   100%;
    height: 200px;
  border-radius: 8px;
   margin-bottom: 1.5rem;
	}

.service-card h3 {
   font-size: 1.5rem;
    margin-bottom: 1rem;
  color: var(--primary-color);
}

.service-card p {
  color: var(--gray);
         line-height: 1.6;
}

.methodology-section

{
  padding:   80px 0;
  background: var(--light-bg);
}

.methodology-content {
    align-items: center;
  gap: 4rem;
      grid-template-columns    :1fr 1fr;
   display: grid;
}  

.methodology-text h2 {
    font-size: 2.5rem;
     margin-bottom  :  1.5rem;
     color: var(--primary-color);
}

.methodology-text p {
   font-size   :1.1rem;
  color: var(--gray);
   margin-bottom    :   2rem;
}

.methodology-list {
    list-style: none;
   padding: 0;
}

.methodology-list li {
   padding: 0.8rem 0;

	  padding-left  :      2rem;

		 position: relative;

	  color: var(--text-color);
}

.methodology-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
  color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.methodology-image img {
     width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #2980b9 100%);
  color: var(--white);
    text-align: center;
}

.cta-content h2 {

	   font-size: 2.5rem;
      margin-bottom: 1.5rem;
	}

.cta-content p {
  font-size: 1.2rem;
    margin-bottom    :  2rem;
               max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
  background: var(--white);
  color: var(--secondary-color);
   font-size: 1.1rem;
  padding     :       18px 40px;
}

.btn-cta:hover {
  background: var(--light-bg);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.contact-section {
    padding: 80px 0;

  background: var(--white);
}

.contact-content {
  display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.contact-form {
  background: var(--light-bg);
   padding: 3rem;
        border-radius     :     12px;
}

.form-group {
    margin-bottom: 1.5rem;
	    position: relative;
}

.form-group label {
  display: block;
    margin-bottom: 0.5rem;
  color: var(--text-color);
   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: 1rem;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: var(--secondary-color);
}

.form-group.focused label		{

  color: var(--secondary-color);

}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: var(--accent-color);
}

.btn-submit {
  background: var(--secondary-color);
  color: var(--white);
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
   font-weight: 600;
  cursor: pointer;
   transition:    all 0.3s ease;
   width: 100%;
}

.btn-submit:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.contact-info {
   padding: 2rem 0;
}

.info-item {
	 margin-bottom: 2rem;
}

.info-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
    font-size     :      1.2rem;
}

.info-item p {
  color: var(--gray);
               line-height  :        1.6;
}

.main-footer		{
  background: var(--primary-color);
  color: var(--white);
    padding : 3rem 0 1rem;
}

.footer-content {
   display: grid;
   grid-template-columns: 1fr 3fr;
    gap: 3rem;
         margin-bottom: 2rem;
}

.footer-logo img {
   height: 60px;
  width: auto;
}

.footer-info {
     display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
     }

.footer-column h4 {
   margin-bottom: 1rem;
  color: var(--white);
	}

.footer-column ul {

  list-style: none;

}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
   color: #bdc3c7;
    text-decoration: none;
    transition     :       color 0.3s ease;
}  

.footer-column a:hover {
  color: var(--white);
}

.footer-column p {
  color: #bdc3c7;
    line-height: 1.6;


}

.footer-bottom
	{
	border-top: 1px solid #34495e;
  padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;




}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}.about-hero {
	   margin-top: 70px;
      padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
   text-align: center;

}

.about-title {

	font-size: 3.2rem;

	  color: var(--primary-color);

	    margin-bottom: 1.5rem;

	   font-weight: 700;
}

.about-subtitle {
   font-size: 1.3rem;
  color: var(--gray);
    max-width   :     800px;
   margin: 0 auto;
  line-height: 1.6;
}

.company-story {
   padding: 80px 0;
  background: var(--white);
}

.story-content {

    display   : grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items :       center;
}

.story-text h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
   line-height  : 1.7;
}

.story-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow);
}

.our-approach {
	padding: 80px 0;

	  background: var(--light-bg);
	
}

.approach-grid {
       display: grid;
  grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
  margin-top: 3rem;
     }

.approach-item		{
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
   transition: transform 0.3s ease;
   position: relative;
}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-number {
   position: absolute;
	 top   :       -15px;
     left: 30px;
  background: var(--secondary-color);
  color: var(--white);
   width: 40px;
    height: 40px;
       border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
  font-weight: bold;
   font-size: 1.1rem;
}

.approach-item h3   {


  color: var(--primary-color);
   font-size: 1.4rem;
    margin-bottom: 1rem;
  margin-top: 0.5rem;


} 

.approach-item p {
  color: var(--gray);
    line-height: 1.6;
}

.expertise-section {
	          padding: 80px 0;
  background: var(--white);}

.expertise-content {
	    display: grid;
	grid-template-columns: 1fr 1fr;
    align-items     :     center;
    gap: 4rem;}

.expertise-image img    {
    width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow);
} 

.expertise-text h2 {
	 font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom :  2rem;
}

.competency-list {
    space-y: 1.5rem;
	}

.competency-item {
  padding: 1.5rem 0;
   border-bottom: 1px solid #e9ecef;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.6s ease;
}

.competency-item.visible {
  transform: translateX(0);
  opacity     :       1;
}

.competency-item:last-child {
	border-bottom: none;
}

.competency-item h4 {
  color: var(--primary-color);
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.competency-item p {
  color: var(--gray);

	          line-height: 1.6;
}

.values-section   {


  padding    :     80px 0;
  background: var(--light-bg);
	}

.values-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

   gap :   2rem;

	margin-top :        3rem;
}

.value-card {
  background: var(--white);
  border-radius: 12px;
    padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card img {
   width: 100%;
	height: 180px;
         object-fit:      cover;
    border-radius:8px;
  margin-bottom: 1.5rem;
}

.value-card h3 {
  color: var(--primary-color);
    font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--gray);
   	 line-height: 1.6;


}

.stats-section {
   padding: 80px 0;
  background: var(--primary-color);
  color: var(--white);


}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap     :       2rem;
}

.stat-item
{
	  text-align: center;
         padding: 2rem;}


.stat-number {


    font-size: 3rem;
   font-weight  :  bold;
  color: var(--white);
               margin-bottom: 0.5rem;
    display: block;


}

.stat-label {
    font-size: 1rem;
   color: #bdc3c7;
   text-transform: uppercase;
	 letter-spacing  : 1px;
}

.thankyou-hero {
   margin-top: 70px;
   padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8f4fd 100%);
   text-align: center;
}

.thankyou-content {
	 max-width    :     900px;
  margin: 0 auto; 

}

.success-icon {
	 margin-bottom: 2rem;
}

.checkmark-circle

{

     width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--secondary-color);
  margin: 0 auto;
   position: relative;
  transform: scale(0);
		 transition: transform 0.5s ease;
}

.checkmark-circle.animate {
  transform: scale(1);
}

.checkmark {
   position: absolute;
   top: 50%;
    left: 50%;
  transform: translate(-50%, -50%);
	width: 40px;
    height:   20px;
  border: 4px solid var(--white);
       border-top  :    none;
  border-right:none;
  transform: translate(-50%, -65%) rotate(-45deg);
	opacity: 0;
    animation: checkmark 0.5s ease 0.5s forwards;
}@keyframes checkmark {
    from {
        opacity: 0;
        transform: translate(-50%, -65%) rotate(-45deg) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -65%) rotate(-45deg) scale(1);
    }
}.thankyou-title {
   font-size: 3rem;
  color: var(--primary-color);
       margin-bottom: 1rem;
    font-weight: 700;
	
}

.thankyou-subtitle {
  font-size: 1.3rem;
  color: var(--gray);
    margin-bottom: 3rem;
}

.confirmation-details {
  background: var(--white);
    padding: 3rem;
   border-radius :    12px;
  box-shadow: var(--shadow);
   margin-bottom: 3rem;
  text-align: left;
}

.confirmation-details h3 {
  color: var(--primary-color);
  font-size     :   1.8rem;
        margin-bottom: 2rem;
    text-align   :     center;
}

.next-steps


{
   flex-direction: column;
	gap: 2rem;
    display:   flex;
	}

.step-item


{
  display  :        flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-number {
  background: var(--secondary-color);
  color: var(--white);
   width: 40px;
    height: 40px;
  border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
   font-weight: bold;
   flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-color);
  font-size: 1.2rem;
   margin-bottom    :   0.5rem;
}

.step-content p		{
  color: var(--gray);
    line-height: 1.6;
}

.helpful-info {
  background: var(--light-bg);
    padding: 3rem;
  border-radius: 12px;
  margin-bottom: 3rem;
    text-align: left;
}

.helpful-info h3 {
     color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
   text-align   :    center;}

.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.info-card {
  background: var(--white);
                    padding :2rem;
    border-radius: 8px;
  box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-card h4 {
  color: var(--primary-color);
     font-size: 1.1rem;
               margin-bottom: 1rem;
}

.info-card p {
  color: var(--gray);
   line-height: 1.6;
  font-size: 0.95rem;
}

.back-actions {
       display: flex;
    gap: 1rem;
	justify-content: center;
   flex-wrap: wrap;}

.quick-contact-info {
   padding: 60px 0;
  background: var(--white);
}

.contact-banner {

	  background: var(--light-bg);
    padding: 3rem;
   border-radius: 12px;
    display: flex;
   justify-content: space-between;
  align-items: center;
   gap: 2rem;}

.contact-text h3
{
     color: var(--primary-color);
   font-size: 1.5rem;
	 margin-bottom: 0.5rem;

}

.contact-text p
	{
  color: var(--gray);
}

.contact-direct
	{
   display: flex;
   flex-direction: column;
    gap: 1rem;
}

.contact-method     {
   display: flex;
	 gap: 1rem;
   align-items: center;
}

.contact-method strong {
  color: var(--primary-color);
    min-width: 80px;
}

.contact-method span {
  color: var(--text-color);
}@media (max-width: 768px) {
    .about-title {
        font-size: 2.4rem;
    }

    .story-content,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }

    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-banner {
        flex-direction: column;
        text-align: center;
    }

    .back-actions {
        flex-direction: column;
        align-items: center;
    }

    .back-actions .btn-primary,
    .back-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .confirmation-details,
    .helpful-info {
        padding: 2rem;
    }

    .contact-banner {
        padding: 2rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}