* {
   margin: 0;
    padding    :        0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
                    line-height: 1.6;
  color: #333;
   background-color: #fafafa;
}

.container {
     max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.primary-nav {
  background: rgba(255, 255, 255, 0.95); 
  backdrop-filter: blur(10px); 
    position    :  fixed; 
  top: 0; 
    left: 0; 
    right: 0; 
    z-index    : 1000; 
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1); 
  transition     :        background-color 0.3s ease;
}

.primary-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
}

.nav-wrapper {

	 max-width: 1200px;
   margin :       0 auto;
   padding: 0 20px;
    display: flex;
  align-items: center;
   justify-content: space-between;
   height: 70px;

}

.brand-section .nav-logo {
    height: 45px;
   width: auto;
}

.nav-links {
  display   : flex;
  list-style: none;
    gap: 2rem;
}

.nav-links a {
   text-decoration: none;
  color: #2c3e50;
   font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color:#3498db;
}

.nav-links a::after {
  content: '';
   position: absolute;
    width: 0;
  height: 2px;
  bottom   :-5px;
  left: 50%;
  background: #3498db;
  transition: all 0.3s ease;
  transform: translateX(-50%);
	
}

.nav-links a:hover::after {
   width: 100%;
}

.burger-menu {
  display: none;
  flex-direction: column;
  cursor   :pointer;
   gap: 4px;
}

.burger-menu span {
                    width: 25px;
                    height: 3px;
    background :  #2c3e50;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1)

{
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
   opacity   :     0;
	
} 

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-banner {
               margin-top: 70px; 
   padding: 80px 20px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: white; 
                    display: flex; 
    align-items: center; 
  min-height: 600px;
}

.hero-content {
   max-width: 1200px;
  margin:  0 auto;
   display: grid;
 grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items: center;
}

.hero-content h1 {
	 font-size    : 3.2rem;
  font-weight    :      700;
   margin-bottom: 1.5rem;
  line-height :     1.2;
}

.hero-content p	{
    font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
} 

.hero-actions {
   display: flex;
    gap: 1rem;
	flex-wrap  :   wrap;
}

.primary-btn, .secondary-btn {
   padding: 15px 30px;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;


}

.primary-btn {
   color: white;
   background: #f39c12;
}

.primary-btn:hover {

    background   :  #e67e22;
  transform: translateY(-2px);
}

.secondary-btn {
    border: 2px solid white;
    background: transparent;
    color: white;
}

.secondary-btn:hover     {
   background: white;
   color: #667eea;
}

.hero-visual img {

   width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

}

.value-proposition {
    padding: 100px 0;
      background   :      white;
}

.value-proposition h2 {
   margin-bottom: 3rem;
   font-size    : 2.5rem;
       text-align: center;
    color: #2c3e50;
}

.benefits-grid		{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
}

.benefit-card {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius   :    12px;
   text-align: center;
   transition: transform 0.3s ease;
  border-left: 4px solid #3498db;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card h3 {
   font-size: 1.4rem;
	color: #2c3e50;
   margin-bottom: 1rem;
}

.services-showcase {
   padding: 100px 0;
   background: #f8f9fa;
}

.services-showcase h2 
 {
	   text-align: center;
   font-size: 2.5rem;
          margin-bottom: 3rem;
  color: #2c3e50;
	}

.services-layout    {
   display: flex;
      flex-direction: column;
   gap: 3rem;
}

.service-item {
   display: grid;
     grid-template-columns: 400px 1fr;
     gap: 3rem;
     align-items: center;
     background   :       white;
             border-radius :      12px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item:nth-child(even) {
  grid-template-columns: 1fr 400px;
}

.service-item:nth-child(even) .service-details {
  order: -1;


}

.service-item img {
          width: 100%;
  height: 300px;
   object-fit: cover;
} 

.service-details {
    padding: 2.5rem;
}

.service-details h3 {
	font-size  :   1.8rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.service-details p {
   margin-bottom: 1.5rem;
  color: #666;
}

.service-details ul {

    list-style: none;
}

.service-details ul li {

  padding: 0.5rem 0;
	color: #666;
  position: relative;
		 padding-left: 20px;


}

.service-details ul li::before {


  content: "•";
  color: #3498db;
	position: absolute;
   left: 0;
	font-weight: bold;
	}


.expertise-area {
  padding: 100px 0;
      background: white;
}

.expertise-content {
   display: grid;
     grid-template-columns: 1fr 400px;
    gap: 4rem;
   align-items: center;
}

.expertise-text h2 {
   font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;


}

.expertise-text p {
   margin-bottom:  1.5rem;
    color: #666;
   font-size: 1.1rem;
}

.expertise-stats {
  display: flex;
    gap: 2rem;
	margin-top: 2rem; 

}

.stat-item 
 {
       text-align: center; 
	
}

.stat-number {
  display: block;
  font-size: 2.5rem;
   font-weight: 700;
    color: #3498db;
}

.stat-label {
  color: #666;
    font-size: 0.9rem;
}

.expertise-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  text-align: center;
	
}

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom   :  1rem;
}

.cta-content p
{
 font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-button {
         background: #f39c12;
  color: white;
   padding: 18px 40px;
   text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  background: #e67e22;
  transform: translateY(-2px);
}

.contact-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.contact-section h2 {
      text-align  : center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #2c3e50;

}



.contact-layout {
  display: grid;
      grid-template-columns:      1fr 2fr;
  gap  :   4rem;
}

.contact-info h3	{


   font-size  :        1.5rem;
        margin-bottom: 2rem;
	color: #2c3e50;

}

.contact-item {
 margin-bottom: 2rem;

}

.contact-item strong {
   color: #2c3e50;
    display: block;
   margin-bottom: 0.5rem;
}

.contact-form {
  background: white;
       padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
	 margin-bottom :   1.5rem;
}

.form-group label		{
       display: block;
   margin-bottom: 0.5rem;
      color: #2c3e50;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea   {
    width: 100%;
  padding: 12px 15px;
   border: 2px solid #e0e0e0;
    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  :   #3498db;
     }

.submit-btn		{


   background: #3498db;
        color: white;
  padding: 15px 30px;
    border: none;
  border-radius: 8px;
    font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
  width: 100%;


}

.submit-btn:hover {
    background: #2980b9;
  transform: translateY(-2px);
}

.site-footer	{
	 background: #2c3e50;
  color: white;
   padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
   width  :  auto;
}

.footer-links{
	display: flex;
  gap: 3rem;
}

.link-group h4


{
    margin-bottom: 1rem;
	color: #3498db;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
   margin-bottom: 0.5rem;
} 

.link-group ul li a {
	  color: #bdc3c7;
  text-decoration     :  none;
  transition: color 0.3s ease;
     }

.link-group ul li a:hover
	{
     color    :   white;
}

.footer-contact h4 {
  margin-bottom: 1rem;
	 color: #3498db;
}

.footer-contact p {


   color: #bdc3c7;
   margin-bottom: 0.5rem; 
	}

.footer-bottom
{
         text-align   :   center;
  padding-top: 2rem;
  border-top: 1px solid #34495e;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-item:nth-child(even) .service-details {
        order: 0;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .expertise-stats {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }
}.about-hero {
  margin-top: 70px;
  padding: 100px 0;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
    text-align: center;
}

.about-hero-content h1


{
  font-size: 2.8rem;
	margin-bottom    :   1.5rem;
    font-weight: 700;
}

.about-hero-content p {
  font-size: 1.3rem;
   max-width: 800px;
   margin: 0 auto;
               opacity: 0.9;
}

.our-story {
	 padding: 100px 0;
    background: white;
}

.story-layout
	{
  display: grid;
  grid-template-columns: 2fr 1fr;
    gap     :        4rem;
	 align-items  :       center;

}

.story-content h2 {
	   font-size: 2.4rem;
   margin-bottom: 2rem;
    color: #2c3e50;

}

.story-content p 
 {
   margin-bottom: 1.8rem;
    color   :      #666;
  font-size: 1.1rem;
  line-height: 1.7;
}

.timeline-stats {
   display: flex;
   gap: 2rem;
    margin-top  :       3rem;
}

.timeline-item {
   text-align: center;
          flex:    1;
}

.timeline-item strong {
  display: block;
  color: #3498db;
  font-weight: 700;
   font-size   :       2rem;
}

.timeline-item span {
                    color: #666;
   font-size: 0.9rem;
}

.story-image img {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.our-approach {
   padding    :        100px 0;
	background     : #f8f9fa; 

}

.our-approach h2 {
	    text-align: center;
    font-size: 2.4rem;
   margin-bottom: 3rem;
  color: #2c3e50;
     }

.approach-grid {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
	   gap: 3rem;
}

.approach-card {
  background: white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;

}

.approach-card:hover		{
  transform: translateY(-5px);


}

.approach-card img {
    width: 100%;

	   height: 200px;

	  object-fit: cover;
}

.approach-card h3 {

  padding: 1.5rem 2rem 1rem;
  font-size: 1.4rem;
  color: #2c3e50;
     }

.approach-card p {
    padding: 0 2rem 2rem;
				 color: #666;
  line-height: 1.6;
}

.team-expertise {
  padding: 100px 0;
  background: white;
	}

.team-expertise h2 {
	   font-size   :        2.4rem;
	margin-bottom: 3rem;
   color: #2c3e50;
    text-align: center;

}

.expertise-layout {
  display: grid;
                    grid-template-columns: 2fr 1fr;
    gap: 4rem;
   align-items: start;
}

.expertise-item {
    margin-bottom    :     2.5rem;
	   padding-bottom: 2rem;
	  border-bottom: 1px solid #e0e0e0;
}

.expertise-item:last-child
	{
   border-bottom: none;
}

.expertise-item h3 {
		font-size   :    1.3rem;
    margin-bottom  :       1rem;
   color :   #2c3e50; 
	

}

.expertise-item p {
         color: #666;

	  line-height: 1.6;
}

.expertise-visual img
{

	    height: auto;
  top: 100px;
    width: 100%;
    border-radius: 12px;
    position: sticky;

}

.values-mission {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.values-content {
   display   :      grid;
    grid-template-columns :1fr 1fr;
   gap: 4rem;
}

.mission-block h2,
.values-block h2 {
   font-size: 2rem;
    margin-bottom: 1.5rem;
}



.mission-block p {

	    font-size: 1.1rem;
   line-height: 1.7;
   opacity: 0.9;}

.values-list {
               list-style: none;
}

.values-list li
{
     margin-bottom: 1.2rem;
   opacity: 0.9;
    line-height: 1.6;}

.values-list strong {
   color: #f39c12;
}

.why-choose-us {
	  padding: 100px 0;

  background: #f8f9fa;
	}

.why-choose-us h2 {
    text-align: center;
  font-size: 2.4rem;
	 margin-bottom: 3rem;
   color: #2c3e50;
}

.benefits-showcase {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2.5rem;
   border-radius: 12px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.benefit-number  
  {
  background: #3498db;
	color: white;
    width: 50px;
   height: 50px;
  border-radius: 50%;
                    display: flex;
   align-items: center;
    justify-content: center;
   font-weight: 700;
	font-size: 1.2rem;
   margin     :0 auto 1.5rem;
}

.benefit-item h3 {
 font-size: 1.3rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.thankyou-hero {
    margin-top: 70px;
   padding: 100px 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
  text-align: center;
}

.thankyou-content


{

  max-width :      800px;
  margin: 0 auto; 
	


}

.success-indicator {
	 margin-bottom: 2rem;
}

.checkmark-circle    {
  width: 80px;
   height   :      80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
       margin   : 0 auto;
    display   :    flex;
  align-items: center;
    justify-content: center;
}

.checkmark {
 width: 30px;
    height: 15px;
   border: 3px solid white;
  border-top     :   none;
    border-right: none;
  transform: rotate(-45deg);
}

.thankyou-content h1     {
   font-size: 3rem;
	margin-bottom: 1.5rem;
  font-weight: 700;
}

.lead-text {
  opacity:      0.9;
          margin-bottom: 3rem;
         font-size: 1.3rem;
}

.next-steps {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem;
    border-radius: 12px;
   margin-top: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
	margin-bottom: 2rem;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
}

.step-item {
   text-align: center;
        padding: 1.5rem;

}

.step-number {

	  background: #f39c12;
	color: white;
    width: 40px;
  height: 40px;
  border-radius  :   50%;
   display  :        flex;
      align-items: center;
   justify-content: center;
  font-weight    :       700;
  margin: 0 auto 1rem;}

.step-item h3 {
	   font-size: 1.2rem;
   margin-bottom: 1rem;}

.step-item p {
   opacity: 0.9;
    font-size: 0.95rem;
}

.preparation-tips {
    padding   :100px 0;
  background: white;
}

.preparation-tips h2 {
    text-align: center;
	 font-size: 2.4rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.tips-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 4rem;
   align-items: center;
}

.tip-item


{
   margin-bottom: 2rem;
	padding-left: 1rem;
    border-left: 3px solid #3498db;
}


.tip-item h3 {
  font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color  :  #2c3e50;
}

.tip-item p {

	    color: #666;
   line-height: 1.6;
	}

.tips-visual img {
    width: 100%;
   height    : auto;
   border-radius: 12px;
}

.additional-resources {
   padding: 100px 0;
   background: #f8f9fa; 
	
}

.additional-resources h2 {
    color: #2c3e50;
   margin-bottom   :  3rem;
  text-align: center;
   font-size: 2.4rem;
}

.resources-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;}

.resource-card {
	 background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {


  transform: translateY(-5px);


}

.resource-card img {
    width: 100%;
 height  :   200px;
    object-fit: cover; 
	
}

.resource-card h3 {
  padding: 1.5rem 2rem 1rem;
    font-size: 1.4rem;
	 color: #2c3e50;
}

.resource-card p {
   padding: 0 2rem;
   color: #666;
    line-height: 1.6;
}

.resource-link     {
    display: inline-block;
	margin: 1.5rem 2rem 2rem;
	padding: 10px 20px;
   background: #3498db;
  color: white;
    text-decoration: none;
  border-radius:        6px;
   transition  :       background 0.3s ease;
}

.resource-link:hover {
    background: #2980b9;
}  

.contact-reminder {
  padding: 80px 0;
  background: #2c3e50;
   color     :   white;
	 text-align: center;
}

.reminder-content h2 {
	font-size: 2.2rem;
     margin-bottom: 1.5rem;
}

.reminder-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.contact-info-compact {
  display: flex;
  justify-content: center;
   gap: 3rem;
	flex-wrap: wrap;
}

.contact-detail {
       text-align :       left;


}

.contact-detail strong {
   display: block;
    color: #3498db;
    margin-bottom   :     0.5rem;
}

.contact-detail span {
  opacity: 0.9;
}@media (max-width: 768px) {
    .story-layout,
    .expertise-layout,
    .tips-layout {
        grid-template-columns: 1fr;
    }

    .values-content {
        grid-template-columns: 1fr;
    }

    .timeline-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .about-hero-content h1 {
        font-size: 2.2rem;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .contact-info-compact {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .contact-detail {
        text-align: center;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.9rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .next-steps {
        padding: 2rem;
    }

    .approach-card h3,
    .resource-card h3 {
        font-size: 1.2rem;
    }
}.content-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.content-section h2 {
   text-align   :        center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
	color: #2c3e50;
}

.content-section .benefit-card {
     max-width: 800px;
      margin: 0 auto;
   background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

.content-section .benefit-card p {
   margin-bottom: 1.5rem;
   color: #666;
    font-size: 1.1rem;
 line-height: 1.8;
}