* {
   padding: 0;
   margin     :        0;
    box-sizing   : border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
       color: #2c3e50;
      background: #ffffff;
}

.main-navbar {
    position: fixed;
    top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
    padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {

	   justify-content: space-between;
	   padding   :        0 2rem;
	    margin: 0 auto;
	  display: flex;
	    align-items: center;
	    max-width: 1200px;
	}

.company-logo {
	 height: 45px;
	  width: auto;
}

.nav-links {
	display: flex;
    list-style: none;
   gap: 2.5rem; 
	
} 

.nav-item {
   text-decoration: none;
  color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover		{
    color: #e74c3c;
}

.nav-item::after {

	  content: '';
   position: absolute;
    width: 0;
  height: 2px;
		bottom: -5px;
   left: 0;
  background    :       #e74c3c;
   transition: width 0.3s ease;
	}

.nav-item:hover::after {

    width: 100%;}

.burger-menu {
  display: none;
               flex-direction: column;
    cursor: pointer;
	gap: 4px;

}

.burger-line {
    width: 25px;
  height: 3px;
    background: #34495e;
				 transition: all 0.3s ease;
}

.hero-banner {
    margin-top: 80px;
    min-height: 90vh;
	 display: flex;
    align-items:      center;
	padding: 4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content
{
	    max-width: 1200px;
 margin: 0 auto;
    display: grid;
  grid-template-columns   :       1fr 1fr;
	gap: 4rem;
  align-items: center;
}

.primary-heading {
         line-height: 1.2;
   color: #2c3e50;
   font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
	
}

.hero-description {
   	 font-size: 1.2rem;
	 color: #7f8c8d;
    margin-bottom: 2.5rem;
               line-height: 1.8;


}

.cta-button {


   display   :        inline-block;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
   color :     white;
  padding: 1rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);


}

.cta-button:hover
{
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.hero-image {
        width: 100%;
  height: auto;
   border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.services-showcase {
    padding   :6rem 0;
  background: white;
}

.container-fluid {
  max-width   : 1200px;
    margin: 0 auto;
   padding: 0 2rem;
}

.section-title {
   text-align: center;
	 font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 4rem;
  font-weight: 700;
}

.services-grid {

               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 3rem;
	}

.service-card {
   background: white;
  border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {


  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.service-img {
   width: 100%;
    height: 250px;
   object-fit :  cover;
}

.service-heading {
	 padding: 1.5rem 1.5rem 1rem;
  font-size: 1.5rem;
  color :       #2c3e50;
  font-weight: 600;
}

.service-text {
	    padding: 0 1.5rem 2rem;
 color: #7f8c8d;
  line-height: 1.7;


}

.transformation-process {
  padding: 6rem 0;
  background: #f8f9fa;
}

.process-container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
        display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;


}

.process-title {
      font-size: 2.5rem;
  color    :  #2c3e50;
	 margin-bottom: 1.5rem;
  font-weight: 700;


}

.process-description {
                    color   :        #7f8c8d;
   font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

.process-steps {
  flex-direction: column;
        gap: 2rem;
   display: flex;
}

.step-item {

	   display: flex;
    align-items: flex-start;
   gap: 1.5rem;
	}

.step-number {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    width:50px;
    height: 50px;
   border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content:center;
   font-weight: 700;
               flex-shrink: 0;
}

.step-title {
	     margin-bottom:  0.5rem;
    font-size: 1.2rem;
  color: #2c3e50;
    font-weight: 600;
     }

.step-desc{
     color: #7f8c8d;

  line-height: 1.6;}

.process-image {

                    width: 100%;
    height: auto;
	 border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);

}

.call-to-action-section {
  padding: 6rem 0;

	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

	   text-align: center;


}

.cta-wrapper {
    max-width: 800px;
  margin: 0 auto;
    padding: 0 2rem;
}

.cta-heading
	{
	font-size: 3rem;
  color :  white;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-subtext {
   line-height: 1.8;
   color: #bdc3c7;
   font-size: 1.2rem;
    margin-bottom    :       3rem;


}

.cta-link-button {
		display: inline-block;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
	 color: white;
                    padding: 1.2rem 3rem;
    text-decoration: none;
	border-radius: 50px;
   font-weight: 600;
  font-size: 1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-link-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}

.contact-section {
   background: white;
  padding: 6rem 0;
}

.contact-container {
   max-width: 800px;
   margin: 0 auto;
		padding: 0 2rem;
}

.contact-title {
   text-align: center;
    font-size: 2.8rem;
  color: #2c3e50;
    margin-bottom: 4rem;
   font-weight: 700;
}

.contact-form {
   background: #f8f9fa;
	padding :3rem;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom: 2rem;
}

.form-label {
  display: block;
	margin-bottom: 0.5rem;
  color: #2c3e50;
    font-weight: 600;
}

.form-input,
.form-select,
.form-textarea {
          width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
   border-radius   :10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
   background: white;

}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {

    outline: none;
   border-color: #e74c3c;
	}

.form-textarea {
   resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
   color: white;
  padding: 1.2rem 3rem;
  border    :  none;
  border-radius: 50px;
   font-size     :  1.1rem;
	font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
	width: 100%;
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);


}

.site-footer {
   background  :   #2c3e50;
    color :        white;
          padding: 4rem 0 2rem;
}

.footer-content {
  max-width    :1200px;
   margin   :0 auto;
    padding: 0 2rem;
   display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 3rem;}

.footer-logo {

   height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
     }

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.info-heading {
  font-weight : 600;
    color: #e74c3c;
   font-size: 1.2rem;
 margin-bottom : 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li


{


  margin-bottom   : 0.5rem;
}

.footer-link {
      color: #bdc3c7;
    text-decoration: none;
	transition: color 0.3s ease;
     }

.footer-link:hover {

	  color: white;}

.contact-info		{
    color: #bdc3c7;
    margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
   margin: 0 auto;
    padding: 2rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
}



.copyright-text {
         color: #95a5a6;
     }@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .burger-menu {
        display: flex;
    }

    .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-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .primary-heading {
        font-size: 2.5rem;
    }

    .process-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .cta-heading {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }

    .hero-banner {
        padding: 2rem 1rem;
    }

    .container-fluid {
        padding: 0 1rem;
    }

    .primary-heading {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.nav-item.active {
    color    :       #e74c3c;
  font-weight: 600;
}

.nav-item.active::after {

	     width: 100%;}

.about-hero {
   margin-top: 80px;
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
	text-align: center;
 color: white;
}

.about-hero-content {
  max-width: 800px;
    margin: 0 auto;
}

.about-main-title {
    font-size   :       3.2rem;
   font-weight :  700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.about-subtitle {
    font-size    :    1.3rem;
  line-height: 1.7;
    color: #bdc3c7;
	 max-width: 700px;
   margin  :  0 auto;
}

.company-story {

	    padding: 6rem 0;
    background: white; 

	}

.story-container {
      max-width: 1200px;
  margin :     0 auto;
   padding: 0 2rem;
   display: grid;
    grid-template-columns:      1fr 1fr;
	 gap: 4rem;
    align-items: center;
}

.story-heading {
	    font-size: 2.5rem;
  color     :  #2c3e50;
   margin-bottom: 2rem;
	 font-weight   :       700;
}

.story-paragraph {


  color: #7f8c8d;
	  font-size: 1.1rem;
	   line-height  :  1.8;
	    margin-bottom: 1.5rem;


}

.story-image {
   width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);

}

.values-section {
  padding: 6rem 0;
  background: #f8f9fa;


}

.values-wrapper {
  max-width: 1200px;
      margin: 0 auto;
    padding: 0 2rem;
}

.values-title {
    text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 4rem;
	font-weight: 700;
}

.values-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;}

.value-card {
  background: white;
    padding    :        2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.value-name {
  font-size: 1.5rem;
    color: #e74c3c;
  margin-bottom: 1rem;
   font-weight   :    600;
}

.value-description {
	color: #7f8c8d;
  line-height: 1.7;
}

.expertise-showcase {
  padding: 6rem 0;
    background: white;
}

.expertise-container {
  max-width: 1200px;
   margin: 0 auto;
   padding : 0 2rem;
    display:   grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items    :   center;

}

.expertise-title {
    font-size: 2.5rem;
      color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.expertise-text {
    color    :      #7f8c8d;
    font-size: 1.1rem;
   line-height: 1.8;
    margin-bottom: 3rem;
}


.stats-grid {
    display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 2rem;
}

.stat-item {
   text-align: center; 

}

.stat-number {
         display: block;
  font-size: 2.5rem;
   font-weight: 700;
   color: #e74c3c;
    margin-bottom: 0.5rem;
}

.stat-label     {
   font-weight: 500;
  color  :#7f8c8d;
   font-size: 0.9rem;
}

.expertise-img {
   width: 100%;
      height    :   auto;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.methodology-section {
   padding: 6rem 0;
    background: #f8f9fa;
}

.methodology-wrapper {
        max-width: 1200px;
         margin: 0 auto;
  padding: 0 2rem;
	
}

.methodology-title
{
   text-align: center;
    font-size: 2.8rem;
	color: #2c3e50;
    margin-bottom: 4rem;
    font-weight: 700;
}

.methodology-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
   margin-bottom: 4rem;
}

.method-item {
    background: white;
    padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.method-heading {
	color: #2c3e50;
	font-size: 1.3rem;
  margin-bottom: 1rem;
    font-weight: 600; 
	
}



.method-text {

	  color: #7f8c8d;
    line-height: 1.7;
     }

.methodology-visual {
  text-align: center;
}

.methodology-image  {

  max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);}

.team-approach {
   padding: 6rem 0;
    background: white;
}

.team-container {
    max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
	text-align: center;
}

.team-title {
   font-size: 2.8rem;
   color    :#2c3e50;
    margin-bottom  :   2rem;
    font-weight  :     700;
	
}

.team-description {
    color: #7f8c8d;
  font-size   :      1.1rem;
    line-height: 1.8;
   margin-bottom: 4rem;
         max-width: 800px;
  margin-left: auto;
          margin-right: auto;


}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 2rem;
   margin-bottom: 4rem;
}

.highlight-box {
  background: #f8f9fa;
  padding: 2rem;
        border-radius: 12px;
  text-align: left;
}

.highlight-title {
    margin-bottom: 1rem;
   font-weight: 600;
  font-size: 1.3rem;
   color     :      #e74c3c;
}

.highlight-text {
   color: #7f8c8d;
  line-height: 1.7;
}


.team-image-container {
	max-width: 700px;
   margin: 0 auto;
}

.team-image {
       width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);

}



.thankyou-main {
    margin-top: 80px;
         padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
   display: flex;
      align-items: center;
}

.thankyou-container {
    align-items: center;
    display: grid;
   margin: 0 auto;
  gap: 4rem;
  grid-template-columns:      1fr 1fr;
    padding: 0 2rem;
	max-width: 1200px;
}

.success-indicator    {
	text-align: center;
    margin-bottom :    2rem;
}

.check-circle {
    width: 80px;
    height: 80px;
  background: linear-gradient(45deg, #27ae60, #2ecc71);
  border-radius  :     50%;
    display: inline-flex;
    align-items: center;
	justify-content     :   center;
   margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(39, 174, 96, 0.3);
}

.checkmark {
    color: white;
	font-size   :     2rem;
    font-weight: bold;
}

.thankyou-title {
  font-size: 3rem;
                    color: #2c3e50;
   margin-bottom     :   1.5rem;
   font-weight   :      700;
   text-align: center;
}  

.thankyou-message     {
   color: #7f8c8d;
    font-size: 1.2rem;
   line-height: 1.8;
    margin-bottom: 3rem;
    text-align: center;
}  

.next-steps {
  background: white;
   padding: 2.5rem;
    border-radius   : 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
   margin-bottom: 3rem;
}

.steps-title {
  color: #2c3e50;
  font-size: 1.5rem;
   margin-bottom: 2rem;
  font-weight: 600;
    text-align: center;
}

.step-list {
       display     :        flex;
	flex-direction: column;
        gap: 1.5rem;
}

.step-point {
	 display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-icon {
   background: #e74c3c;
          color: white;
  width: 30px;
   height:      30px;
    border-radius: 50%;
	display: flex;
	align-items: center;
   justify-content: center;
	font-weight: 600;
    font-size: 0.9rem;
   flex-shrink: 0;
}

.step-description   {


   color     :  #7f8c8d;
    line-height: 1.6;
  margin: 0;
}

.quick-info {
    background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
    text-align: center;
   margin-bottom  :   3rem;
}

.info-title {
  color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 1rem;
   font-weight: 600;
}

.contact-details {
   color: #7f8c8d;
}

.detail-item {

    margin-bottom: 0.5rem;
	

}

.action-buttons {
   display: flex;
  gap: 1rem;
    justify-content: center;
   flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {

   padding: 1rem 2rem;
   border-radius: 50px;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
	}

.primary-btn {
  background: linear-gradient(45deg, #e74c3c, #c0392b);
        color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(231, 76, 60, 0.4);
}


.secondary-btn {
      background: white;
  color: #2c3e50;
    border: 2px solid #e9ecef;
}

.secondary-btn:hover {
  background: #f8f9fa;
               border-color: #e74c3c;
    color: #e74c3c;
}

.success-image {
   width: 100%;
          height: auto;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.additional-resources {
   padding: 4rem 0;
     background :        white;
}

.resources-wrapper {
	 max-width:     1000px;
    margin: 0 auto;
  padding: 0 2rem;
               text-align: center;
}

.resources-title {
      font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 1rem;
   font-weight: 700;
}

.resources-subtitle {
	 color: #7f8c8d;
  font-size: 1.1rem;
  margin-bottom :      3rem;
}

.resource-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}


.resource-item   {
   background: #f8f9fa;
  padding: 2rem;
    border-radius: 12px;
    text-align: left;
}

.resource-heading {
          color: #e74c3c;
  font-size: 1.2rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.resource-text {
  line-height: 1.7;
  color: #7f8c8d;
}@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }

    .about-subtitle {
        font-size: 1.1rem;
    }

    .story-container,
    .expertise-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
    }

    .team-highlights {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .thankyou-title {
        font-size: 2.2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
    }

    .resource-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 1rem;
    }

    .about-main-title {
        font-size: 2rem;
    }

    .story-container,
    .expertise-container,
    .methodology-wrapper,
    .team-container,
    .thankyou-container,
    .resources-wrapper {
        padding: 0 1rem;
    }

    .next-steps,
    .quick-info {
        padding: 1.5rem;
    }

    .step-list {
        gap: 1rem;
    }
}.policySection {
   padding:  80px 2rem;
   background    :       #f8f9fa;
}

.policyContainer {
   margin: 0 auto;
               max-width: 800px;
  text-align: left;
}

.policyContainer h2 {
        font-size: 2.5rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
        font-weight: 700;
}

.policyContainer p {
   color: #7f8c8d;
    line-height: 1.7;
  margin-bottom: 1.5rem;
	font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}