footer
{
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   color: white;
  padding: 4rem 2rem 2rem;
               margin-top: 5rem;
}

.footer-container {


    max-width: 1200px;
  margin: 0 auto;}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
   margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
   height: 136px;
    width: auto;
  filter: brightness(0) invert(1);
  display:        block;
}

.footer-section h3 {
    font-size    :     1.2rem;
  margin-bottom: 1.5rem;
   color: #fff;
   font-weight: 600;
}

.footer-links {


  list-style: none;
   padding: 0;
	}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
   color: #bbb;
  text-decoration: none;
    transition: color 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
   color: #00d4ff;
}

.footer-contact-info  {
	line-height: 1.8;
	
}

.footer-contact-info p {
	 margin-bottom: 0.8rem;
    color:#bbb;
   font-size    :    0.95rem;
}

.footer-contact-info .contact-label {

   color: #fff;
  font-weight     :      600;
   display: block;
   margin-bottom: 0.2rem;
     }

.footer-contact-info .contact-value {
  color: #bbb;
  display: block;
  margin-bottom: 1rem;
}

.footer-address {
  color: #bbb;
}

.footer-phone {
  color: #00d4ff;
   font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

.footer-divider

{
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
   margin-top: 2rem;
    text-align: center;
}

.footer-bottom {
    display: flex;
  justify-content: space-between;
   align-items: center;
   flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
      color: #999;
    font-size: 0.9rem;
     }

.footer-bottom-links {
	display: flex;
  gap: 2rem;
    list-style: none;
}

.footer-bottom-links a {
  color: #bbb;
   text-decoration: none;
   font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover		{
  color: #00d4ff;
}@media (max-width: 768px) {
    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo img {
        height: 100px;
    }
}.faq-item {
	 cursor: pointer;
   -webkit-transition: all 0.3s ease;
    -webkit-border-radius: 10px;
   background: white;
  -o-transition: all 0.3s ease;
	-moz-border-radius: 10px;
   transition: all 0.3s ease;
       border-left: 4px solid #667eea;
   padding: 1.5rem;
   margin-bottom: 1rem;
  border-radius: 10px;
     }

.faq-item:hover {
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.15);
}

.faq-question {
    display: flex;
   justify-content: space-between;
  align-items: center;
    font-weight: 600;
  color: #1a1a1a;
   font-size: 1.05rem;
  gap: 1rem;
}

.faq-toggle {
  width: 30px;
   height: 30px;
  background: #f0f4ff;
       border-radius: 50%;
    display: flex;
   align-items   :center;
  justify-content: center;
    color: #667eea;
    font-weight: bold;
  transition: all 0.3s ease;
	 flex-shrink: 0;
}



.faq-item.active .faq-toggle {
    background: #667eea;
   color: white;
  transform: rotate(180deg); 

}

.faq-answer {
   margin-top: 1rem;
   color: #666;
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.service-card {
  background   :   white;
  padding: 2rem;
    border-radius: 10px;
    text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition     :  all 0.3s ease;
   border-top: 4px solid #667eea;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(102, 126, 234, 0.2);
}

.service-card h3 {
	font-size: 1.5rem; 
   margin-bottom: 1rem; 
   color: #1a1a1a;
}

.service-card p {
  color: #666;
    line-height: 1.7;
}

.image-wrapper {
  position: relative;
    overflow: hidden;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-wrapper img {
    width   :   100%;
  display: block;
   transition: transform 0.3s ease;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.testimonial-section    {
  background: white;
   padding   :     3rem;
    border-radius: 15px;
    margin: 3rem 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-content     {


    grid-template-columns: 1fr 1fr;
    display: grid;
 gap: 3rem;
  align-items: center;
     }

.testimonial-text {
   font-size: 1.1rem;
   color: #555;
    line-height: 1.8;
	 font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 600;
    color: #1a1a1a;
   margin-bottom: 0.2rem;
}

.testimonial-role {
    font-size: 0.9rem;
  color: #999;
}

.testimonial-image	{
  width  : 100%;
  border-radius: 15px;
   object-fit: cover;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
  margin: 2rem 0;
}

.feature-item {
  background: white;
    padding: 2rem;
    border-radius     : 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.15);
}

.feature-icon {
   font-size: 3rem;
 margin-bottom: 1rem;
}  

.feature-title {
  font-size: 1.2rem;
   font-weight: 600;
  color: #1a1a1a;
   margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.95rem;
  color: #666;
   line-height: 1.6;
}

.highlight-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :        white;
  padding: 2rem;
    border-radius: 15px;
   margin: 2rem 0;
  text-align: center;
}

.highlight-box h3 {
    font-size: 1.5rem;
   margin-bottom     : 1rem;
}

.highlight-box p {
  font-size: 1.05rem;
    line-height: 1.7;
}

.timeline {
  position   : relative;
   padding: 2rem 0;
}

.timeline-item


{

	    margin-bottom :     2rem;
   position: relative;
    padding-left: 3rem;
	}

.timeline-item:before {
  content: "";
   position: absolute;
  left: 0;
  top:  0;
   width: 20px;
    height: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius    :     50%;
  border: 3px solid white;
   box-shadow: 0 0 0 2px #667eea;
}

.timeline-item:after   {
  content: "";
  position: absolute;
    left: 9px;
  top: 20px;
	 width: 2px;
  height: calc(100% + 1.5rem);
    background: #ddd;
}

.timeline-item:last-child:after {
  display: none;
}

.timeline-title {
    font-weight: 600;
    color    :#1a1a1a;
   margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.timeline-description {
    color: #666;
  line-height: 1.6;
}


.modal-trigger {
   cursor: pointer;
   color: #667eea;
   text-decoration: underline;
  font-weight: 500;
                    transition: color 0.3s ease;
}

.modal-trigger:hover {
    color     :     #764ba2;
}

.section-highlight {
   background    :       #f0f4ff;
   padding: 3rem;
    border-radius: 15px;
   border-left:  5px solid #667eea;
   margin: 3rem 0;
}

.section-highlight h2
{
   color: #667eea;
	margin-bottom  :   1rem;
   font-size: 1.8rem;
}

.section-highlight p {
  color: #555;
  line-height: 1.8;
   margin-bottom: 1rem;
}

.btn-group {
   display: flex;
     gap: 1rem;
       margin-top: 1.5rem;
      flex-wrap: wrap;
}

.btn-small {
  padding: 0.7rem 1.5rem;
   border-radius: 50px;
	text-decoration: none;
  font-weight: 500;
  border: none;
  cursor: pointer;
     transition: all 0.3s ease;
  font-size   :      0.9rem;
}

.btn-small-primary {
  background: #667eea;
   color: white;
}

.btn-small-primary:hover		{
   background: #764ba2;
  transform: translateY(-2px);
}

.btn-small-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.btn-small-secondary:hover{
    background: #f0f4ff;
}@media (max-width: 768px) {
    .testimonial-content {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

    .timeline-item {
        padding-left: 2rem;
    }

    .highlight-box {
        padding: 1.5rem;
    }

    .section-highlight {
        padding: 1.5rem;
    }
}.policySection 
 {
    padding: 80px 2rem;
  background: #f8f9fa; 

}

.policyContainer {
	   max-width: 800px;
   margin: 0 auto;
   text-align: left;
	}

.policyContainer h2    {
    font-weight: 700;
   color: #2c3e50;
    margin-bottom: 1.5rem;
   font-size: 2.5rem;
    margin-top    :        2rem;
}

.policyContainer h2:first-child {
   margin-top: 0;
}

.policyContainer p  
  {
  color: #7f8c8d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.policyContainer p:last-child {
    margin-bottom: 0;
}

.policy-hero {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-intro {
  background: white;
    padding: 2rem;
    margin-bottom: 2rem;
        border-radius: 10px;
  border-left: 4px solid #667eea;
}

.policy-intro p {
    margin-bottom: 0;
    font-size: 1rem;
    color: #555;
}

.policy-section-divider {
   height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
   margin: 3rem 0;
}

.policy-highlight {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
       border-radius: 8px;
   margin: 1.5rem 0;
  border-left: 4px solid #667eea;
}

.policy-highlight strong {
  color: #667eea;
}

.policy-list {
  margin: 1.5rem 0;
   padding-left: 2rem;
}

.policy-list li {
	margin-bottom: 0.8rem;
  color     :      #7f8c8d;
   line-height: 1.6;
}

.policy-list li strong {
   color: #2c3e50;
}

.policy-footer-info {
    background: #f0f4ff;
  padding: 2rem;
  border-radius: 10px;
    margin-top: 3rem;
   text-align: center;
}

.policy-footer-info h3 {
    color: #667eea;
  margin-bottom: 1rem;
    font-size: 1.2rem;
}

.policy-footer-info p {
  color :#555;
   margin-bottom: 0.5rem;
}

.policy-last-updated   {
  text-align: center;
   color: #999;
   font-size: 0.9rem;
  margin-top: 2rem;
  padding-top: 2rem;
   border-top: 1px solid #ddd;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }

    .policy-hero h1 {
        font-size: 1.8rem;
    }

    .policy-intro {
        padding: 1.5rem;
    }

    .policy-highlight {
        padding: 1rem;
    }

    .policy-list {
        padding-left: 1.5rem;
    }

    .policy-list li {
        font-size: 0.95rem;
    }

    .policy-footer-info {
        padding: 1.5rem;
    }

    .policyContainer {
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .policySection {
        padding: 40px 0.8rem;
    }

    .policy-hero {
        padding: 2rem 1rem;
    }

    .policy-hero h1 {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .policy-hero p {
        font-size: 0.9rem;
    }
}