* {
   margin: 0;
	padding: 0;
   box-sizing :        border-box;
}

:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --highlight-color: #e94560;
    --text-light: #f5f5f5;
    --text-dark: #1a1a2e;
    --border-color: #e0e0e0;
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

html

{
   scroll-behavior  :     smooth;
}

body

{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
    background-color    :    #f9f9f9;
}

.navbar-main
{
  background: var(--primary-color);
	padding: 1rem 0;
   position: sticky;
  top   :    0;
                    z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
	 justify-content: space-between;
   align-items: center;
    margin   :        0 auto;
   max-width: 1200px;
  padding: 0 1.5rem;
    display: flex;
}

.logo-section {
    flex-shrink  :    0;
}

.nav-logo {
  height: 45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
   display: flex;
   list-style: none;
	gap: 3rem;
}  

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
   font-weight :     500;
    transition: color 0.3s ease;
   font-size: 1rem;
}

.nav-links a:hover {
  color: var(--highlight-color);
}

.burger-btn	{
   display: none;
    background: none;
   border: none;
  cursor: pointer;
   padding: 0.5rem;
}

.burger-btn img     {
  width: 28px;
    height: 28px;
  filter: brightness(0) invert(1);
}

.hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding: 5rem 1.5rem;
	display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items :   center;
  max-width    :   1400px;
      margin: 0 auto;
}

.hero-content h1 {
   font-size: 3.2rem;
   margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;

}

.cta-button {
    display: inline-block;
  background: var(--highlight-color);
   color: white;
	padding :     1rem 2.5rem;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
               transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.cta-button:hover {
  background     :#d63a4f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.4);


}

.hero-section img {


 width: 100%;
  height: auto;
   border-radius     : 12px;
  box-shadow: var(--shadow);


}

.services-preview {
    padding: 5rem 1.5rem;
	 max-width   :       1200px;
  margin: 0 auto;
}

.services-preview h2 {
  font-size: 2.5rem;
    margin-bottom    :        3rem;
  text-align: center;
  color: var(--text-dark);
}

.services-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem; 

}

.service-card {
    background: white;
    border-radius: 12px;
   overflow   :        hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition   :     all 0.3s ease;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;

  height: 240px;

          object-fit: cover;
}

.service-card h3 {
  font-size     :      1.5rem;
   margin: 1.5rem 1.5rem 1rem;
  color: var(--accent-color);
}

.service-card p {
    font-size: 0.95rem;
               margin: 0 1.5rem 1.5rem;
    color: #555;
}

.offerings-section {
  background: linear-gradient(to right, #f0f4f8, #f9f9f9);
   padding: 5rem 1.5rem;
    max-width: 1200px;
   margin: 0 auto;
}

.offerings-section h2 {
    font-size: 2.5rem;
   text-align: center;
         margin-bottom: 3rem;
  color: var(--text-dark);
}

.offerings-container   {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;

}

.offering-item {
    background: white;
   padding: 2rem;
               border-radius: 10px;
  border-left: 5px solid var(--highlight-color);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
   transition: all 0.3s ease;
}

.offering-item:hover {
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateX(4px);


}

.offering-item h3 {
   font-size: 1.3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.offering-item p  
  {
	color: #666;

    font-size: 0.95rem;

   line-height: 1.7;
}

.workspace-preview {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap :      3rem;
	align-items: center;
    padding: 4rem 1.5rem;
   max-width: 1400px;
    margin: 0 auto;
}

.workspace-preview img {
  width    :100%;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.workspace-text h2 {
   font-size: 2.2rem;
    margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.workspace-text p  {
    font-size: 1rem;
  color: #555;
          line-height: 1.8;
}

.cta-consultation {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
   padding:       4rem 1.5rem;
   text-align:        center;
}

.cta-box {
                    max-width   :600px;
    margin: 0 auto;
  color: var(--text-light);
}

.cta-box h2

{
   font-size: 2.2rem;
   margin-bottom: 1rem;
}

.cta-box p {

  font-size: 1.1rem;
	 margin-bottom    :    2rem;}

.cta-button-secondary {
    display     :       inline-block;

	  background: var(--highlight-color);

	   color: white;

	   padding: 1rem 2.5rem;

	   border-radius: 8px;

	  text-decoration    :   none;

	    font-weight: 600;

	   transition: all 0.3s ease;
}

.cta-button-secondary:hover {
   background: #d63a4f;
  transform: scale(1.05);
}  

.contact-section {
                  padding: 5rem 1.5rem; 
               max-width    :700px; 
	 margin: 0 auto;
}

.contact-section h2 {
   font-size: 2.2rem;
   margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark);
}

.contact-form {
    background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group


{

   margin-bottom     :      1.5rem;

}

.form-group label {
  display: block;
    margin-bottom:  0.5rem;
  color: var(--text-dark);
  font-weight  :600;
    font-size: 0.95rem; 

}

.form-group input,
.form-group select,
.form-group textarea {
    width  :        100%;
  padding: 0.875rem;
  border: 1px solid var(--border-color);
    border-radius    :  6px;
  font-size: 1rem;
    font-family  :     inherit;
   transition:   border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.submit-btn


{
		 width: 100%;
   padding: 1rem;
  background: var(--highlight-color);
				 color: white;
    border:        none;
  border-radius: 6px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
   margin-top: 1rem;
}

.submit-btn:hover {
         background   :        #d63a4f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.3);
}

.footer-main {
  background: var(--primary-color);
  color: var(--text-light);
    padding: 4rem 1.5rem 2rem;
  margin-top: 5rem;


}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
  grid-column: 1 / -1;
	
}

.footer-logo {
  height: 50px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-info h3,
.footer-links h3 {
  font-size: 1.2rem;
         margin-bottom   :    1.5rem;
  color: var(--highlight-color); 
	
}

.footer-info p {


	margin-bottom: 0.75rem;
   line-height: 1.8;
   font-size    :      0.95rem;
	}

.footer-links ul {
	list-style: none;
}

.footer-links li

{
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--highlight-color);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 245, 245, 0.2);
	padding-top: 2rem;
    text-align: center;
  color: rgba(245, 245, 245, 0.7);
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .burger-btn {
        display: block;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-preview h2,
    .offerings-section h2,
    .workspace-text h2,
    .cta-box h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .workspace-preview {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .cta-consultation {
        padding: 3rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-section {
        grid-column: 1;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
   padding: 4rem 1.5rem;
    text-align: center;
}

.services-hero h1 {
     font-size    :       2.8rem;
   margin-bottom: 1rem;


}

.services-hero p 
 {
 font-size: 1.1rem;
    opacity: 0.95;
   max-width: 600px;
    margin   : 0 auto;
}

.services-detailed {
			padding: 5rem 1.5rem;
   max-width: 1200px;
   margin: 0 auto;
}

.service-detailed-item {
   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items    :center;
               margin-bottom: 6rem;
}

.service-detailed-item.service-reverse {
  grid-template-columns: 1fr 1fr;


}

.service-detailed-item.service-reverse img
{
	order: -1;
}

.service-detail-content h2   {
    font-size: 2rem;
  color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1rem;
   color  :#555;
  margin-bottom: 2rem;
    line-height: 1.8;
}

.service-benefits {
         list-style: none;
    padding: 0;
}

.service-benefits li {
   padding: 0.75rem 0;
	 padding-left: 1.75rem;
   position: relative;
   color: #666;
	 font-size: 0.95rem;
}

.service-benefits li:before {
  content: "▸";
   position: absolute;
   left: 0;
  color: var(--highlight-color);
    font-weight: bold;
}

.service-detailed-item img {


  width: 100%;
   border-radius: 12px;
  box-shadow: var(--shadow);}

.pricing-section {
  background: linear-gradient(to right, #f5f5f5, #f0f4f8);
					padding: 5rem 1.5rem;
	max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
   font-size: 2.5rem;
   text-align: center;
      margin-bottom: 3rem;
  color: var(--text-dark);
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem; 

}

.pricing-card {
    background: white;
               padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
                    position: relative;
               transition: all 0.3s ease;
    border: 2px solid transparent;


}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
     }

.pricing-card.featured {
  border: 2px solid var(--highlight-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover{
  transform: scale(1.05) translateY(-8px); 
	
}

.badge {
    position: absolute;
  top: -12px;
   right:      20px;
  background: var(--highlight-color);
    color    :       white;
	padding: 0.5rem 1rem;
   border-radius: 20px;
   font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h3 {
   font-size     :  1.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.price


{
   font-size: 2.2rem;
  color: var(--highlight-color);
                    font-weight: 700;
   margin-bottom: 0.25rem;
}

.period    {


   font-size    :     0.9rem;
		 color: #999;
  margin-bottom: 2rem;
	}

.price-features {
   list-style: none;
    margin-bottom: 2rem;
}



.price-features li {
  padding     : 0.75rem 0;
  color: #666;
  padding-left: 1.5rem;
    position: relative;
   font-size: 0.9rem;
}

.price-features li:before   {
  content: "✓"; 
       position :absolute; 
  left: 0; 
  color: var(--highlight-color); 
  font-weight:   bold;
}

.pricing-cta {
   display: block;
        text-align: center;
  background: var(--highlight-color);
  color: white;
      padding: 0.875rem;
   border-radius :     6px;
   text-decoration: none;
    font-weight: 600;
	transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #d63a4f;
  transform: scale(1.02);
}

.process-section {
   padding: 5rem 1.5rem;
   max-width: 1200px;
	margin: 0 auto;
}

.process-section h2 {
  font-size: 2.5rem;
      text-align: center;
   margin-bottom: 4rem;
  color: var(--text-dark);
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap   :3rem; 
	
}

.step    {
	text-align: center;
   position   :  relative;
}

.step-number {
	 font-size: 3rem;
	   font-weight: 700;
	  color: var(--highlight-color);
	  margin-bottom  :   1rem;
	   opacity: 0.3;
}

.step h3 {
    font-size: 1.3rem;
  color: var(--accent-color);
   margin-bottom: 1rem;
}

.step p {
   color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.testimonials-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding  :   5rem 1.5rem;
  color: var(--text-light);
}

.testimonials-section h2 {
  font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
}

.testimonials-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
    max-width :1200px;
    margin: 0 auto; 
	
}



.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
    padding   :        2rem;
    border-radius: 10px;
  border-left: 4px solid var(--highlight-color);
  backdrop-filter: blur(10px);
}



.testimonial-text {
  margin-bottom  :       1.5rem;
    font-size: 1rem;
         line-height: 1.7;
   font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-section		{
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
   padding: 4rem 1.5rem;
    text-align: center;
  color: var(--text-light);
}

.cta-content h2 {
                    font-size    :        2.2rem;
   margin-bottom: 1rem;


}


.cta-content p {
   font-size     :     1.1rem;
   margin-bottom: 2rem;
}

.cta-button-main {
    display: inline-block;
  background: var(--highlight-color);
    color: white;
	padding: 1rem 2.5rem;
	border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-main:hover {
                    background: #d63a4f;
  transform: translateY(-2px);
}

.thankyou-main {
	  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--text-light);
  padding     :    5rem 1.5rem;
  min-height: 60vh;
   display: flex;
		 align-items: center;
   justify-content: center;}



.thankyou-container

{
     max-width: 600px;
    text-align: center;
}

.success-icon {
    margin-bottom   :   2rem;
}

.success-icon img  {
  width: 80px;
               height: 80px;
  animation: bounce-in 0.6s ease;
}@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-main h1  {
    font-size: 2.8rem;
     margin-bottom     :  0.5rem;
	
}

.thankyou-subtitle  {
  font-size: 1.2rem;
    opacity: 0.9;
                    margin-bottom: 2rem;
}

/* Auto-generated CSS */

.thankyou-message
{
  background: rgba(255, 255, 255, 0.1);
   padding: 2rem;
    border-radius: 10px;
  margin-bottom: 2.5rem;
  border-left: 4px solid var(--highlight-color);
} 

.thankyou-message p {
  font-size  :    0.95rem;
  margin-bottom: 1rem;
      line-height: 1.7;
}

.thankyou-message p:last-child {

    margin-bottom: 0;

}  

.next-steps {

	  text-align  : left;
  background: rgba(255, 255, 255, 0.05);
  padding     :     2rem;
  border-radius: 10px;
  margin-bottom: 2rem;}

.next-steps h2

{
 font-size: 1.5rem;
	margin-bottom: 1.5rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
}

.next-steps li {
	 padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
	 font-size: 0.95rem;
}

.next-steps li:before {
	  content: "→";
    position: absolute;
   left: 0;
  color: var(--highlight-color);}

.thankyou-button
	{
  display: inline-block;
  background: var(--highlight-color);
  color: white;
   padding: 1rem 2.5rem;
   border-radius: 8px;
      text-decoration: none;
   font-weight: 600;
	transition :        all 0.3s ease;


}

.thankyou-button:hover {
    background: #d63a4f;
     transform: translateY(-2px);
}

.quick-info {
    padding :       4rem 1.5rem;
   max-width: 1200px;
  margin: 0 auto;
}

.info-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :     2rem;
}
/* State modifiers */

	/* Auto-generated CSS */

/* Development only */
.info-item {
    background: white;
  padding: 2rem;
  border-radius    :   10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;


}

.info-item h3 {
   font-size: 1.3rem;
  color: var(--accent-color);
		 margin-bottom: 0.75rem;
}
	/* Vendor-specific */
/* Component styles */

.info-item p    {
  color: #666;
        font-size     :   0.95rem;

}
@media (max-width: 768px) {
    .service-detailed-item {
        grid-template-columns: 1fr;
        margin-bottom: 4rem;
    }

    .service-detailed-item.service-reverse img {
        order: 0;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .services-hero h1 {
        font-size: 2rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .pricing-section h2,
    .process-section h2,
    .testimonials-section h2 {
        font-size: 1.8rem;
    }

    .thankyou-main h1 {
        font-size: 2rem;
    }

    .next-steps {
        text-align: center;
    }

    .next-steps li {
        text-align: center;
        padding-left: 0;
    }

    .next-steps li:before {
        display: none;
    }
}.policySection {
     padding    :     5rem 1.5rem;
  background: linear-gradient(to bottom, #f9f9f9, #f0f4f8);
   min-height: 70vh; 
	

}

.policyContainer {

   max-width: 900px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
   font-size: 2.8rem;
  color: var(--accent-color);
  margin-bottom    :  2rem;
	font-weight: 700;
	 line-height: 1.2;
}

.policyContainer h3  {
   font-size: 1.5rem;
  color: var(--primary-color);
    margin-top: 2.5rem;
   margin-bottom: 1rem;
  font-weight: 600;
  border-bottom: 2px solid var(--highlight-color);
    padding-bottom: 0.75rem;
}

.policyContainer p {
  color: #555;
                    margin-bottom:   1.5rem;
	 line-height: 1.8;
    font-size: 1rem;
       text-align: justify;
}  

.policyContainer p:first-of-type {
    margin-top: 0;
}

.policyContainer h3:first-of-type {
                    margin-top: 0;
}@media (max-width: 1024px) {
    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 2.4rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
        min-height: auto;
    }

    .policyContainer h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
        margin-bottom: 0.75rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}