/* ===== ROOT COLORS ===== */
:root {
    --blue: #0b5ed7;
    --blue-light: #eaf2ff;
    --orange: #ff9800;
    --text-dark: #1f2937;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    background: #ffffff;
    padding: 15px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.navbar-brand .brand-text {
    font-size: 1.3rem;
    color: var(--blue);
}

.navbar-brand .brand-sub {
    font-size: 1.3rem;
    color: var(--orange);
    margin-left: 4px;
}

/* Nav Links */
.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-link:hover {
    color: var(--blue);
}

/* Underline hover effect */
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.btn-quote {
    background: var(--blue);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: var(--orange);
    color: #ffffff;
}

/* Mobile spacing */
@media (max-width: 991px) {
    .btn-quote {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}


/* ================= HERO SECTION ================= */

.hero-section {
    min-height: 100vh;
    padding-top: 120px;

    background:
        linear-gradient(
            rgba(54, 56, 60, 0.5),
            rgba(54, 56, 60, 0.5)
        ),
        url("../images/hero-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #ffffff;
}

.hero-highlight {
    background: linear-gradient(90deg, #f9ff00, #fc7f00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    max-width: 700px;
    margin: auto;
    font-size: 1.1rem;
    color: #ffffff;
}

/* Buttons */
.hero-buttons .btn-primary {
    background-color: #0b5ed7;
    border: none;
}

.hero-buttons .btn-outline-primary {
    border-color: #ffffff;
    color: #ffffff;
}

.hero-buttons .btn-outline-primary:hover {
    background-color: #0b5ed7;
    color: #ffffff;
    border-color: #0b5ed7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}


/* ================= ABOUT SECTION ================= */

.about-section {
  background: #f8fafc;
}

/* Left card */
.about-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.about-card-header {
  background: linear-gradient(90deg, #0b3c7a, #0a2f5c);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  color: #fff;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.about-card-body {
  padding: 24px;
}

/* Highlight box */
.highlight-box {
  display: flex;
  gap: 15px;
  padding: 16px;
  background: #fff8e6;
  border-radius: 12px;
}

.highlight-img img {
  width: 48px;
  height: 48px;
}

/* Mini cards */
.mini-card {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  height: 100%;
}

/* Checklist */
.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0b5ed7;
}

/* Right side */
.about-label {
  display: inline-block;
  padding: 4px 12px;
  background: #fff3cd;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.about-title {
  font-weight: 800;
  margin-top: 10px;
}

.about-text {
  color: #4b5563;
  max-width: 520px;
}

/* ===== FEATURE IMAGE CARDS ===== */

.feature-card {
  position: relative;
  height: 220px;              /* makes card larger */
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Dark overlay */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(119, 118, 118, 0.3),
    rgba(119, 118, 118, 0.3)
  );
}

/* Text on top of image */
.feature-overlay {
  position: relative;
  padding: 20px;
  color: #ffffff;
}

.feature-overlay h6 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-overlay p {
  font-size: 0.95rem;
  margin: 0;
  color: #ffffff;
}


/*-------- SERVICES SECTION --------*/
/* Full Background Service Cards */
.service-card-full {
    position: relative;
    height: 320px; /* Increased height for a "larger" look */
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card-full:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Dark Gradient Overlay */
.service-card-full::before {
    content: "";
    position: absolute;
    inset: 0;
    /* Darker at the bottom where the text sits */
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

/* Overlay Text Content */
.service-content-overlay {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
}

.service-content-overlay h5 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.service-content-overlay p {
    margin-bottom: 12px;
    line-height: 1.4;
}

.service-content-overlay .fa-check {
    font-size: 0.8rem;
}

/* Projects Section */
/* Projects Section Styling */
.project-card-custom {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.project-card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.project-img-wrapper {
    height: 240px; /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    background-color: #f8f9fa;
}

.project-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers div without stretching */
    display: block;
}

.project-body .badge {
    font-weight: 500;
    font-size: 0.75rem;
}

.project-body h5 {
    color: #1a1a1a;
}

/* Contact Section */
/* Contact Section Styling */
.contact-info-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #eaf2ff 100%);
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-form-card {
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-icon-box {
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Form Styling Refinement */
.form-control, .form-select, .input-group-text {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background-color: #ffffff;
}

.form-control:focus, .form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

.input-group-text {
    color: #6b7280;
}

/* Footer Section */
/* Footer Styling */
.footer-section {
    background-color: #001a33; /* Deep navy blue from reference */
    color: #ffffff;
}

.footer-description {
    color: #a0aec0;
    font-size: 0.95rem;
    max-width: 300px;
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange); /* Use your orange theme color */
}

.footer-contact-info i {
    width: 20px;
    color: #ffffff;
}

.footer-contact-info p {
    font-size: 0.95rem;
}

/* Custom Divider */
.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo Circle Placeholder */
.logo-circle {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #ff9800 0%, #0b5ed7 100%);
    border-radius: 50%;
}

.footer-socials a {
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #ffffff !important;
}