* {
   margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.7;
  color: #2c3e50;
    background: #f8f9fa;
}

.main-navigation
	{
   background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   position: sticky;
   top: 0;
    z-index: 1000;
  padding: 1.2rem 0; 
	
}

.nav-wrapper    {
     max-width   :   1200px;
  margin    :   0 auto;
    padding: 0 2rem;
	display   :  flex;
    justify-content: space-between;
  align-items    :      center;
}

.logo-section img.site-logo {
  height: 45px;
       width: auto;
}

.nav-links {
    display: flex;
  list-style: none;
   gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;

	   color     :        #34495e;

	  font-weight: 500;

	   transition: color 0.3s;

		font-size: 1.05rem;} 

.nav-links a:hover {
    color: #3498db;
}

.burger-toggle		{
  display: none;
  flex-direction: column;
   background: none;
    border: none;
  cursor: pointer;
  gap    :  5px;


}

.burger-toggle span


{
   width: 28px;
   height: 3px;
   background:        #34495e;
    transition: all 0.3s;
	border-radius :       2px;
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 2rem;
  display: grid;
	grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
  max-width  :   1200px;
    margin: 0 auto;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: #ffffff;
   margin-bottom    :     1.5rem;
    line-height: 1.2;


}

.hero-subtitle {
    font-size: 1.3rem;
   color: #ecf0f1;
   margin-bottom: 2rem;


}

.hero-actions {
  display: flex;

   gap: 1.5rem;
}

.primary-btn, .secondary-btn
{
  padding: 1rem 2rem;
	text-decoration: none;
   border-radius   :       6px;
   font-weight: 600;
    transition :all 0.3s;
    display: inline-block;


}

.primary-btn {
   background: #ffffff;
    color:       #667eea;
}

.primary-btn:hover {
  background: #ecf0f1;
	  transform: translateY(-2px);
}

.secondary-btn {
   background: transparent; 
	    color: #ffffff; 
	    border   :     2px solid #ffffff;
}

.secondary-btn:hover {
  background: rgba(255,255,255,0.1); 
	
}

.hero-visual img {
	width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-segment {
   padding: 4rem 2rem;
    background: #ffffff; 
	
}

.container-width {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-segment h2 {
   font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}

.intro-segment p {
   font-size: 1.2rem;
          color: #555;
	 text-align: center;
	max-width: 800px;
   margin: 0 auto 3rem;
}

.stats-row {
   display: flex;
    justify-content: space-around;
  margin-top: 3rem;
   flex-wrap: wrap;
    gap: 2rem; 

}

.stat-item {
    text-align: center;
  display: flex;
        flex-direction   :      column;
}

.stat-number {
    font-size: 3rem;
   font-weight: 700;
    color    :    #3498db;
   display     :  block;
}

.stat-label		{
    font-size: 1.1rem;
  color :      #7f8c8d;
   margin-top: 0.5rem;
}

.services-preview {
   background: #f8f9fa;
   	 padding: 5rem 2rem; 

}

.services-preview h2 
 {
    font-size   :2.5rem;
	          text-align :       center;
	    margin-bottom: 3rem;
	  color     :     #2c3e50;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.service-card {
  background     :      #ffffff;
  border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
 transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image img {
    height: 250px;

	       object-fit     :      cover;

	   width:     100%;
}

.card-body {
     padding: 1.8rem;
}

.card-body h3 {
    font-size: 1.6rem;
  margin-bottom: 1rem;
   color : #34495e;
}

.card-body p {
        color: #666;
   line-height: 1.6;
}

.methodology-area
	{

   padding: 5rem 2rem;
   background: #ffffff;}

.methodology-area .container-width  {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.method-content h2 {
	 font-size: 2.5rem;
        color: #2c3e50;
   margin-bottom: 1.5rem;
}

.method-content p {

	   font-size :  1.1rem; 
     color: #555; 
        margin-bottom: 2rem;


}

.approach-list {
   list-style: none;
	               padding-left: 0; 

}

.approach-list li {
	padding: 0.8rem 0;
    padding-left: 2rem;
     position   :    relative;
    color: #444;
}

.approach-list li::before {
     content: '✓';
     position: absolute;
    left: 0;
          color:   #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
	
	}

.method-visual img 
 {
  width   :      100%;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding: 4rem 2rem;
}

.cta-wrapper {
   text-align: center;
  max-width : 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
   font-size: 2.8rem;
   color: #ffffff;
  margin-bottom     :   1.5rem;
}

.cta-wrapper p {
   font-size     :1.2rem;
   color :       #ffffff;
   margin-bottom: 2rem;

}

.cta-button {
       display :       inline-block;
    padding: 1.2rem 3rem;
   background: #ffffff;
  color: #f5576c;
   text-decoration: none;
    border-radius: 50px;
  font-weight     :        700;
  font-size: 1.1rem;
   transition: all 0.3s;
}

.cta-button:hover {
	background: #ecf0f1;
  transform: scale(1.05);
}

.programs-showcase {
    padding: 5rem 2rem;

	                    background: #f8f9fa;
}

.programs-showcase h2 {
    font-size: 2.5rem;

	   text-align    :     center;

	               margin-bottom  :   3rem;

	    color: #2c3e50;
}

.programs-layout {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.program-box {
	background: #ffffff;
   padding     :        2.5rem;
   border-radius: 10px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    position: relative;

}

.program-box.featured {

		border   :   3px solid #3498db; 


}

.featured-badge {
    position: absolute;
  top: -15px;
   right: 20px;
	background: #3498db;
   color: #ffffff;
       padding: 0.5rem 1rem;
  border-radius: 20px;
	 font-size: 0.9rem;
    font-weight: 600;
}

.program-box h3 {
    font-size: 1.8rem;
    color    :   #34495e;
	margin-bottom     :     1rem;
}

.program-box p {
	color  :#666;
  margin-bottom: 1.5rem;
}

.program-box ul {
  list-style: none;
   padding-left: 0; 
	
}

.program-box ul li {


    position: relative;

     padding: 0.6rem 0;

  color: #555;

	 padding-left: 1.8rem;}

.program-box ul li::before {
  content: '→';
   position: absolute;
  left: 0;
   color: #3498db;
}

.contact-section {


  padding: 5rem 2rem;
	background    : #ffffff;
}

.contact-section h2 {
  font-size :    2.5rem;
    margin-bottom: 3rem;
    text-align: center;
	color: #2c3e50;
}


.contact-layout {
    display: grid;
   grid-template-columns: 1.5fr 1fr;
	 gap: 3rem;
		max-width: 1100px;
	margin: 0 auto;
}

.contact-form {
               display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;

	   flex-direction: column;
}

.form-group label {
                  margin-bottom: 0.5rem;

	  color: #34495e;

	  font-weight: 600;}

.form-group input,
.form-group select,
.form-group textarea {


      font-size: 1rem;
   font-family    :     inherit;
         border: 2px solid #dfe6e9;
    padding: 0.9rem;
   border-radius: 6px;
  transition: border-color 0.3s;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #3498db;
}

.submit-btn {
	padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   border: none;
   border-radius     :     6px;
  font-size: 1.1rem;
   font-weight: 600;
   cursor:pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);

}  

.contact-info-area h3 {
	  font-size: 1.8rem;
   color:   #34495e;
         margin-bottom: 2rem;}

.info-block {
  margin-bottom  :       2rem;
}

.info-block strong {
   display:        block;
   color:#34495e;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-block p {
  color :   #666;
    line-height: 1.6;
	
}

.site-footer {
	background: #2c3e50;
   color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {

   height: 40px;
   margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}  

.footer-col h4 {
    color: #ffffff;

	    margin-bottom     :  1rem;

	    font-size: 1.2rem; 
	
}

.footer-col ul {
   list-style  :   none;
}

.footer-col ul li {


  margin-bottom: 0.7rem;
	}

.footer-col a {
	color: #bdc3c7;
    text-decoration: none;
   transition: color 0.3s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-col p {
  color: #bdc3c7;
  line-height: 1.6;
}

.footer-bottom {
   text-align: center;
  padding-top: 2rem;
   border-top: 1px solid #34495e;
    color: #95a5a6;

	}@media (max-width: 968px) {
    .hero-area {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .methodology-area .container-width {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .burger-toggle {
        display: flex;
    }

    .burger-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .burger-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .stats-row {
        flex-direction: column;
        align-items: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}.page-header-area {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  padding: 5rem 2rem;
    text-align: center;
    color  :   #ffffff;
}

.header-overlay h1 {
    font-size: 3rem;
  margin-bottom: 1rem;
}

.header-overlay p {
 font-size: 1.3rem;
    opacity: 0.95;
}

.services-detailed {
  padding: 5rem 2rem;
   background: #f8f9fa;
}

.service-detail-block {
	display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
	margin-bottom: 5rem;
   align-items: center;
}

.service-detail-block.reverse {
    direction: rtl;
}  

.service-detail-block.reverse > *   {


  direction: ltr;
     }

.detail-image-side img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.detail-text-side h2 {
    font-size   :2.2rem;
   color: #2c3e50;
    margin-bottom: 1.2rem;


}

.detail-text-side > p {
  font-size: 1.1rem;
    color: #555;
  line-height: 1.7;
    margin-bottom:2rem;
}

.benefits-list h3 {


  font-size   :     1.4rem;
 color: #34495e;
  margin-bottom: 1rem;
    margin-top: 1.5rem;


}

.benefits-list ul  
  {
     list-style: none;
  padding-left: 0;


}

.benefits-list ul li {
	   padding     :       0.7rem 0;
    padding-left: 2rem;
    position     :      relative;
    color: #444;
     }

.benefits-list ul li::before {
  content: '▸';
    position: absolute;
    left: 0;
   color: #11998e;
  font-size: 1.2rem;
}

.pricing-info {
   margin-top: 1.8rem;
          padding     :   1.2rem;
  background     :     #ecf0f1;
    border-radius: 8px;
    line-height  :    1.8;
}

.pricing-info strong {
    color: #2c3e50;
}

.webinar-section {
          padding: 5rem 2rem;
   background   :      #ffffff;
}

.webinar-section h2 {

   margin-bottom:   1rem;
	font-size: 2.5rem;
  text-align: center;
	color     :     #2c3e50;


}

.section-intro    {
   text-align   :  center;
        font-size: 1.1rem;
    color  :        #666;
    max-width: 700px;
  margin   :0 auto 3rem;
}

.webinar-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.webinar-card {
  background: #f8f9fa;
    padding  :       2rem;
   border-radius: 10px;
	border-left: 4px solid #3498db;
    transition: transform 0.3s;
}

.webinar-card:hover {
  transform: translateY(-5px);


}

.webinar-date {
    display :        inline-block;
    background: #3498db;
  color: #ffffff;
   padding: 0.4rem 1rem;
  border-radius: 20px;
   font-size   :0.9rem;
    margin-bottom: 1rem;


}

.webinar-card h3 {
   font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}  

.webinar-card p {
    color: #555;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.duration {
  display: block;

   color: #7f8c8d;

  font-size   : 0.95rem;
}

.process-section {
   padding: 5rem 2rem;
  background: #f8f9fa;
}

.process-section h2 {
   font-size: 2.5rem;
   text-align: center;
   color: #2c3e50;
   margin-bottom: 3rem;
}

.process-timeline {
  position: relative;
   justify-content: space-between;
   max-width: 1100px;
   display: flex;
    margin: 0 auto;


}

.process-timeline::before {
    height: 3px;
    left: 0;
  content: '';
  z-index: 0;
                    position: absolute;
   background: #dfe6e9;
    top  :       35px;
  right     :    0;
}

.timeline-item {
    flex: 1;
  text-align: center;
    position: relative;
    z-index: 1;
}  

.timeline-number {

    width: 70px;
   height     :      70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
   border-radius: 50%;
   display   : flex;
   align-items: center;
   justify-content:      center;
    font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);}


.timeline-item h3  
  {
    font-size: 1.3rem;

	    color  :#2c3e50;

	  margin-bottom: 0.8rem;
	}

.timeline-item p {
      color: #666;
  font-size: 0.95rem;
   line-height: 1.5;


}

.testimonials-area {

   padding: 5rem 2rem;
   background: #ffffff;}

.testimonials-area h2 {


 font-size: 2.5rem;
   text-align  :       center;
   color: #2c3e50;
   margin-bottom: 3rem;


}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}



.testimonial-box {
    background :        #f8f9fa;
		padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style:       italic;
  color: #555;
    line-height    :       1.7;
  margin-bottom   :       1.5rem;
  position: relative;
  padding-left: 1.5rem;
}  

.testimonial-text::before {
  content: '"';
    position: absolute;
	 left: 0;
    top: -10px;
  font-size: 3rem;
			color:   #3498db;
                    line-height :      1;
}

.testimonial-author strong {
          display: block;
   color: #2c3e50;
   margin-bottom: 0.3rem;
}

.testimonial-author span {


   color: #7f8c8d;
        font-size: 0.9rem; 
	
	}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
    text-align:   center;
    color: #ffffff;
}

.cta-services h2 {
   font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-services p {
   font-size: 1.2rem;
		margin-bottom: 2rem;
	
}

.thankyou-hero {
   padding: 5rem 2rem;
     background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);


}

.thankyou-content


{
     margin: 0 auto;
                    max-width     :       800px;
   text-align: center;

}

.success-icon-wrapper {
    margin-bottom: 2rem;
}

.checkmark-circle {
   width    : 100px;
    height: 100px;
    background: #27ae60;
  border-radius: 50%;
    margin: 0 auto;
    position: relative;
         animation     :    scaleIn 0.5s ease;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.checkmark-check {
    position :  absolute;
	top: 50%;
	left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
    width: 25px;
    height: 45px;
   border  :     solid #ffffff;
    border-width :  0 6px 6px 0;
}

.thankyou-content h1 
 {
  font-size   :      2.8rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
}

.thankyou-message {
    margin-bottom    : 3rem;
		color: #555;
	     font-size: 1.2rem;
	}

.next-steps-box {
   background: #ffffff;
      padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   margin-bottom: 3rem;
         text-align: left;
}

.next-steps-box h2 {
               font-size  :2rem;
   color :      #2c3e50;
  margin-bottom: 2rem;
   text-align: center;
}

.steps-list	{


   display: flex;
   flex-direction: column;
    gap: 2rem;}

.step-item {

   display: flex;
    gap: 1.5rem;
   align-items: flex-start;
     }

.step-num {
	   width     :        50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
               color: #ffffff;
    border-radius: 50%;
    display: flex;
   align-items: center;
	 justify-content: center;
  font-size   :      1.3rem;
    font-weight  :       700;
	 flex-shrink: 0;}

.step-content h3  {
    font-size: 1.3rem;
   color: #34495e;
  margin-bottom: 0.5rem;
}

.step-content p {

	                    color    :#666;
   line-height: 1.6;

}

.thankyou-actions {
   display: flex;
  gap: 1.5rem;
 justify-content    :        center;
    margin-bottom: 4rem;
}

.additional-info-section {
   margin-top: 5rem;
}

.additional-info-section h2 {
   font-size: 2rem;
    color: #2c3e50;
         text-align: center;
   margin-bottom:      2rem;
}

.info-cards-row {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                    gap: 2rem;
}

.info-card {
	background: #ffffff;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card img {
   width    :   100%;
		 height     :    200px;
    object-fit: cover;
}

.info-card h3     {
   padding: 1.5rem 1.5rem 0.5rem;
     font-size: 1.5rem;
   color: #2c3e50;
}

.info-card p
{
    color: #666;
               padding: 0 1.5rem 1rem;
               line-height: 1.6;
}

.card-link {
   display: inline-block;
   padding:    0.8rem 1.5rem;
         margin: 0 1.5rem 1.5rem;
  background: #3498db;
  color: #ffffff;
	text-decoration: none;
   border-radius: 6px;
   transition: background 0.3s;
}

.card-link:hover {

	    background: #2980b9;
     }

.contact-details-thank {
  padding: 4rem 2rem;
  background: #f8f9fa;
   text-align: center;
}

.contact-details-thank h2 {
 font-size: 2rem;
          color: #2c3e50;
   margin-bottom: 1rem;
}

.contact-details-thank > p{
	color    :     #666;
  margin-bottom: 2rem;
  font-size :   1.1rem;
}

.urgent-contact-box {
  display: flex;
	justify-content: center;
    gap: 4rem;
	flex-wrap: wrap; 
	
}

.contact-method {
    text-align: left;
     }

.contact-method strong
{
   display: block;
  color: #34495e;
   font-size: 1.2rem;
   margin-bottom: 0.5rem;
}

.contact-method p  
  {
   color: #666;
   line-height: 1.6;
}@media (max-width: 968px) {
    .page-header-area {
        padding: 3rem 1.5rem;
    }

    .header-overlay h1 {
        font-size: 2.2rem;
    }

    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-block.reverse {
        direction: ltr;
    }

    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-timeline::before {
        display: none;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .urgent-contact-box {
        flex-direction: column;
        gap: 2rem;
    }
}.policySection {
   background: #f8f9fa;
  padding  :    80px 2rem;
}

.policyContainer {
   text-align: left;
  margin:   0 auto;
  max-width: 800px;
}

.policyContainer h2 {
  font-size: 2.5rem;
	    color   :#2c3e50;
		margin-bottom: 1.5rem;
	  font-weight: 700;
}

.policyContainer p {
    color: #7f8c8d;
	font-size     :        1.1rem;
   margin-bottom: 1.5rem;
					line-height: 1.7;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }
    .policyContainer p {
        font-size: 1rem;
    }
    .policySection {
        padding: 60px 1rem;
    }
}