*{
    margin: 0;
  padding: 0;
   box-sizing:border-box;
}

html 
 {
	scroll-behavior: smooth;


}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  background: #ffffff;

   color: #2c3e50;

   line-height: 1.6;
} 

.navbar {
   background     :    #1a1a2e;
    position:   sticky;
       top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}  

.nav-container


{
    max-width: 1200px;
  margin: 0 auto;
   padding: 1rem 2rem;
   display: flex;
               justify-content: space-between;
   align-items: center;
}


.nav-logo img {
   height: 50px;
       width :    auto;
     filter: brightness(0) invert(1);
}

.nav-links {
   display: flex;
  list-style: none;
  gap: 3rem;
   align-items: center;
}  

.nav-links a {
    color     : #ecf0f1;
  text-decoration: none;
   font-weight   :   500;
   transition: color 0.3s ease;
   font-size: 1.05rem;
}

.nav-links a:hover {
  color: #3498db;
}

.cta-nav {
   background: #3498db !important;
    color:   #fff !important;
   padding   :   0.6rem 1.5rem;
  border-radius: 4px;
  transition:       background 0.3s ease;
}

.cta-nav:hover {
	    background: #2980b9 !important;
      color: #fff !important;

}

.burger-menu {
   display: none;
 flex-direction: column;
               cursor: pointer;
   background: none;
   border: none;
	 gap: 6px;
     }

.burger-menu span	{
	width: 25px;
   height: 3px;
   -moz-transition    : all 0.3s ease;
   background: #ecf0f1;
    border-radius: 2px;
               -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
} @media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #16213e;
        gap: 1rem;
        padding: 2rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :    #fff;
  padding: 8rem 2rem;
                    text-align: center;
     min-height: 600px;
    display: flex;
   align-items: center;
  justify-content    :   center;


}

.hero-content h1 {
    font-size :       3.5rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
      line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
	 margin-bottom: 2.5rem;
    opacity:0.95;
			max-width: 700px;
   margin-left: auto;
    margin-right: auto;
}

.hero-btn {
  background   :        #fff;
   color: #667eea;
   padding: 1rem 2.5rem;
   border-radius  :  50px;
				 text-decoration: none;
    font-weight :       600;
  font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
     }

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.features {
    padding: 5rem 2rem;

	  max-width: 1200px;

	  margin: 0 auto; 

}

.features h2 {

	   font-size: 2.5rem;
   text-align: center;
  margin-bottom: 3rem;
        color: #2c3e50;
	}

.features-grid {
     display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 2rem;


}

.feature-card {
		background: #f8f9fa;
	padding:        2rem;
   border-radius: 8px;
    transition: all 0.3s ease;
	border-left: 4px solid #3498db;
     }

.feature-card:hover
	{


  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
     }

.feature-card h3 {
  font-size   :        1.4rem;
	margin-bottom: 1rem;
  color: #667eea;
}

.feature-card p {
   color: #555;
  line-height : 1.8;
}

.services-preview {
     padding: 5rem 2rem;
   background: #f8f9fa;
}

.services-preview h2 {

	   font-size: 2.5rem;
   text-align: center;
   margin-bottom: 3rem;
    color: #2c3e50;}

.services-container		{
    max-width: 1200px;
               margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
	
}

.service-item    {
                    background: #fff;
       border-radius   :   12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-item:hover {


  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);


}

.service-image {
	 width: 100%;
	  height: 220px;
	  object-fit: cover;
	      display: block;
}

.service-item h3 {
   font-size: 1.3rem;
    padding: 1.5rem 1.5rem 0.5rem;
   color: #667eea;
}

.service-item p

{
   color  : #666;
   padding: 0.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
}@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}.workshops {
  padding  :    5rem 2rem;
  max-width: 1200px;
	 margin     :  0 auto;
}

.workshops h2 {
          font-size   :     2.5rem;
  text-align     :  center;
   margin-bottom:     3rem;
	 color: #2c3e50;


}

.workshops-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
   gap: 3rem;
}

.workshop-box {
    background: #fff;
   border-radius: 12px;
   overflow:       hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.workshop-box:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  transform: translateY(-10px);
}

.workshop-img
	{
   width: 100%;
  height: 250px;
    object-fit: cover;
}

.workshop-box h3 {
    font-size: 1.3rem;
               padding: 1.5rem 1.5rem 0.8rem;
  color: #764ba2;
}

.workshop-box p {
    padding: 0 1.5rem 1.5rem;
    color   :  #666;
    line-height :  1.7;
}@media (max-width: 768px) {
    .workshops-grid {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
        padding: 4rem 2rem;
    text-align: center;
	color: #fff;
   border-radius: 12px;
    margin: 5rem 2rem;
   max-width: 1200px;
   margin-left: auto;
    margin-right: auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;


}

.cta-content p     {
  font-size    :      1.1rem;
  margin-bottom :  2rem;
    opacity: 0.95;
}



.cta-button {
   background: #fff;
  color: #11998e;
    padding: 0.9rem 2.5rem;
	border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
   font-size: 1rem;
   display: inline-block;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}@media (max-width: 768px) {
    .cta-section {
        margin: 3rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }
}.contact-section {
     padding    :     5rem 2rem;
  background: #f8f9fa;
    max-width: 1200px;
    margin    :    0 auto;
	}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
 color: #2c3e50;
}

.contact-wrapper

{
	max-width     :    600px;
	    margin: 0 auto;
}

.contact-form		{
   display:    flex;
	  flex-direction : column;
	  gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
   padding: 1rem; 
	  border    :       2px solid #e0e0e0; 
	   border-radius: 6px; 
	  font-size: 1rem; 
	    font-family: inherit; 
	   transition :all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea {
 resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
   padding: 1rem;
   border: none;
  border-radius: 6px;
          font-size: 1.05rem;
    font-weight: 600;
   cursor     :       pointer;
   transition :      all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}@media (max-width: 768px) {
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}.footer {
    background  :    #1a1a2e;
  color :   #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.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 h4 {
 color    :#3498db;
   margin-bottom: 1rem;
    font-size    :     1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
	      margin-bottom: 0.7rem;


}

.footer-section a {
    color: #bdc3c7;
  text-decoration :        none;
   transition: color 0.3s ease;
}

.footer-section a:hover {
  color     :       #3498db;
}

.footer-logo-img {
    height: 60px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
} 

.footer-section p {
   color: #bdc3c7;
   margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-bottom {
   text-align: center;
  padding-top: 2rem;
   border-top: 1px solid #16213e;
   color: #95a5a6;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #764ba2 0%, #f093fb 100%);
   color: #fff;
   padding: 6rem 2rem;
    text-align: center;
  min-height: 400px;
    display: flex;
  align-items: center;
   justify-content: center;
}

.services-hero-content h1 {
    font-size: 3rem;
  margin-bottom: 1rem;
    font-weight: 700;
}

.services-hero-content p {


	font-size: 1.2rem;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
    margin-right: auto;
	}

.services-main {
    padding: 5rem 2rem;
    background: #ffffff; 

}

.services-main-container {
    max-width: 1200px;
    margin: 0 auto;
   display: flex;
	 flex-direction: column;
	 gap:  4rem;


}

.service-detailed     {
	 background :        #f8f9fa;
 border-radius: 12px;
  overflow     :        hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition :    all 0.3s ease;
    display: grid;
   grid-template-columns: 1fr 1.2fr;
}

.service-detailed:hover 
 {
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-5px);
}

.service-header{
    position: relative;
  overflow: hidden;
  display: flex;
   flex-direction: column;
}

.service-detail-image {
	width: 100%;
  height: 100%;
  object-fit: cover;
        min-height: 350px;
}

.service-header h2 {
       position: absolute;
               bottom: 0;
   left: 0;
   right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
   color: #fff;
					padding: 2rem 1.5rem 1.5rem;
    font-size   :        1.6rem;
    margin: 0;
}

.service-body {
  padding: 2.5rem;
   display: flex;
  flex-direction: column;
   justify-content: center;
}

.service-body p {
  color: #555;
   margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-list {
    list-style: none;
   margin: 1.5rem 0;
}

.service-list li {
  color: #666;
  padding: 0.6rem 0;
    padding-left: 1.8rem;
  position  :     relative;
 line-height     :      1.6;
}

.service-list li:before {
  content: "✓";
 position: absolute;
   left: 0;
  color: #11998e;
  font-weight: bold;
    font-size: 1.2rem; 

}

.service-benefit {
  font-style: italic;
    padding: 1rem;
   border-left: 4px solid #11998e;
    color: #155e53;
    background: #e8f8f5;
  border-radius: 4px;
   margin-top: 1.5rem;

}@media (max-width: 968px) {
    .service-detailed {
        grid-template-columns: 1fr;
    }

    .service-header {
        min-height: 300px;
    }

    .service-body {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .service-body {
        padding: 1.5rem;
    }

    .service-list li {
        font-size: 0.95rem;
    }
}.services-pricing {


  padding: 5rem 2rem;
	 background: #f8f9fa;

}

.services-pricing h2 {
         font-size:        2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  color: #2c3e50;
}

.pricing-grid {
    max-width: 1000px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.pricing-card {
	background: #fff;
    border-radius: 10px;
  padding: 2.5rem 2rem;
    text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition :      all 0.3s ease;
	border-top: 4px solid #ccc;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); 
	
}

.pricing-featured {
  border-top-color: #667eea;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}

.pricing-card h3 {
   font-size: 1.4rem;
	 color: #2c3e50;
 margin-bottom: 1rem; 
}

.pricing-card .price {
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
	   list-style: none;
    text-align : left;
   margin: 2rem 0;
}

.pricing-card ul li

{
   padding: 0.8rem 0;
   color: #666;
   border-bottom: 1px solid #eee;
    font-size :       0.95rem;
}

.pricing-card ul li:before {
  content: "→ ";
    color: #11998e;
    font-weight: bold;
  margin-right: 0.5rem;
}@media (max-width: 768px) {
    .pricing-featured {
        transform: scale(1);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}.services-cta {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding    :  4rem 2rem;
    text-align: center;
	color: #fff;
    margin: 3rem 2rem;
    border-radius: 12px;
   max-width: 1000px;
	 margin-left   :    auto;
    margin-right: auto;
}

.services-cta h2 {
    font-size: 2.2rem;
  margin-bottom: 1rem;
}


.services-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button-large

{
    background: #fff;
	color     :   #11998e;
   padding: 1rem 2.5rem;
    border-radius: 50px;
   text-decoration: none;
	 font-weight:        600;
   font-size: 1.05rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-container {
    min-height   :        70vh;
   display: flex;
  align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	
}

.thankyou-card {
   background: #fff;
  border-radius    :       16px;
   padding: 3.5rem;
	max-width: 600px;
   width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
  animation: slideInUp 0.6s ease;
}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.thankyou-icon {
   margin-bottom: 2rem;
   display: flex;
	justify-content: center;
}
	/* Development only */


/* Cross-browser fix */

.success-checkmark {
                    width :100px;
          height: 100px;
}

.success-circle {
   fill: none;
  stroke :    #11998e;
    stroke-width: 2;
}

.success-path {
	fill: none;
  stroke   :        #11998e;
        stroke-width: 3;
  stroke-linecap: round;
    stroke-linejoin   :   round;
  stroke-dasharray: 47;
   stroke-dashoffset: 47;
         animation: checkmark 0.8s ease 0.4s forwards;
}
@keyframes checkmark {
    to {
        stroke-dashoffset: 0;
    }
}.thankyou-card h1 {
	 font-size     :    2.5rem;
  color: #2c3e50;
  margin-bottom:       1rem;
}

.thankyou-main {
  font-size: 1.3rem;
	    color: #667eea;
	    font-weight: 600;
	   margin-bottom: 1.5rem;
}

.thankyou-text {
	color: #666;
   font-size: 1rem;
    line-height: 1.8;
  margin-bottom: 2.5rem;
}

.thankyou-info


{
	margin: 2.5rem 0;
	 text-align: left;
}

.info-box {
   background: #f8f9fa;
                    border-radius: 10px;
   padding   : 2rem;
	border-left: 4px solid #667eea;

}

/* Browser compatibility */

.info-box h3 {
  color     :       #2c3e50;
   margin-bottom: 1rem;
    font-size: 1.1rem;
} 

.info-list {
   list-style: none;
}
	/* Cross-browser fix */

	/* Hack for old browsers */
	/* Responsive design */

.info-list li {
   padding: 0.7rem 0;
   color: #555;
    padding-left: 1.8rem;
    position: relative;
}

.info-list li:before
{
  content: "→";
  position     :     absolute;
    left: 0;
  color    :     #11998e;
   font-weight: bold;
}

.thankyou-actions {
	  display: flex;
   gap: 1rem;
   margin: 2.5rem 0;
    flex-wrap: wrap;
   justify-content     :      center;

}

.action-button {
    padding: 0.9rem 2rem;
    border-radius :       6px;
  text-decoration: none;
  font-weight: 600;
    transition     :       all 0.3s ease;
  display: inline-block;
}

/* Custom modifications */

.action-button.primary {
     background: #667eea;
    color: #fff;
	}

.action-button.primary:hover {
    background: #5568d3;
  transform: translateY(-2px);
}

.action-button.secondary

{
  background: #f0f0f0;
    color   :     #667eea;
  border: 2px solid #667eea;
}

.action-button.secondary:hover 
 {
         background  : #667eea;
   color: #fff;
}  

.thankyou-contact  
  {
   	 color: #666;
  font-size: 0.95rem;
   margin-top: 2rem;
    padding-top   :1.5rem;
    border-top: 1px solid #eee;

}

.thankyou-contact strong {
    color: #11998e;
   font-size    : 1.1rem;
}
@media (max-width: 600px) {
    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-card h1 {
        font-size: 1.8rem;
    }

    .thankyou-main {
        font-size: 1.1rem;
    }

    .thankyou-text {
        font-size: 0.95rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .info-box {
        padding: 1.5rem;
    }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
  min-height: 80vh;
}

.policyContainer {

  max-width: 850px;
  margin: 0 auto;
  text-align: left;
     }

.policyContainer h1 {
	font-size: 3rem;
  color: #2c3e50;
    margin-bottom: 2rem;
   font-weight   :  700;
  border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
}

.policyContainer h2 {
   font-size  :     1.6rem;
    color :        #2c3e50;
	margin-top: 2.5rem;
   margin-bottom: 1rem;
          font-weight: 600;
   color: #667eea;
}

.policyContainer p  {
  color: #555;
  margin-bottom: 1.5rem;
    line-height: 1.8;
   font-size: 1rem;
    text-align: justify;
}

.policyContainer p:first-of-type	{
   font-size    :       1.05rem;
   color: #666;
                    font-weight   :       500; 
	
}

.policyContainer h2:first-of-type {
   margin-top: 1.5rem;
}@media (max-width: 968px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 50px 1rem;
        min-height: auto;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        text-align: left;
        margin-bottom: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 30px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}