* {
  margin  :      0;
     padding   :  0;
   box-sizing: border-box;
}

:root {
    --color-primary: #2d3e50;
    --color-accent: #3498db;
    --color-accent-light: #ecf0f1;
    --color-text-dark: #1a1a1a;
    --color-text-light: #666666;
    --color-border: #e8e8e8;
    --color-bg: #fafafa;
}
/* Minified version */

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--color-text-dark);
  background-color: var(--color-bg);
   line-height: 1.6;
}

.navbar {
    position: sticky;
    top: 0;
  background-color :        white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 100;
  padding: 1rem 0;
}

.nav-container {
    display: flex;
     justify-content: space-between;
   align-items: center;
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

.nav-logo img {
           height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
	}

.nav-menu {
    display: flex;
	 gap: 2rem;
    list-style: none;
}

.nav-link {
	 text-decoration: none;
  color: var(--color-text-dark);
    font-weight: 500;
  transition: color 0.3s ease;
    font-size: 0.95rem;
}
	/* Custom modifications */

.nav-link:hover {


  color: var(--color-accent);


}

.nav-toggle {
   display: none;
    flex-direction: column;
      cursor :   pointer;
}  

.hamburger


{

		 width :     25px;
    height: 3px;
  background-color: var(--color-text-dark);
 margin: 4px 0;
         border-radius: 2px;
  transition: all 0.3s ease;
	}

.hero {
      display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
       max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 2rem; 
	
}

.hero-content h1 {
	   font-size: 2.8rem;
    font-weight: 700;
  color: var(--color-primary);
	margin-bottom: 1.5rem;
   line-height: 1.2;
	}

.hero-content p {
    font-size     :   1.1rem;
  color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}
/* Auto-generated CSS */

	/* Experimental feature */

.cta-button {
  display: inline-block;
  background-color: var(--color-accent);
                    color: white;
   padding: 0.9rem 2rem;
   text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
   border: none;
   cursor: pointer;
  font-size     :     1rem;
}

.cta-button:hover  
  {
    background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3); 
	
     }

/* Temporary fix */



.hero-visual {
	position: relative;
}

.hero-visual img {
    width: 100%;
               height    :       auto;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.services-preview {
  max-width     :1200px; 
    margin: 0 auto; 
    padding: 4rem 2rem;
}

.services-preview h2 {
    font-size: 2.2rem;
  color: var(--color-primary);
   text-align    :center;
    margin-bottom: 3rem;
	font-weight: 700;
}

.services-grid   {
    display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: white;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  border: 1px solid var(--color-border);
}  

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);


} 

.service-card img {
  width: 100%; 
	   height :       200px; 
	  object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
  color: var(--color-primary);
   padding: 1.5rem 1.5rem 0.5rem;
       font-weight: 600;
}
/* Production ready */

/* Development only */
.service-card p {
  color: var(--color-text-light);
   padding: 0 1.5rem 1.5rem;
   font-size: 0.95rem;
	 line-height:  1.6;
}

.webinar-section {
  background-color: var(--color-accent-light);
   padding: 4rem 2rem;
  margin: 3rem 0;
}

.webinar-section h2
{
   font-size: 2.2rem;
  color: var(--color-primary);
    margin-bottom: 2rem;
    text-align: center;
         font-weight: 700;


}

.webinar-content   {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.webinar-text p {
   font-size :1.05rem;
  color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height  :   1.8;
}
	/* Typography */
.benefits-list {
   list-style: none;
}

.benefits-list li {
   padding: 0.8rem 0 0.8rem 2rem;
  color: var(--color-text-dark);
         position: relative;
  font-size: 1rem;
}

/* Development only */

.benefits-list li::before {
  content: "→";
               position: absolute;
   left    :     0;
  color: var(--color-accent);
    font-weight :      bold;
			font-size: 1.2rem; 
	
}

.webinar-image img {
    width: 100%;

  height: auto;

   border-radius    :        10px;

  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* TODO: optimize for mobile */

.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, #34495e 100%);
  padding: 3rem 2rem;
  margin: 3rem 0;

}

.cta-box {


   text-align   :   center;
  margin: 0 auto;
    color: white;
          max-width: 600px;

}

.cta-box h2 {
	font-size: 2rem;
  margin-bottom: 1rem;
   font-weight    :       700;
}

.cta-box p {
   font-size:    1.1rem; 
		margin-bottom: 2rem; 
	  line-height: 1.8; 
	  opacity: 0.95;

}

.cta-button-alt  
  {
    background-color: white;
  color: var(--color-accent);
}

.cta-button-alt:hover {
  background-color: var(--color-accent-light);
}

.contact-section {
      max-width: 1200px;
    margin: 0 auto;
	padding: 4rem 2rem;
}

.contact-section h2 {
                       font-size: 2.2rem;
  color: var(--color-primary);
    text-align: center;
   margin-bottom: 3rem;
    font-weight: 700; 



} 

.contact-container {
  display   :        grid;
  grid-template-columns: 1fr 1fr;
		gap: 3rem;
}

.contact-info h3 {
  font-size: 1.4rem;
  color: var(--color-primary);
   margin-bottom: 1.5rem;
  font-weight: 600;
}



.contact-info p {
  font-size: 1rem;
  color: var(--color-text-light);
  margin-bottom   :1rem;
    line-height :   1.8;
}

.contact-map-text


{
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--color-accent-light);
   border-radius  :      8px;
  border-left: 4px solid var(--color-accent);
}
	/* Build system output */

.contact-map-text p {
  color: var(--color-text-dark);
	margin-bottom: 0;
}

.contact-form {
                    display: flex;
  flex-direction: column;
   gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.9rem;
  border: 1px solid var(--color-border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
  color: var(--color-text-dark);
 transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline     :none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
	  background-color: var(--color-accent);
	   color    :  white;
		 padding: 1rem;
	   border: none;
		 border-radius: 6px;
	    font-size: 1rem;
	  font-weight: 600;
	   cursor: pointer;
	   transition: all 0.3s ease;
	}

.submit-button:hover  
  {
    background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.footer {

  background-color: var(--color-primary);
  color:  #ecf0f1;
   padding: 3rem 2rem 1rem;
   margin-top: 4rem;
}  

.footer-container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap :      2rem;
          max-width: 1200px;
  margin :0 auto 2rem;
}

.footer-section h4 {

	   font-size: 1.1rem;
	color: white;
   margin-bottom: 1rem;
        font-weight: 600;

}

.footer-section img {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-section ul {
  list-style: none;
}  

.footer-section ul li {
               margin-bottom: 0.8rem;
}
/* FIXME: IE11 compatibility */

.footer-section a{
   color     :      #ecf0f1;
   text-decoration: none;
	 transition: color 0.3s ease;
   font-size: 0.95rem;

}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-section p {
    font-size: 0.95rem;
	line-height: 1.6;
  margin-bottom  :      0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top     :1.5rem;
  border-top: 1px solid rgba(236, 240, 241, 0.1);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-preview {
        padding: 2rem 1.5rem;
    }

    .services-preview h2 {
        font-size: 1.8rem;
    }

    .webinar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .webinar-section {
        padding: 2rem 1.5rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services-preview h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }

    .service-card img {
        height: 150px;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        font-size: 16px;
    }
}.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;
    }
}.services-hero


{
  background: linear-gradient(135deg, #2d3e50 0%, #34495e 100%); 
	  color: white; 
		padding :    4rem 2rem; 
	    text-align: center; 
	    margin-bottom: 3rem;
}

.services-hero h1 {
	font-weight: 700;
	 font-size: 2.5rem;
      margin-bottom: 1rem;
}

.services-hero p {
   font-size: 1.2rem;
    line-height:    1.8;
    opacity: 0.95;
 max-width: 600px;
  margin: 0 auto;

}

.services-container {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.service-detailed-card {
  background-color: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
   margin-bottom: 3rem;
   transition: all 0.3s ease;
   border: 1px solid #e8e8e8;
}  

.service-detailed-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.service-header {
	  overflow: hidden;
  max-height   :     300px;

	}



.service-header img {
     width: 100%;
  height: 300px;
   object-fit: cover;
   transition: transform 0.3s ease;
}

.service-detailed-card:hover .service-header img {
  transform: scale(1.05); 
	
}

.service-body {
      padding:2.5rem;
}

.service-body h2{
  font-size: 1.8rem;
     color: #2d3e50;
   	margin-bottom  :      1rem;
                       font-weight   :  700;
}

.service-intro {
  font-size: 1.1rem;

	   color     :   #666666;

	   margin-bottom: 2rem;

	   line-height: 1.8;
}

.service-details {
  background-color: #fafafa;

	   padding: 2rem;

	  border-radius     :      8px;

	   border-left: 4px solid #3498db;


}

.service-details h3 {
   font-size: 1.2rem;

	   color: #2d3e50;

	    margin-bottom: 1rem;

	  font-weight: 600;
}

.service-details ul {
	list-style  :   none;
   margin-bottom: 1.5rem;
}

.service-details li {
  padding   :   0.7rem 0 0.7rem 2rem; 
	 color: #666666; 
	position: relative; 
  font-size: 0.95rem;
}

.service-details li::before {
	left: 0;
	font-weight: bold;
   font-size: 1.1rem;
   position: absolute;
  content: "✓";
   color     :       #3498db;
}

.service-benefit  {
  background-color: #ecf0f1;
   padding: 1.2rem;
   border-radius: 6px;
   color: #2d3e50;
  margin: 0;
	font-weight: 500;
   font-style: italic;}



.additional-services {
   background-color: #ecf0f1;
   margin: 3rem 0;
    padding: 4rem 2rem;
}

.additional-services h2 {
   font-size: 2.2rem;
	 color: #2d3e50;
  text-align: center;
    margin-bottom   : 3rem;
   font-weight: 700;
}

.additional-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 2rem;
    max-width: 1200px;
               margin: 0 auto;
}

.additional-card {
   background-color: white;
    padding: 2rem;
       border-radius     :10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
    border   :    1px solid #e8e8e8;
}

.additional-card:hover  
  {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.additional-card h3 {
   font-size    :  1.3rem;
  color: #2d3e50;
    margin-bottom: 1rem;
	font-weight: 600;
}

.additional-card p {

	   color: #666666;
    font-size: 0.95rem;
    line-height     : 1.7;}

.pricing-section {
   max-width: 1200px;

    margin: 3rem auto;

  padding: 0 2rem;


}

.pricing-section h2 {
  font-size: 2.2rem;
  color: #2d3e50;
    text-align: center;
  margin-bottom: 3rem;
    font-weight: 700;
}

.pricing-cards {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card 
 {
   background-color: white;
 border: 2px solid #e8e8e8;
    border-radius: 10px;
   padding: 2.5rem;
  text-align: center;
   transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: #3498db;
  box-shadow: 0 10px 35px rgba(52, 152, 219, 0.15);
}

.pricing-card.featured {
     border-color: #3498db; 
	  background: linear-gradient(135deg, #ecf0f1 0%, white 100%); 
	  transform: scale(1.05); 
	  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2); 
	
}

.pricing-card h3     {
   font-size: 1.5rem;
   color: #2d3e50;
	 margin-bottom: 1rem;
    font-weight: 700;
}

.pricing-card .price {
 font-size: 2rem;
  color: #3498db;
   font-weight: 700;
    margin-bottom    :      0.5rem;
}

.pricing-card .pricing-desc {
  line-height: 1.6;
   	margin-bottom: 2rem;
      color: #666666;
       font-size: 0.95rem;
	}

.pricing-card ul {
 list-style: none;
   text-align: left;
       margin: 2rem 0;
}

.pricing-card li

{

     padding: 0.8rem 0;
	color: #666666;
  border-bottom: 1px solid #e8e8e8;
    font-size: 0.9rem;
     }

.pricing-card li:last-child {
   border-bottom: none;
}  

.cta-services {
  background-color: #2d3e50; 
    color :      white; 
    text-align    :      center; 
   padding: 3rem 2rem; 
    margin: 3rem 0; 
   border-radius: 10px; 
     max-width: 1200px; 
  margin-left: auto; 
    margin-right: auto;
}

.cta-services h2 {
   font-size: 2rem;
   margin-bottom: 1rem;
    font-weight: 700;
}

.cta-services p {
  font-size: 1.1rem;
  line-height: 1.8;
    opacity: 0.95;
   margin-bottom: 2rem;
}

.thankyou-container {
   max-width: 700px;
    margin: 3rem auto;
  padding: 0 2rem;
}

.thankyou-content {
    background-color: white;
	 padding: 3rem;
  border-radius :   12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid #e8e8e8;
  text-align: center;
}


.success-icon {
   width: 80px;
   height: 80px;
    margin: 0 auto 2rem;
}

.success-icon svg {

	    width: 100%;

	  height: 100%;

}

.thankyou-content h1 {
    font-size: 2rem;
	color: #2d3e50;
       margin-bottom: 1rem;
    font-weight: 700;
}

.main-message {
     font-size: 1.2rem;
  color: #666666;
	 margin-bottom: 2rem;
   line-height: 1.8;
}

.thankyou-details {

	    background-color: #ecf0f1;
  padding  :2rem;
   border-radius     :   8px;
   margin: 2rem 0;
     text-align     :  left;}

.thankyou-details p {
   color: #666666;
   margin-bottom: 1rem;
    font-size: 1rem;
   line-height  :        1.8;


}

.thankyou-details strong     {
  color: #2d3e50;
    font-weight: 600;
}

.info-highlight {
	 font-size: 1.1rem;
		color    :      #3498db;
  font-weight :600;
   padding: 1rem;
   background-color    : white;
  border-radius: 6px;
  border:       2px solid #3498db;
}

.next-steps  {
    background-color: #f0f8ff;
    padding: 2rem;
   border-radius: 8px;
   margin: 2rem 0;
   text-align  :  left;
	 border-left   :     4px solid #3498db;
}

.next-steps h3 {
  font-weight   :  600;
    font-size: 1.2rem;
   margin-bottom   :        1rem;
 color: #2d3e50;
}

.next-steps ol {
    margin-left: 1.5rem;
		 color     : #666666;}

.next-steps li {
  margin-bottom: 0.8rem;
   font-size: 0.95rem;
    line-height: 1.6;
     }

.action-buttons {
    display: flex;
	 gap: 1rem;
	 margin: 2rem 0;
          flex-wrap: wrap;
  justify-content: center;
}

.return-button,
.explore-button {
    flex: 1;
  min-width: 200px;
   -webkit-transition: all 0.3s ease;
    padding: 1rem;
   border-radius: 6px;
   text-decoration: none;
    font-weight: 600;
	 -moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
  text-align: center;
	
}

.return-button {
    background-color: #3498db;
    color :      white;
}

.return-button:hover {
	 background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.explore-button {
  background-color: #ecf0f1;
  color: #2d3e50;
    border   :   2px solid #3498db;
     }

.explore-button:hover {
  background-color: #3498db;
    color: white;
  transform: translateY(-2px);
}

.contact-alternative


{

  color: #666666;
  font-size: 0.95rem;
    margin-top: 2rem;
}

.related-services


{
  padding: 0 2rem;
   max-width: 1200px;
    margin: 3rem auto;
} 

.related-services h2 {


  font-size    :  2rem;
   color: #2d3e50;
  text-align  :  center;
  margin-bottom: 2rem;
    font-weight: 700;}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-body {
        padding: 1.5rem;
    }

    .service-body h2 {
        font-size: 1.4rem;
    }

    .service-header {
        max-height: 200px;
    }

    .service-header img {
        height: 200px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-content {
        padding: 2rem;
    }

    .action-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .return-button,
    .explore-button {
        min-width: auto;
    }

    .pricing-section h2,
    .additional-services h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .service-body {
        padding: 1rem;
    }

    .service-details {
        padding: 1rem;
    }

    .thankyou-details {
        padding: 1.5rem;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .cta-services {
        padding: 2rem 1rem;
    }

    .cta-services h2 {
        font-size: 1.4rem;
    }
}