* {

   margin: 0;
    padding: 0;
	box-sizing: border-box;
     }

body {

	  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color    :    #333;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

}

.navigation-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
    top : 0;
  width: 100%;
   z-index :  1000;
    border-bottom: 2px solid #e0e7ff;
}

.nav-container {
   max-width: 1200px;

	    margin: 0 auto;

	   display: flex;

	  justify-content: space-between;

	  align-items: center;

	    padding: 1rem 2rem;
}

.company-logo {
    height: 50px;
   width: auto;
}


.desktop-menu {
   display:        flex;
    gap: 2rem;
}

.nav-link {
   text-decoration: none;
   color: #4f46e5;
  font-weight: 600;
   transition: color 0.3s ease;
   font-size: 16px;
}

.nav-link:hover {
   color: #7c3aed;
}

.mobile-burger {
    display: none;
	 flex-direction: column;
	cursor     :pointer;
    gap: 4px;
}

.mobile-burger span {
  width :     25px;
     height: 3px;
    background: #4f46e5;
   transition: 0.3s;
}

.mobile-menu {
  display     :      none;
    background: white;
    padding: 1rem 2rem;
   border-top    : 1px solid #e5e7eb;


}

.mobile-link {
    display: block;
   padding: 0.5rem 0;
 text-decoration: none;
  color: #4f46e5;
  font-weight: 500;
}

.hero-section {
    margin-top: 80px;
    padding: 4rem 2rem;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
	 align-items    :  center;
      max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
    min-height: 70vh;
}

.hero-content h1 {
  font-size: 3.5rem;
	font-weight: 700;
   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: 2rem;
	 line-height:    1.5;
}

.hero-actions {
  display: flex;
   gap: 1rem;
   flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding: 1rem 2rem;
  border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-button {
  background: #f59e0b;
   color     :      white;
        border: 2px solid #f59e0b;
}

.primary-button:hover{
    background: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
}

.secondary-button     {
	    background: transparent;
  color: white;
    border: 2px solid white;


}

.secondary-button:hover {
   background: white;
    color     :      #4f46e5;
}  

.hero-image {

	   width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);}

.expertise-showcase {
    background: white;
    padding: 5rem 2rem;
}

.content-wrapper {
 max-width: 1200px;
  margin: 0 auto;
}

.expertise-showcase h2 {
   text-align: center;
      font-size: 2.5rem;
  color: #1f2937;
   margin-bottom: 3rem;
  font-weight: 700;
}

.expertise-grid {
       display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}

.expertise-item {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding   :2rem;
	border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-img {
   width: 100%;
    height: 200px;
  object-fit: cover;
  border-radius: 8px;
	margin-bottom   :       1.5rem;
}

.expertise-item h3 {
    font-size: 1.5rem;
   font-weight: 600;
    margin-bottom :    1rem;
  color: #1f2937;
}

.expertise-item p {
   color :      #6b7280;
   line-height: 1.6;


}

.conversion-section {
	  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
   padding: 5rem 2rem;
  color: white;
     }


.conversion-content {
   max-width: 1200px;
    margin: 0 auto;
    display  :     grid;
   grid-template-columns: 1fr 1fr;
  gap    :3rem;
   align-items     : center;
}

.conversion-text h2 {


    font-size: 2.5rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
     }

.conversion-text p {
   font-size: 1.1rem;
  margin-bottom: 2rem;
	line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.benefits-list {


    list-style: none;
	margin-bottom: 2rem;}

.benefits-list li {
    padding: 0.5rem 0;
   position: relative;
	padding-left: 2rem;
}

.benefits-list li::before {
  content: "✓";
   position: absolute;
  left: 0;
  color: #10b981;
    font-weight: bold;
  font-size     :    1.2rem;
}

.cta-button {
             font-weight: 600;
  display: inline-block;
   padding: 1rem 2rem;
  border-radius: 8px;
	 background     : #10b981;
    color: white;
    transition: all 0.3s ease;
   text-decoration: none;


}

.cta-button:hover {
            background: #059669;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);

}

.conversion-image {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-section {
  background: white; 
                    padding: 5rem 2rem;
}

.contact-container {
   max-width: 800px;
   margin: 0 auto;
}

.contact-section h2 {
  text-align: center;
       font-size   :     2.5rem;
  color: #1f2937;
               margin-bottom :   1rem;
   font-weight: 700;
}

.contact-intro
{
    text-align: center;
    font-size: 1.1rem;
  color: #6b7280;
      margin-bottom: 3rem;
   line-height: 1.6;
}

.contact-form {
    background: #f9fafb;
    padding    :   2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-row {
  display :grid;
   grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
   margin-bottom: 1.5rem;
}

.form-group {
   display: flex;

	   flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #374151;
 margin-bottom:      0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea  {
   padding: 0.75rem;
   border: 2px solid #d1d5db;
   border-radius   :      6px;
       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: #4f46e5;
}

.submit-button {
   width :        100%;
  -webkit-border-radius :   8px;
    padding: 1rem;
         background: #4f46e5;
  color: white;
   border: none;
        border-radius: 8px;
	 font-size: 1.1rem;
  font-weight: 600;
	 cursor: pointer;
      transition: all 0.3s ease;
}

.submit-button:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.3);
}

.site-footer {
   background: #111827;
   color: white;
   padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width :   1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}


.company-description {
	color: #9ca3af;
   line-height :        1.6;
}

.footer-section h4 {
    font-size     :    1.2rem;
  margin-bottom: 1rem;
   color: white;
          font-weight: 600;
} 

.address, .phone {
    color: #9ca3af;

	    margin-bottom: 0.5rem;
}

.quick-links a {
  display: block;
     color: #9ca3af;
	text-decoration: none;
    margin-bottom: 0.5rem;
   transition :        color 0.3s ease;
}

.quick-links a:hover {
                    color: white;
}

.footer-bottom {
   border-top: 1px solid #374151;
         padding-top: 1rem;
    text-align: center;
  color: #9ca3af;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-burger {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .conversion-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button, .secondary-button {
        width: 100%;
        text-align: center;
    }
}.about-hero {
     margin-top: 80px;
     padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
    max-width     :      1200px;
   margin-left: auto;
    margin-right: auto;
   margin-top: 80px;
   border-radius: 15px;


}

.about-hero-content h1 {
    font-size     :  3rem;
         color     :  white;
     margin-bottom: 1.5rem;
   font-weight: 700;
}

.about-subtitle  
  {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
    line-height   :        1.6;}

.about-hero-image	{
	 width: 100%;
    height: auto;
	border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.company-story {


   padding: 5rem 2rem;
    background: white;
	}


.story-container
{
	 max-width: 1200px;
   margin :0 auto;
}

.story-container h2 {
   text-align : center;
    margin-bottom     : 3rem;
   font-size: 2.5rem;
   color: #1f2937;
   font-weight: 700;
}

.story-content {
      display: grid; 
	  grid-template-columns:1fr 1fr; 
	    gap: 3rem; 
	 align-items: center;
}

.story-text p {

	   margin-bottom: 1.5rem;
   font-size: 1.1rem;
    line-height: 1.7;
  color: #4b5563;
}

.story-img {
    width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-values {
  background: #f8fafc;
    padding: 5rem 2rem;
}

.mission-container {
   max-width: 1200px;
   margin: 0 auto;
}

.mission-container h2 {


  font-size:  2.5rem;
  text-align: center;
  color   :      #1f2937;
 margin-bottom: 3rem;
	font-weight: 700;

}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap     :        2rem;
}

.value-item {
  background: white;
	padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   text-align: center;
}

.value-item h3{
                    font-size: 1.4rem;
    color: #4f46e5;
	 margin-bottom    :   1rem;
  font-weight: 600;
}

.value-item p {
	 color: #6b7280;
    line-height: 1.6;
}

.expertise-areas {
    padding: 5rem 2rem;
    background: white;
}

.expertise-container {

  max-width: 1200px;
    margin     :   0 auto;}

.expertise-container h2 {
   font-size: 2.5rem;
    text-align: center;
   color    :        #1f2937;
    margin-bottom: 3rem;
               font-weight: 700;
}

.expertise-layout {
         display: grid;
   grid-template-columns: 1fr 1fr;
   gap   :  3rem;
    align-items: start;
}

.expertise-text-section h3


{
	font-size: 1.8rem;
   	 color   :        #1f2937;
           margin-bottom: 1.5rem;
   	 font-weight: 600;
}

.expertise-text-section p {
   font-size     :        1.1rem;

	    line-height: 1.7;

	  color: #4b5563;

	   margin-bottom: 1.5rem; 
	
}

.expertise-list {
	 list-style :        none;
    margin: 2rem 0;
}

.expertise-list li {
  padding: 0.5rem 0;
   position: relative;
  padding-left: 2rem;
    color: #4b5563;
}

.expertise-list li::before {
  content: "→";
  position: absolute;
	left    :       0;
   color: #4f46e5;
  font-weight   :      bold;
}

.expertise-visuals {
   display: flex;
  flex-direction: column;
   gap   : 1.5rem;
}

.expertise-visuals .expertise-img {
    width: 100%;
	height: 200px;
    object-fit: cover;
     border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}  

.achievements-section{
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  padding    :     5rem 2rem;
    color: white;
}

.achievements-container {
	 max-width: 1200px;
    margin: 0 auto;
}

.achievements-container h2 {
  font-size: 2.5rem;
  text-align:      center;
	 margin-bottom: 3rem;
   font-weight :        700;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}



.achievement-item {
    text-align: center;
   padding :   2rem;
}

.achievement-number {
   font-size  :    3rem;
  font-weight:700;
    color: #10b981;
	 margin-bottom: 0.5rem;
}

.achievement-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9); 
	
}

.approach-methodology {
     background: white;
  padding: 5rem 2rem;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
}

.approach-container h2 {
  font-size: 2.5rem;

   text-align: center;

   color : #1f2937;

	margin-bottom: 3rem;

    font-weight: 700;
}

.methodology-content


{
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: start;
}

.methodology-img {
    width    :    100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.methodology-text h3 {
	font-size: 1.8rem;
   color: #1f2937;
    margin-bottom: 2rem;
  font-weight: 600;
}

.methodology-step {
  margin-bottom: 2rem;
   padding  :   1.5rem;
    background: #f8fafc;
	border-radius: 8px;
  border-left: 4px solid #4f46e5;
}

.methodology-step h4 {
         font-size     :      1.3rem;
	color: #4f46e5;
  margin-bottom: 0.5rem;
    font-weight: 600;
}

.methodology-step p {
    color: #6b7280;
  line-height  :1.6;
}

.thankyou-hero
{
   margin-top    :    80px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  min-height: 80vh;
   display   :        flex;
  align-items: center;
}

.thankyou-container {
   max-width: 1200px;
     margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
} 

.thankyou-content {
  color   :white;
}

.success-icon {
   text-align: center;
   margin-bottom: 2rem;
}

.check-circle {
  width: 80px;
	 height   :   80px;
   border: 4px solid white;
   border-radius: 50%;
  margin: 0 auto;
  display: flex;
   align-items: center;
  justify-content: center;
  position: relative;

}

.check-mark {
  width: 25px;
    height: 12px;
       border-left: 4px solid white;
	border-bottom: 4px solid white;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
    font-size: 2.8rem;
   text-align: center;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.2rem;
   text-align: center;
    margin-bottom    :3rem;
  color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.confirmation-details {
   margin-bottom  :  3rem;
}

.confirmation-details h3 {
   font-size: 1.6rem;
    margin-bottom: 2rem;
   font-weight: 600;
}

.next-steps {
 flex-direction :        column;
    gap: 1.5rem;
   display: flex;
}

.step-item {
        display: flex;
    align-items: start;
    gap: 1rem;
}

.step-number		{
   width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
    display  :flex;
    align-items: center;
    justify-content: center;
   font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
   font-size     :  1.2rem;
    margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
	  color: rgba(255, 255, 255, 0.9);
   line-height: 1.5;

}

.additional-info {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
  border-radius :  10px;
  margin-bottom: 2rem;
}

.additional-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.additional-info p {
       margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.urgent-contact {
    text-align: center;
}

.phone-number {
    font-size: 1.5rem;
  font-weight: 700;
    margin-bottom: 0.5rem;
}

.office-hours     {

    font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);



}

.action-buttons {
	 display: flex;
   gap: 1rem;
   flex-wrap    :   wrap;
}

.back-home-btn, .learn-more-btn {
    padding: 1rem 2rem; 
	   border-radius: 8px; 
	   text-decoration: none; 
	    font-weight: 600; 
	  transition   :       all 0.3s ease; 
	  display: inline-block;
}

.back-home-btn {
  background: white;
   color: #10b981;
}

.back-home-btn:hover {
    background: #f3f4f6;
  transform: translateY(-2px);
}

.learn-more-btn {
    background  :  transparent;
   color: white;
   border: 2px solid white;
}

.learn-more-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.thankyou-image  
  {


   width: 100%;
    height    :    auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.additional-resources {
   background: white; 
    padding: 5rem 2rem;
}

.resources-container {
   max-width: 1200px;

   margin: 0 auto;
}

.resources-container h2 {
  margin-bottom: 1rem;
    text-align: center;
  font-weight: 700;
               font-size: 2.5rem;
    color: #1f2937;
}

.resources-intro {
  text-align: center;
    font-size: 1.1rem;
  color: #6b7280;
    margin-bottom: 3rem;
   line-height: 1.6;
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-item {
   background: #f8fafc;
    padding: 2rem;
  border-radius: 10px;
      text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.resource-img {
  width: 100%;
  height :       200px;
   object-fit: cover;
    border-radius: 8px;
  margin-bottom: 1.5rem;
}



.resource-item h3 {
    font-size: 1.4rem;
  color  :    #1f2937;
   margin-bottom: 1rem;
  font-weight: 600;
}  

.resource-item p
	{
     color: #6b7280;
   line-height    :        1.6;
}

.nav-link.active {
   color: #7c3aed;
	 position: relative;
}

.nav-link.active::after {
  content: '';
         position:        absolute;
    bottom: -5px;
  left: 0;
        width: 100%;
    height: 2px;
    background: #7c3aed;
}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        margin-top: 80px;
        border-radius: 0;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-layout {
        grid-template-columns: 1fr;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .back-home-btn, .learn-more-btn {
        width: 100%;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   	 max-width: 800px;
    margin: 0 auto;
    text-align: left;
     }

.policyContainer h2 {

	    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
	}

.policyContainer p {
  color: #7f8c8d;

	    margin-bottom: 1.5rem;

	   line-height: 1.7;

	    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}