* {
  margin:0;
    padding: 0;
   box-sizing: border-box;
}

html {

               font-size: 16px;
      scroll-behavior: smooth;}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height:      1.6;
  color: #2c3e50;
   background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
    line-height:   1.3;
  margin-bottom  :1rem;
}

h1 {
  font-size: 3.5rem;
   color    :  #1a252f;
}

h2 {
    font-size: 2.5rem;
    color: #1a252f;
}

h3 {
   font-size  :      1.75rem;
  color: #34495e;
}

p {
	margin-bottom: 1rem;
   font-size: 1rem;
  line-height: 1.8;
}

a {
    text-decoration: none;
  color: inherit;
    transition: all 0.3s ease;
}

img {
  max-width: 100%;
                    height: auto;
   display: block;
}

button {
         border: none;
  cursor    : pointer;
   font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
   border: 1px solid #ddd;
                    padding: 0.75rem;
  border-radius: 4px;
         font-size: 1rem;
}

input:focus, textarea:focus, select:focus {
                    outline: none;
	 border-color  :       #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

.navbar {
  background-color: #ffffff;
    padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
    top: 0;
	z-index: 1000;
}

.navbar-container {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
	display: flex;
   justify-content: space-between;
   align-items: center;
}

.navbar-logo img {
    max-height: 74px;
  width: auto;


}

.nav-menu {
	 display: flex;
   list-style: none;
  gap: 2rem;
}

.nav-menu a {
	font-weight    :   500;
    color: #2c3e50;
  padding: 0.5rem 1rem;
   border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a:active {
   border-bottom-color: #3498db;
  color :   #3498db;
}

.menu-toggle {
   display: none;
   flex-direction: column;
  cursor: pointer;
   gap :     0.4rem;
}

.menu-toggle span {
   width: 25px;
   height: 3px;
   background-color: #2c3e50;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
} 

.menu-toggle.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle.active span:nth-child(3)  
  {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :     white;
    padding: 6rem 2rem;
   text-align: center;
}

.hero-content


{
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  color: white;
    margin-bottom: 1.5rem;
   font-size: 3rem;
}

.hero p {

  color: rgba(255, 255, 255, 0.95); 
	   font-size: 1.25rem; 
	  margin-bottom: 2rem;
	
	}

.cta-button {
   display   :    inline-block;
   background-color: #f39c12;
	 color: white;
   padding: 1rem 2.5rem;
   border-radius: 50px;
	font-weight: 600;
    font-size :      1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cta-button:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.cta-button-large {
    display: inline-block;
    background-color: #3498db;
    color: white;
   padding: 1.2rem 3rem;
          border-radius: 50px;
    font-weight  :       600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.cta-button-large:hover {
  background-color   :        #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.intro-section {
    background-color: #f8f9fa;
    padding: 4rem 2rem;
}

.intro-container {
    margin   :      0 auto;
   text-align: center;
   max-width   : 900px;
}

.intro-section h2 {
        margin-bottom: 2rem;
    color: #1a252f;
}

.intro-section p {
  font-size: 1.1rem;
    line-height: 1.9;
        color: #555;
}

.services-preview {


   padding: 5rem 2rem;
   background-color: white;
}

.services-container {
   max-width: 1200px;
   margin: 0 auto;
}

.services-preview h2 {
   text-align   :  center;
  margin-bottom: 3rem;
}

.services-grid   {

   display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;

}

.service-card {
  background-color: #f8f9fa;
    border-radius: 8px;
   overflow: hidden;
    transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);


}

.service-card:hover    {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card img  
  {
   width   :   100%;
   height: 250px;
  object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;

   font-size: 1.4rem;

   color: #1a252f;
}

.service-card p {
   padding: 0 1.5rem 1.5rem;
  color: #666;
          font-size: 0.95rem;
}

.leadership-section {
   padding: 5rem 2rem;
    background-color: white;
}

.leadership-container  {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.leadership-text h2 {
	 margin-bottom: 1.5rem;

		font-size: 2.2rem;
}

.leadership-text p {
   color: #555;
   margin-bottom: 1.5rem;
    line-height: 2;
}

.leadership-image img		{
    border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.ceo-section {

  padding: 5rem 2rem;
	background-color: #f8f9fa;


}



.ceo-container  
  {


  max-width  :     1200px;
    margin: 0 auto;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   display: grid;
   align-items: center;


}

.ceo-image img {
    border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   width: 100%;
}


.ceo-text h2 {
	 margin-bottom :    1.5rem;
    font-size: 2.2rem;
}

.ceo-text p   {
	   color: #555;
   margin-bottom: 1.5rem;
          line-height  :    2;


}

.workshop-section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.workshop-container {
	max-width: 1000px;
      margin: 0 auto;
                    text-align: center;
}  

.workshop-section h2 {
  color: white;
    margin-bottom: 2rem;
}

.workshop-content  {
    text-align: left;
  background-color: rgba(255, 255, 255, 0.1);
   padding: 2rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);


}

.workshop-content p {
  color: rgba(255, 255, 255, 0.95);
   margin-bottom: 1.5rem;
   line-height: 1.9;
}

.workshop-list {
	 list-style: none;
               display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
          margin-top: 1.5rem;
}

.workshop-list li {
  background-color: rgba(255, 255, 255, 0.15);
    padding: 1rem;
	border-radius: 6px;
  border-left: 4px solid #f39c12;
    color: white;
}

.webinar-section {
   padding: 5rem 2rem; 
	   background-color :   white;

}

.webinar-container {
   max-width: 900px;
   margin: 0 auto;
   text-align: center;
}

.webinar-section h2 {
   margin-bottom: 2rem;
    color: #1a252f;
}

.webinar-section p {
   font-size: 1.1rem;
    color: #555;
  margin-bottom: 1.5rem;
  line-height: 2;
}



.consultation-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
  color    :        white;
   text-align: center;
}

.cta-container  {
   max-width: 800px;
     margin: 0 auto;
}



.consultation-cta h2{


   color: white;
          margin-bottom: 1.5rem;
  font-size: 2.5rem; 
	
     }

.consultation-cta p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
 margin-bottom: 2rem;
    line-height:1.9;
}

.contact-section {
   background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-container {
  max-width: 700px;
  margin: 0 auto;
}  

.contact-section h2	{
               text-align: center;
   margin-bottom: 2rem;
    color    :       #1a252f; 

}

.contact-form {
  background-color: white;

   padding: 2.5rem;

   border-radius:  8px;

  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
	margin-bottom: 1.5rem;
    display   :  flex;
    flex-direction: column;
}

.form-group label {
	margin-bottom: 0.5rem;
    font-weight: 600;
    color    :  #2c3e50;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
    transition: all 0.3s ease;


}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color: #3498db;
  box-shadow: 0 0 8px rgba(52, 152, 219, 0.2);
}

.submit-button {
    width: 100%; 
   background-color: #3498db; 
   color: white; 
   padding: 1rem; 
   font-size  :        1rem; 
  font-weight: 600; 
   border-radius: 6px; 
  transition: all 0.3s ease; 
  cursor: pointer; 
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.submit-button:hover {

   background-color     :      #2980b9;
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
  transform: translateY(-2px);
	}

.footer {


    background-color: #1a252f;
   color    :  white;
  padding: 3rem 2rem 1rem;}

.footer-container {
  max-width: 1200px;
                    margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  margin-bottom: 2rem;
}

.footer-logo {
   display: flex;
   align-items: flex-start;}

.footer-logo-img {
    max-height     : 96px;
     width: auto;
  filter: brightness(0) invert(1);
}

.footer-info h3,
.footer-links h3	{
    margin-bottom: 1rem;
          font-size: 1.2rem;
  color: #f39c12;
}

.footer-info p {
	  color: rgba(255, 255, 255, 0.8);

    font-size: 0.95rem;

    margin-bottom: 0.5rem;

   line-height: 1.8;

}

.footer-links ul {
    list-style: none;
}

.footer-links li {
   margin-bottom     :   0.75rem;
}

.footer-links a {
     color: rgba(255, 255, 255, 0.8);
	transition: all 0.3s ease;
	}

.footer-links a:hover {
  color: #f39c12;
}

.footer-bottom {
   text-align: center;
   padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
		 font-size: 0.9rem;
}@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 1rem 0;
        gap: 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        padding: 0;
        border: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .leadership-container,
    .ceo-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .workshop-list {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .intro-section,
    .services-preview,
    .leadership-section,
    .ceo-section,
    .workshop-section,
    .webinar-section,
    .consultation-cta,
    .contact-section {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .hero-content {
        max-width: 100%;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .navbar-logo img {
        max-height: 60px;
    }

    .footer-logo-img {
        max-height: 70px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 5rem 2rem;
  text-align :  center;

}

.services-hero-content {
    max-width: 900px;
  margin: 0 auto;
}

.services-hero h1


{
   color: white; 
    margin-bottom: 1.5rem; 
   font-size: 3rem;
}

.services-hero p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
   line-height :       1.8;
}

.service-detail {
   padding: 4rem 2rem;
   background-color: white;
    border-bottom: 1px solid #f0f0f0;
}

.service-detail.alt {
  background-color   :      #f8f9fa;
}

.service-detail-container {
	max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.service-detail-left {


  display: flex;
     }

.service-detail-left.order-2 {
  order   :      2;
}

.service-detail-image
{
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.service-detail-right {
	 padding: 1rem 0;
}

.service-detail-right h2 {
   margin-bottom: 1.5rem;
    font-size: 2.2rem;
    color :      #1a252f;
}

.service-detail-right h3 {
     margin-top: 2rem;
    color: #34495e;
    margin-bottom: 1rem;
   font-size:       1.3rem;}

.service-detail-right p {
   color: #555;
   font-size: 1.05rem;
  line-height: 1.9;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
	margin-bottom: 2rem;
}

.service-features li {
  padding: 0.75rem 0 0.75rem 2rem;
   color: #555;
 position: relative;
  font-size: 0.95rem;
  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-left: 4px solid #3498db;
    border-radius     :      4px;
  margin: 1.5rem 0;
    color: #2c3e50;
}

.service-cta-link {
   display: inline-block;
                    background-color: #3498db;
    color     :white;
    padding: 0.9rem 2.2rem;
   border-radius: 50px;
   font-weight: 600;
  transition: all 0.3s ease;
    margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.service-cta-link:hover {
   background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

.pricing-section {

   padding: 5rem 2rem;
  background-color: white;}

.pricing-container {
  max-width: 1200px;
    margin: 0 auto;
}

.pricing-section h2 {
  text-align: center;
  margin-bottom :  3rem;
	color: #1a252f;
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.pricing-card  
  {
   background-color: #f8f9fa;
   border-radius: 8px;
  padding: 2rem;
  text-align: center;
   transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #3498db;
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  transform: scale(1.05);
}



.pricing-card.featured:hover {
    border-color: transparent;
}

.pricing-card h3 {
   margin-bottom: 1rem;
  font-size: 1.5rem;
}

.pricing-card.featured h3 {
   color: white;
}

.price {
    font-size: 1.8rem;
  font-weight   :700;
    margin-bottom: 1.5rem;
    color: #3498db;
}

.pricing-card.featured .price {
	    color: #f39c12;}

.pricing-features {

	   margin-bottom: 2rem;
    list-style: none;
   text-align: left;
	}

.pricing-features li {
   padding: 0.75rem 0;
	color: #555;
    border-bottom: 1px solid #ddd;
  font-size: 0.95rem;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta  
  {
	 display: inline-block;
   background-color: #3498db;
   color: white;
    padding: 0.9rem 2.2rem;
  border-radius: 50px;
    font-weight: 600;
          transition: all 0.3s ease;
    margin-top: 1.5rem;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}


.pricing-card.featured .pricing-cta {
  background-color: #f39c12;
}

.pricing-card.featured .pricing-cta:hover {
    background-color: #e67e22;


}

.pricing-cta:hover {
	 background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}


.why-presence {
    padding: 5rem 2rem;
  background-color  :       #f8f9fa;
}

.why-container {
   max-width: 1200px;
    margin     :  0 auto;
}

.why-presence h2 {
   text-align: center;
  margin-bottom  : 3rem;
    color: #1a252f;
}  

.why-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
	     background-color: white;

	   padding: 2rem;

	    border-radius  :    8px;

	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);

	         transition: all 0.3s ease;

}

.why-card:hover{
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.why-card h3 {
 margin-bottom: 1rem;
         color: #34495e;
    font-size: 1.3rem;
}

.why-card p {
     color: #555;
   font-size   :  0.95rem;
    line-height: 1.8;}

.faq-section 
 {
   padding: 5rem 2rem;
  background-color: white;
}


.faq-container {
  max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
	text-align: center;
  margin-bottom: 3rem;
    color: #1a252f;
}

.faq-items {
  display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius :      8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background-color: #f8f9fa; 

}

.faq-toggle {
   width: 100%;
	padding: 1.5rem;
  background-color: white;
    border: none;
   text-align: left;
   font-size    :        1rem;
  font-weight: 600;
     color: #2c3e50;
     cursor: pointer;
   transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
    align-items: center;
}

.faq-toggle:hover {
    background-color: #f0f0f0;
}

.faq-toggle::after {
  content: "+";
	font-size: 1.5rem;
  color: #3498db;
   transition  :       transform 0.3s ease;
}

.faq-toggle.active::after {
  transform: rotate(45deg);
}

.faq-content {
		max-height: 0;
   overflow: hidden;
	transition: max-height 0.3s ease;
    background-color   :   #f8f9fa;

}

.faq-content.show {
  max-height    :  500px;
}

.faq-content p {
    padding: 0 1.5rem 1.5rem;
	 color: #555;
   line-height: 1.8;
}

.thankyou-section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.thankyou-container   {
  max-width: 1000px;
    margin: 0 auto;
}

.thankyou-card {
   background-color: white;
   padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
   margin-bottom: 3rem;
}

.success-icon {
   margin-bottom: 2rem;
}

.success-icon svg {
    width   :     100px;
  height: 100px;
    animation: slideIn 0.6s ease-out;
}@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}.thankyou-card h1 {
    color: #2ecc71;
   margin-bottom: 0.5rem;
    font-size: 3rem;
	}

.thankyou-card .subtitle {
   font-size: 1.5rem;
   color: #7f8c8d;
   margin-bottom: 1.5rem;


}

.thankyou-card .description {
    color: #555;
   font-size: 1.05rem;
    line-height: 1.9;
   margin-bottom: 3rem;
}

.next-steps     {
    background-color: #f8f9fa;
   padding: 2rem;
   border-radius: 8px;
               margin-bottom: 2rem;
  text-align: left;
}

.next-steps h2 {
  text-align    :     center;
   margin-bottom: 2rem;
    color: #1a252f;
  font-size: 1.8rem;
}

.steps-list {
  display: grid;
  grid-template-columns: 1fr;
   gap: 1.5rem;
	
}

.step 
 {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
  display:   flex;
   align-items: center;
   justify-content :      center;
    min-width: 50px;
    -moz-border-radius: 50%;
   width: 50px;
  height: 50px;
  background-color: #3498db;
   color: white;
       border-radius: 50%;
    font-weight: 700;
  font-size: 1.3rem;

}

.step-content h3		{
   margin-bottom: 0.5rem;
   color: #2c3e50;
  text-align: left;

}


.step-content p {
  color: #555;
  font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-card{
   background-color: #ecf0f1;
    padding: 2rem;
         border-radius: 8px;
   margin-bottom: 2rem;
}

.contact-info-card h2 {
  color    :     #1a252f;
   margin-bottom: 1rem;
    font-size: 1.5rem;
   text-align: center;
}

.contact-info-card p {
      color: #555;
	margin-bottom     :        0.75rem;
  text-align    :        center;
     }

.contact-phone,
.contact-address {
    font-size: 1rem;
}

.action-buttons {
	display:     flex;
   gap: 1rem;
   justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
	 display: inline-block;
   padding: 1rem 2.5rem;
  border-radius  :      50px;
    font-weight: 600;
   transition: all 0.3s ease;
  text-align: center;
}

.btn-primary
{
  background-color: #3498db;
         color: white;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.btn-primary:hover {
  background-color: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(52, 152, 219, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #3498db;
  border: 2px solid #3498db;
}

.btn-secondary:hover {
   background-color: #3498db;
    color: white;
}

.testimonial-section {
   margin-top: 3rem;
}

.testimonial-section h2 {
               text-align: center;
    margin-bottom: 2rem;
   color: #1a252f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
   transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.testimonial-text {
   font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
  color: rgba(255, 255, 255, 0.85);
    font-size  :   0.95rem;
   font-weight: 600;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-left.order-2 {
        order: 0;
    }

    .thankyou-card {
        padding: 2rem;
    }

    .thankyou-card h1 {
        font-size: 2rem;
    }

    .success-icon svg {
        width: 80px;
        height: 80px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail {
        padding: 2rem 1rem;
    }

    .thankyou-section {
        padding: 2rem 1rem;
    }

    .thankyou-card {
        padding: 1.5rem;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .pricing-section {
        padding: 3rem 1rem;
    }

    .why-presence {
        padding: 3rem 1rem;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .step {
        gap: 1rem;
    }

    .service-features li {
        padding-left: 1.5rem;
        font-size: 0.9rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
   margin: 0 auto;
    text-align: left;
  max-width: 800px;
}

.policyContainer h2 {
        font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
    font-weight: 700;
}

.policyContainer h3 {
    font-size: 1.4rem;
  color :       #34495e;
  margin-top: 2rem;
	margin-bottom: 1rem;
    font-weight: 700;
}

.policyContainer p     {
    color: #555;
  margin-bottom: 1.5rem;
	line-height: 1.8;
  font-size: 1rem;
}

.policyContainer p:last-child {
     margin-bottom: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}