* {
  margin: 0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         line-height: 1.6;
   color: #333;
}

.container


{
	 max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

.navbar-main {
   position: fixed;
               top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
         z-index: 1000;
  border-bottom   :     1px solid #e0e0e0;
}

.nav-container{
   max-width: 1200px;
  margin: 0 auto;
   display: flex;
    justify-content: space-between;
       align-items: center;
   padding: 1rem 20px;
}  

.nav-brand .brand-logo {
     height: 40px;
	 width: auto;
	}

.nav-menu {
      display: flex;
  list-style:   none;
  gap: 2rem;

}

.nav-link   {
    text-decoration: none;
    color: #333;
  font-weight: 500;
   transition: color 0.3s ease;
}

.nav-link:hover {
  color: #2563eb;


}

.nav-toggle {
   display  :        none;
    flex-direction: column;
	cursor: pointer;
}


.hamburger-line {
  width: 25px;
   height: 3px;
  background-color: #333;
   margin: 3px 0;
   transition:       0.3s;
}

.hero-section {
          margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :   white;
}

.hero-content {
    max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
    display: grid;
   grid-template-columns: 1fr 1fr;
  gap:      4rem;
  align-items   :      center;
}  

.hero-text h1 {
               font-size   :  3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero-description  {
   font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.hero-buttons {
  display: flex;
   gap: 1rem;
}

.btn-primary, .btn-secondary {
  padding: 12px 24px;
  text-decoration   :        none;
  border-radius    :    8px;
   font-weight: 600;
  transition: all 0.3s ease;

}

.btn-primary {
    background-color     :       #fff;
   color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
     border: 2px solid white;
    color: white;
  background: transparent;
}

.btn-secondary:hover {
  background: white;
  color: #667eea;
}

.hero-image img {
    width    :     100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-preview {
    padding: 80px 0;
  background-color: #f8fafc;
	
}

.about-grid {
   display:      grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items  :    center;
} 

.about-text h2 {
               font-size: 2.5rem;
    margin-bottom: 1.5rem;
  color: #1e293b;
}

.about-text p
	{
    font-size: 1.1rem;
  margin-bottom: 1rem;
   color: #64748b;
}

.about-image img {
  width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.services-section  {
   padding: 80px 0;
}

.section-title		{
    text-align: center;
     font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #1e293b;


}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap    :  2rem;
}

.service-card {
  background: white;
  border-radius: 12px;
	 padding  :    2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img    {
   width: 100%;
   height: 200px;
    object-fit: cover;
   border-radius: 8px;
   margin-bottom: 1.5rem;
}

.service-card h3 {
   font-size: 1.5rem;
          margin-bottom: 1rem;
  color: #1e293b;
}

.service-card p {
    color: #64748b;
  line-height: 1.6;
}

.cta-section
	{
   padding: 80px 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 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;
}

.btn-cta {
  display: inline-block;
   padding: 15px 30px;
   background: white;
	 color: #4f46e5;
  text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}  

.features-section {
         padding: 80px 0;
    background-color: #f8fafc;
}

.features-section h2 {
    text-align: center;
          font-size: 2.5rem;
  margin-bottom: 3rem;
    color :  #1e293b;
}

.features-grid {
    display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
	   text-align: center;
    padding: 2rem;

}

.feature-number
	{
   display     :        inline-block;
    width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
  border-radius: 50%;
   font-size: 1.5rem;
    font-weight: bold;
    line-height: 60px;
     margin-bottom:  1rem;
}

.feature-item h3 {
      font-size: 1.5rem;
    margin-bottom: 1rem;
	color: #1e293b;

} 

.feature-item p {
   color: #64748b;
}

.contact-section

{

  padding: 80px 0;


}

.contact-section h2 {
  color: #1e293b;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.contact-wrapper {

        display: grid;
  grid-template-columns: 1fr 1fr;
          gap: 4rem;
	}

.contact-info h3 {
  font-size :      1.8rem;
   margin-bottom: 2rem;
  color :   #1e293b;
}



.contact-item {
   margin-bottom: 1.5rem;
}

.contact-item strong {

	   display: block;
     margin-bottom: 0.5rem;
      color: #1e293b;
     }

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 12px;
  border: 2px solid #e2e8f0;
  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     : #667eea;
}

.btn-submit {
  width: 100%;
    padding: 15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
    border: none;
        border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.main-footer {
    color: white;
  padding: 40px 0 20px;
 background-color: #1e293b;
}

.footer-container {

  max-width: 1200px;
	  margin: 0 auto;
		padding: 0 20px;


}

.footer-content {
    display: grid;
  grid-template-columns: 1fr 2fr;
	gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
 width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-section h4 {
	  margin-bottom: 1rem;
    font-size: 1.2rem;
     }

.footer-section ul
	{
	list-style     :   none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
} 

.footer-section a {
   color: #cbd5e1;
  text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
	color: white;
}

.footer-bottom {

   border-top    :    1px solid #334155;
    padding-top: 20px;
  text-align: center;
   color: #94a3b8;


}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}.page-header {


    margin-top: 80px;
 padding: 60px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
   color: white;
        text-align: center;


}

.page-header h1
	{
   font-size: 3rem;
   margin-bottom  :   1rem;
}

.page-header p


{
   font-size: 1.2rem;
               opacity: 0.9;
}

.company-story {
  padding: 80px 0;
    background-color: #f8fafc;
}

.story-grid {
   display:grid;
    grid-template-columns: 1fr 1fr;
       gap: 4rem;
    align-items: center;
}

.story-content h2 {
   font-size: 2.5rem;
  color :  #1e293b;
   margin-bottom: 2rem;
}

.story-content p {
          font-size: 1.1rem;

	   color: #64748b;

	  margin-bottom    : 1.5rem;

	  line-height: 1.7;
}

.story-image img {
  width: 100%;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-section {
  padding    : 80px 0;

}

.mission-content h2 {
    text-align: center;
    font-size: 2.5rem;
  margin-bottom: 3rem;
               color: #1e293b;
}

.mission-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem; 
	
}

.mission-item {
   background: white;
	padding: 2rem;
	border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.mission-item h3 {
    font-size :        1.5rem;

    margin-bottom: 1rem;

  color: #1e293b;
}

.mission-item p {
  color: #64748b;
  line-height: 1.6;
}

.team-expertise {
    padding: 80px 0; 
    background-color: #f8fafc;
}

.team-expertise h2 {
   text-align   :center;
  font-size: 2.5rem;
               margin-bottom: 3rem;
  color: #1e293b;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
}

.expertise-card {
  background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.expertise-card:hover {

  transform: translateY(-5px);

}

.expertise-card img {
          width: 100%;
    height: 200px;
    object-fit: cover;


}

.expertise-content {

	   padding: 1.5rem; 
	
     }

.expertise-content h3 {
    font-size: 1.3rem;
	margin-bottom: 1rem;
   color: #1e293b;
}

.expertise-content p {
    color: #64748b;
   line-height: 1.6;


}

.values-section {
               padding: 80px 0;
}

.values-section h2 {
    text-align     :center;
   font-size  :      2.5rem;
  margin-bottom: 3rem;
   color: #1e293b;
}

.values-content {
    max-width: 800px;
	   margin: 0 auto; 
	
}

.value-item {
   display: flex;
  align-items: flex-start;
   margin-bottom: 3rem;
  gap: 2rem;
}

.value-number {
   flex-shrink: 0;
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
  display:       flex;
  align-items: center;
	justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.value-text h3 {
  font-size: 1.5rem;
        margin-bottom: 0.5rem;
  color: #1e293b;
}

.value-text p {
   color: #64748b;
  line-height :       1.6;
}

.experience-section {
    padding     :        80px 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
                    color: white;


} 

.experience-stats {

	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   text-align: center;




}

.stat-item {
   padding    :   2rem;
}

.stat-number {
        font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
                  font-size: 1.1rem; 
	   opacity: 0.9;
	
}

.approach-section {
    padding: 80px 0;
   background-color: #f8fafc;
}

.approach-section h2 {
      text-align: center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #1e293b;
	}

.approach-content 
 {
   max-width    : 800px;
  margin: 0 auto;
  text-align  :   center;
}

.approach-content p {
    font-size: 1.1rem;
  margin-bottom: 1.5rem;
    color: #64748b;
    line-height: 1.7;

}

.thankyou-section {
    margin-top: 80px;
   padding: 80px 0;
  background-color: #f8fafc;
    min-height: 60vh;
}

.thankyou-content {
	max-width: 800px;
   margin: 0 auto;
	text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius  : 50%;
    display: inline-flex;
  align-items: center;
    justify-content: center;
       animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.checkmark {

  width: 30px;
       height:     15px;
  border-left: 4px solid white;
   border-bottom:4px solid white;
  transform: rotate(-45deg);
  animation: checkmarkDraw 0.4s ease-out 0.3s both;}@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 30px; height: 15px; }
}.thankyou-content h1 {
	    font-size: 2.5rem;
         margin-bottom: 1rem;
    color: #1e293b;}

.thankyou-message {
    font-size: 1.2rem;
        margin-bottom: 3rem;
   color:      #64748b;
}

.next-steps {
      margin-bottom: 3rem;
  text-align: left;
}

.next-steps h3  {
	 text-align: center;
   font-size: 2rem;
  margin-bottom: 2rem;
    color: #1e293b;
	}

.steps-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
   margin-bottom: 2rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
    background: white;
  padding: 1.5rem;
    border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
	flex-shrink: 0;
   width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
  display: flex;
   align-items : center;
    justify-content: center;
    font-weight: bold;


}

.step-text h4 {
  margin-bottom: 0.5rem;
   font-size: 1.2rem;
  color: #1e293b;
}

.step-text p {
         color: #64748b;
   font-size: 0.95rem;
      line-height: 1.5;
}

.contact-reminder {

		 background: white;
    padding   :        2rem;
  border-radius: 12px;
    margin-bottom: 3rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-reminder h3 {
    font-size   :   1.5rem;
    margin-bottom  :  1rem;
   color: #1e293b;
}

.contact-reminder p		{
	color: #64748b;
    margin-bottom    :  0.5rem;
}

.phone-number {
   font-size: 1.3rem; 
    font-weight: bold; 
    color: #4f46e5 !important;
}  

.thankyou-actions {
  display: flex;
  gap:       1rem;
  justify-content: center;
  flex-wrap: wrap;


}

.thankyou-image {
   margin-top: 3rem;
    text-align :       center;
}

.thankyou-image img 
 {

   max-width: 600px;
   width   :      100%;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1); 
	


} 

.additional-resources {
  padding:  60px 0;
    background: white;
}

.additional-resources h2 {
    text-align: center;
  font-size: 2rem;
    margin-bottom: 1rem;
   color     :      #1e293b;
}

.additional-resources > .container > p {
   text-align: center;
         font-size: 1.1rem;
	 color: #64748b;
	margin-bottom: 3rem;
       max-width: 600px;
   margin-left: auto;
   margin-right: auto;
}

.resources-grid {
    display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.resource-item {
  text-align: center;
   padding: 1.5rem;
  background: #f8fafc;
   border-radius: 8px;
}

.resource-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
	color: #1e293b;
}

.resource-item p {
  color: #64748b;
    line-height: 1.5;
}@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 40px 0;
    }
    
    .company-story,
    .mission-section,
    .team-expertise,
    .values-section,
    .experience-section,
    .approach-section {
        padding: 60px 0;
    }
    
    .thankyou-section {
        padding: 60px 0;
    }
}.cookies-content,
.privacy-content {
    max-width: 800px;
    margin:       7% auto;
    padding : 40px 0;
}

.cookies-content h2,
.privacy-content h2 {
   font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.cookies-content h3,
.privacy-content h3 {
  font-size: 1.5rem;
    margin-top     :2rem;
  margin-bottom: 1rem;
 color: #1e293b;
}

.cookies-content p,
.privacy-content p {

    font-size: 1.1rem;
   margin-bottom: 1.5rem;
   color   :       #64748b;
    line-height: 1.7;


}

.cookies-content ul,
.privacy-content ul {
  margin-left: 2rem;
   list-style-type: disc;
   margin-bottom     :    1.5rem;
}

.cookies-content ul li,
.privacy-content ul li {
    font-size: 1.1rem;
    color    :   #64748b;
  line-height: 1.7;
	 margin-bottom: 0.5rem;
}