* {
  margin: 0;
    padding :      0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
				 color: #333;
    background     :   #f8f9fa;
}

.main-navigation {
   background: #fff; 
	  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	  position: sticky; 
	    top: 0; 
	   z-index: 1000;
}

.nav-container {
    max-width : 1200px;
  margin: 0 auto;
	padding   :     0 20px;
  display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
     }

.brand-section {
   display   :  flex;
  align-items: center;
   gap: 12px;
}



.company-logo
	{
   height: 40px;
  width: auto;
}

.brand-text {

	  font-size: 1.5rem;
  font-weight: bold;
   color: #2c5aa0;

}



.navigation-menu {

	    display     :flex;
}

.menu-items
{
	 display: flex;
   list-style: none;
		gap: 30px;
}

.nav-link {
   text-decoration: none;
  color: #333;
   font-weight: 500;
	transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
      color: #2c5aa0;
	}

.burger-toggle {
  display: none;
    flex-direction  :    column;
  cursor: pointer;
  gap: 4px;
}

.burger-line {
   width: 25px;
   height: 3px;
  background: #333;
    transition: 0.3s;
	}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 80px 0;
}

.hero-content {
    max-width :        1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
    align-items: center;
}

.hero-title {
  font-size    :   3rem;
    margin-bottom: 20px;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-actions {
  display: flex;
     gap: 20px;
}

.primary-cta,
.secondary-cta {
    padding:14px 28px;
         text-decoration: none;
   border-radius: 6px;
	font-weight: 600;
         transition: all 0.3s ease;
}

.primary-cta {
        background: #ff6b6b;
	 color: white;}

.primary-cta:hover {


    background: #ee5a52;
  transform: translateY(-2px);}

.secondary-cta {
   background: transparent;
       color     :    white;
       border: 2px solid white;
}  

.secondary-cta:hover {
    background :    white;
         color: #667eea;
}

.hero-image {
	   width: 100%;
    height: auto;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);


}

.services-overview {
  padding: 80px 0; 
	    background: white;
}

.services-container {
  max-width     :      1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.section-heading		{
    text-align: center;
   font-size: 2.5rem;
   margin-bottom: 50px;
   color: #2c5aa0;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 40px;
}

.service-card {
   -moz-transition: transform 0.3s ease;
   -o-transition: transform 0.3s ease;
   background: #f8f9fa;
  padding: 30px;
    -webkit-border-radius: 8px;
         border-radius: 8px;
   -webkit-transition: transform 0.3s ease;
    text-align: center;
   transition     :      transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
	
}

.service-img {
	width: 100%;
     height: 200px;
   object-fit: cover;
    border-radius: 6px;
   margin-bottom: 20px;
}

.service-title {


	 font-size: 1.5rem;
  margin-bottom: 15px;
       color: #333;

}  

.service-desc {
    color: #666;
  line-height: 1.6;
}

.methodology-section {
   padding: 80px 0;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
   color: white;
	
}

.method-container {
	 max-width: 1000px;
	 margin: 0 auto;
  padding: 0 20px;
}

.method-heading {
    text-align: center;
   font-size: 2.5rem;
  margin-bottom: 20px;
}

.method-intro {
   text-align     :    center;
   font-size: 1.2rem;
  margin-bottom    : 50px;
   opacity: 0.9;
}

.method-steps {
    display: flex;
   flex-direction: column;
   gap: 30px;
}

.step-item 
 {

   display: flex;
    align-items: center;
  gap: 30px;
     }

.step-number  {
   font-size: 2rem;
   font-weight: bold;
  background: rgba(255,255,255,0.2);
   width: 60px;
	height: 60px;
        border-radius: 50%;
    display   :flex;
        align-items: center;
   justify-content: center;
         flex-shrink :  0;
}

.step-title {
    font-size: 1.3rem;
   margin-bottom: 8px;
}

.step-text {
  opacity: 0.9;
}

.cta-section {
  padding: 80px 0;
  background: #2c5aa0;
   color: white;
   text-align:center;
}

.cta-wrapper {


  max-width: 800px;
     margin: 0 auto;
     padding: 0 20px;

}

.cta-heading {
   font-size: 2.5rem;
   margin-bottom: 20px;


}

.cta-text {
    font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button	{

   display: inline-block;
   padding: 16px 32px;
  background: #ff6b6b;
   color: white;
        text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
       font-size: 1.1rem;
    transition: all 0.3s ease;
	}

.cta-button:hover {
  background: #ee5a52;
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.contact-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-container {
       max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
     }

.contact-heading {
   text-align: center;
   font-size    :    2.5rem;
    margin-bottom: 50px;
   color:#2c5aa0;
}

.contact-wrapper {
	 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-title {
    font-size: 1.8rem;
   margin-bottom: 15px;
  color :        #333;
}

.info-text {
    margin-bottom: 30px;
    color  :  #666;
    line-height: 1.6;
}

.contact-details {
    display: flex;
   flex-direction: column;
    gap: 15px;
}

.contact-item {
  color: #555;
}

.contact-form

{
  background: white;
	padding: 40px;
    border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 

}

.form-group
{
  margin-bottom: 20px;
}

.form-label {
    display    :   block;
                    margin-bottom: 5px;
  font-weight :     600;
   color: #333;
}

.form-input,
.form-select,
.form-textarea {
   width : 100%;
  padding    :        12px;
    border: 2px solid #e1e5e9;
  border-radius: 4px;
   font-size: 16px;
   transition :border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline     :  none;
    border-color: #2c5aa0;

}

.form-textarea {
   resize: vertical;
  min-height: 100px;
}

.form-submit {
  width    : 100%;
    padding: 14px;
    background: #2c5aa0;
  color: white;
  border: none;
  border-radius: 4px;
	 font-size: 1.1rem;
       font-weight:600;
    cursor: pointer;
  transition: background 0.3s ease;
}

.form-submit:hover {
  background: #1e3d72;
}

.site-footer{
 background: #1a1a1a;
   color: white;
  padding: 50px 0 20px;
}

.footer-content {
  max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  display: grid;
   grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
   height: 35px;
 width: auto;
    margin-bottom: 15px;
}

.footer-title {
        font-size: 1.3rem;
   margin-bottom: 10px;
}

.footer-desc {
    color: #ccc;
    line-height: 1.6;
}

.link-title,
.contact-title {
  color: #fff;

	   margin-bottom    :       15px;

	    font-size: 1.1rem; 

}

.link-list {
	  list-style: none;}

.link-list li {
     margin-bottom :      8px;}

.footer-link {
   text-decoration: none;

	 color    :       #ccc;

  transition    :        color 0.3s ease;
}

.footer-link:hover {
      color: #fff;
}

.contact-address,
.contact-phone {
  color: #ccc;
     line-height: 1.6;
   margin-bottom: 8px;
}

.footer-bottom {
    padding-top: 20px;
    margin-top: 30px;
   text-align: center;
   border-top: 1px solid #333;
}

.copyright {
   color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .navigation-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .navigation-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .menu-items {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}.about-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
   padding: 100px 0;
   text-align: center;
}

.about-hero-content   {
    max-width: 800px;
   margin: 0 auto;
    padding: 0 20px; 
	
}

.about-main-title {
  font-size: 3.2rem;
  margin-bottom: 25px;
    line-height: 1.2;
}

.about-intro-text {
  font-size: 1.3rem;
	line-height: 1.7;
  opacity: 0.95;
}

.mission-vision {
  padding: 90px 0;
  background: #fff;
}

.mission-container {
    max-width: 1200px;
    margin     :       0 auto;
  padding: 0 20px;
}

.mission-grid {
	   display     :      flex;
    flex-direction: column;
   gap: 80px;



}

.mission-block {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
   align-items: center;


}

.mission-block.reverse {
  direction: rtl;
}

.mission-block.reverse .mission-content {
    direction: ltr;
}

.mission-visual {
   width: 100%;
   height :        350px;
  object-fit  :   cover;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-heading {
   font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c5aa0;
}

.mission-text {
  font-size:        1.1rem;
  line-height    :1.8;
    color: #555;
}

.team-expertise {
   padding: 90px 0;
  background :    #f8f9fa;
}

.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px; 


}

.expertise-title

{
    text-align :center;
    font-size: 2.8rem;
   margin-bottom: 60px;
   color: #2c5aa0;
}

.expertise-layout	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
}

.expertise-card  
  {
  background: white;
   padding :   35px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;


}

.expertise-card:hover {
  transform: translateY(-8px);

}

.expertise-name {
  font-size: 1.4rem;
  margin-bottom: 15px;
	 color: #333;
}

.expertise-description {
    color: #666;
   line-height: 1.7;
}

.approach-methodology
{
    padding: 90px 0;
  background: linear-gradient(45deg, #a8e6cf 0%, #dcedc1 100%);
}

.approach-container {
    max-width: 1200px;
   margin: 0 auto;
 padding: 0 20px;
}

.approach-header {
  text-align: center;
    font-size: 2.8rem;
  margin-bottom: 60px;
   color: #2d5016;

}

.approach-elements {
   gap: 60px;
	 display   :  flex;
       flex-direction: column;
}

.approach-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.approach-item:nth-child(even)  
  {
    direction: rtl;
}

.approach-item:nth-child(even) .approach-details {
  direction: ltr;
}

.approach-image {
	    width: 100%;
   height: 300px;
    object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);

}

.approach-subtitle 
 {
  font-size: 1.6rem;
  margin-bottom  :       15px;
   color: #2d5016;
}

.approach-info {
    font-size: 1.1rem;
    line-height: 1.8;
  color: #444;
}

.values-commitment {
    padding: 90px 0;
	background: white;
}

.values-container		{
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

.values-heading {
  text-align: center;
	  font-size: 2.8rem;
	  margin-bottom: 60px;
	   color: #2c5aa0;


}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
}

.value-element {
	    text-align: center;
    padding: 30px;
   background: #f8f9fa;
   border-radius: 8px;
   transition:  background 0.3s ease;
     }

.value-element:hover 
 {
   background: #e9ecef;

}

.value-title  
  {
  font-size:  1.5rem;
      margin-bottom: 15px;
   color: #2c5aa0;
}

.value-text {
      line-height: 1.7;
    color: #666;
}

.journey-story {

  padding: 90px 0;
	 background: #f8f9fa;
	}

.story-wrapper {
  max-width: 900px;
  margin :        0 auto;
   padding :0 20px;
	text-align: center;
}

.story-title {
   font-size: 2.8rem;
  margin-bottom: 40px;
    color: #2c5aa0;
}

.story-paragraph {
  font-size: 1.2rem;
    line-height: 1.8;
  margin-bottom: 25px;
   color: #555;
   text-align: left;
}

.thankyou-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	
}

.thankyou-container {
  max-width: 1200px;
         margin: 0 auto;
  padding: 0 20px;
   display     :grid;
    grid-template-columns: 2fr 1fr;
   gap: 60px;
    align-items: center;
}

.success-indicator {
	text-align: center;
    margin-bottom: 30px;
}

.check-mark {
  width: 80px;
     height: 80px;
     border: 4px solid #4caf50;
      border-radius: 50%;
      position     :       relative;
     margin    :     0 auto;
   	background: #4caf50;
}

.check-line {
    position     :  absolute;
  background: white;
   height: 4px;
       border-radius: 2px;
}

.check-line-1 {
    width: 20px;
  left: 22px;
    top: 36px;
  transform: rotate(45deg);
}

.check-line-2 {
  width: 35px;
   left: 32px;
    top: 32px;
  transform: rotate(-45deg);
}

.thankyou-title {
    font-size :3rem;
   margin-bottom: 25px;
  text-align     :     center;

}

.thankyou-message {
    font-size: 1.3rem;

  line-height: 1.7;

                    margin-bottom: 50px;

	text-align: center;

   opacity: 0.95; 

}

.next-steps {
  margin-bottom: 50px;
}

.steps-heading {
				 font-size: 2rem;
  margin-bottom   :      30px;
   text-align: center;

}

.steps-list {
    display    :  flex;
    flex-direction  :        column;
  gap: 25px;
}

.step-box {
    display: flex;
  align-items: center;
  gap: 25px;
  background: rgba(255,255,255,0.1);
   padding: 25px;
   border-radius: 8px;
}

.step-number {
  font-size: 1.8rem;
    -webkit-border-radius   :50%;
  -moz-border-radius: 50%;
  font-weight: bold;
   background: #4caf50;
  width: 50px;
    height  :       50px;
   border-radius: 50%;
   display:    flex;
  align-items:      center;
   justify-content: center;
   flex-shrink: 0;
	}

.step-name {
  font-size: 1.3rem;
    margin-bottom: 8px;
}

.step-detail {
   opacity: 0.9;
      line-height: 1.6;
}

.additional-info {
  background: rgba(255,255,255,0.1);
   padding: 30px;
   border-radius: 8px;
  margin-bottom    :        40px;
}

.info-title {
   font-size: 1.5rem;
    margin-bottom: 15px;
}

.info-text {
    line-height: 1.7;
	 opacity: 0.9;
}

.thankyou-actions {
   display: flex;
  gap: 20px;
  justify-content  :     center;
}

.return-home,
.learn-more {
   padding: 14px 28px; 
  -moz-border-radius: 6px; 
   text-decoration    :      none; 
   -webkit-border-radius: 6px; 
   border-radius: 6px; 
  font-weight: 600; 
    transition: all 0.3s ease;
	
}

.return-home {
   background: #ff6b6b;
         color: white;
}

.return-home:hover {
  background: #ee5a52;
  transform: translateY(-2px);
}

.learn-more {
  background: transparent;
   color  :  white;
   border : 2px solid white;
} 

.learn-more:hover {
     color: #667eea;
   background: white;
}

.confirmation-image {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-info-section 
 {
   padding:   80px 0;
  background: white;
}


.contact-info-wrapper {
    max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info-title {
  text-align: center;
   font-size: 2.5rem;
    margin-bottom: 50px;
     color     :   #2c5aa0;


}

.contact-info-grid
{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.info-item {
  border-radius: 8px;
		 text-align: center;
    padding: 30px;
   background: #f8f9fa; 
	
}

.info-label  {
  font-size: 1.3rem;
   margin-bottom: 15px;
   color: #2c5aa0;
}

.info-value {
    color: #555;
   line-height:1.6;
}@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.2rem;
    }

    .mission-block,
    .approach-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mission-block.reverse,
    .approach-item:nth-child(even) {
        direction: ltr;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}.cookies-section {
   padding: 80px 0;
  background: #fff;
}

.cookies-container {
   max-width: 900px;
  margin: 0 auto;
    padding    :      0 20px;
}

.cookies-heading {
    text-align     : center;
  font-size     : 2.8rem;
   margin-bottom: 40px;
   color  : #2c5aa0;
}

.cookies-content {
    display: flex;
  flex-direction: column;
	gap: 30px;
}

.cookies-subheading {
   font-size: 1.6rem;
    color: #333;
}

.cookies-paragraph {
   font-size: 1.1rem;
    line-height     :     1.8;
  color: #555;
}

.privacy-section {
   padding: 80px 0;
  background: #fff;
}

.privacy-container {
  max-width: 900px;
    margin:   0 auto;
   padding: 0 20px;
}

.privacy-heading
{
  text-align: center;
    font-size     :2.8rem;
   margin-bottom: 40px;
  color: #2c5aa0;
}

.privacy-content {
 display: flex;
   flex-direction: column;
  gap: 30px;
}

.privacy-subheading  {
  font-size: 1.6rem;
   color: #333;
}  

.privacy-paragraph {
               font-size: 1.1rem;
    line-height: 1.8;
	color: #555;

}@media (max-width: 768px) {
    .cookies-heading,
    .privacy-heading {
        font-size: 2.2rem;
    }

    .cookies-subheading,
    .privacy-subheading {
        font-size: 1.4rem;
    }

    .cookies-paragraph,
    .privacy-paragraph {
        font-size: 1rem;
    }
}