:root {
  --primary: #2c3e50;
  --secondary: #3498db;
  --accent: #27ae60;
}

body {
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

.mainlogo {
  width: 20px;
}
.navbar {
  background-color: var(--primary) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
}

.navbar-brand i {
  color: var(--secondary);
  margin-right: 8px;
}

.nav-link {
  font-weight: 500;
}

.btn-primary {
  background-color: var(--accent);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: #219653;
  border-color: #219653;
  box-shadow: 0 0 10px #27ae60;
}

.btn-outline-light:hover {
  color: var(--primary);
}

.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.2)),
    url("https://images.unsplash.com/photo-1744968776964-cca8aaa0a6e1?q=80&w=2705&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 150px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero h1 {
  font-weight: 700;
  font-size: 3rem;
}

.hero p {
  font-size: 1.25rem;
  font-weight: 300;
}

.feature-card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.analytics-section {
  background-color: var(--primary);
  color: white;
}

.analytics-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stats-card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)),
    url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

footer {
  background-color: #1a252f;
  color: white;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
  text-decoration: none;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  margin-right: 15px;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--secondary);
}

.comparison-table th {
  background-color: var(--primary);
  color: white;
}

.comparison-check {
  color: var(--accent);
  font-size: 1.2rem;
}

.comparison-times {
  color: #e74c3c;
  font-size: 1.2rem;
}

.comparison-partial {
  color: #f39c12;
  font-size: 1.2rem;
}

/* Enhanced comparison table styles */
.feature-comparison {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border: none;
}

.feature-comparison thead th {
  background-color: var(--primary);
  color: white;
  border: none;
  padding: 15px;
  font-weight: 600;
  text-align: center;
}

.feature-comparison thead th:first-child {
  background-color: #1a252f;
  text-align: left;
}

.feature-comparison thead th.observearth-col {
  background-color: var(--accent);
}

.feature-comparison tbody tr:nth-child(even) {
  background-color: rgba(52, 152, 219, 0.05);
}

.feature-comparison tbody td {
  padding: 15px;
  vertical-align: middle;
  border-color: #eee;
}

.feature-comparison tbody td:first-child {
  font-weight: 500;
  color: var(--primary);
}

.feature-comparison .observearth-col {
  background-color: rgba(39, 174, 96, 0.05);
}

.feature-comparison .feature-name {
  display: flex;
  align-items: center;
}

.feature-comparison .feature-name i {
  margin-right: 10px;
  color: var(--secondary);
}

.feature-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 5px;
}

.badge-yes {
  background-color: rgba(39, 174, 96, 0.1);
  color: var(--accent);
}

.badge-no {
  background-color: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
}

.badge-limited {
  background-color: rgba(243, 156, 18, 0.1);
  color: #f39c12;
}

.badge-free {
  background-color: rgba(52, 152, 219, 0.1);
  color: var(--secondary);
}

.badge-paid {
  background-color: rgba(142, 68, 173, 0.1);
  color: #8e44ad;
}

@media (max-width: 767px) {
  .feature-comparison {
    font-size: 0.9rem;
  }

  .feature-comparison td,
  .feature-comparison th {
    padding: 10px 5px;
  }
}

/* Contact page styles */
.contact-icon {
  font-size: 1.5rem;
  color: var(--accent);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Social icons in contact page */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white !important;
  margin-right: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icon i {
  font-size: 1.2rem;
}

/* About page styles */
.team-member-card {
  transition: transform 0.3s, box-shadow 0.3s;
}

.team-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Calendar styles */
#my-cal-inline {
  height: 700px !important;
  border-radius: 8px;
  overflow: hidden;
}

/* Pricing table styles */
.pricing-table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.pricing-table thead th {
  background-color: var(--primary);
  color: white;
  padding: 20px 15px;
  border: none;
  text-align: center;
  font-weight: 600;
}

.pricing-table thead th:first-child {
  background-color: #1a252f;
  text-align: left;
}

.pricing-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.pricing-header {
  padding: 10px 0;
}

.pricing-table tbody tr:nth-child(even) {
  background-color: rgba(52, 152, 219, 0.05);
}

.pricing-table td {
  padding: 15px;
  vertical-align: middle;
  border-color: #eee;
}

.feature-name {
  font-weight: 500;
  color: var(--primary);
}

.feature-description {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: 5px;
}

.pricing-row {
  background-color: rgba(39, 174, 96, 0.05) !important;
}

.price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.price-period {
  display: block;
  font-size: 0.85rem;
  color: #6c757d;
}

.price-save {
  display: block;
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: 5px;
}

.action-row td {
  padding-top: 20px;
  padding-bottom: 20px;
}

@media (max-width: 991px) {
  .pricing-table {
    font-size: 0.9rem;
  }

  .pricing-table td,
  .pricing-table th {
    padding: 10px 5px;
  }

  .price {
    font-size: 1.2rem;
  }

  .pricing-icon {
    font-size: 1.5rem;
  }
}

/* Dashboard styles */
.list-group-item-action {
  color: var(--primary);
  border-left: 3px solid transparent;
  padding-left: 1.25rem;
}

.list-group-item-action:hover {
  background-color: rgba(52, 152, 219, 0.05);
  border-left-color: var(--secondary);
}

.list-group-item-action.active {
  background-color: rgba(39, 174, 96, 0.1) !important;
  color: var(--accent) !important;
  border-left-color: var(--accent);
  font-weight: 500;
}

.list-group-item-action.active i {
  color: var(--accent);
}

.list-group-item-action i {
  color: var(--secondary);
  width: 20px;
  text-align: center;
}

.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.25rem;
}

.table th {
  font-weight: 600;
  color: var(--primary);
  border-top: none;
}

.table td {
  vertical-align: middle;
}

.nav-tabs .nav-link {
  color: var(--primary);
  font-weight: 500;
}

.nav-tabs .nav-link.active {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 991px) {
  .container-fluid {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}


* {
  box-sizing: border-box;
}

.img-comp-container {
  position: relative;
  width: 570px;
  height: 470px;
  /* border: 4px solid rgba(255, 255, 255, 0.651);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 8px; */
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
  margin: 5px;
}

.img-comp-img img {
  display: block;
  vertical-align: middle;
}

/* SLIDER BAR + HANDLE */
.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

/* Vertical dividing line */
.img-comp-slider-line {
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #ffffff;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: 1;
}

/* Circular handle with arrows */
.img-comp-slider-handle {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  opacity: 0.9;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: auto;
}

/* Left arrow */
.img-comp-slider-handle::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 8px solid #000000;
}

/* Right arrow */
.img-comp-slider-handle::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #000000;
}


/* 📱 Responsive adjustments for small screens */
@media screen and (max-width: 600px) {
  .img-comp-slider-handle {
    width: 30px;
    height: 30px;
  }

  .img-comp-slider-handle::before {
    left: 6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 6px solid #000000;
  }

  .img-comp-slider-handle::after {
    right: 6px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 6px solid #000000;
  }
  .img-comp-container {
    position: relative;
    width: 300px;
    height: 400px;
    
    margin: 20px auto auto;
  }
  .img-comp-img img {
    width: 300px !important;
    height: 400px !important;
  }

}


