:root {
    --blue-color: #2E3192;
    --pink-color: #E43770;
}

.uptek-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.uptek-container {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.uptek-logo {
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(to right, var(--blue-color), var(--pink-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 1rem 0;
}

.uptek-hero {
    min-height: 600px;
    background: linear-gradient(to right, var(--blue-color), var(--pink-color));
    display: flex;
    align-items: center;
    padding: 4rem 5%;
    color: white;
    margin-bottom: 2rem;
}

.uptek-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.uptek-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.uptek-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.uptek-cta-buttons {
    display: flex;
    gap: 1rem;
}

.uptek-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
}

.uptek-btn-primary {
    background-color: white;
    color: var(--blue-color);
    border: 2px solid white;
}

.uptek-btn-secondary {
    color: white;
    border: 2px solid white;
}

.uptek-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.uptek-section {
    padding: 4rem 5%;
}

.uptek-section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.uptek-section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.uptek-underline {
    height: 4px;
    width: 100px;
    background: linear-gradient(to right, var(--blue-color), var(--pink-color));
    margin: 0 auto;
}

.uptek-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.uptek-service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 2rem;
    text-align: center;
}

.uptek-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.uptek-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(to right, var(--blue-color), var(--pink-color));
    opacity: 0.1;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.uptek-service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.uptek-service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.uptek-learn-more {
    background: linear-gradient(to right, var(--blue-color), var(--pink-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    background-color: rgba(46, 49, 146, 0.1);
}

.uptek-cta-section {
    background: linear-gradient(to right, var(--blue-color), var(--pink-color));
    color: white;
    text-align: center;
    padding: 5rem 5%;
    margin-top: 2rem;
}

.uptek-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.uptek-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive design */
@media (max-width: 768px) {
    .uptek-hero {
        padding: 3rem 5%;
        text-align: center;
    }
    
    .uptek-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .uptek-btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .uptek-section {
        padding: 3rem 5%;
    }
    
    .uptek-hero h1 {
        font-size: 2.2rem;
    }
}
/* Contact Form 7 styling */
.wpcf7-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  background-color: white;
  margin-bottom: 20px;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #7b00e0 !important;
  box-shadow: 0 0 0 2px rgba(123, 0, 224, 0.2);
}

.wpcf7-form textarea {
  min-height: 150px;
  resize: vertical;
}

.wpcf7-submit {
  background: linear-gradient(90deg, #7b00e0, #ff2079);
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.wpcf7-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(123, 0, 224, 0.4);
}

.wpcf7-response-output {
  background-color: #e1f7d9;
  color: #2c6a3b;
  padding: 15px;
  margin: 20px 0 !important;
  border: none !important;
  border-radius: 4px;
  text-align: center;
}