* {
   margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	 line-height: 1.6;
  color: #333;
}

.main-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
  top: 0;
	width: 100%;
   z-index: 1000;
  border-bottom: 1px solid #e5e5e5;
}

.nav-container {
     max-width: 1200px;
     margin: 0 auto;
   display: flex;
  justify-content: space-between;
   align-items    :  center;
  padding: 1rem 2rem;

}

.brand-logo {
  height:    45px;
   width: auto;

}

.nav-links {
    display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
   text-decoration: none;
   color: #333;
  font-weight    :    500;
    transition: color 0.3s ease;
}

.nav-links a:hover
{
   color: #6366f1;
}  

.burger-menu {
    display: none;
       flex-direction: column;
   cursor: pointer;
  gap: 4px;
}

.burger-menu span {
	   width: 25px;
    height: 3px;
   background: #333;
   transition: 0.3s;}

.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 {
  display: flex;
    align-items: center;
  min-height: 100vh;
  max-width: 1200px;
    margin: 0 auto;
 padding: 0 2rem;
   gap: 3rem;
}

.hero-content {
  flex  :     1;
                    padding-top: 80px;
}

.hero-content h1 
 {
    font-size: 3.5rem;
   font-weight :        700;
   color   :       #1f2937;
    margin-bottom   :   1.5rem;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.25rem;
  color     :    #6b7280;
         margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {

  display: flex; 
	    gap: 1rem; 
	    flex-wrap: wrap;}


.cta-primary, .cta-secondary {
	padding: 12px 24px;
  text-decoration: none;
  border-radius     : 8px;
   font-weight: 600;
    transition : all 0.3s ease;
   display: inline-block;
}

.cta-primary {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.cta-secondary  {
    background: transparent;
	  color: #6366f1;
	 border    : 2px solid #6366f1;
}

.cta-secondary:hover {
    background: #6366f1;
    color: white;
	
}

.hero-image 
 {
     flex: 1;
}

.hero-image img {
	 width: 100%;
  height: auto;
    border-radius    :    15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);


}

.services-overview {
   padding: 5rem 0;
    background: #f8fafc;
}

.container {
    max-width  :    1200px;
    margin     :0 auto;
   padding: 0 2rem;
}

.services-overview h2 {
          text-align     :       center; 
 font-size: 2.5rem; 
  color: #1f2937; 
  margin-bottom:        3rem;
}

.services-grid {
    display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
       border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {

	    width    :100%;
   height: 200px;
  object-fit: cover;

}

.service-card h3

{
   font-size: 1.5rem;
	color: #1f2937;
    margin: 1.5rem 1.5rem 1rem;


}

.service-card p
	{
  color: #6b7280;
    margin: 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.expertise-section {
    padding: 5rem 0;
}

.expertise-content {
   display  :flex;
	align-items: center;
    gap: 3rem;
}

.expertise-text {
  flex: 1;
}

.expertise-text h2 {
    font-size: 2.5rem;
   color: #1f2937;
   margin-bottom: 1.5rem;
}

.expertise-text p {
  color: #6b7280;
  margin-bottom: 1.5rem;
   font-size: 1.1rem;
}

.benefits-list     {
  margin-top: 2rem;
   list-style: none;
}

.benefits-list li {
       position: relative;
  padding-left    :2rem;
  margin-bottom: 0.8rem;
  color   :    #374151;
}

.benefits-list li::before {
   font-weight: bold;
          position: absolute;
  content: "✓";
   font-size: 1.2rem;
         left: 0;
        color    : #10b981;
}

.expertise-image


{
     flex: 1;

}

.expertise-image img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.cta-section {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  padding: 4rem 0;
  text-align: center;
}

.cta-content h2 {


  color: white;
  font-size: 2.5rem;
	margin-bottom: 1rem;
     }

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
   font-size: 1.2rem;
    margin-bottom: 2rem;
   max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.cta-button {
  background:   white; 
	    color: #6366f1; 
		padding: 15px 30px; 
	  text-decoration: none; 
	    border-radius: 8px; 
	   font-weight: 600; 
	    font-size: 1.1rem; 
	   transition: all 0.3s ease; 
	    display: inline-block;
	
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding: 5rem 0;
    background: #f8fafc;
}

.contact-section h2 {
    text-align: center;
   font-size: 2.5rem;
    color    :      #1f2937;
    margin-bottom: 3rem;
}

.contact-wrapper {
   display: grid;
    grid-template-columns: 1fr 2fr;
  gap    :3rem;


}

.contact-info h3 {
	color: #1f2937;
    margin-bottom: 2rem;
	 font-size: 1.5rem;
}

.contact-item {
	margin-bottom: 2rem;
}

.contact-item strong {
    color: #374151;
       display: block;
      margin-bottom: 0.5rem;


}

.contact-item p {
   color: #6b7280;
  line-height: 1.6;
}

.contact-form {

   background: white;
  padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     }

.form-group {
	margin-bottom:    1.5rem;
}

.form-group label {

   display: block;
    margin-bottom: 0.5rem;
  color    :#374151;
    font-weight: 500;
     }

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; 
    padding: 12px; 
   border: 2px solid #e5e7eb; 
	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: #6366f1;
}

.submit-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
   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 {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.main-footer {
     background: #1f2937;
   color: white;
   padding     : 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
                  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
}

.footer-logo {


	 height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;
	}

.footer-section h4 {
   margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section p {
  color: #d1d5db;
    line-height: 1.6;
}



.footer-section ul {

	    list-style: none;}

.footer-section ul li {
   margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #d1d5db;
    text-decoration: none;
    transition   :       color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #6366f1;
}

.footer-bottom {
    border-top: 1px solid #374151;
  margin-top: 2rem;
      padding-top: 1rem;
    text-align: center;
  color: #9ca3af;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        border-top: 1px solid #e5e5e5;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .expertise-content {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-overview h2,
    .expertise-text h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 8rem 0 4rem;
  color: white;
	text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.about-subtitle {
    font-size: 1.3rem; 
   max-width: 800px; 
   margin: 0 auto; 
                    line-height: 1.7; 
   opacity  :   0.95;
}

.our-story {
  padding: 5rem 0;
}

.story-content {
  display: flex;
  align-items: center;
	gap: 4rem; 
	
}

.story-text {
  flex: 1;
}

.story-text h2 {
  font-size: 2.5rem;
    color: #1f2937;
  margin-bottom: 2rem;
}

.story-text p {
  color: #6b7280;
	margin-bottom    :     1.5rem;
    font-size: 1.1rem;
   line-height: 1.7;}

.story-image {

	    flex: 1;

}

.story-image img {
    width: 100%;
   border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);

}

.our-approach {
  background     :      #f8fafc;
  padding: 5rem 0;
}

.our-approach h2 {
      text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
  margin-bottom: 3rem;}

.approach-grid {
  display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.approach-item {
     background: white; 
	  padding: 2rem; 
	       border-radius: 12px; 
	   text-align: center; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	    transition: transform 0.3s ease;
     } 

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-number {
  background: linear-gradient(135deg, #6366f1, #8b5cf6); 
	    color: white; 
	   width: 60px; 
	   height: 60px; 
	    border-radius: 50%; 
	   display: flex; 
	    align-items:  center; 
	    justify-content: center; 
	    font-size: 1.5rem; 
	    font-weight: bold; 
	  margin  :0 auto 1.5rem;
}

.approach-item h3 {
    color: #1f2937;
       margin-bottom: 1rem;
    font-size: 1.3rem;
}

.approach-item p {
        color: #6b7280;
   line-height   :       1.6;
}

.expertise-areas {
  padding: 5rem 0;
}



.expertise-content


{
   align-items: center;
    gap: 4rem;
	 display :  flex;
}

.expertise-image {


   flex: 1;
}

.expertise-image img {
    width: 100%;
    border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expertise-text {
   flex: 1;
}

.expertise-text h2 {
   font-size: 2.5rem;
    color: #1f2937;
	margin-bottom: 2rem;
}

.expertise-list {
  display :       grid;
  gap: 1.5rem;
}

.expertise-item h4 {

	 font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #6366f1;
}

.expertise-item p {
  color: #6b7280;
       line-height: 1.6;
}

.team-section {
  background: #f8fafc;
    padding: 5rem 0;
}

.team-section h2 {
	   text-align: center;
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 3rem;
     }

.values-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
} 

.value-card {
   background: white;
               border-radius    :      12px;
	overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card img {


    width: 100%;
       height: 200px;
   object-fit: cover;


}

.value-card h3 {
    font-size: 1.4rem;
   color: #1f2937;
        margin: 1.5rem 1.5rem 1rem;
}

.value-card p

{
    color   : #6b7280;
  margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.why-choose-us {
   padding: 5rem 0;
}

.why-content h2 {
        text-align: center;
    font-size: 2.5rem;
  color: #1f2937;
	margin-bottom: 3rem;
}

.reasons-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
}

.reason-item {
  text-align: center;
  padding: 1.5rem;
}

.reason-item h4 {
    color: #6366f1;
     font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reason-item p {
    color   :    #6b7280;
    line-height: 1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 8rem 0 4rem;
    color    :   white;
   text-align: center;
          min-height :      70vh;
    display: flex;
  align-items: center;
}  

.thankyou-content h1 {


    font-size: 3rem;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-message {
   font-size   :       1.3rem;
	max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
   opacity     : 0.95; 
	
}

.success-animation {
   margin-bottom   :2rem;
}

.checkmark-circle 
 {
	width: 100px;
   height: 100px;
	border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
    display    :  flex;
  align-items: center;
   justify-content: center;
   margin    :     0 auto;
    animation: pulse 2s infinite;
}

.checkmark {
    width: 30px;
   height: 15px;
   border: 3px solid white;
  border-top: none;
   border-right: none;
  transform: rotate(-45deg);
    animation: checkmark 0.8s ease-in-out;
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes checkmark {
    0% { width: 0; height: 0; }
    50% { width: 30px; height: 0; }
    100% { width: 30px; height: 15px; }
}.next-steps {
  background: rgba(255, 255, 255, 0.1); 
    border-radius: 15px; 
          padding: 3rem; 
   margin: 3rem 0; 
  backdrop-filter: blur(10px);
}

.next-steps h2   {
  font-size: 2rem;
   margin-bottom: 2rem;
  text-align: center;
}

.steps-grid
	{
 display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :        2rem;
}

.step-item {
    text-align: center;
}

.step-number {
   background: white;
		 color: #10b981;
   width: 50px;
  height: 50px;
    border-radius: 50%;
    display     :       flex;
    align-items: center;
    justify-content: center;
  font-size: 1.5rem;
   font-weight: bold;
   margin: 0 auto 1rem; 

}

.step-item h3 {
   margin-bottom: 0.5rem;
   font-size: 1.3rem;
}

.step-item p {
    line-height: 1.6;
  opacity  :     0.9;
}

.additional-info {
    margin: 3rem 0;


}

.additional-info h2 {
  font-size:2rem;
  margin-bottom     :       2rem;
   text-align: center;
}

.info-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;


}

.info-card {
  background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.info-card h3 {
   font-size: 1.3rem;
 margin-bottom: 1rem;
}

.info-card p {
  opacity: 0.9;
    line-height  : 1.6;
}

.action-buttons {
  justify-content: center;
  flex-wrap: wrap;
	display: flex;
	gap: 1rem;
   margin-top: 2rem;
}

.btn-primary, .btn-secondary {
   padding: 12px 24px;
  text-decoration: none;
  border-radius :  8px;
   font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block; 
	
}

.btn-primary


{
    background: white;
   color: #10b981;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
   background    :  transparent;
  color: white;
   border: 2px solid white;
}

.btn-secondary:hover {
   background: white;
  color: #10b981;
}

.contact-info-section {

   background: #f8fafc;
    padding:      4rem 0;
	}

.contact-reminder h2 {
    text-align: center;
   font-size: 2rem;
   color: #1f2937;
  margin-bottom: 2rem;
}

.contact-details {
    display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.contact-details .contact-item
	{
   background: white;
  padding  :   2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-details .contact-item h4 {
  color: #6366f1;
  margin-bottom: 1rem;
   font-size: 1.2rem;
}

.contact-details .contact-item p {
    color: #6b7280;

	    line-height : 1.6;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .about-subtitle,
    .thankyou-message {
        font-size: 1.1rem;
    }

    .story-content,
    .expertise-content {
        flex-direction: column;
        gap: 2rem;
    }

    .approach-grid,
    .values-grid,
    .reasons-grid,
    .steps-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .next-steps {
        padding: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 6rem 0 3rem;
    }

    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .our-story,
    .our-approach,
    .expertise-areas,
    .team-section,
    .why-choose-us {
        padding: 3rem 0;
    }

    .story-text h2,
    .our-approach h2,
    .expertise-text h2,
    .team-section h2,
    .why-content h2 {
        font-size: 2rem;
    }
}.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 {
	margin-bottom:      1.5rem;
    line-height:   1.7;
	 font-size: 1.1rem;
    color: #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}