*  {

    margin    :  0;
    padding: 0;
	box-sizing: border-box;
}

body


{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height    : 1.6;
    color    :      #2c3e50;
    background-color: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 1rem 0;
    position     :   sticky;
	top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);


     }

.nav-container {

  display: flex;
  padding: 0 2rem;
  max-width: 1200px;
    justify-content: space-between;
               margin: 0 auto;
	 align-items: center;
     }

.nav-brand {
    display: flex;
   align-items: center;
  flex-shrink: 0;
}

.logo-nav {
 height   :       45px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
      display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center; 
	


}

.nav-links a
	{
    color: white;
                    text-decoration: none;
  font-weight: 500;
   transition : opacity 0.3s ease;
}

.nav-links a:hover {


  opacity: 0.8; 
	
     }

.nav-cta {
  background: rgba(255, 255, 255, 0.2);
    padding: 0.6rem 1.5rem;
  border-radius: 25px;
    transition :      all 0.3s ease;
}

.nav-cta:hover {
     background: rgba(255, 255, 255, 0.3);
     }

.hamburger {
   cursor: pointer;
   display  :    none;
   gap: 6px;
    border: none;
	 background: none;
   flex-direction: column;
}  

.hamburger span {

	   width: 25px; 
	  height: 3px; 
	   background: white; 
	  border-radius: 2px; 
	  transition: all 0.3s ease;
     }

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
                    padding  : 100px 2rem;
    text-align  :       center;
}

.hero-content {
  max-width: 800px;
   margin: 0 auto;
}  

.hero-content h1 {
         font-size: 3rem;
    margin-bottom    : 1rem;
   font-weight: 700;
  line-height: 1.2;
}

.hero-content p {

  font-size: 1.3rem;
    margin-bottom: 2rem;
   opacity: 0.95;}

.cta-button {
    display: inline-block;
   background: #f39c12;
	 color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
    text-decoration: none;
   font-weight: 600;
    transition:  all 0.3s ease;
  box-shadow: 0 5px 20px rgba(243, 156, 18, 0.3);

}

.cta-button:hover    {
    background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.4);
}

.services-preview {
    margin: 80px auto;
  padding: 0 2rem;
    max-width: 1200px;
}

.section-header {
   text-align: center;
       margin-bottom: 60px;

}

.section-header h2
{
                    font-size: 2.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.section-header p {
	    font-size  :1.1rem;
    color: #7f8c8d;
	max-width: 600px;
   margin: 0 auto;
     }

.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 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    display: flex;
                    flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
	
	}

.service-card img {
  width: 100%;
  height: 250px;
   object-fit: cover;
}

.service-card h3 {
    font-size: 1.4rem;
  padding: 1.5rem 1.5rem 0.5rem;
	 color: #2c3e50;
}

.service-card p {
   padding: 0.5rem 1.5rem;
          color: #7f8c8d;
   font-size: 0.95rem;
    flex-grow: 1;
}

.service-tag {

	     display  :        inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size   :      0.8rem;
  margin: 1rem 1.5rem 1.5rem;
  font-weight: 600;
}

.features		{
   background: #f8f9fa;
    padding: 80px 2rem;
}

.features-content  {
    max-width: 1000px;
  margin: 0 auto;
}

.features-content h2		{
    font-size: 2.2rem;
       margin-bottom: 3rem;
  text-align   :center;
  color: #2c3e50;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;

	padding: 2rem;

   border-radius: 10px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    border-left: 4px solid #667eea;
}

.feature-item h3 {
	color    :     #667eea;
     margin-bottom: 0.8rem;
	font-size: 1.2rem;
}

.feature-item p {
   color:   #7f8c8d;
   line-height: 1.7;
   font-size: 0.95rem;
} 

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  padding: 60px 2rem;
  text-align: center;
    margin: 60px 0;
}

.cta-content h2 {
   font-size: 2.2rem;
	  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.1rem;
	margin-bottom: 2rem;
               max-width: 600px;
   margin-left: auto;
  margin-right: auto;
    opacity: 0.95;
}

.cta-button-alt {
   font-weight     :      600;
  padding: 1rem 2.5rem;
 border-radius: 50px;
  text-decoration: none;
					display: inline-block;
   color: white;
   background: #f39c12;
    transition: all 0.3s ease;
}

.cta-button-alt:hover {
    background: #e67e22;
  transform: translateY(-2px);
}

.contact{
	max-width: 800px;
    margin: 80px auto;
   padding: 0 2rem;
}

.contact-container {
    background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact h2 {
	    margin-bottom: 0.5rem;
	 color     :  #2c3e50;
    font-size: 2rem;
   text-align: center;
}

.contact > p {
  text-align: center;
  color: #7f8c8d;
     margin-bottom  :        2rem;
}

.contact-form {

  display: flex;
  flex-direction: column;
 gap: 1.5rem;


}

.form-group  {


   display: flex;

         flex-direction  :     column; 
	}

.form-group label
{
  margin-bottom:0.6rem;
    font-weight: 600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
		 padding: 0.9rem;
          border: 2px solid #ecf0f1;
	border-radius: 8px;
   font-family: inherit;
   font-size: 1rem;
    transition     :      all 0.3s ease;
  background: #f8f9fa;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {

	       resize: vertical;
  min-height   :    120px; 
	

}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding :   1rem 2rem;
    border: none;
	border-radius: 50px;
  font-weight: 600;
	font-size: 1rem;
   cursor: pointer;
   transition: all 0.3s ease;
  margin-top: 0.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
} 

.footer		{


   background: #2c3e50;
   color: white;
  padding: 60px 2rem 20px;
  margin-top: 80px;}

.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-section h3 {
   margin-bottom: 1.5rem;

	         font-size: 1.1rem;

	  color: #f39c12;
}

.footer-logo-img {
	   height: 50px;
    width :    auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem;


}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.8rem;
}

.footer-section a {
    -o-transition  :       color 0.3s ease;
  color: #ecf0f1;
  -moz-transition: color 0.3s ease;
   text-decoration   :        none;
   transition: color 0.3s ease;
       -webkit-transition     :  color 0.3s ease;
 font-size: 0.95rem;
}

.footer-section a:hover
{
	color: #f39c12;
}

.footer-section p {
    margin-bottom: 1rem;
	line-height: 1.8;
  font-size: 0.95rem;
   color  : #ecf0f1;
}

.footer-bottom {
                    border-top: 1px solid #34495e;
  padding-top: 1.5rem;
    text-align     :      center;
    color: #95a5a6;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-preview,
    .contact {
        margin: 40px auto;
    }

    .cta-button,
    .cta-button-alt {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 2rem;
   text-align: center;
}

.services-hero .hero-content h1 {
      font-size: 2.8rem;
    margin-bottom: 1rem;
  font-weight: 700;
    line-height :      1.2;
}

.services-hero .hero-content p {
    font-size: 1.2rem;
   opacity: 0.95;
    max-width :    700px;
    margin: 0 auto;
}  

.services-detailed {
    max-width: 1100px;
   margin: 80px auto;
   padding: 0 2rem;
}

.services-container {
    display: flex;
   flex-direction: column;
   gap: 60px;
}

.service-detailed-item	{
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
 align-items: center;
}

.service-detailed-item.reverse {
   direction: rtl;
}

.service-detailed-item.reverse > * {
    direction: ltr;
} 

.service-image-wrapper {
  position: relative;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image-wrapper img {
   width: 100%;
  height: auto;
	 display: block;
  transition: transform 0.3s ease;
}

.service-image-wrapper:hover img {
     transform: scale(1.05);
}

.service-info h2 {
	  font-size: 2rem;
  margin-bottom: 1rem;
   color: #2c3e50;}

.service-description {


					font-size:     1rem;
  color: #7f8c8d;
   line-height: 1.8;
   margin-bottom: 1.5rem;

}

.service-info h3 {
  font-size: 1.2rem;
  color: #667eea;
	 margin-top: 1.5rem;
   margin-bottom: 1rem;
}

.service-features     {
  list-style: none;
    margin-bottom: 1.5rem;
} 

.service-features li {
    padding: 0.7rem 0;
	padding-left: 1.8rem;
    position: relative;
   color: #7f8c8d;
  line-height: 1.6;
}

.service-features li:before {
  font-weight: bold;
          color: #667eea;
   position: absolute;
    left     :        0;
    font-size: 1.2rem;
  content: "✓";
}

.service-duration,
.service-audience {
	    font-size: 0.95rem;
   color: #2c3e50;
  margin-top: 1rem;
    line-height   :    1.7;

}

.service-duration strong,
.service-audience strong {
       color: #667eea;

}

.pricing-overview {

	 background: #f8f9fa; 
    padding: 80px 2rem; 
    margin-top     : 60px;

}

.pricing-overview h2 {
   font-size     :     2.5rem;
  text-align: center;
         margin-bottom: 1rem;
  color: #2c3e50;
}

.pricing-intro {
    text-align: center;
   color: #7f8c8d;
    font-size: 1.1rem;
  max-width: 600px;
	margin: 0 auto 3rem;


}  

.pricing-grid {
	   max-width: 1000px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 2rem;
     }

.pricing-card {
        background: white;
  border-radius: 12px;
   padding    :  2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
               position: relative;
} 

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #667eea;
  transform: scale(1.05);
}


.pricing-badge 
 {
   position: absolute;
  top: -12px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1.2rem;
        border-radius     :       20px;
  font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {


  font-size: 1.5rem;
  color   :        #2c3e50;
   margin-bottom: 0.5rem;
	}

.pricing-subtitle {
   color:  #7f8c8d;
               font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features ul {
  list-style: none;
				 margin-bottom:   2rem;
}

.pricing-features li {
          padding: 0.8rem 0;
  padding-left: 1.8rem;
  position: relative;
    color: #7f8c8d;
   font-size: 0.95rem;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
    left: 0;
	color: #667eea;
   font-weight  :       bold;
}

.pricing-note {
  text-align :    center;
  color: #667eea;
    font-weight: 600;
  font-size: 1rem;
}

.cta-services {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
     padding: 60px 2rem;
  text-align: center;
  margin-top: 60px;

}

.cta-services h2 {
	font-size:        2rem;
   margin-bottom: 1rem;
}

.cta-services p{


   font-size: 1.1rem;
   max-width: 600px;
   margin: 0 auto 2rem;
  opacity: 0.95;
     }

.cta-services .cta-button {
   display: inline-block;
   background: #f39c12;
   color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
      transition: all 0.3s ease;
}

.cta-services .cta-button:hover {
      background: #e67e22;
  transform: translateY(-2px);

}

.thank-you-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
  display: flex;
  align-items: center;
 justify-content: center;
	 padding: 40px 2rem;
}

.thank-you-container {

	 background: white;
	 border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   max-width: 700px;
  width: 100%;
   padding: 4rem 3rem;
  text-align: center;
	}

.thank-you-content h1 {
    font-size   :     2.5rem;
   color: #2c3e50;
  margin: 1.5rem 0;
}

.success-icon {
    color: #2ecc71;
   display: flex;
  justify-content: center;
   margin-bottom: 1rem;


} 

.success-icon svg {
    stroke :      currentColor;
    animation: successPulse 0.6s ease;
}@keyframes successPulse {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thank-you-message
	{
      font-size    :      1.1rem;
      color: #7f8c8d;
      line-height  :     1.8;
             margin-bottom: 2rem;
} 

.thank-you-info {
    background :     #f8f9fa;
    padding: 2rem;
  border-radius: 10px;
                    margin: 2rem 0;
    text-align: left;
}  

.thank-you-info h2 {
  font-size :1.5rem;
   color    :    #2c3e50;
                    margin-bottom :  1.5rem;
	text-align: center;
}

.info-steps {
  display: flex;
	   flex-direction: column;
	  gap: 1.5rem;
}

.step {
    display    :  flex;
  gap   :1.5rem;
   align-items: flex-start;
}

.step-number {
   display     :        flex;
    align-items: center;
    justify-content :center;
 width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius: 50%;
	font-weight: bold;
    font-size :    1.3rem;
   flex-shrink: 0;
}

.step-content h3 {
    color: #2c3e50;
   margin-bottom :     0.3rem;
  font-size: 1rem;
}

.step-content p {
    color: #7f8c8d;
  font-size: 0.95rem;
	margin: 0;
}

.thank-you-actions
{
    display: flex;
   gap: 1rem;
  margin: 2rem 0;
   flex-wrap: wrap;
  justify-content: center;
}

.action-button {
 display: inline-block;
	padding :        0.9rem 2rem;
  border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
	transition: all 0.3s ease;
   font-size: 1rem;
}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.action-button.primary:hover     {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.action-button.secondary {
    background: #ecf0f1;
               color: #2c3e50;
   border  : 2px solid #667eea;
}

.action-button.secondary:hover {
                    background: #667eea;
    color: white; 

}

.contact-info {
    font-size: 0.95rem;
  color: #7f8c8d;
    margin-top: 1.5rem;
}

.contact-info strong {
  color: #667eea;
}@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 2rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-detailed-item.reverse {
        direction: ltr;
    }

    .service-info h2 {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thank-you-container {
        padding: 2rem 1.5rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }

    .thank-you-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .info-steps {
        gap: 1rem;
    }

    .step {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 40px 1rem;
    }

    .services-hero .hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detailed-item {
        margin: 0 -2rem;
    }

    .pricing-overview {
        padding: 40px 1rem;
    }

    .thank-you-section {
        padding: 20px 1rem;
    }

    .thank-you-container {
        padding: 1.5rem 1rem;
    }

    .thank-you-content h1 {
        font-size: 1.5rem;
    }

    .thank-you-message {
        font-size: 0.95rem;
    }

    .step-content h3 {
        font-size: 0.9rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }
}.policySection {
    padding: 80px 2rem;
                    background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policyContainer {
  max-width    :   800px;
     margin: 0 auto;
   text-align :       left;
  background: white;
   padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
      font-size: 2.8rem;
	color: #2c3e50;
   margin-bottom   : 2rem;
  font-weight: 700;
    border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
}

.policyContainer h2     {
          font-size: 1.8rem;

	    color: #667eea;

	   margin-top: 2rem;

	    margin-bottom: 1rem;

	   font-weight: 600;
}

.policyContainer p {
    color     :   #7f8c8d;
  margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1rem;
  text-align: justify;
}

.policyContainer strong {

  color: #2c3e50;
	  font-weight: 600;
     }

.policyContainer ul {
   list-style: none;
   margin-bottom: 1.5rem;
  margin-left: 0;
}


.policyContainer li {
    color: #7f8c8d;
    margin-bottom: 0.8rem;
    padding-left : 1.8rem;
    position  :  relative;
  line-height: 1.7; 
	
}

.policyContainer li:before {
  content: "•";
  position: absolute;
       left: 0;
	color: #667eea;
    font-weight: bold;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        max-width: 100%;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: left;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    .policyContainer li {
        font-size: 0.9rem;
        padding-left: 1.5rem;
    }
}