* {
    margin: 0;
  padding: 0;
   box-sizing: border-box;
} 

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --border-color: #e2e8f0;
    --transition: all 0.3s ease;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
     color: var(--text-primary);
          background-color: #ffffff;
   	 line-height: 1.6;
}


.navbar-main {
               background: #ffffff;
  border-bottom: 1px solid var(--border-color);
	 position: sticky;
          top: 0;
    z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.navbar-container {
   max-width: 1200px;
   margin: 0 auto;
  padding: 1rem 2rem;
   display: flex;
	justify-content: space-between;
  align-items :        center;
}

.navbar-logo {
    flex-shrink: 0;
}

.logo-img {
  height: 40px;

	width :     auto;

  object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
   gap: 3rem;
  align-items: center;
}

.nav-menu a {

   text-decoration :       none;
  color: var(--text-primary);
    font-weight   :  500;
               font-size: 0.95rem;
  transition: var(--transition);
   position: relative;

}

.nav-menu a:hover {
  color: var(--primary-color); 
	
}

.nav-menu a::after {
  content: '';
  position:        absolute;
  bottom: -5px;
   left: 0;
  width: 0;
   height: 2px;
  background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.cta-link {
  background: var(--primary-color);
	color: white !important;
    padding: 0.5rem 1.5rem;
  border-radius: 6px;
  transition: var(--transition);
}

.cta-link:hover {
  background: var(--secondary-color);
}

.cta-link::after {
  display: none;
}

.burger-btn {
    display: none;
  background    :none;
  border: none;
		cursor: pointer;
        width: 40px;
               height: 40px;
   align-items: center;
   justify-content: center;
}

.burger-btn img    {
	width:    24px;
   height: 24px;
  stroke: var(--text-primary);
}  

.hero-section {
	    max-width: 1200px;
    margin: 0 auto;
	padding: 4rem 2rem;
         display: grid;
         grid-template-columns: 1fr 1fr;
  gap :    4rem;
   align-items    :        center;

}

.hero-content h1 {
   font-size  :3rem;
	font-weight: 700;
    line-height: 1.2;
	margin-bottom   : 1.5rem;
  color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
    line-height: 1.8;
} 

.hero-buttons {
   display: flex;
  gap: 1rem;
   flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 2rem;
  border  :none;
    border-radius: 8px;
  font-size   : 1rem;
    font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
   text-decoration: none;
          display: inline-block;
   text-align: center;
}

.btn-primary {
  background: var(--primary-color);
    color: white; 

}  

.btn-primary:hover {
     background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);

}

.btn-secondary {

   background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);} 

.btn-secondary:hover {
  background: var(--primary-color);
   color  :  white; 

}

.btn-outline {
    background   :transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
	padding: 0.6rem 1.5rem;
}

.btn-outline:hover		{
  background: var(--primary-color);
	color: white;
}

.btn-cta
{
  background: var(--accent-color);
                    color: white;
  padding   :        1rem 3rem;
  font-size   :     1.1rem;
}

.btn-cta:hover    {
   background: #d97706;
  transform: scale(1.05);}

.btn-submit {
  background: var(--primary-color);
  color: white;
  width: 100%;
    padding: 1rem;
}

.btn-submit:hover
{

	  background: var(--secondary-color);
     }

.hero-image img {
   width: 100%;
	height: auto;
	 border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.features-section {
  background: var(--light-bg);
  padding: 4rem 2rem;
	margin: 2rem 0;
}

.features-header {
	  max-width: 1200px;
  margin: 0 auto 3rem;
    text-align :        center;
}

.features-header h2 {
  margin-bottom: 1rem;
     font-size: 2.5rem;
}

.features-header p {
    font-size: 1.1rem;
  color: var(--text-secondary);
}  

.features-grid {
   max-width: 1200px;
   margin: 0 auto;
  display     :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
} 

.feature-card {

  background: white;
   padding: 2rem;
    border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     }

.feature-card:hover


{
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.feature-icon {
        width: 50px;
		height: 50px;
	   margin-bottom: 1rem;
	    display: flex;
		align-items: center;
	  justify-content: center; 

}

.feature-icon img {
    width  :        40px;
	height: 40px;
  stroke: var(--primary-color);
      fill: none;
}

.feature-card h3 {
    font-size: 1.3rem;
   margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-secondary);
	font-size: 0.95rem;
    line-height: 1.6;
	
}

.services-preview {


   max-width: 1200px;
   margin: 0 auto;
  padding    :     4rem 2rem;
     }

.services-content {
    display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 4rem;
   align-items: center;
} 

.services-img		{
      width: 100%;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);}

.services-text h2
	{
   font-size     :     2.2rem;
   margin-bottom :      1rem;
}

.services-text p {
  color: var(--text-secondary);
    margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.services-list {
  list-style: none;
   margin-bottom: 2rem;
}

.services-list li  
  {
  padding: 0.8rem 0;
    padding-left: 2rem;
  position: relative;
  color: var(--text-secondary);
  line-height: 1.8;
}

.services-list li:before {
  content: '→';
   position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size : 1.2rem;
}

.expertise-section {

  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  padding     :  4rem 2rem;


}

.expertise-header {
  max-width: 1200px;
   margin: 0 auto 3rem;
   text-align: center;

}

.expertise-header h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
}

.expertise-header p {
  color: var(--text-secondary);
   font-size: 1.1rem;
}  

.expertise-grid {
	    max-width: 1200px;
   margin: 0 auto;
 display :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;


}

.expertise-item
	{
   background: white;
    border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition); 
	
}

.expertise-item:hover


{
     transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	}

.expertise-item img {
   width: 100%;
               height: 200px;
    object-fit   :      cover;
}

.expertise-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
       font-size: 1.3rem;
}

.expertise-item p {
	padding: 0.5rem 1.5rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
                    padding: 4rem 2rem;
			text-align:      center;
   color: white;
}

.cta-content h2 {

	  font-size     :     2.5rem;
   margin-bottom: 1rem;
	}

.cta-content p {


   font-size :   1.1rem; 
	   margin-bottom: 2rem; 
	   opacity: 0.95;
     }

.contact-section {
    max-width   :        1200px;
   margin:       0 auto;
    padding: 4rem 2rem;
}

.contact-container {
         max-width: 700px;
  margin: 0 auto;
	}

.contact-section h2 {
   font-size: 2.5rem;
  text-align: center;
   margin-bottom: 0.5rem;
}

.contact-subtitle {
   text-align: center;
  color: var(--text-secondary);
   margin-bottom    :     3rem;
  font-size: 1.05rem;

}

.contact-form {
  background: var(--light-bg);
  padding: 2.5rem;
   border-radius :      12px;
  border: 1px solid var(--border-color);
} 

.form-group {

  margin-bottom: 1.5rem;
}

.form-group label {
               display    :      block;
    margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
         width: 100%;
    padding: 0.75rem;
  border: 1px solid var(--border-color);
   border-radius: 6px;
  font-size: 1rem;
    font-family: inherit;
  transition: var(--transition);
	background :    white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    outline  :        none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical; 
   min-height: 120px;
}



.footer-main {
  background: var(--dark-bg);
    color: white;
   padding    :     3rem 2rem 1rem;
    margin-top: 4rem; 
	
}


.footer-container {
   grid-template-columns: 1fr 3fr;
  align-items: start;
    margin: 0 auto;
    margin-bottom: 2rem;
                    gap    :       3rem;
    max-width: 1200px;
    display: grid;
}

.footer-logo {
          display  : flex;
   align-items: flex-start;}

.footer-logo-img {
   height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}


.footer-content{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 3rem;
}

.footer-section h4 {

	   margin-bottom: 1.5rem;
  font-size: 1.05rem;
 font-weight: 600;
}

.footer-section ul {
    list-style: none;


}

.footer-section ul li
{
	 margin-bottom   :      0.8rem;
}

.footer-section ul a {
  color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
  transition: var(--transition);
                    font-size: 0.95rem;
}

.footer-section ul a:hover {
  color  :      white;
}

.footer-section p{
  color: rgba(255, 255, 255, 0.7);
   line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom
	{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        width: 100%;
    }

    .burger-btn {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .features-header h2,
    .expertise-header h2,
    .cta-content h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-logo-img {
        height: 40px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}.services-hero   {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
  padding: 5rem 2rem;
	text-align :center;
    margin-bottom: 3rem;
}



.services-hero-content h1   {
   font-size: 3rem;
    margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero-content p {
    font-size: 1.2rem; 
    opacity: 0.95; 
    max-width: 700px; 
   margin   : 0 auto;
}

.services-main {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem 4rem;
}

.services-container {
    display: flex;
  flex-direction: column;
	 gap: 4rem;
}

.service-item-large {
	   display: grid;
     grid-template-columns: 1fr 1fr;
  gap  :  3rem;
	 align-items: center;
  padding: 2.5rem;
  background: var(--light-bg);
      border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);

}

.service-item-large:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.service-item-large:nth-child(even) {
  grid-template-columns: 1fr 1fr;
}

.service-item-large:nth-child(even) .service-item-image {
	  order: -1;
	}

.service-item-image {
	border-radius: 10px;
    overflow: hidden;
}


.service-item-image img  
  {
  width: 100%;
          height: 100%;
  object-fit: cover;
   border-radius: 10px;
    -webkit-border-radius: 10px; 

}

.service-item-content h2    {
     font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-item-content p 
 {
  color: var(--text-secondary);
  font-size: 1rem;
    line-height: 1.8;
  margin-bottom: 1.5rem;


}

.service-features


{
  list-style    :   none;
  margin-bottom  :     2rem;
}

.service-features li {
  padding: 0.6rem 0;
	padding-left: 2rem;
      position: relative;
  color: var(--text-secondary);
     line-height: 1.6;
}

.service-features li:before	{
  content: '✓';
    position: absolute;
    left: 0;
  color: var(--primary-color);
  font-weight   :     bold;
   font-size: 1.2rem;
}

.service-price {
   display: flex;
  align-items: baseline;
    gap: 0.5rem;
    padding: 1.5rem;
	 background: white;
   border-radius: 8px;
  border: 2px solid var(--primary-color);
  width: fit-content;
}

.price-label {
  color: var(--text-secondary);
   font-size: 0.9rem;
}

.price-value {
   font-size: 2rem;
      font-weight: 700;
  color: var(--primary-color);
}

.price-period {
  color: var(--text-secondary);
  font-size: 0.9rem;
	
}

.services-comparison {
	max-width: 1200px;
   margin: 4rem auto;
  padding: 0 2rem; 
	
}

.services-comparison h2 {
  font-size: 2.5rem;
    text-align: center;
       margin-bottom :    3rem;
}

.comparison-table {
     overflow-x: auto;
   border-radius:  10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.comparison-table table {
   background: white;
                    width: 100%;
  border-collapse: collapse;
}

.comparison-table thead {
	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;}

.comparison-table th {

  padding :        1.5rem;
     text-align: left;
               font-weight: 600;
  border-bottom: 2px solid var(--border-color);

}

.comparison-table td {
  padding   :       1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-color); 

}

.comparison-table tbody tr:hover {
  background: var(--light-bg);
}

.comparison-table tbody tr:last-child td {
  border-bottom   :none;
}

.services-faq {
  max-width: 1000px;
               margin: 4rem auto;
   padding: 0 2rem;

}

.services-faq h2 {
     font-size: 2.5rem;
     text-align: center;
   margin-bottom: 3rem;
	}

.faq-container		{
     display: grid;
  gap: 1.5rem;
}

.faq-item {
  background: var(--light-bg);
  padding: 1.5rem;
    border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.faq-item:hover {

  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.1);
}

.faq-item h3
{
  color: var(--text-primary);
	margin-bottom: 0.8rem;
   font-size: 1.1rem;
	
}

.faq-item p {
  color: var(--text-secondary);
    line-height: 1.8;
}

.services-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
  padding: 4rem 2rem;
   text-align  :       center;
   margin: 4rem 0 0;
    border-radius: 12px;
   max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
    margin-bottom: 3rem;
}

.services-cta h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
	
}

.services-cta p
	{
  font-size: 1.1rem;
  margin-bottom    :  2rem;
	 opacity: 0.95;
}

.btn-cta-large {
  background: var(--accent-color);
  color: white;
    padding: 1rem 3rem;
   font-size: 1.1rem;
	border-radius: 8px;
	text-decoration: none;
    display: inline-block;
  transition: var(--transition);
   font-weight: 600;


}

.btn-cta-large:hover {
    background  :    #d97706;
  transform: scale(1.05);
} 

.thankyou-section {
	 max-width: 700px;
	padding     :        2rem;
	 margin   :    3rem auto;
}

.thankyou-container {
  background: var(--light-bg);
	padding: 3rem;
    border-radius: 12px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.thankyou-icon {


   margin-bottom: 2rem;


}

.thankyou-icon img {
   width     :     80px;
  height: 80px;
  stroke: var(--primary-color);
	 fill   :   none;
}

.thankyou-container h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
	
}

.thankyou-subtitle {
   font-size: 1.2rem;
  color: var(--text-secondary);
   margin-bottom    : 2rem;
}

.thankyou-content {
   text-align: left;
  border-radius: 8px;
   padding    :        2rem;
   margin-bottom   :  2rem;
   background: white;
}

.thankyou-content p {
  color: var(--text-secondary);
  line-height: 1.8;
       margin-bottom: 1rem;
}

.thankyou-content strong {
	  color: var(--primary-color);
     }

.thankyou-what-next {

	  background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
  border-left: 4px solid var(--primary-color);
}

.thankyou-what-next h3,
.thankyou-resources h3  
  {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.thankyou-what-next ul {
		list-style : none;
	    padding-left: 0;
}

.thankyou-what-next li {
    padding: 0.5rem 0;
   padding-left: 1.5rem;
  position     :     relative;
  color: var(--text-secondary);
}

.thankyou-what-next li:before {


  content: '→';
    position: absolute;
         left: 0;
  color: var(--primary-color);
   font-weight: bold;} 

.thankyou-resources {
    background: #f0f9ff;
     padding: 1.5rem;
     border-radius     :   8px;
     margin: 1.5rem 0;
}

.thankyou-resources p {
       margin: 0.5rem 0;}

.thankyou-buttons {
	 display: flex;
	gap   :1rem;
   justify-content :    center;
   margin-top: 2rem;
          flex-wrap: wrap;
}

.thankyou-buttons .btn {
   flex: 1;
  min-width: 150px;
}

.thankyou-contact-info	{
  background: white;
  padding: 2rem;
   border-radius: 8px;
  border: 2px solid var(--primary-color);
    margin-top: 2rem;
}

.thankyou-contact-info p {
  color: var(--text-secondary);
    margin: 0.5rem 0; 
	
}

.contact-phone,
.contact-address {
  color: var(--text-primary) !important;
               font-size: 1rem;
}

.contact-phone strong {
  color: var(--primary-color);
	
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-item-large {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service-item-large:nth-child(even) .service-item-image {
        order: 0;
    }

    .service-item-content h2 {
        font-size: 1.5rem;
    }

    .services-comparison h2,
    .services-faq h2,
    .services-cta h2 {
        font-size: 1.8rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .thankyou-buttons .btn {
        width: 100%;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }
}.policy-section {
  padding   :     80px 2rem;
  background: var(--light-bg);
     }

.policy-container {
  max-width   :  800px;
          margin: 0 auto;
   text-align: left;
}

.policy-container h1 {
    font-size: 3rem;
  color: var(--primary-color);
   margin-bottom: 2rem;
   font-weight: 700;
}

.policy-container h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
 font-weight: 600;
  border-bottom: 3px solid var(--primary-color);
   padding-bottom: 0.5rem;
}

.policy-container p {
  color: var(--text-secondary);
   margin-bottom: 1.2rem;
    line-height: 1.8;
     font-size  :        1rem;
}

.policy-container strong {
  color: var(--text-primary);
  font-weight: 600;
}

.policy-container p:first-of-type {
                    font-size:     1.1rem;
   line-height: 1.9;
  margin-bottom: 2rem;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .policy-container p:first-of-type {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}