*  
  {
  padding:  0;
  box-sizing: border-box;
   margin    :   0;
}

body {

  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
	line-height  :        1.6;
    color   :      #2d3436;
   background-color: #fdfdfd;

}

.content-wrapper {
   max-width: 1200px;
    margin: 0 auto;
	padding: 0 20px;
}

.navigation-wrapper {
    background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: fixed;
                    top: 0;
    width:      100%;
  z-index: 1000;
     transition: all 0.3s ease;

}

.nav-container{
   max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
    display: flex;
   justify-content  :   space-between;
  align-items: center;
   height   :   70px;
}

.brand-section .logo-img {
   height: 45px;
	 width: auto;
}

.nav-links


{
   display: flex;
   list-style  :        none;
  gap: 35px;
}

.nav-links li a {
   text-decoration: none;
   color: #2d3436;
    font-weight     :     500;
    font-size: 16px;
   transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
  color     :  #0984e3;
}

.nav-links li a::after
	{
  content: '';
  position: absolute;
   width   :       0;
	height: 2px;
	 bottom: -5px;
   left: 0;
   background-color: #0984e3;
  transition: width 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.burger-menu {
   display: none;
    flex-direction: column;
    cursor: pointer;
               gap: 4px;}


.burger-menu span {
  width  :     25px;
    height :3px;
    background-color: #2d3436;
     transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {

	  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2)  
  {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero-segment {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-segment .content-wrapper {
  display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 60px;
    align-items:    center;
     }

.hero-text h1 {
  font-size: 48px;
	        font-weight: 700;
			 color: #2d3436;
	  margin-bottom: 24px;
	    line-height: 1.2;

}

.hero-text p {
      color: #636e72;
	line-height     : 1.7;
  margin-bottom: 35px;
                    font-size: 18px;
	}

.cta-buttons {
  display: flex;
   gap: 20px;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   font-weight: 600;
        text-decoration: none;
   padding: 15px 30px;
   border-radius: 8px;
  text-align: center;
  font-size: 16px;
	 transition   :       all 0.3s ease;
   display: inline-block;


}

.primary-btn {
   background-color: #0984e3;
  color: #ffffff;
}

.primary-btn:hover {
	    background-color: #074a8d;
  transform: translateY(-2px);
	}

.secondary-btn {
  background-color: transparent;
    color: #0984e3;
  border: 2px solid #0984e3;
}

.secondary-btn:hover {
  background-color: #0984e3;
       color: #ffffff;
}

.hero-image img {
    width: 100%;

    height: auto;

    border-radius: 15px;

  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-overview {
   padding: 90px 0;
   background-color: #ffffff;
}

.services-overview h2 {
    text-align: center;
  font-size: 42px;
	 font-weight: 700;
                    color: #2d3436;
    margin-bottom: 60px; 
	
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-item {
    background: #f8f9fa;
    padding: 35px;
   border-radius: 12px;
   text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}  

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.service-item img {
   width: 100%;
    height    :       200px;
	object-fit: cover;
  border-radius: 8px;
  -moz-border-radius: 8px;
    margin-bottom: 25px;
}

.service-item h3 {
    font-size: 24px;
   font-weight: 600;
    color: #2d3436;
  margin-bottom: 18px;
}

.service-item p {
  color  :#636e72;
  line-height: 1.6;
   font-size: 16px;
}

.expertise-showcase {
   padding: 90px 0;
  background: linear-gradient(45deg, #f1f2f6 0%, #ddd6fe 100%);
}

.expertise-showcase .content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 70px;
   align-items: center;
}

.expertise-content h2 {
  font-size: 38px;
  font-weight     :     700;
  color: #2d3436;
  margin-bottom: 28px;
}

.expertise-content p {

	   font-size: 17px;
	 margin-bottom: 40px;
    color: #636e72;
   line-height: 1.7;}

.expertise-points {
  display: flex;
    flex-direction: column;
     gap: 30px;

}

.point-item h4 {

		font-size: 20px;
    font-weight: 600;
                    color: #2d3436;
  margin-bottom: 12px;


}

.point-item p {
    color: #636e72;
	line-height: 1.6;
   font-size: 16px;
}

.expertise-visual img
{
   width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.cta-segment {

  padding: 80px 0;

	  background: linear-gradient(135deg, #0984e3 0%, #6c5ce7 100%);

	  text-align: center;
}

.cta-content h2 {

               margin-bottom   :       20px;

	    font-size: 36px;

	  color: #ffffff;

	  font-weight: 700;
	}

.cta-content p 
 {
   font-size: 18px;
   color: #ffffff;
    margin-bottom: 35px;
  opacity   :      0.9;
   max-width:600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
         display: inline-block;
  padding: 18px 40px;
    background-color: #ffffff;
  color: #0984e3;
          text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
	 font-size: 18px;
  transition: all 0.3s ease;
}

.cta-button:hover  
  {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
	
}

.contact-section     {
      padding :       90px 0;
   background-color: #f8f9fa;
}

.contact-section h2		{
    text-align: center;
    font-size: 42px;
   font-weight: 700;
   color: #2d3436;
    margin-bottom: 60px;
}

.contact-layout {
   display   : grid;
   grid-template-columns: 1fr 2fr;
  gap: 60px;
   align-items: start;
}

.contact-info h3		{
   font-size: 28px;
	font-weight: 600;
    color: #2d3436;
    margin-bottom: 25px;}

.contact-details p {
    color: #636e72;
          margin-bottom: 20px;
    line-height: 1.6;
   font-size: 16px;
}

.contact-form {


    background: #ffffff;
	padding     :  40px;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-row {
	 display: grid;
 grid-template-columns: 1fr 1fr;
        gap: 20px;
   margin-bottom:   20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea
{
   padding: 15px;
                    border: 2px solid #e9ecef;
   border-radius: 8px;
   font-size: 16px;
    transition: border-color 0.3s ease;
   font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
   border-color: #0984e3;

}

.contact-form textarea {
               width :   100%;
  resize     :        vertical;
	 margin-bottom  :     25px;
	
}

.submit-btn {
               background-color: #0984e3;
        color: #ffffff;
  padding: 15px 35px;
    border: none;
   border-radius: 8px;
    font-size: 16px;
   font-weight:   600;
  cursor     :    pointer;
    transition: all 0.3s ease;
     width    :       100%;
}

.submit-btn:hover{
  background-color: #074a8d;
  transform: translateY(-2px);
}

.footer-section {
  background-color: #2d3436;

  color   :      #ffffff;

       padding: 60px 0 30px;
}

.footer-content     {
  display: grid;
   grid-template-columns: 1fr 2fr;
    margin-bottom: 40px;
	 gap: 50px;
}

.footer-logo {
	 height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links    {
 display: grid;
	  grid-template-columns: repeat(3, 1fr);
	  gap: 40px;
}



.link-group h4 {
   font-size: 18px;
   font-weight: 600;
    margin-bottom: 20px;
      color: #ffffff;
}

.link-group ul {
	 list-style: none;
}

.link-group ul li {
  margin-bottom: 10px; 
	
}

.link-group ul li a {
  color: #b2bec3;
  text-decoration: none;
   transition  :   color 0.3s ease;
}

.link-group ul li a:hover {
   color    :#ffffff;
}

.link-group p {


   color: #b2bec3;
    line-height: 1.6;
          margin-bottom: 8px;
     }

.footer-bottom {
  text-align: center;
  padding-top: 30px;
   border-top: 1px solid #636e72;
}

.footer-bottom p {
    font-size: 14px;
  color: #b2bec3; 
	
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-segment .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 36px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-showcase .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 15px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 32px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .service-item {
        padding: 25px;
    }
}.about-hero {
   padding: 120px 0 70px;
  background: linear-gradient(45deg, #f1f2f6 0%, #e9ecef 100%);
   text-align: center;
}

.about-intro h1 {
         font-size: 52px;
	font-weight: 700;
   color: #2d3436;
   margin-bottom: 25px;
}

.lead-text {
   font-size: 20px;
  color: #636e72;
   max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.company-story {
    padding: 85px 0;
   background-color: #ffffff;
}

.story-layout {
    align-items: center;
    grid-template-columns: 1.2fr 1fr;
    display: grid;
  gap: 60px;
}

.story-content h2 {
    font-size  :  40px;
  font-weight: 700;
   color: #2d3436;
   margin-bottom: 30px; 
	
}

.story-content p {
   font-size: 17px;
  color: #636e72;
    margin-bottom: 25px;
  line-height: 1.7;
}

.story-visual img {
	width: 100%;
  height: auto;
    border-radius   :12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.expertise-areas {
  padding: 85px 0;
    background: #f8f9fa;
}

.expertise-areas h2 
 {
   color: #2d3436;

		 text-align: center;

	   font-size:  42px;

	   font-weight: 700;

		margin-bottom: 60px;
}

.expertise-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
     }

.expertise-card {
    background: #ffffff;
	border-radius: 15px;
  overflow: hidden;
   transition     :     transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
} 

.expertise-card:hover {

	  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.expertise-card img {
  width :  100%;
   height: 200px;
    object-fit: cover;
}

.card-content {
  padding: 30px;
}

.card-content h3 {
    font-size: 22px;
                    font-weight     :      600;
  color: #2d3436;
   margin-bottom: 15px;
}

.card-content p {
  color: #636e72;
	line-height: 1.6;
  font-size: 16px;
}

.methodology-section {
	   padding: 85px 0;
	 background-color: #ffffff;
     }

.methodology-text h2  
  {
  font-size: 40px;
   font-weight  :      700;
    color   :    #2d3436;
	margin-bottom: 25px;
}

.methodology-text p {
   font-size: 17px;
	   color: #636e72;
	    margin-bottom     :   40px;
			 line-height: 1.7; 

}



.methodology-steps {
    gap: 30px;
   display: flex;
  flex-direction: column;
}

.step-item	{
  display: flex;
	align-items: flex-start;
  gap: 25px;
}

.step-number  {
	  background: linear-gradient(135deg, #0984e3, #6c5ce7);
   color: #ffffff;
    width: 50px;
   height: 50px;
  border-radius :  50%;
         display    : flex;
	align-items: center;
    justify-content: center;
   font-weight: 700;
   font-size: 18px;
	flex-shrink: 0;
     }

.step-content h4 {
  font-size: 20px;
                    font-weight: 600;
               color: #2d3436;
   margin-bottom: 10px;
}

.step-content p {
         color: #636e72;
       font-size: 16px;
    line-height: 1.6;
}  

.values-section {

	   padding: 85px 0;
  background: linear-gradient(135deg, #ddd6fe 0%, #f1f2f6 100%);}

.values-section h2{
  text-align: center;
   font-size   : 42px;
	font-weight  : 700;
  color    :        #2d3436;
  margin-bottom: 60px;
}

.values-grid

{


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;
     }

.value-item     {

   text-align: center;
  padding: 35px 25px;
  background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
  backdrop-filter: blur(10px);


}



.value-item h3 {
	 font-size: 24px;
   color: #2d3436;
       font-weight: 600;
       margin-bottom  :      18px;
}

.value-item p {
    color:     #636e72;
       line-height: 1.6;
    font-size  :       16px;
}

.why-choose-us {
   padding :      85px 0;
   background-color: #ffffff;
}

.choose-content h2 {


    font-size: 40px;
  font-weight: 700;
    color:        #2d3436;
	 margin-bottom: 40px;

}

.benefits-list {
  list-style: none;
   padding: 0;
    margin-bottom: 40px;
}

.benefits-list li {
    position: relative;
    padding: 15px 0 15px 35px;
    font-size:  17px;
   color: #636e72;
   line-height: 1.6;
          border-bottom: 1px solid #e9ecef;
}

.benefits-list li:before		{
  content: "✓";
	position   :  absolute;
    left   :       0;
   top: 15px;
   color: #0984e3;
   font-weight: bold;
    font-size: 18px;
}

.benefits-list li:last-child {
     border-bottom: none; 


}

.back-home-btn {
    display: inline-block;
    border-radius: 8px;
  padding: 15px 30px;
   color: #ffffff;
    text-decoration: none;
   background-color: #0984e3;
   font-weight: 600;
     font-size: 16px;
	transition : all 0.3s ease;
}

.back-home-btn:hover

{
  background-color: #074a8d;
  transform: translateY(-2px);
}

.thankyou-hero {
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ddd6fe 100%);
   text-align: center;
}

.thankyou-content {
   max-width: 600px;
   margin: 0 auto;
}

.success-icon {
    margin-bottom: 40px;
}

.checkmark-circle {
      width: 100px;
    height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00b894, #6c5ce7);
	 margin: 0 auto;
  position: relative;
  animation: scaleIn 0.6s ease-out;
}

.checkmark {
    width: 30px;
  height    :        15px;
       border: 4px solid #ffffff;
    border-top: none;
  border-right: none;
  transform: rotate(-45deg);
  position     : absolute;
    top: 50%;
  left: 50%;
   margin-top  : -12px;
   margin-left: -15px;
	 animation: checkmarkDraw 0.4s ease-out 0.3s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 30px; height: 15px; }
}.thankyou-content h1


{
   font-size: 48px;
         font-weight: 700;
  color : #2d3436;
  margin-bottom: 25px;
}

.lead-message {
    font-size: 18px;
   color: #636e72;
  line-height: 1.7;
}

.next-steps {
  background-color: #ffffff;
   padding: 80px 0;
}

.next-steps h2 {
    text-align: center;
  font-size: 40px;
   font-weight:      700;
    color: #2d3436;
      margin-bottom: 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.step-card {
    padding    :       40px 30px;
   background: #f8f9fa;
  transition: transform 0.3s ease;
  border-radius: 15px;
   text-align: center;
}

.step-card:hover {
  transform: translateY(-5px);
}

.step-icon {
   margin-bottom: 25px;
}

.step-num	{

    display: inline-block;
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #0984e3, #6c5ce7);
    color: #ffffff;
   border-radius: 50%;
    font-size: 24px;
	font-weight: 700;
   line-height: 60px;

}

.step-card h3 {
       font-size     :        24px;
    font-weight: 600;
   color: #2d3436;
    margin-bottom: 18px;


}

.step-card p {
  color: #636e72;
  line-height: 1.6;
    font-size: 16px;
}

.while-waiting {
  padding :        80px 0;
    background: #f8f9fa;
}

.waiting-layout {

    align-items :        center;
  grid-template-columns     :    1fr 1fr;
    display: grid;
    gap   :        60px;

}

.waiting-content h2 {
	font-size  :        38px;
	margin-bottom: 25px;
     font-weight: 700;
    color: #2d3436;
}

.waiting-content p {
   font-size    :      17px;
     color: #636e72;
  margin-bottom: 35px;
      line-height  :      1.7;
}

.action-buttons {
  display: flex;
    gap: 20px;
  flex-wrap: wrap;
}

.primary-action, .secondary-action {
  display    :     inline-block;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
   font-size: 16px;
   transition: all 0.3s ease;
}

.primary-action		{
  color: #ffffff;
         background-color: #0984e3;


}

.primary-action:hover {
   background-color: #074a8d;
	  transform: translateY(-2px);
}

.secondary-action {
  background-color     :       transparent;
  color: #0984e3;
    border: 2px solid #0984e3;
}



.secondary-action:hover {

 background-color: #0984e3;
    color: #ffffff;
     }

.waiting-visual img {
	 width: 100%;
    height     :     auto;
    border-radius   :       12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-reminder {
    padding: 70px 0;
  background-color   :        #ffffff;
}

.reminder-card {
  background: linear-gradient(135deg, #e9ecef, #f8f9fa);
   padding: 50px;
   border-radius: 15px;
   text-align: center;
      max-width: 800px;
    margin: 0 auto;
}

.reminder-card h3 {
   font-size :28px;
  font-weight: 600;
    color: #2d3436;
       margin-bottom: 20px;
}

.reminder-card p {
   font-size: 17px;
		color  :       #636e72;
   margin-bottom    :        30px;
      line-height: 1.6; 
	
}

.contact-info-quick {
  gap: 40px;
    display:     flex;
  justify-content: center;
  flex-wrap: wrap;
}

.info-item {
   font-size: 16px;
  color: #636e72;
}

.info-item strong {
	color: #2d3436;
}

.commitment-section {
	 padding: 80px 0;
  background: linear-gradient(135deg, #f1f2f6 0%, #ddd6fe 100%);
}

.commitment-content h2 {
	   text-align: center;
    font-weight: 700;
	 margin-bottom: 60px;
  font-size: 40px;
  color: #2d3436;
     }

.commitment-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 35px;
}

.commitment-item     {
   text-align: center;
    padding: 30px 25px;
  background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
  backdrop-filter: blur(5px);
}

.commitment-item h4

{
       font-size :20px;
   font-weight: 600;
  color: #2d3436;
   margin-bottom: 15px;
	}

.commitment-item p {
   color: #636e72;

   line-height   : 1.6;

    font-size  :     16px;
} @media (max-width: 768px) {
    .about-intro h1 {
        font-size: 36px;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        gap: 25px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 36px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .waiting-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .action-buttons {
        justify-content: center;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 20px;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-intro h1 {
        font-size: 28px;
    }
    
    .story-content h2,
    .methodology-text h2,
    .values-section h2,
    .choose-content h2,
    .next-steps h2,
    .commitment-content h2 {
        font-size: 32px;
    }
    
    .expertise-card,
    .step-card,
    .value-item,
    .commitment-item {
        padding: 25px 20px;
    }
    
    .reminder-card {
        padding: 35px 25px;
    }
    
    .thankyou-content h1 {
        font-size: 28px;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .checkmark {
        width: 25px;
        height: 12px;
        margin-top: -10px;
        margin-left: -12px;
    }
    
    .waiting-content h2 {
        font-size: 32px;
    }
}.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;
    }
}