/* Oasis360 Solutions - Custom Light Theme */

:root {
  --primary-color: #0066cc;
  --secondary-color: #4a90e2;
  --accent-color: #00a8e8;
  --dark-text: #2c3e50;
  --light-text: #6c757d;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --hover-bg: #f0f4f8;
  --success-color: #28a745;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}

/* Navigation */
.navbar {
  background-color: var(--white);
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: var(--dark-text);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  padding: 5rem 0;
  margin-bottom: 3rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-text);
  text-align: center;
  margin-bottom: 3rem;
}

/* Cards */
.card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.card-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.card-text {
  color: var(--dark-text);
  line-height: 1.6;
}

/* Feature Boxes */
.feature-box {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background-color: var(--hover-bg);
  border-color: var(--primary-color);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 102, 204, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

/* Testimonials */
.testimonial {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-text);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-role {
  color: var(--light-text);
  font-size: 0.9rem;
}

/* Footer */
footer {
  background-color: var(--dark-text);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

footer h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

footer p {
  color: rgba(255, 255, 255, 0.9) !important;
}

footer .text-muted {
  color: rgba(255, 255, 255, 0.9) !important;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--white);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.contact-item {
  margin-bottom: 1rem;
  display: flex;
  align-items: start;
}

.contact-item i {
  color: var(--primary-color);
  margin-right: 1rem;
  margin-top: 0.3rem;
  font-size: 1.2rem;
}

/* List Styles */
.custom-list {
  list-style: none;
  padding: 0;
}

.custom-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section {
    padding: 2rem 0;
  }
}

/* Utility Classes */
.bg-light-custom {
  background-color: var(--light-bg);
}

.text-primary-custom {
  color: var(--primary-color);
}

.border-primary-custom {
  border-color: var(--primary-color);
}
