* {
  margin     :0;
  padding: 0;
   box-sizing     : border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
  color: #2c2c2c;
   background: #fafafa;
}

.main-header {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   position: fixed;
  width: 100%;
	top: 0;
  z-index :        1000;
}

.navigation-wrapper {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.nav-container   {

	    display: flex;
  justify-content: space-between;
    align-items :       center;
   height: 70px;
}

.brand-section .logo-img {
    height: 45px;
   width: auto;
}

.nav-links-desktop {
    display: flex; 
	   gap    :35px;
}

.nav-item 
 {
   text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 16px;
	transition: color 0.3s ease;
   position: relative;
}

.nav-item:hover,
.nav-item.active {
      color: #2563eb;


}

.nav-item.active::after {
  content: '';
   position: absolute;
  bottom: -8px;
      left: 0;
   width :   100%;
	height: 2px;
  background     :    #2563eb;
}

.mobile-menu-trigger {
  display: none;
    flex-direction: column;
   cursor: pointer;
    width: 25px;
  height: 20px;
   justify-content: space-between;
}

.mobile-menu-trigger span {
    width: 100%;
  height: 3px;
    background: #555;
    transition: all 0.3s ease;
}

.mobile-menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px); 
	
}

.mobile-menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px); 
	
}

.mobile-nav-menu {
   display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
   background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	padding: 20px;
}

.mobile-nav-item {
   display: block;
   padding    :     15px 0;
  text-decoration: none;
	color: #555;
   font-weight: 500;
    border-bottom: 1px solid #eee;
}

.mobile-nav-item:last-child {
    border-bottom: none;
}

.hero-banner {
    padding: 120px 20px 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color:        white;
}

.hero-content-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
      grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items: center;
}

.main-heading {
  font-size: 3.2rem;
   font-weight: 700;
       margin-bottom    :        25px;
   line-height: 1.2;
}

.hero-description {
	   font-size: 1.2rem;
  margin-bottom: 35px;
   opacity: 0.9;
  line-height: 1.7;

}

.hero-action-buttons {
   display: flex;
    gap: 20px;
}

.primary-cta-btn {
  background: #ff6b6b;
     color     :       white;
   padding: 15px 30px;
   text-decoration: none;
    border-radius: 8px;
       font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.primary-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,107,0.3);
}

.secondary-action-btn {
    background: transparent;
   color     :     white;
    padding: 15px 30px;
  text-decoration: none;
  border: 2px solid white;
     border-radius :       8px;
    font-weight: 600;
   transition: all 0.3s ease;
}

.secondary-action-btn:hover
{

  background: white;
    color: #667eea;
     }

.hero-main-image {

	    width: 100%;

	   height: 400px;

	  object-fit: cover;

	  border-radius: 15px;

	  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
     }

.about-preview-block {
  padding: 80px 20px;
  background: white;
}

.content-container{
  max-width: 1200px;
 margin: 0 auto;
}

.section-header-group {
   text-align   :       center;
   margin-bottom: 60px;
}

.section-primary-title {
   font-size: 2.5rem;
    color: #2c2c2c;
      margin-bottom: 20px;
   font-weight: 700;
}

.section-intro-text     {
  font-size: 1.1rem;
  color: #666;
   max-width: 600px;
  margin: 0 auto;
  line-height    :   1.6;
}

.features-grid-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap    :     40px;
}

.feature-card-item {
	  background: #f8f9fa;
    border-radius: 12px;
   padding:       30px;
	text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	}



.feature-card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-image {
   width: 100%;
  height: 200px;
    object-fit: cover;
          border-radius: 8px;
   margin-bottom: 20px;
}

.feature-card-title {
    color: #2c2c2c;
	font-weight: 600;
          font-size: 1.4rem;
   margin-bottom: 15px;
}

.feature-description{
   color: #666;
    line-height: 1.6;
}

.services-showcase {
    padding: 80px 20px;
    background: #f8f9fa;
}

.services-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  text-align  : center;
}

.services-main-heading  {
    font-size: 2.5rem;
   color  :       #2c2c2c;
  margin-bottom: 50px;
  font-weight: 700;
}

.services-grid-container {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;


}

.service-element {
    background: white;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.service-element:hover

{
  transform: translateY(-3px);
}

.service-name {
   font-size: 1.3rem;
    color: #2563eb;
  margin-bottom     :    15px;
    font-weight: 600;
}

.service-details {
   color: #666;
  line-height: 1.6;
}

.cta-conversion-block     {
    padding:    80px 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
	 color: white;
}

.cta-content-area{

				margin: 0 auto;
  position    :  relative;
    text-align: center;
   max-width: 1200px;}

.cta-text-section {
  margin-bottom: 40px;
}

.cta-primary-heading {

  font-size: 2.3rem;

    margin-bottom: 20px;

    font-weight: 700;

}


.cta-supporting-text {
   font-size: 1.1rem;
    opacity: 0.9;
  max-width: 600px;
    margin: 0 auto 30px;
   line-height: 1.6;
}

.cta-image-area {
       margin-bottom    :  40px;
}

.cta-visual {
  width: 100%;
          max-width:   500px;
     height  :      300px;
       object-fit: cover;
     border-radius :   12px;
     box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-conversion-button {
   background: #ff6b6b;
  color: white;
   padding: 18px 40px;
   text-decoration: none;
  border-radius: 8px;
   font-weight: 600;
   font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: inline-block;
}

.cta-conversion-button:hover {
  transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(255,107,107,0.4);
}

.contact-form-section {
    padding: 80px 20px;
  background: white;

}

.contact-container {
    max-width: 800px;
  margin: 0 auto;
}

.contact-header {
  text-align    : center;
  margin-bottom: 50px;
}

.contact-title  
  {
          font-size:      2.5rem;
   color: #2c2c2c;
     margin-bottom: 15px;
                    font-weight: 700;

}

.contact-subtitle {
	  font-size: 1.1rem;
  color: #666;

}

.contact-form-wrapper {
  background: #f8f9fa;
       padding  :   40px;
    border-radius   :      12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-row-group {
       display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 25px;
    margin-bottom: 25px;

}

.input-field-container {
  display:    flex;
  flex-direction: column;
}

.field-label {

  font-weight: 600;
    color: #2c2c2c;
	 margin-bottom: 8px;
    font-size: 0.95rem;


}

.form-input-element,
.form-select-element {
   padding: 12px 15px;
    border: 2px solid #e1e5e9;
  border-radius: 6px;
    font-size :        16px;
    transition: border-color 0.3s ease;
}

.form-input-element:focus,
.form-select-element:focus {
  outline: none;
    border-color :    #2563eb;
}

.textarea-field-container {
	 margin-bottom: 30px;
}

.form-textarea-element {
  width: 100%;
    padding: 12px 15px;
 border: 2px solid #e1e5e9;
   border-radius: 6px;
    font-size: 16px;
      resize: vertical;
  font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-textarea-element:focus


{
    outline: none;
  border-color: #2563eb;
}

.form-submit-button {
   background: #2563eb;
  color: white;
   padding   :    15px 40px;
    border  :   none;
	-moz-border-radius: 6px;
   border-radius: 6px;
    font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
   width    :    100%;
	
}

.form-submit-button:hover {
	    background   :     #1d4ed8;
  transform: translateY(-1px);

}

.site-footer
	{
    background: #1f2937;
  color: white;
    padding     :   50px 20px 20px;
} 

.footer-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
          display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
   margin-bottom: 30px;
}

.footer-logo-img {
    height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 15px;
}

.footer-description {
  color: #d1d5db;
    line-height: 1.6;
}

.footer-section-title {
   font-size  :     1.1rem;
  font-weight: 600;
    margin-bottom: 20px;
  color: white;
}

.footer-nav-list {

	   list-style: none;}

.footer-nav-list li {
     margin-bottom    : 10px;
}

.footer-link {
   color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.contact-detail {


  color: #d1d5db;
      margin-bottom: 8px;


}

.footer-bottom-section {
  max-width: 1200px;
    margin: 0 auto;
	padding-top: 20px;
  border-top :        1px solid #374151;
   text-align: center;
}

.copyright-text {
   color  :    #9ca3af;
     }@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .hero-action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .features-grid-layout {
        grid-template-columns: 1fr;
    }
    
    .services-grid-container {
        grid-template-columns: 1fr;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
    
    .footer-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .section-primary-title {
        font-size: 2rem;
    }
    
    .services-main-heading {
        font-size: 2rem;
    }
    
    .cta-primary-heading {
        font-size: 1.8rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .hero-banner {
        padding: 100px 15px 60px;
    }
    
    .about-preview-block,
    .services-showcase,
    .cta-conversion-block,
    .contact-form-section {
        padding: 60px 15px;
    }
}.about-hero-section		{
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
   color: white;
}

.about-hero-container {
   max-width  :     1200px;
   margin: 0 auto;
  display :      grid;
    grid-template-columns: 1fr 1fr;
 gap: 50px;
    align-items: center;
}

.about-main-title {
    font-size: 3rem;

	  font-weight: 700;

	   margin-bottom   :        25px;

	  line-height     :      1.2;
}

.about-hero-description {

          font-size: 1.2rem;

  opacity: 0.9;

  line-height    :        1.7;
}


.about-hero-image {
  width:  100%;
   height: 350px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.mission-values-block {
    padding: 80px 20px;
    background    :white;
}

.mission-content-wrapper {

	   max-width: 1200px;
  margin: 0 auto;
    display     :   grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
    align-items   :   center;
     }

.mission-section-heading {
  font-size: 2.3rem;
   color   :     #2c2c2c;
  margin-bottom: 25px;
          font-weight: 700;
}

.mission-description {


  font-size: 1.1rem;
   color: #555;
               line-height:1.7;
   margin-bottom: 40px;
	}

.mission-highlights {
                    display: flex;
  flex-direction: column;
	gap: 25px;
}

.highlight-item {
    padding: 20px;
  background     :        #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
}

.highlight-title {
    font-size: 1.2rem;
   color: #2c2c2c;
  margin-bottom: 10px;
    font-weight :    600;
}

.highlight-text {
  color: #666;
  line-height: 1.6;
}

.mission-image {
    width: 100%;
  height: 400px;
   object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.expertise-showcase {
   padding: 80px 20px;
   background: #f8f9fa;
}

.expertise-container {
  max-width: 1200px;
    margin: 0 auto;
}

.expertise-main-title {
  font-size: 2.5rem;
  text-align: center;
  color: #2c2c2c;
   margin-bottom: 50px;
    font-weight    :     700;
}

.expertise-grid {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
	   gap: 30px;
}

.expertise-card {
  background    :       white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition    :   transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.expertise-card-image {
   width: 100%;
  height: 200px;
   object-fit: cover;

}

.expertise-card-content {
    padding: 25px; 
	
}

.expertise-card-title {
  font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 15px;
   font-weight: 600;
}


.expertise-card-description    {

	                    color: #666;
  line-height: 1.6;

}

.approach-methodology {

    padding: 80px 20px;
  background: white;
}

.approach-wrapper {

	    max-width: 1000px;
  margin: 0 auto;


}

.approach-title {
   font-size: 2.5rem;
  text-align: center;
    color:     #2c2c2c;
  margin-bottom: 20px;
	 font-weight:   700;
}

.approach-intro {
   font-size: 1.1rem;
    text-align     :       center;
   color     :     #666;
   margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
			margin-right: auto;
}

.methodology-steps {
  display: flex;
    flex-direction: column;
    gap: 30px; 
	
}

.method-step {
	 display: flex;
    gap: 25px;
  align-items: flex-start;
    padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
}

.step-number
	{
    flex-shrink: 0;
    border-radius: 50%;
    align-items: center;
   justify-content: center;
   height: 50px;
    color: white;
   width: 50px;
    font-weight  :      700;
   font-size: 1.2rem;
      display: flex;
    background: #4f46e5;
}

.step-content {
   flex: 1;
}

.step-title {
   	font-size: 1.3rem;
   color: #2c2c2c;
      margin-bottom: 10px;
    font-weight: 600;
}

.step-description {
    color  :#666;
   line-height: 1.6;
}

.why-choose-section {
  padding: 80px 20px; 
  background: #f8f9fa;
}

.why-choose-container {
    margin:   0 auto;
  max-width: 1200px;
}

.why-choose-title {
       font-size: 2.5rem;
   text-align: center;
   color: #2c2c2c;
   margin-bottom: 50px;
  font-weight: 700;
}

.reasons-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	 gap: 30px;
     }

.reason-item
	{
  background: white;
   padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.reason-item:hover {
  transform: translateY(-3px);
}

.reason-title {
		 font-size: 1.3rem;
               color: #4f46e5;
   margin-bottom: 15px;
  font-weight: 600;

}

.reason-description {
  line-height: 1.6;
   color   :#666;
}

.thankyou-hero-section {
   padding: 120px 20px 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: white;
  min-height: 70vh;
     display: flex;
  align-items: center;
}

.thankyou-container  {
    max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap    :   60px;
 align-items    :      center;
}

.success-icon-wrapper {
   display: flex;
  justify-content: center;
    margin-bottom: 30px;
}

.success-checkmark {
       width: 80px;
  height  :  80px;
  background: rgba(255,255,255,0.2);
         border-radius : 50%;
    position: relative;
    display: flex;
   align-items: center;
  justify-content: center;
}

.success-checkmark::after {
  content: '✓';
	font-size: 3rem;
    font-weight: 700;
    color: white;
}



.thankyou-main-title
{
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-align     :  center;
   line-height: 1.2;
}  

.thankyou-message {
  font-size: 1.2rem;
  opacity: 0.9;
    line-height: 1.7;
   text-align: center;
    margin-bottom: 40px;
}

.next-steps-block {
   margin-bottom: 40px;
}

.next-steps-title		{
   font-size: 1.8rem;

	    font-weight: 600;

	   margin-bottom: 25px;

		text-align: center;
}

.steps-list {
  display: flex;
   flex-direction:      column;
  gap: 20px;
}

.step-item {

   display: flex;
   align-items: flex-start;
    gap: 15px;
    padding: 15px;
  background: rgba(255,255,255,0.1);
    border-radius: 8px;
	}

.step-icon
{
  background: white;
    color: #10b981;
    width: 35px;
	 height: 35px;
 border-radius: 50%;
          display: flex;
    align-items: center;
   justify-content:    center;
    font-weight: 700;
   flex-shrink: 0; 

}

.step-text {

   flex: 1;
  opacity: 0.9;
   line-height: 1.6;
}

.action-buttons-group	{
          display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.return-home-btn {
   background: white;
         color: #10b981;
         padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.return-home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.3);}

.learn-more-btn {
    background: transparent;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border: 2px solid white;
   border-radius: 8px;
  font-weight: 600;
	transition: all 0.3s ease;
}

.learn-more-btn:hover{
    background: white;
  color: #10b981;
}

.thankyou-image {
      width: 100%;
         height: 350px;
               object-fit :     cover;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.additional-info-section {
  padding: 80px 20px;
  background: white;
}

.info-container {
	  max-width: 1200px;
   margin: 0 auto;
}

.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.info-card {
   background: #f8f9fa;
    padding :       30px;
    border-radius: 10px;
    text-align: center;
    border-top: 4px solid #10b981;
}

.info-card-title {
    font-size: 1.3rem;
	color: #2c2c2c;
      margin-bottom: 15px;
	font-weight: 600; 

}

.info-card-content {
   color: #666;
	  line-height: 1.6;
}@media (max-width: 768px) {
    .about-hero-container,
    .mission-content-wrapper,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .about-main-title,
    .thankyou-main-title {
        font-size: 2.2rem;
    }
    
    .mission-section-heading {
        font-size: 2rem;
    }
    
    .expertise-main-title,
    .approach-title,
    .why-choose-title {
        font-size: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        gap: 20px;
    }
    
    .method-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .action-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .return-home-btn,
    .learn-more-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-section,
    .thankyou-hero-section {
        padding: 100px 15px 60px;
    }
    
    .mission-values-block,
    .expertise-showcase,
    .approach-methodology,
    .why-choose-section,
    .additional-info-section {
        padding: 60px 15px;
    }
    
    .about-main-title,
    .thankyou-main-title {
        font-size: 1.8rem;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .success-checkmark::after {
        font-size: 2rem;
    }
}.cookies-policy-section,
.privacy-policy-section {
   padding: 80px 20px;
   background: white;
}

.policy-content {
   max-width: 800px;
   margin: 0 auto;
	
}

.policy-subheading
	{
    font-size: 1.8rem;
    color: #2c2c2c;
   margin-bottom: 15px;
   font-weight: 600;
}

.policy-text {
    color: #666;
   line-height: 1.6;
	 margin-bottom :       20px;
	
}

.policy-list {
  list-style: none;
	 margin-bottom: 20px;
    padding-left: 20px;
}

.policy-list li {
    position :  relative;
    padding-left: 20px;
    margin-bottom: 10px;
   color: #666;
   line-height: 1.6;
}

.policy-list li:before {
  content: '•';
  position: absolute;
    left: 0;
    color    :    #2563eb;
   font-size: 1.2rem;
}@media (max-width: 768px) {
    .cookies-policy-section,
    .privacy-policy-section {
        padding: 60px 15px;
    }

    .policy-subheading {
        font-size: 1.5rem;
    }
}