:root {
  --primary-color: #0c2d5e;
  --accent-color: #c19a3b;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f8f9fa;
  --font-family: 'Mulish', sans-serif;
}

html, body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

body {
  font-family: var(--font-family);
  color: var(--text-dark);
}

/* Typography Options */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary-color);
}

.text-primary-custom { color: var(--primary-color) !important; }
.text-accent { color: var(--accent-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-accent { background-color: var(--accent-color) !important; }

/* Top Bar */
.top-bar {
  background-color: var(--primary-color);
  color: var(--text-light);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar a {
  color: var(--text-light);
  text-decoration: none;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.top-bar a:hover { color: var(--accent-color); }
.top-bar .social-icons a { margin-right: 10px; font-size: 1rem; }

/* Navbar */
.navbar {
  padding: 15px 0;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  background-color: white;
  transition: all 0.3s ease;
}
.navbar.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-brand { font-weight: 800; font-size: 1.5rem; color: var(--primary-color); }
.nav-link {
  font-weight: 600;
  color: var(--text-dark) !important;
  margin: 0 10px;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-color) !important;
}
.btn-accent {
  background-color: var(--accent-color);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-accent:hover {
  background-color: #a78430;
  color: white;
}
.btn-primary-custom {
  background-color: var(--primary-color);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 4px;
  border: none;
  transition: background-color 0.3s ease;
}
.btn-primary-custom:hover {
  background-color: #092042;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: white;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12, 45, 94, 0.7); /* primary color with opacity */
}
.hero .container { position: relative; z-index: 2; }
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}
.hero-form-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.hero-form-title {
  color: var(--primary-color);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

/* Section Styling */
.section-padding { padding: 80px 0; }
.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}
.section-subtitle {
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

/* Services / Capabilities */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  border-bottom-color: var(--accent-color);
}
.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.service-card h4 { font-size: 1.25rem; margin-bottom: 15px; }

/* IT Expert Overlay Section */
.it-expert-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}
.it-expert-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(12, 45, 94, 0.85);
}
.it-expert-section .container { position: relative; z-index: 2; }

/* Counters */
.stats-section {
  background-color: var(--bg-light);
}
.stat-item {
  text-align: center;
  padding: 20px;
}
.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.stat-text {
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 15px 0;
}
.stars { color: var(--accent-color); margin-bottom: 15px; }

/* Footer */
footer {
  background-color: #061936;
  color: #d1d5db;
  padding-top: 80px;
}
footer h5 {
  color: white;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}
footer a { color: #d1d5db; text-decoration: none; transition: color 0.3s ease; }
footer a:hover { color: var(--accent-color); }
.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}
.footer-contact li i {
  color: var(--accent-color);
  margin-top: 5px;
  margin-right: 15px;
}
.footer-bottom {
  background-color: #041228;
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
}

/* Form inputs */
.form-control {
  border-radius: 4px;
  padding: 12px 15px;
  border: 1px solid #ddd;
}
.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(193, 154, 59, 0.25);
}

/* Floating WhatsApp / Chat */
.floating-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1100;
  transition: transform 0.3s ease;
}
.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

@media (max-width: 768px) {
    .top-bar .row {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .col-auto,
    .top-bar .col {
        justify-content: center !important;
        margin-bottom: 5px;
    }

    .top-bar span {
        font-size: 12px;
        line-height: 1.4;
    }
}