@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
   --primary-color: #91ab1e;          /* Rich brand green (logo friendly) */
  --primary-hover: #82991b;
  --accent-color: #91ab1e;
  --text-dark: #0f172a;
  --text-muted: #6b7280;
  --bg-light: #f8fafc;
  --bs-btn-active-bg: #B3D12A;
  --bs-btn-active-border-color: #B3D12A;
}




/* Typography */
h1, h2, h3 {
  letter-spacing: -0.5px;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Colors */
.text-primary {
  color: var(--accent-color) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}
.btn {
  --bs-btn-font-size: 0.9em;
}
/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

.btn-outline-dark:hover {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

.btn-check:checked + .btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check) + .btn:active {
  background-color: var(--bs-btn-active-bg);
}


/* Images */
.object-fit-cover {
  object-fit: cover;
}

/* Sections */
section {
  overflow: hidden;
}

.shadow-sm, .shadow {
  transition: all 0.3s ease;
}

.shadow-sm:hover, .shadow:hover {
  transform: translateY(-6px);
}

/* Navbar */
.navbar-brand img {
  max-height: 50px;
}

.nav-link {
  font-weight: 500;
}

.nav-link.active,
.nav-link:hover {
  color: var(--accent-color) !important;
}


/* Flexible Workspace Section */
.flexible-workspace-section {
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Tabs */
.theme-btn {
  border: 2px solid var(--primary-color);
  color: var(--text-dark);
  background: transparent;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.theme-btn:hover,
.theme-btn.active {
  background: var(--primary-color);
  color: #fff;
}

/* Card */
.workspace-card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.workspace-card:hover {
  transform: translateY(-8px);
}

.workspace-card img {
  height: 200px;
  object-fit: cover;
}

/* Solid Button inside card */
.theme-btn-solid {
  background: var(--primary-color);
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.theme-btn-solid:hover {
  background: var(--primary-hover);
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  #flexible-work-heading {
    font-size: 2rem;
  }
}

/* ================================
   Workspace Tabs – Mobile Scroll
================================ */

/* Wrapper */
#workspace-tabs-section {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding-left: 1rem;    /* LEFT SPACE for menu/logo */
  padding-right: 1rem;
}

/* Hide scrollbar (Chrome, Safari) */
#workspace-tabs-section::-webkit-scrollbar {
  display: none;
}

/* Keep buttons in one line */
#workspace-tabs-section {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.75rem;
  margin-bottom: 18px;
}

/* Workspace Buttons */
.workspace-btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 999px;
  border: 1.5px solid var(--primary-color);
  background-color: transparent;
  color: var(--text-dark);
  transition: all 0.3s ease;
}

/* Active State (THEME COLOR, NOT BOOTSTRAP) */
.workspace-btn.active {
  background-color: var(--primary-color);
  color: #fff;
  border-color: var(--primary-color);
}

/* Hover */
.workspace-btn:hover {
  background-color: var(--primary-color);
  color: #fff;
}

/* Desktop alignment reset */
@media (min-width: 992px) {
  #workspace-tabs-section {
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
  }
}

.footer-modern {
  background: #0b0f19;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  color: #f4b41a;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 6px;
}

.social-icon {
  color: #ffffff;
  font-size: 1.1rem;
  margin-right: 15px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  color: #f4b41a;
  transform: translateY(-3px);
}

.footer-policy {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-left: 12px;
  transition: color 0.3s ease;
}

.footer-policy:hover {
  color: #ffffff;
}

/* ================================
  header-responsive
================================ */
@media (max-width: 991px) {
        /* Mobile/tablet view */
        .navbar-nav {
            flex-direction: column; /* Vertical stack for mobile */
            align-items: flex-start; 
        }

        .navbar-toggler {
            display: block; /* Show the hamburger icon */
        }

        /* Collapsing the menu into sidebar */
        .navbar-collapse {
            display: inline-block;
            width: 250px;
            background-color: #fff;
            position: fixed;
            top: 0px;
            right: -250px;  /* Position it on the right side */
            height: 100vh;
            overflow-y: auto;
            transition: 0.3s;
        }

        .navbar-collapse.show {
            right: 0;  /* Slide in from the right */
        }

        .navbar-nav .nav-item {
            width: 100%;
            margin-left: 20px;
            margin-top: 15px;
        }
        .nav-item i{
          color: var(--primary-color);
          margin-right: 5px;
        }
        .navbar-toggler-icon {
            font-size: 30px; /* Increase size of the hamburger icon */
        }
    }

    @media (min-width: 992px) {
        /* Desktop view */
        .navbar-nav {
            flex-direction: column; /* Stack navbar items vertically */
        }

        .navbar-toggler {
            display: none; /* Hide the hamburger icon on desktop */
        }
    }

    /* ================================
 contact-form
================================ */

 /* ===== BACKGROUND ===== */
        .background {
            min-height: 100vh;
            background-image: url('https://static.vecteezy.com/system/resources/previews/029/255/700/non_2x/abstract-blurred-interior-modern-office-space-with-business-people-working-banner-background-with-copy-space-ai-generated-free-photo.jpg');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
        }

        /* ===== GLASS CARD ===== */
        .contact-container {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(14px);
            border-radius: 24px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem;
            width: 100%;
            max-width: 460px;
            
        }

        .contact-heading {
            color: #fff;
            text-align: center;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
        }

        /* ===== FORM ===== */
        .form-label {
            color: #000;
            font-weight: 600;
            margin-bottom: 0.35rem;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            color: #000;
            border-radius: 12px;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
        }

        .form-control::placeholder {
            color: rgba(0, 0, 0, 0.45);
        }

        .form-control:focus {
            background: #fff;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
            color: #000;
        }

        textarea.form-control {
            resize: none;
        }

        /* ===== BUTTON ===== */
        .btn-submit {
            
            border: none;
            border-radius: 999px;
            padding: 0.65rem 2.5rem;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
        }

        /* ===== RESPONSIVE TWEAKS ===== */
        @media (max-width: 576px) {
            .contact-container {
                padding: 1.5rem;
                border-radius: 18px;
            }

            h2 {
                font-size: 1.4rem;
            }
        }

        @media (min-width: 992px) {
            .contact-container {
                padding: 2.5rem;
            }
        }
