
:root {
  /* Brand Identity */
  --primary-color: #0056A6;       /* Deep blue - trust, professionalism */
  --secondary-color: #F9A825;     /* Gold - confidence, success */
  --accent-color: #00BFA6;        /* Teal - creativity, freshness */

  /* Base Colors */
  --background-color: #F4F6F8;    /* Light background */
  --text-dark: #1A1A1A;           /* Main text color */
  --text-light: #FFFFFF;          /* Light text for dark backgrounds */

  /* State Colors */
  --error-color: #E53935;         /* Red for errors or alerts */
}

/* ===============================
   GENERAL BRAND STYLING
   =============================== */

/* Apply to body */
body {
  font-family: "Poppins", sans-serif;
  background-color: var(--background-color);
  color: var(--text-dark);
}


/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border: none;
  color: var(--text-light);
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

/* Headings */
h1, h2, h3, h4, h5 {
  color: var(--primary-color);
  font-weight: 700;
}

/* Navbar */
.navbar {
  background-color: var(--text-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar .nav-link {
  color: var(--primary-color);
  font-weight: 600;
}

.navbar .nav-link:hover {
  color: var(--secondary-color);
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 20px 0;
}

footer a {
  color: var(--accent-color);
}

footer a:hover {
  color: var(--secondary-color);
}

/* ======= NAVBAR STYLES ======= */
header {
  font-family: "Poppins", sans-serif;
}

/* Navbar background & spacing */
.navbar {
  background-color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease-in-out;
}

/* Brand logo */
.navbar-brand img {
  max-height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-brand img:hover {
  transform: scale(1.05);
}

/* Navbar links */
.navbar-nav .nav-link {
  color: #0d6efd !important;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
}

/* Hover underline animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fa4c17ef; /* Bootstrap primary blue */
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Active link color */
.navbar-nav .nav-link.active {
  color: #0d6efd !important;
}

/* Get a Quote button */
.btn.btn-primary {
  background-color: #0d6efd;
  border: none;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: #fa4c17ef;
  transform: scale(1.05);
}

/* Social media icons */
.navbar .fa-brands {
  font-size: 1.1rem;
  color: #0d6efd;
  transition: transform 0.3s ease, color 0.3s ease;
}

.navbar .fa-brands:hover {
  color: #084298;
  transform: translateY(-3px);
}

/* Navbar on scroll */
.navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    background: #f8f9fa;
    padding: 10px 0;
  }
  
  .navbar-nav .nav-link {
    margin: 8px 0;
  }

  .btn.btn-primary {
    margin-top: 10px;
  }
}


/* Hero Section */
.contact-hero {
  height: 55vh;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url("/assets/contact hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero h1 {
  font-size: 3rem;
}

.contact-hero p {
  font-size: 1.2rem;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-hero {
    height: 45vh;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }
}
.contact-form input,
.contact-form textarea {
  border-radius: 6px;
  border: 1px solid #ccc;
}

.contact-form button {
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-form button:hover {
  background-color: #0b5ed7;
}
/* whatsapp.css — Floating WhatsApp Button for Amsu Consulting */


/* Positioning and appearance */
.whatsapp-float {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #25d366;
color: #fff;
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
font-size: 28px;
z-index: 9999;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
transition: all 0.3s ease-in-out;
}


/* Hover effect */
.whatsapp-float:hover {
transform: scale(1.15);
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
}


/* "Chat" label */
.whatsapp-label {
position: absolute;
right: 70px;
background: #25d366;
padding: 8px 14px;
border-radius: 20px;
color: #fff;
font-size: 14px;
font-weight: 600;
opacity: 1;
white-space: nowrap;
pointer-events: none;
transition: opacity 0.3s ease-in-out;
}


/* Compact mode for small screens */
.whatsapp-float.compact .whatsapp-label {
opacity: 0 !important;
}


/* Responsive adjustments */
@media (max-width: 480px) {
.whatsapp-float {
width: 52px;
height: 52px;
font-size: 24px;
bottom: 15px;
right: 15px;
}


.whatsapp-label {
right: 60px;
font-size: 12px;
padding: 6px 10px;
}
}
/* Map */
.map iframe {
  border-radius: 10px;
}
/* FOOTER */
.footer {
  font-size: 0.9rem;
}

/* FORM */
form input, form textarea {
  border-radius: 8px;
}
.footer {
  background-color: #686969;
}

.footer-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffc107;
  text-decoration: underline;
}

.social-icons a {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #ffc107;
}

footer input.form-control {
  border-radius: 20px;
}

footer button.btn {
  border-radius: 20px;
  font-weight: 500;
}