* {
   margin: 0;

	  padding: 0;

	    box-sizing: border-box;
}

html {


  scroll-behavior: smooth;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
    color: #2c3e50;
    background-color:       #fafafa;
}

a {
				 text-decoration     : none;
   color  :       inherit;
}

img {
    max-width: 100%;
    height: auto;
	display: block;
}

.header-container {
	background-color     : #fff;

  border-bottom: 1px solid #ecf0f1;

     position: sticky;

  top:        0;

   z-index:  1000;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-wrapper {

	    padding: 1rem 2rem;
         max-width: 1400px;
   margin: 0 auto;
}

.nav-content {

	  display: flex;
   justify-content: space-between;
   align-items: center;
	}

.logo-section {
  flex: 1;
}



.nav-logo {

   height: 50px;
   width: auto;
	
     }

.burger-toggle {
	background: none;
    display: none;
  padding: 0.5rem;
   cursor: pointer;
       border: none;
}

.burger-icon {
    width  :   28px;
  height: 28px;
   stroke: #2c3e50;
}

.nav-links {
   margin-left: auto;
  list-style: none;
    gap: 3rem;
	display: flex; 

}

.nav-link {
  font-size: 1rem;
  font-weight  :        500;
    color: #2c3e50;
   transition: color 0.3s ease;
	position: relative;
}

.nav-link:hover {
   color: #3498db;
}

.nav-link::after {
  content: '';
	  position: absolute;
	    bottom: -5px;
	    left: 0;
	  width: 0;
	   height: 2px;
	   background-color: #3498db;
		transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
	}

.hero-section {
 display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
  padding: 5rem 2rem;
  max-width:       1400px;
    margin: 0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
      display: flex;
               flex-direction :   column;
	gap    :    2rem;
	}

.hero-title {
                    line-height: 1.2;
    font-size: 3.5rem;
  color: #2c3e50;
   font-weight: 700;
     }

.hero-subtitle {
	font-size  :        1.25rem;
          color: #555;
   line-height: 1.8; 

}

.cta-button {

    display: inline-block;
    padding: 1rem 2rem;
	background-color: #3498db;
   color     : #fff;
  font-weight: 600;
	border-radius: 8px;
  transition: all 0.3s ease;
    width: fit-content;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
     }

.cta-button:hover{
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.hero-image {
  overflow: hidden;
         border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-image img {
    width: 100%;
   height : 100%;
    object-fit: cover;
  transition :transform 0.3s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

.intro-section {

	    padding: 5rem 2rem;
   margin: 0 auto;
   max-width: 1400px;
     }

.section-title {
   font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
  margin-bottom: 3rem;
    color   :      #2c3e50;
   position: relative;
   padding-bottom: 1rem;
}

.section-title::after   {
  content: '';
  position: absolute;
   bottom: 0;
    left: 50%;
  transform: translateX(-50%);
    width: 80px;
   height: 4px;
	background-color:      #3498db;
    border-radius: 2px;
}

.intro-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;


}

.intro-card		{
  background-color: #fff;
  padding: 2.5rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition   :    all 0.3s ease;
    border-top: 4px solid transparent;
}

.intro-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      border-top-color: #3498db;
}

.intro-card h3   {

   font-size: 1.5rem;
    margin-bottom: 1rem;
   color: #2c3e50;

	}

.intro-card p {
   color: #666;
  line-height: 1.8;
}

.services-preview {


    background-color: #ecf0f1;
  padding: 5rem 2rem;
}

.services-container {


  max-width  :  1400px;
     margin: 0 auto;}

.services-grid {
   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	  gap: 2.5rem;
	          margin-top: 3rem;
}

.service-item {
	 background-color  :       #fff;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}



.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
   -o-transition  : transform 0.3s ease;
   width: 100%;
  height: 250px;
    object-fit: cover;
     transition   :        transform 0.3s ease;
}

.service-item:hover .service-image {
  transform: scale(1.08);
}

.service-item h3 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
    color: #2c3e50;
}

.service-item p {
    padding: 0 1.5rem 1.5rem;
  color: #666;
	font-size: 0.95rem;
   line-height: 1.7;
}

.webinars-section {

          padding    :      5rem 2rem;
   max-width: 1400px;
   margin: 0 auto;
	
     }

.webinars-wrapper
{
	text-align   :        center;


}

.section-description {
  font-size: 1.1rem;
     color: #666;
       margin-top   :   1rem;
     max-width: 700px;
      margin-left: auto;
                  margin-right: auto;


}

.webinars-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    margin-top: 3rem;
}

.webinar-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem;
	border-radius: 10px;
   color: #fff;
    transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);

}

.webinar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.5);
}

.webinar-card h4 {
   font-size: 1.25rem;
  margin-bottom: 1rem;


}

.webinar-card p {
    font-size     :       0.95rem;
  line-height    :    1.7;
  opacity: 0.95;
}

.cta-section  {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
       color: #fff;
     padding: 4rem 2rem;
     text-align: center;
       margin    :        3rem 0;
}



.cta-wrapper {
    max-width: 800px;
  margin     :   0 auto;
}

.cta-wrapper h2 {
	font-size: 2.5rem;
   margin-bottom   :     1rem;
}

.cta-wrapper p     {
   font-size: 1.15rem;
  margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
  display: inline-block;
       padding: 1.2rem 2.5rem;
    background-color: #fff;
   color: #3498db;
   font-weight: 600;
  border-radius:        8px;
   transition: all 0.3s ease;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    background-color: #ecf0f1;
	
}

.contact-section
	{
  padding: 5rem 2rem;
  max-width: 1400px;
	 margin: 0 auto;
  background-color: #f5f7fa;
}

.contact-container {
    max-width: 900px;
	margin :   0 auto;

}

.contact-section h2 {
   font-size: 2.5rem;
  text-align :       center;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.contact-intro {
    text-align: center;
   color     :#666;
  font-size   :       1.1rem;
       margin-bottom: 2.5rem;
}

.contact-form {
  background-color: #fff;
    padding:     2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.form-group {
   margin-bottom: 1.5rem;
  display: flex;
	flex-direction: column;
}

.form-group label {
   font-weight: 600;
	   margin-bottom: 0.5rem;
	  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
         padding: 0.75rem;
    border: 2px solid #ecf0f1;
   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  :  #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
    background-color: #3498db;
   color: #fff;
	 padding     :      1rem 2rem;
  border: none;
   border-radius: 6px;
  font-weight:  600;
     font-size: 1rem;
   cursor: pointer;
		 transition: all 0.3s ease;
    width: 100%;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.form-submit:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.contact-info {
   background-color:      #fff;

		padding: 2.5rem;

	   border-radius: 12px;

	  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info h3	{

	  font-size: 1.5rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;
     }

.contact-info p {
    margin-bottom: 0.8rem;
  font-size: 1.05rem;
   color: #666;
}

.footer-container {
    background-color: #2c3e50;
	color: #ecf0f1;
               padding: 4rem 2rem 2rem;
		 margin-top: 3rem;
}

.footer-content	{
    max-width: 1400px;
   margin: 0 auto;
    display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-bottom: 2rem;
}

.footer-section h4 {
    color: #fff;
    font-size     : 1.1rem;
	margin-bottom: 1rem;
}

.footer-logo-img {
    height :  60px;
      width  :  auto;
     filter: brightness(0) invert(1);
    margin-bottom   :  1rem;
}

.footer-links {
               list-style: none;}

.footer-links li {
 margin-bottom: 0.8rem;
}

.footer-links a {


      color: #ecf0f1;
    transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
	} 

.footer-links a:hover {
	 color: #3498db;
}

.footer-section p{
   color: #bdc3c7;
   line-height: 1.8;
  font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
   padding-top: 2rem;
    text-align    : center;
  color: #95a5a6;
   font-size:    0.9rem;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: #fff;
        gap: 0;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .burger-toggle {
        display: block;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .nav-links {
        top: 60px;
    }

    .navbar-wrapper {
        padding: 0.75rem 1rem;
    }

    .nav-logo {
        height: 40px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .webinars-list {
        grid-template-columns: 1fr;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #fff;
    padding: 5rem 2rem;
    text-align: center;
   margin-top: 70px;
}

.services-hero-content {
   max-width: 900px;
    margin: 0 auto;
}

.services-hero-title {
	      font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1rem;
    line-height: 1.3;
	}

.services-hero-desc {
  font-size :1.25rem;
   opacity: 0.95;
  line-height: 1.8;
}

.services-detailed {
    padding: 5rem 2rem;
	max-width: 1400px;
    margin: 0 auto;
}

.services-container {
   display: flex;
    flex-direction: column;
   gap: 4rem;
}

.service-detailed-item {
   display: grid;
 grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
   background-color: #fff;
    padding: 3rem;
	border-radius    :       12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition   :      all 0.3s ease;
}

.service-detailed-item:hover {


  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
     }

.service-detailed-item.reverse {

	  direction   :       rtl;
}

.service-detailed-item.reverse > * {
       direction: ltr;
}

.service-detail-image {
        border-radius: 10px;
  overflow:      hidden;
     height: 350px;
}

.service-detail-image img {
  width: 100%;
	 height: 100%;
   object-fit    :    cover;
   transition: transform 0.3s ease;
}

.service-detailed-item:hover .service-detail-image img {
     transform: scale(1.08);
     }

.service-detail-content h2 {
   font-size: 2rem;
		color: #2c3e50;
    margin-bottom: 1.5rem;

}

.service-detail-content p {
                    color     :      #666;
   line-height :        1.8;
   margin-bottom: 1.5rem;
	font-size: 1rem;
}

.service-features {
		list-style :       none;
    margin: 2rem 0;
  padding: 0;
}

.service-features li {
   padding    :        0.8rem 0;
  padding-left: 2rem;
    color: #555;
               position    :relative;
 line-height: 1.6;


}

.service-features li::before {
  content: '✓';

   position: absolute;

   left: 0;

    color: #3498db;

   font-weight: bold;

    font-size: 1.2rem;
}

.service-duration {
   background-color: #ecf0f1;
  padding: 1rem;
  border-radius:   6px;
    color: #2c3e50;
   font-weight: 600;
  margin-top: 1.5rem;
	
}

.service-packages {
  background-color: #f5f7fa;
				 padding: 5rem 2rem;
}

.packages-container {
   max-width: 1400px;
    margin: 0 auto;
}

.packages-intro {
    text-align: center;
    color: #666;
	 font-size: 1.1rem;
  margin-bottom     :   3rem;
}

.packages-grid   {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap  : 2.5rem;
     }

.package-card {
  background-color: #fff;
	  border-radius    :      12px;
	   padding: 2.5rem;
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	    transition: all 0.3s ease;
		 display: flex;
	   flex-direction: column;
	    border-top: 4px solid #ecf0f1;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.package-card.featured  {
    border-top-color: #3498db;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-name {
    font-size: 1.5rem;
  color: #2c3e50;
	margin-bottom: 0.5rem;
  font-weight: 700;
}

.package-desc {
	color: #666;
   font-size    :   0.95rem;
   margin-bottom: 1.5rem;
}

.package-features {


    list-style: none;
   margin   :1.5rem 0;
    padding: 0;
    flex-grow: 1;
     }

.package-features li {
    padding :       0.6rem 0;
   color: #555;
  padding-left: 1.5rem;
   position: relative;
    font-size: 0.95rem;
}

.package-features li::before {
  content: '•';
    position: absolute;
   left: 0;
    color: #3498db;
	 font-size: 1.5rem;
}

.package-price {
  font-size: 1.5rem;
      color:       #3498db;
    font-weight: 700;
	margin: 1.5rem 0 1rem;
     }

.package-btn     {
    display: inline-block;
   padding: 0.9rem 2rem;
    background-color: #ecf0f1;
          color: #2c3e50;
   font-weight: 600;
    border-radius: 6px;
  text-align: center;
   transition: all 0.3s ease;
}



.package-btn:hover {
                    background-color: #2c3e50;
    color: #fff;
}  

.package-btn.featured-btn {
	background-color: #3498db;
	color: #fff;
}

.package-btn.featured-btn:hover {
  background-color  :#2980b9;
}

.why-choose-us {
  padding   :5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-container {
  text-align: center;
}

.why-grid	{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
    margin-top: 3rem;
}

.why-item {

	    background-color: #fff;
	padding     :2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  text-align :    center;

}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.why-number {
    font-size: 3rem;
  font-weight :      700;
  color: #3498db;
   margin-bottom: 1rem;
	opacity: 0.3;
}

.why-item h3 {
  font-size: 1.3rem;
	 color: #2c3e50;
   margin-bottom: 1rem;
}

.why-item p {
               color  :       #666;
  line-height:     1.7;
}

.testimonials-section
	{
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
    color: #fff;


} 

.testimonials-container {
    max-width     :      1400px;
   margin: 0 auto;
}

.testimonials-container .section-title {
    color    : #fff;
}

.testimonials-container .section-title::after {


   background-color: #fff;}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.1);
    padding  :       2rem;
    border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1rem;
    line-height: 1.8;
  margin-bottom  :        1.5rem;
    font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  text-align     :        right;
               font-size: 0.95rem;
}

.faq-section {
   padding: 5rem 2rem;
 max-width: 1200px;
		 margin: 0 auto;
}

.faq-container {
  text-align: center;
}

.faq-items {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
       gap: 2rem;
       margin-top: 3rem;
      text-align: left;
} 

.faq-item  {
    background-color: #f5f7fa;
	 padding: 2rem;
    border-radius: 10px;
  border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
  transform: translateX(5px);
}

.faq-question
	{
   font-size: 1.1rem;
    color: #2c3e50;
  margin-bottom: 1rem;
	font-weight : 600;
}

.faq-answer {
      font-size: 0.95rem;

    line-height: 1.8;

   color: #666;
}

.thankyou-section {
   padding: 4rem 2rem; 
                    max-width: 1200px; 
     margin: 0 auto; 
  min-height: 60vh; 
        display: flex; 
  align-items: center;
}

.thankyou-container {
    display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 3rem;
    width: 100%;
}

.thankyou-content {
        background-color: #fff;
  padding: 3rem;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.success-icon {
       text-align: center;
         margin-bottom: 2rem; 


}

.success-icon img


{
  width: 80px;
  height     :       80px;
  stroke: #2ecc71;
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.3));
} 

.thankyou-title {


	text-align: center;
    margin-bottom:        0.5rem;
   font-size: 2.5rem;
   color: #2c3e50;}

.thankyou-subtitle {
   text-align  :     center;
  color: #2ecc71;
  font-weight     :      600;
    font-size: 1.1rem;
   margin-bottom: 2rem;
}

.thankyou-message
	{

   color: #666;
    line-height: 1.8;
}

.thankyou-message p {

	    margin-bottom: 1.5rem;

}

.next-steps {
    background-color  : #f5f7fa;
   padding: 2rem;
  border-radius: 8px;
   margin: 2rem 0;
}

.next-steps h3 {
 color: #2c3e50;
   margin-bottom: 1rem;
    font-size    : 1.2rem;
}

.steps-list {

    margin-left: 1.5rem;
   color :   #555;


}

.steps-list li {
   margin-bottom: 0.8rem;
        line-height: 1.6;
}

.thankyou-actions {

	    display    :flex;
    gap: 1.5rem;
   margin-top: 2rem;
	


}

.thankyou-btn {
  transition: all 0.3s ease;
  font-weight: 600;
   flex: 1;
	text-align: center;
    padding: 1rem 2rem;
   display: inline-block;
  border-radius: 6px;
}

.thankyou-btn.primary

{
    background-color: #3498db;
    color: #fff;
}

.thankyou-btn.primary:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
}

.thankyou-btn.secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
   border: 2px solid #3498db;
}

.thankyou-btn.secondary:hover {
   color: #fff;
	 background-color: #2c3e50;
}  

.thankyou-contact {

   background-color  :        #e8f8f5;
	padding: 1.5rem;
  border-radius: 8px;
   text-align: center;
  margin-top: 2rem;
               color: #2c3e50;


}

.thankyou-contact p {
    margin: 0.5rem 0;
}

.thankyou-side {
	display: flex;
    gap: 2rem;
	flex-direction: column;
}

.thank-you-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :   #fff;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.thank-you-card h3	{
  font-size: 1.2rem;
    margin-bottom: 1rem;
}

.thank-you-card p {
  font-size: 0.95rem;
    line-height: 1.7;
   margin-bottom: 0.5rem;
} 

.thank-you-card.alt {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.explore-services {
  background-color: #ecf0f1;
   padding: 4rem 2rem;
}

.explore-container {
    max-width: 1400px;
	margin: 0 auto;
    text-align: center;
}

.explore-container h2 {
  font-size: 2rem;

  color: #2c3e50;

    margin-bottom   : 1rem;
}

.explore-container p {
	color     :     #666;
       font-size: 1.05rem;
    margin-bottom: 3rem;
} 

.explore-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.explore-card {
	background-color: #fff;
  border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
         transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
    height: 300px;

}



.explore-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.explore-card img {
		object-fit: cover;
    transition  :    transform 0.3s ease;
  width: 100%;
    height: 70%;
}

.explore-card:hover img {
  transform: scale(1.1);
}

.explore-card h3 {
    padding: 1.5rem;
  font-size   :     1.1rem;
   color: #2c3e50;
    text-align: center;


}

@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .service-detailed-item {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .service-detail-image {
        height: 250px;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: translateY(-10px);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .faq-items {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn {
        width: 100%;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-title {
        font-size: 1.5rem;
    }

    .services-hero-desc {
        font-size: 1rem;
    }

    .service-detail-content h2 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .thank-you-card {
        padding: 1.5rem;
    }
}.policy-section  {


   padding: 80px 2rem; 
   background: #f8f9fa; 
  min-height: calc(100vh - 300px);}


.policy-container {
   max-width: 900px;
     margin: 0 auto;
  text-align    :      left; 

}

.policy-title {


   font-size: 2.8rem;
   color: #2c3e50;
   margin-bottom: 2rem;
    font-weight: 700;
  line-height: 1.2;}

.policy-container h2 {
    font-size: 1.8rem;
                    color: #2c3e50;
    margin-top: 2.5rem;
				 margin-bottom: 1.2rem;
    font-weight: 600;
   position    :      relative;
          padding-bottom: 0.8rem;
    border-bottom: 2px solid #3498db;
}

.policy-container h2:first-of-type {
    margin-top: 2rem;
}

.policy-container p {
        color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size   :   1.05rem;
}

.policy-container strong {
   color: #2c3e50;
    font-weight: 600;
}  @media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policy-title {
        font-size: 1.6rem;
        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.7;
        margin-bottom: 1rem;
    }
}