/* Global Styles */
:root {
  --primary-color: #0c3c5f;
  --secondary-color: #f9a826;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333333;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

/* Header & Navigation */
header {
  background-color: var(--primary-color) !important;
}

.navbar-brand img.logo {
  max-height: 50px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  padding: 10px 15px;
}

.navbar-dark .navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-color);
  padding: 0;
}

.hero-content {
  padding: 80px 0;
  color: white;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.sub-heading {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.service-title {
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 15px;
}

.service-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.service-list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.service-list li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.cta-button .btn {
  font-weight: 600;
  padding: 10px 30px;
  font-size: 1.1rem;
}

.hero-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Value Proposition */
.value-section {
  padding: 60px 0;
  background-color: #f5f5f5;
}

.value-section h2 {
  margin-bottom: 30px;
  color: var(--primary-color);
}

.value-section .lead {
  max-width: 800px;
  margin: 0 auto 30px;
}

.website-input {
  max-width: 400px;
  margin: 0 auto;
}

/* Product Section */
.product-section {
  padding: 80px 0;
  background-color: white;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.feature-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.feature-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.feature-list li i {
  color: #28a745;
  margin-right: 8px;
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-image {
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: white;
}

.benefit-item {
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 10px;
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background-color: var(--primary-color);
  color: white;
}

.benefit-item:hover .benefit-icon i {
  color: var(--secondary-color);
}

.benefit-icon {
  margin-bottom: 15px;
}

.benefit-icon i {
  font-size: 2.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Additional Products */
.additional-products {
  padding: 80px 0;
  background-color: #f5f5f5;
}

/* Project Gallery */
.project-gallery {
  padding: 80px 0;
  background-color: white;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.testimonial-card {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: #e0e0e0;
  position: absolute;
  top: -20px;
  left: -10px;
  opacity: 0.5;
  z-index: -1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

/* Contact Section */
.contact-section {
  padding: 80px 0;
  background-color: white;
}

.contact-form {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.whatsapp-btn {
  font-size: 1.2rem;
  padding: 15px 25px;
  width: 100%;
}

.whatsapp-btn i {
  margin-right: 10px;
}

.contact-info {
  margin-top: 20px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color);
}

/* Footer */
.footer {
  padding-top: 60px;
  background-color: var(--dark-color);
}

.footer h4 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer ul li a:hover {
  color: var(--secondary-color) !important;
  padding-left: 5px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .hero-content {
    text-align: center;
    padding: 50px 0;
  }

  .hero-image {
    margin-top: 30px;
  }

  .main-heading {
    font-size: 2rem;
  }

  .sub-heading {
    font-size: 1.2rem;
  }

  .product-card {
    margin-bottom: 30px;
  }

  .team-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .feature-list li {
    font-size: 0.9rem;
  }

  .product-card h3 {
    font-size: 1.1rem;
  }

  .benefit-item {
    margin-bottom: 20px;
  }

  .testimonial-card {
    margin-bottom: 20px;
  }
}

/* Carousel custom styles */
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 50%;
}

/* Button styles */
.btn-warning {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  font-weight: 600;
}

.btn-warning:hover {
  background-color: #e09000;
  border-color: #e09000;
  color: white;
}

.btn-success {
  font-weight: 600;
}

/* Animation effects */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 1s ease-in;
}

/* Custom scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Additional helper classes */
.text-primary-custom {
  color: var(--primary-color);
}

.text-secondary-custom {
  color: var(--secondary-color);
}

.bg-primary-custom {
  background-color: var(--primary-color);
}

.bg-secondary-custom {
  background-color: var(--secondary-color);
}
