    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe233 100%);
            color: #333;
            
        }
        
        .container {
            max-width: 1800px;
            margin: 0 auto;
            
        }
        

        
        .logo {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .logo i {
            color: #3498db;
        }
        
        .tagline {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .services-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: nowrap;
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            padding: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            z-index: 1;
            width: 20%;
            min-width: 250px;
            flex-shrink: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .service-icon {
            font-size: 2.2rem;
            margin-bottom: 15px;
            color: #3498db;
            transition: all 0.4s ease;
        }
        
        .service-card:hover .service-icon {
            transform: scale(1.2);
            color: #2ecc71;
        }
        
        .service-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 12px;
            color: #2c3e50;
            transition: color 0.3s ease;
        }
        
        .service-card:hover .service-title {
            color: #3498db;
        }
        
        .service-description {
            color: #7f8c8d;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .highlight {
            background: linear-gradient(120deg, #ebeff5 0%, #ebeff5 100%);
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin: 50px 0;
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            transition: all 0.4s ease;
        }
        
        .highlight:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .highlight h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .highlight p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .locations {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .location-tag {
            background: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        
        .location-tag:hover {
            background: #2ecc71;
            transform: translateY(-3px);
        }
        
        footer {
            text-align: center;
            /*margin-top: 60px;*/
            padding: 30px;
            color: #7f8c8d;
            border-top: 1px solid #eee;
        }
        
        .contact-btn {
            display: inline-block;
            background: linear-gradient(90deg, #3498db, #2ecc71);
            color: white;
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 20px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4);
        }
        
        @media (max-width: 1600px) {
            .container {
                max-width: 1400px;
            }
            
            .service-card {
                padding: 20px;
            }
            
            .service-title {
                font-size: 1.2rem;
            }
            
            .service-description {
                font-size: 0.9rem;
            }
        }
        
        @media (max-width: 1200px) {
            .container {
                max-width: 100%;
            }
            
            .services-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .service-card {
                width: 45%;
                min-width: 300px;
            }
        }
        
        @media (max-width: 768px) {
            .service-card {
                width: 100%;
                min-width: auto;
            }
            
            .logo {
                font-size: 2rem;
            }
            
            .highlight {
                padding: 30px 20px;
            }
        }




/*----===footer======----*/
.footer-bar {
  width: 100%;
  background: #000;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 18px 0 0 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  flex-wrap: wrap;
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 260px;
}
.footer-section img {
  max-width: 220px;
  margin-top: 15px;
}
.footer-title {
  color: #18c5ff;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.footer-contact i {
  color: #ff5722;
  margin-right: 8px;
  font-size: 1.08em;
  min-width: 22px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  color: #fff;
}
.footer-copy {
  width: 100%;
  text-align: center;
  padding: 13px 0 50px 0;
  font-size: 0.99em;
  color: #fff;
  opacity: 0.92;
  letter-spacing: .2px;
}

@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 12px;
  }
  .footer-section,
  .footer-contact {
    align-items: center;
    min-width: unset;
    width: 100%;
  }
  .footer-title {
    text-align: center;
    width: 100%;
  }
}    
/*----====footer====----*/          