* {
    margin: 0;
     padding: 0;
  box-sizing: border-box;
}

body {

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color    :       #333;
    background: #f8f9fa;

}

.container {
  max-width: 1200px; 
	   margin: 0 auto; 
	  padding: 0 20px;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
    top     :        0;
    width: 100%;
    z-index     :  1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);}

.nav-container {
	  max-width: 1200px;
    margin: 0 auto;
  display: flex;
   justify-content: space-between;
 align-items: center;
   padding: 1rem 20px;}

.brand-logo .logo-img {

	  height: 45px;
    width: auto;


}

.nav-menu {
  display  :     flex;
    list-style: none;
  gap: 2rem;
}

.nav-menu a {
       text-decoration: none;
  color: #2c3e50;
    font-weight: 500;
      transition: color 0.3s ease;

}

.nav-menu a:hover {
    color :   #3498db;
}

.burger-menu {
    display:      none;
	flex-direction: column;
    cursor: pointer;
  gap: 4px;
}

.burger-menu span {
    -o-transition: all 0.3s ease;
      width: 25px;
     -webkit-transition: all 0.3s ease;
     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-section	{
    display:      grid;
    grid-template-columns : 1fr 1fr;
    gap: 3rem;
	align-items: center;
   min-height: 100vh;
    padding: 120px 20px 60px;
                    max-width: 1200px;
   margin    :    0 auto;
}

.hero-content h1 
 {
  font-size  :       3.2rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
   line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;
   color: #7f8c8d;
   margin-bottom: 2.5rem;
   line-height   :   1.6;

}  

.hero-buttons {

		 display: flex;
  gap   :      1rem;
	 flex-wrap: wrap;
	}

.primary-btn, .secondary-btn {
   transition: all 0.3s ease;
  padding: 14px 28px;
    text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
  display: inline-block;
}

.primary-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
  border: none;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3); 

}

.secondary-btn {
	background: transparent;
    color: #3498db;
   border: 2px solid #3498db;
}

.secondary-btn:hover {
             background: #3498db;
	color: white;
     }

.hero-image img   {
	width: 100%;
       height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-overview {


    padding: 80px 0;
     background: white;
}

.services-overview h2    {
    font-weight: 700;
  color: #2c3e50;
   font-size     :  2.8rem;
  text-align:      center;
        margin-bottom: 3rem;
}

.services-grid


{
   display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
       background: white;
  border-radius : 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
         opacity: 0;
  transform: translateY(30px);

}

.service-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover
	{
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);

}

.service-card img {
   width: 100%;
      height: 220px;
   object-fit: cover;
}

.service-card h3 {
    font-size: 1.5rem;
  color   :       #2c3e50;
   margin: 1.5rem 1.5rem 1rem;
                    font-weight: 600;
}

.service-card p

{
  color: #7f8c8d;
   padding     :       0 1.5rem 1.5rem;
    line-height: 1.6;
}

.methodology-section {
   padding  : 80px 0;
    background: #f8f9fa;
}

.methodology-content {
  display    :   grid;
          grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.method-text h2	{
   font-size: 2.5rem;
   color: #2c3e50;
	 margin-bottom     :  1.5rem;
    font-weight: 700;
}

.method-text p
	{
  color: #7f8c8d;
  margin-bottom: 2rem;
   font-size: 1.1rem;
    line-height: 1.7;
}

.benefits-list 
 {
    list-style    :        none;
}

.benefits-list li {
  padding: 0.5rem 0;
    color: #2c3e50;
  position: relative;
  padding-left: 1.5rem; 
	
}

.benefits-list li:before {
  content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
  font-weight: bold;


}

.method-image img {
  width: 100%;
	    height: auto;
	  border-radius: 12px;
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 80px 0;
  color: white;
   text-align: center;
}

.cta-content h2 {
  font-size: 2.8rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
    margin-bottom    :      2.5rem;
   max-width: 600px;
    margin-left: auto;
	 margin-right: auto;
    line-height: 1.6;
}

.cta-button {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
   padding: 16px 32px;
	 border-radius: 8px;
     text-decoration: none;
  font-weight    : 600;
  font-size: 1.1rem;
   transition    :   all 0.3s ease;
      display: inline-block;
}  

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
	
}

.contact-section {
   padding  :       80px 0;
  background: white;
}

.contact-section h2 {
   text-align: center;
    font-size: 2.8rem;
  color: #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
	
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
   color:   #2c3e50;
    margin-bottom: 2rem;
   font-weight: 600;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
   color: #2c3e50;
               display: block;
  margin-bottom: 0.5rem;
}

.contact-item p {
   color: #7f8c8d;
               line-height   :        1.6;
}

.contact-form {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
       margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
       width: 100%;
  padding: 12px 16px;
   border: 2px solid #e9ecef;
		 border-radius: 8px;
   font-size: 1rem;
    transition: border-color 0.3s ease;
	 background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
          outline: none;
   border-color: #3498db;
}

.form-group textarea


{
  height    :        120px;
   resize: vertical;

}

.submit-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
         padding: 14px 28px;
   border: none;
  border-radius: 8px;
   font-size:        1rem;
    font-weight: 600;
    cursor   :  pointer;
   transition: all 0.3s ease;
	 width: 100%;
	
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.main-footer {
   background: #2c3e50;
   color: white;
	padding: 60px 0 20px;
	}

.footer-container {
         max-width: 1200px;
     margin: 0 auto;
	 display    :  grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
  padding: 0 20px;
}

.footer-logo {
	height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.footer-column h4 {
	 color: #ecf0f1;
   font-size: 1.2rem;
   margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none; 

}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
	  color: #bdc3c7;
  text-decoration: none;
    transition: color 0.3s ease;

}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-column p {


   color: #bdc3c7;

	  line-height: 1.6;
}

.footer-bottom {
    text-align: center;
	 padding-top: 2rem;
    margin-top: 2rem;
   border-top: 1px solid #34495e;
	 color: #bdc3c7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu li {
        padding: 0.5rem 1rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 20px 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .services-overview h2 {
        font-size: 2.2rem;
    }

    .contact-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .primary-btn, .secondary-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        margin: 0 10px;
    }
}.page-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 120px 0 80px;
   text-align: center;
}

.hero-text h1 {
   font-size: 3rem;
  color: #2c3e50;
  margin-bottom   :    1.5rem;
   font-weight: 700;


}

.hero-text p  {
  font-size: 1.2rem;
	color     :        #7f8c8d;
    max-width: 600px;
               margin: 0 auto;
    line-height: 1.6;
}

.company-story {
	padding: 80px 0;
  background: white;
}

.story-content {

	    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
   align-items: center;}

.story-text h2     {
    font-size     :       2.5rem;
   color    :   #2c3e50;
    margin-bottom: 2rem;
    font-weight: 700; 
	
}

.story-text p {
  font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
          color: #7f8c8d;
}

.story-image img {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-vision {
    padding: 80px 0;
  background: #f8f9fa;
	
}

.mission-grid {
    display: grid;
	gap: 3rem;
  grid-template-columns: 1fr 1fr;
}

.mission-card, .vision-card {
 background    :     white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  text-align: center;

}

.mission-card h3, .vision-card h3     {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom:1.5rem;
   font-weight: 600;
}

.mission-card p, .vision-card p {
    color: #7f8c8d;
    line-height: 1.6;
    font-size: 1.1rem;
}

.expertise-areas {
  padding: 80px 0;
    background: white;
}

.expertise-areas h2 {

	     text-align: center;
    font-size: 2.8rem;
   color:   #2c3e50;
  margin-bottom: 3rem;
   font-weight: 700;
	}

.expertise-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

		gap: 2.5rem;
}

.expertise-item {
   text-align: center;
  padding: 1.5rem;
}

.expertise-item img {


    width   :100%;
  height    :       200px;
    object-fit: cover;
   border-radius: 8px;
    margin-bottom: 1.5rem;

}

.expertise-item h4

{
  font-weight: 600;
  color    :    #2c3e50;
   margin-bottom: 1rem;
   font-size: 1.4rem;
}

.expertise-item p {
  color    :        #7f8c8d;
  line-height: 1.6;
}

.methodology-deep 
 {
   padding: 80px 0;
  background: #f8f9fa;
}

.methodology-layout    {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
	 align-items: start; 
	
}

.method-details h2 {


	font-size: 2.5rem;
  font-weight: 700;
   color: #2c3e50;
  margin-bottom :     1.5rem;
}

.method-details > p {


   color: #7f8c8d;
	margin-bottom: 3rem;
       font-size: 1.1rem;
   line-height: 1.7;

}

.method-phases {
   display: flex;
    flex-direction: column;
    gap: 2rem;
}

.phase-item {
    display: flex;
    align-items :  flex-start;
  gap: 1.5rem;
}

.phase-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
    width: 50px;
  height: 50px;
    border-radius: 50%;
	display: flex;
  align-items: center;
   justify-content: center;
  font-weight: 700;
   font-size: 1.2rem;
   flex-shrink: 0;
}

.phase-content h4 {
   font-size: 1.3rem;
       color: #2c3e50;
          margin-bottom: 0.5rem;
     font-weight: 600;
}

.phase-content p {
  color   :        #7f8c8d;
  line-height: 1.6; 

}

.method-visual img {
    width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-choose-us {
  background:    white;
    padding: 80px 0; 

}

.why-choose-us h2 {
   text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 3rem;
   font-weight: 700;
}  

.reasons-grid {
  display  :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :2rem;
}

.reason-item {
    text-align: center; 
   padding: 2rem 1rem; 
  background: #f8f9fa; 
   border-radius: 12px; 
  transition: transform 0.3s ease;
}

.reason-item:hover{
  transform: translateY(-5px);
}

.reason-number {
		 font-size: 3rem;
	font-weight: 700;
   color: #3498db;
    margin-bottom: 0.5rem; 
	
}

.reason-item h4  {
                    font-size  :1.3rem;
	               color: #2c3e50;
	    margin-bottom:     0.5rem;
	  font-weight: 600;
}

.reason-item p {
	 color: #7f8c8d;
    line-height: 1.6;
}

.thankyou-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);


}

.thankyou-content	{
    display: grid;
    grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
               align-items: center;
}

.success-icon {
   text-align: center;
    margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
   border-radius: 50%;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
   margin: 0 auto;
	 display   :    flex;
    align-items: center;
  justify-content: center;
   animation: successPulse 2s ease-in-out infinite;
}

.checkmark  
  {
  width: 30px;
    height: 15px;
    border: 3px solid white;
  border-top: none;
    border-right: none;
  transform: rotate(-45deg);
}@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
    font-size: 3rem;
   color: #2c3e50;
  margin-bottom : 1rem;
    font-weight: 700;
}

.thankyou-subtitle {
   font-size: 1.2rem;
    color: #7f8c8d;
   margin-bottom: 3rem;
   line-height  :       1.6;
}

.next-steps {
  margin-bottom: 3rem;
}

.next-steps h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
	font-weight: 600;
}

.steps-timeline 
 {
  display: flex;
	   flex-direction: column;
	    gap: 1.5rem;


}

.step-item {
   display: flex;
  align-items: flex-start;
    gap: 1rem;
}

.step-number {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
   color: white;
  width: 40px;
    height: 40px;
	 border-radius     :     50%;
    display: flex;
    align-items: center;
   justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  color: #2c3e50;
   margin-bottom: 0.5rem;
	font-weight: 600;
}

.step-content p {
    color    : #7f8c8d;
   font-size :        0.95rem;
    line-height: 1.6;
}

.contact-reminder {
         background: #f8f9fa;
   padding: 1.5rem;
  border-radius: 8px;
     margin-bottom :    2rem;
}

.contact-reminder h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
 font-weight: 600;
	
}

.contact-reminder p {
	color: #7f8c8d;
   margin-bottom: 0.3rem;
}

.thankyou-actions {
    display: flex;
  gap: 1rem;
	 flex-wrap: wrap;
}

.thankyou-visual img {
  width: 100%;
   height:   auto;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.additional-resources {
    padding: 80px 0;
  background: white;
}

.additional-resources h2 {
   text-align: center;
   font-size: 2.5rem;
    color:#2c3e50;
  margin-bottom: 3rem;
  font-weight: 700;
}

.resources-grid 
 {
    display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.resource-card {
   background: #f8f9fa;
   border-radius: 12px;
  overflow    :       hidden;
	transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img  
  {
   object-fit: cover;
  width: 100%;
    height: 180px;
}

.resource-card h4 {
    font-size  :1.3rem;
  color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
   font-weight: 600;
}

.resource-card p {
   color: #7f8c8d;
    padding: 0 1.5rem 1.5rem;
                    line-height: 1.6; 
	
}@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .phase-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-timeline {
        text-align: left;
    }
    
    .thankyou-actions {
        justify-content: center;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.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;
    }
}