    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    max-width: 1800px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 220px;  
    height: auto;
    
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3.2rem;
    align-items: center;
    margin-left: 300px;
    justify-content: space-between;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #1a73e8;
}

.whatsapp-btn {
    background: green;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.whatsapp-icon {
  font-size: 20px;
}

.whatsapp-btn:hover {
    background: green;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 244, 78, 0.3);
}

h2 {
  text-align: center;
  margin: 40px 0 20px;
  font-size: 28px;
}

.commitment-section {
  margin-top: 150px;
}

.commitment-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding-top: 80px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 40px 20px 20px; 
  width: 280px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; 
}

.card p {
  letter-spacing: 0.5px;
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
  display: flex;
  
}
.card-icon {
  position: absolute;
  top: -15px;
  left: 119px;
  background-color: #02d8f4;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  padding: 10px 15px;
  font-size: 16px;
  width: 40px;
}

.card h3 {
  margin-top: 20px;
  font-size: 18px;
}

.card a {
  color: #007bff;
  text-decoration: none;
  display: inline-block;
  margin-top: 10px;
}

/* Services Section - Enhanced */
.services-section {
    padding: 20px 20px;
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.services-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #1e293b;
    margin-bottom: 60px;
    position: relative;
}


.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 10px;
    padding: 30px;
}

.service {
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;

    transition: left 0.6s ease;
}

.service:hover::before {
    left: 100%;
}

.service:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    background: white;
}


.service i {
    font-size: 3rem;
    color: #1a73e8;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service:hover i {
    transform: scale(1.2);
    color: #00bcd4;
}

.service h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1e293b;
}

.service p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}

.thirdbar{
    width: 110px;
    height: 5px;
    margin-left:55rem;
    background: linear-gradient(90deg, #001aff, #3b83ff);
    margin-top: -40px;
    border-radius: 3px;

}

/* Horizontal Timeline Section */
.timeline-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
    radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 300;
}

.section-subtitle {
    color: #cbd5e1;
    font-size: 1.2rem;
}

/* Horizontal Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    max-height: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0; 
    height: 4px;
    background: linear-gradient(to right, #3b82f6, #8b5cf6, #ef4444, #10b981);
    transform: translateY(-50%);
    border-radius: 2px;
}

.timeline-horizontal {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.timeline-horizontal::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, #0055ff, #aea6c1, #ffd816);
    transform: translateY(-50%);
    z-index: 1;
}

.timeline-item,
.timeline-item-odd {
    position: relative;
    text-align: center;
    z-index: 2;
}


.timeline-item-odd {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 368px; 
}


.timeline-item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 368px; 
}

.timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

/* Timeline content box */
.timeline-content {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 25px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 280px;
}

    .timeline-icon.cal { 
      color: rgb(255, 255, 255);
      background-color: #1d61c8;
    }
    .timeline-icon.dia { 
      color: rgb(255, 255, 255);
      background-color: #1d61c8;
    }
    .timeline-icon.rep { 
       color: rgb(255, 255, 255);
      background-color: #1d61c8;
    }
    .timeline-icon.cus { 
       color: rgb(255, 255, 255);
      background-color: #1d61c8;
    }

    .timeline-item:hover .timeline-content{
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
    }
    .timeline-item-odd:hover .timeline-content{
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-5px);
    }
    .timeline-content h3 {
      color: white;
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 15px;
    }

    .timeline-content p {
      color: #cbd5e1;
      font-size: 0.95rem;
      line-height: 1.6;
    }



    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
      .nav-links {
        margin-left: 100px;
        gap: 2rem;
      }

      .timeline-horizontal {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
      }

      .timeline::before {
        display: none;
      }

      .customize-service {
        grid-column: span 1;
      }

      .customize-steps {
        flex-direction: column;
        gap: 20px;
      }

      .step-connector {
        transform: rotate(90deg);
        width: 40px;
        height: 3px;
        margin: 10px 0;
      }

      .step-connector::before {
        top: -5px;
        right: 50%;
        transform: translateX(50%) rotate(-90deg);
        border-left: 5px solid transparent;
        border-right: 5px solid transparent;
        border-top: 8px solid #10b981;
        border-bottom: none;
      }
    }

    @media (max-width: 480px) {
      .logo-img {
        width: 180px;
      }

      nav {
        padding: 10px 15px;
      }

      .whatsapp-btn {
        padding: 10px 18px;
        font-size: 0.9rem;
      }
    }

.floating-email-icon {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 120px;
    right: 95%;
    color: rgb(254, 254, 254);
     background-color: rgba(0, 0, 0, 0.522);
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.floating-email-icon:hover {
    transform: scale(1.1);
}

.floating-email-icon img {
    width: 60%;
    height: 60%;
}

    .footer {
    background: #fff;
    padding: 20px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 110px;
    line-height: 1.8em;
    margin-right: 100px;        
    padding: 50px 10px;   
    width: 100%;
}

.footer-column {
  min-width: 20px;

}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;

}

.footer-text {
  font-size: 16spx;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons i {
  font-size: 20px;
  margin-right: 15px;
  color: #357ae8;
  transition: color 0.3s;
}

.social-icons i:nth-child(2) {
  color: #e4405f;
}
.social-icons i:nth-child(3) {
  color: #1da1f2;
}
.social-icons i:nth-child(4) {
  color: #21759b;
}

.social-icons i:hover {
  opacity: 0.7;
}

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer-column p {
  margin: 8px 0;
  font-size: 15px;
  line-height: 1.5;
}

.icon {
  color: #4285f4;
  margin-right: 10px;
}

.footer-links {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 5px;
}

.footer-links a {
  text-decoration: none;
  color: inherit; 
  transition: color 0.1s ease;
}


.footer-links li {
  margin-bottom: 10px;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.3s;
}

.footer-links li:hover {
  color: #1a73e8;
}

.footer-hours {
  text-align: center;
  margin-top: 40px;
}

.footer-hours h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-hours h3::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  background-color: #1a73e8;
  margin: 8px auto 0;
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 90rem;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.9s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #1ebe5d;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgb(246, 246, 246);
    }

}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 95%;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    animation: pulse 2s infinite;
    transition: transform 0.9s ease;
}

.whatsapp-float:hover {
    transform: scale(1.2);
    background-color: #1ebe5d;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgb(246, 246, 246);
    }

}