*{


  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: #fafbfc;
}

html {
        scroll-behavior: smooth;
}

.navbar {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

	    padding: 1rem 0;

	  position: sticky;

	   top: 0;

	    z-index: 1000;

	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width   :   1200px;
    margin: 0 auto;
  padding: 0 2rem;
	display:     flex;
   justify-content: space-between;
   align-items: center;
}

.nav-logo {
		 display: flex;
    align-items: center;
}

.logo-img {
   height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
	
}

.nav-menu {
   display: flex;
	 list-style: none;
  gap: 2rem;
}

.nav-menu a    {
	color: #ffffff;
    text-decoration: none;
   font-weight: 500;
	transition: color 0.3s ease;
  font-size: 1rem;
}

.nav-menu a:hover {
	    color: #00d4ff;
     }

.burger-menu   {
   display: none;
   flex-direction: column;
    cursor     :    pointer;
    background   :       none;
    border: none;
 gap :        6px;
}

.burger-menu span	{
	    width: 25px;
   height: 3px;
   background-color: #ffffff;
   border-radius: 2px;
    transition:      all 0.3s ease;
	}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px); 
	
}

.burger-menu.active span:nth-child(2) {
  opacity: 0;

}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero    {
         max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.hero-content h1 {
     color: #1a1a2e;
   line-height: 1.2;
   font-size  :      2.8rem;
    margin-bottom: 1rem;
			font-weight: 700;
	}

.hero-subtitle {
   font-size: 1.2rem;
  color: #555;
   margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-button {
   display: inline-block;
    padding: 1rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :   white;
	 text-decoration: none;
  border-radius: 8px;
	font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
     }

.hero-visual img {
  width: 100%;
    height :       auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-section 
 {
   background: white;
  padding: 4rem 2rem;
  margin: 2rem 0;
}

.section-content 
 {
   max-width: 1200px;
    margin: 0 auto;
	
}

.section-content h2 {
  font-size: 2.2rem;
    color: #1a1a2e;
   margin-bottom  :  1.5rem;
}

.section-content > p     {
   font-size: 1.1rem;
   line-height: 1.9;
    margin-bottom: 2.5rem;
  color :      #555;
}

.intro-features {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
     margin-top: 2.5rem;
}

.feature-item {
   padding: 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
               border-radius  : 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {

	  transform: translateY(-5px);

	  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

}



.feature-item h3 {
                    font-size: 1.3rem;
    color   :      #1a1a2e;
          margin-bottom: 0.8rem;
	
}


.feature-item p {
    color: #666;

	    line-height: 1.7;

	    font-size: 0.95rem;
}

.services-preview {
   max-width: 1200px; 
   margin: 0 auto; 
    padding: 4rem 2rem;
}

.services-preview h2 {
   font-size: 2.2rem;
  color: #1a1a2e;
	text-align: center;
    margin-bottom: 3rem;
} 

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap:    2.5rem;
}

.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;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);


}

.service-card img {
	  width: 100%;
     height: 200px;
    object-fit: cover;

     }

.service-card h3 {
   font-size: 1.3rem;
        color: #1a1a2e;
    padding: 1.5rem 1.5rem 0.5rem;


}

.service-card p {


  line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
    color: #666;
         font-size: 0.95rem;
     }

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
   margin: 3rem 0;
}

.cta-content h2 {
   color  :white; 
	      font-size: 2.2rem; 
		 margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
   margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta-button-primary {
    display: inline-block;

	   padding:      1.2rem 3rem;

	    background: white;

	    color: #667eea;

	  text-decoration: none;

	    border-radius: 8px;

	   font-weight: 700;

	    transition: all 0.3s ease;

	  font-size: 1.05rem;
}

.cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-section {
   max-width: 1200px;
  margin : 3rem auto;
    padding: 4rem 2rem;
  background: white;
    border-radius: 12px;
}

.contact-container h2 {
  font-size: 2rem;
  color: #1a1a2e;
	text-align: center;
    margin-bottom: 0.5rem;
}

.contact-intro {
	  text-align: center;
       color: #666;
   margin-bottom: 2.5rem;
   font-size: 1.05rem;

     }

.contact-form {
    max-width: 600px;
  margin: 0 auto;
}

.form-group {
   margin-bottom: 1.8rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a2e;}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius  :      6px;
   font-size: 1rem;
    font-family: inherit;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {
    width: 100%;
   padding    :        1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
				 border-radius: 6px;
   font-weight: 700;
   font-size: 1.05rem;
  cursor    :       pointer;
	 transition :all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding: 3rem 2rem 1.5rem;
    margin-top     :      4rem;
}

.footer-container {
   max-width: 1200px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  :   2rem;
  margin-bottom: 2rem;
}

.footer-section h3


{
  margin-bottom: 1rem;
   font-size: 1.1rem; 

}

.footer-logo-img {
  height: 50px;
	 width: auto;
  filter: brightness(0) invert(1); 
	
}

.footer-info p


{
  margin: 0.7rem 0;
       line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-address {
   font-size: 0.95rem;
}

.footer-phone	{
  font-size: 0.95rem;
}

.footer-links ul {
                    list-style: none;
}  

.footer-links li {
     margin: 0.7rem 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
  transition   :        color 0.3s ease;
}

.footer-links a:hover {
   color: #00d4ff; 
	
}

.footer-bottom {
  text-align    :  center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
   padding-top: 1.5rem;
}



.footer-bottom p {
	font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
    margin :        0.5rem 0; 

} @media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #0f3460;
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .intro-features {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
  text-align: center;
    color: white;
        margin-top   :   70px;
}

.services-hero-content h1 {
  font-size:    2.5rem;
    margin-bottom     :     0.5rem;
   font-weight: 700;
}

.services-hero-subtitle {
   font-size    :   1.15rem;
  color: rgba(255, 255, 255, 0.9);
   max-width     :     700px;
          margin: 0 auto;
}

.services-detailed {
  padding: 0 2rem;
   max-width: 1200px;
   margin: 3rem auto;
}



.services-container    {
  display: flex;
  flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
   background:      white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 2rem;
   padding: 2rem;
                    transition     :     all 0.3s ease;
}

.service-detail-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);

}

.service-image-wrapper {
                    display: flex;
   align-items: center;
    justify-content: center;
   overflow: hidden;
          border-radius: 8px;
}

.service-image-wrapper img {
   width: 100%;
  height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-content h2 {
  font-size: 1.8rem;
   color: #1a1a2e;
    margin-bottom: 1rem;
   font-weight: 700;
}

.service-intro {
  margin-bottom: 1.5rem;
  color   :  #555;
  font-size    :  1rem;
    line-height: 1.8;
}

.service-features {
	 margin: 1.5rem 0; 
	
}

.service-features h3 {
   font-size: 1.1rem;
    color: #1a1a2e;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.features-list {
  list-style: none;
   display    :    flex;
	flex-direction: column;
    gap:   0.7rem;
}

.features-list li   {
    padding-left: 1.5rem;
   position: relative;
   color: #666;
   font-size: 0.95rem;
  line-height   :    1.6;
}

.features-list li:before {
     content: "✓";
    position: absolute;
   left: 0;
    color: #667eea;
    font-weight: bold;
   font-size: 1.1rem;


     }

.service-duration		{
   margin-top: 1.5rem;
 padding-top  :   1.5rem;
	 border-top: 2px solid #e0e0e0;
    color: #555;
	font-size: 0.95rem;
}

.webinar-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding:  4rem 2rem;
  margin: 3rem 0;
}

.webinar-container {
    max-width: 1200px;
    margin: 0 auto;
}

.webinar-section h2


{
  font-size     :2rem;
	color: #1a1a2e;
	text-align: center;
    margin-bottom: 1rem;
}

.webinar-intro {
    text-align: center;
	 color:#555;
    font-size:        1rem;
    margin-bottom: 2.5rem; 
	
}

.webinar-grid {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.webinar-item {
  background: white;

		 padding: 2rem;

	   border-radius: 10px;

	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

	  transition: all 0.3s ease;
}

.webinar-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	
}

.webinar-item h3


{
  font-size   :     1.2rem;
        color: #1a1a2e;
  margin-bottom: 0.8rem;
	
}

.webinar-item p {
    color: #666; 
	       font-size: 0.95rem; 
	   line-height: 1.7; 
	    margin-bottom    :      1rem;
}

.webinar-frequency {
   color: #667eea;
        font-weight: 600;
		 font-size: 0.9rem;
}



.conference-section {

    padding: 0 2rem;
   max-width: 1200px;
     margin     :       3rem auto;

}

.conference-container {
  background: white;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.conference-section h2 {
  font-size: 2rem;
        color:#1a1a2e;
    text-align: center;
   margin-bottom: 1rem;
}

.conference-intro {
  text-align:        center;
    color: #555;
   font-size: 1rem;
    margin-bottom: 2.5rem;
}

.conference-highlights {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap:    2rem;
     }

.highlight-item {
    padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 8px;
    color: white;
    transition     :       all 0.3s ease;
}

.highlight-item:hover {

  transform: scale(1.05);
	}

.highlight-item h3 {
      font-size: 1.15rem;
   margin-bottom: 0.8rem;
}

.highlight-item p   {
	font-size: 0.95rem;
        line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.pricing-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 4rem 2rem;
    margin: 3rem 0;
}

.pricing-container {
  max-width     :        1200px;
    margin: 0 auto;


}

.pricing-section h2 {
  font-size  :       2rem;
    color: white;
    text-align: center;
   margin-bottom: 1rem;
	
}

.pricing-intro {
	 text-align: center;
  color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
   margin-bottom: 3rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap  :     2rem;
}

.pricing-card {
    background: white;
    border-radius: 10px;
  padding: 2.5rem;
	text-align: center;
   transition   :     all 0.3s ease;
    position: relative;
    overflow     :       hidden;
}

.pricing-card:before {

	  content: '';
    position: absolute;
   top: 0;
	left: 0;
          right: 0;
   height: 4px;
     }

.pricing-card.starter:before {
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.pricing-card.professional:before {

	  background: linear-gradient(90deg, #f093fb, #f5576c);


}

.pricing-card.premium:before {
  background: linear-gradient(90deg, #11998e, #38ef7d);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pricing-card h3 {
   font-size: 1.5rem;
    color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.pricing-desc {
   color: #666; 
	    font-size: 0.95rem; 
	     margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
	text-align    :   left;
                    margin: 2rem 0;
}

.pricing-features li {
  padding: 0.7rem 0;
    color: #555;
  font-size: 0.95rem;
    border-bottom:     1px solid #e0e0e0;
}

.pricing-features li:last-child {
  border-bottom: none;
	
}

.thankyou-section {
  min-height: calc(100vh - 300px); 
   display    :     flex; 
  align-items: center; 
    justify-content     :        center; 
   padding: 3rem 2rem; 
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);}

.thankyou-container    {
  max-width: 700px;
    width: 100%;
}

.thankyou-content     {
       background: white;
    border-radius: 12px;
   padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
     }

.success-icon
	{

	color    :       #2ecc71;
    margin-bottom: 1.5rem;
      display: flex;
    justify-content: center;

}

.thankyou-content h1 {
  font-size: 2.2rem;
    color: #1a1a2e;
   margin-bottom: 0.8rem;
}

.thankyou-message {
  font-size     :1.15rem;
  color: #555;
    margin-bottom     :    1rem;
}



.thankyou-details {
      color: #666;
    font-size: 0.95rem;
   line-height: 1.8;
  margin-bottom: 2rem;
}

.thankyou-next-steps {
       margin: 2rem 0;
   padding: 2rem;
   background: #f5f7fa;
  border-radius: 8px;
  text-align: left; 

}

.thankyou-next-steps h2	{

					 font-size: 1.3rem;
  color: #1a1a2e;
    margin-bottom: 1rem;
  text-align: center;

}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
	    counter-increment  :   step-counter;
 padding: 0.8rem 0 0.8rem 2.5rem;
    position: relative;
 color: #555;
    font-size: 0.95rem;
   line-height  :  1.6;
	}


.steps-list li:before {
  content: counter(step-counter);
  position  :absolute;
   left: 0;
   width: 30px;
         height: 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
    display: flex;
   align-items: center;
  justify-content: center;
  font-weight: bold;
                    font-size :      0.85rem;
   line-height: 1;
}

.thankyou-contact-info {
	margin: 2rem 0;
    padding: 1.5rem;
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border-radius :  8px;
}

.thankyou-contact-info h3  
  {
    font-size: 1.05rem;
  color: #1a1a2e;
  margin-bottom: 0.8rem;
}

.thankyou-contact-info p {
  color: #555;
   font-size: 0.95rem;
  margin:   0.5rem 0;
}

.thankyou-actions {
	  display: flex;
   margin-top: 2rem;
  gap: 1rem;
    justify-content :       center;
      flex-wrap  :   wrap;}

.btn-primary,
.btn-secondary {
   padding: 0.9rem 2rem;
   border-radius: 6px;
 text-decoration: none;
   font-weight: 600;
   font-size: 0.95rem;
  transition: all 0.3s ease;
     display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :       white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
  background: white;
	color  :   #667eea;
  border   :    2px solid #667eea;
}

.btn-secondary:hover {
  background: #667eea;
    color: white;
}@media (max-width: 768px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-next-steps {
        padding: 1.5rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .conference-highlights {
        grid-template-columns: 1fr;
    }
}.policy-section {
   padding: 100px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 150px);
}

.policy-container

{
   max-width: 900px;
  margin: 0 auto;
   text-align   : left;
	 background   :        white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
    font-size: 2.5rem;
  color: #1a1a2e;
   margin-bottom: 2rem;
  font-weight: 700;
   padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
}

.policy-container h2 {
               font-size: 1.5rem;
   color: #1a1a2e;
  margin-top: 2rem;
	 margin-bottom: 1rem;
   font-weight: 600;
  color: #667eea;
	
}

.policy-container p  {
   color: #555;
     margin-bottom: 1.2rem;
    line-height  :       1.85;
   font-size: 1rem;

}

.policy-container strong {
  color  :#1a1a2e;
   font-weight   :        600;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.75rem;
    }

    .policy-container {
        padding: 1.5rem 1rem;
    }

    .policy-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}