/*-----------------------------------*\
  #FONTS
\*-----------------------------------*/

/* Import Poppins for Body Text */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*-----------------------------------*\
  #CUSTOM PROPERTY (Variables)
\*-----------------------------------*/

:root {
  /* --- COLOR PALETTE --- */
  --bg-color: #ffffff;
  --brand-orange: #f97316;
  --brand-orange-dark: #ea580c;
  --slate-dark: #0f172a;
  --slate-muted: #334155;
  --white: #ffffff;
  --gray-border: #e2e8f0;
  
  /* Gradients */
  --gradient: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-dark));

  /* --- TYPOGRAPHY --- */
  --ff-headline: 'Aloevera Display', 'Playfair Display', Georgia, serif;
  --ff-body: 'Poppins', sans-serif;

  /* Fluid Text Sizes */
  --fs-1: clamp(4rem, 8vw, 8rem);
  --fs-2: clamp(3rem, 5vw, 5.5rem);
  --fs-3: clamp(2.2rem, 3vw, 3rem);
  --fs-4: 1.8rem;
  --fs-5: 1.6rem;
  --fs-6: 1.4rem;

  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* --- SPACING & LAYOUT --- */
  --section-padding: 80px;
  --container-padding: 20px;

  /* --- SHADOWS --- */
  --shadow-1: 0 10px 30px hsla(222, 47%, 11%, 0.04);
  --shadow-2: 0 20px 40px hsla(222, 47%, 11%, 0.08);
  --shadow-orange: 0 8px 25px hsla(25, 95%, 53%, 0.25);

  /* --- BORDER RADIUS --- */
  --radius-5: 8px;
  --radius-8: 16px;
  --radius-full: 50px;

  /* --- TRANSITIONS --- */
  --transition-1: 0.25s ease-in-out;
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 768px) {
  :root {
    --section-padding: 100px;
  }
}

/*-----------------------------------*\
  #RESET & BASE
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; color: inherit; }

a, img, span, input, button, textarea, ion-icon { display: block; }

img {
  height: auto;
  max-width: 100%;
}

input, button, textarea {
  background: none;
  border: none;
  font: inherit;
}

input, textarea { width: 100%; }

button { cursor: pointer; }

ion-icon { pointer-events: none; }

html {
  font-family: var(--ff-body);
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  background-color: var(--bg-color);
  color: var(--slate-muted);
  font-size: var(--fs-5);
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background-color: var(--bg-color); }
::-webkit-scrollbar-thumb { background-color: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background-color: #94a3b8; }

/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { 
  padding-inline: var(--container-padding);
  max-width: 1400px;
  margin-inline: auto;
  width: 100%;
}

/* --- UNIFORM SECTION PADDING --- */
.section, 
.hero-about, 
.about-us-section, 
.vision-mission, 
.founder-top-area, 
.service-visual, 
.enquiry-section,
.blog-page {
  padding-block: var(--section-padding) !important;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.hero-about {
  padding-block-start: calc(var(--section-padding) + 50px) !important;
}

.btn {
  max-width: max-content;
  color: var(--white);
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background-image: var(--gradient);
  box-shadow: var(--shadow-orange);
}

.btn-primary:is(:hover, :focus) { 
  transform: translateY(-3px);
  box-shadow: 0 12px 30px hsla(25, 95%, 53%, 0.35);
}

.section { 
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: var(--bg-color); 
}

/* Headlines use Aloevera Display */
.h1, .h2, .h3 {
  color: var(--slate-dark);
  font-family: var(--ff-headline);
  line-height: 1.2;
}

.h1 { font-size: var(--fs-1); font-weight: var(--fw-500); }
.h2 { font-size: var(--fs-2); font-weight: var(--fw-500); }
.h3 { font-size: var(--fs-3); font-weight: var(--fw-500); }

.w-100 { width: 100%; }

.section-title, .section-text { 
  text-align: center; 
  margin-inline: auto;
}

.section-text { 
  font-size: var(--fs-6); 
  max-width: 600px;
  margin-bottom: 40px;
}

.grid-list {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: #e2e8f0;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*-----------------------------------*\
  #HEADER IMPROVED
\*-----------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* Safari support */
  padding-block: 20px;
  border-block-end: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 100;
  transition: all 0.3s ease-in-out;
}

/* Scrolled State */
.header.active {
  padding-block: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.98);
}

.header > .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 190px; /* Reduced slightly for better balance */
  height: auto;
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.02);
}

/* --- DESKTOP NAVIGATION (Default) --- */
.navbar-list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar-link {
  color: var(--slate-dark);
  font-size: 1.6rem;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.navbar-link:hover {
  color: var(--brand-orange);
}

/* Nav Toggle Button */
.nav-toggle-btn {
  display: none; /* Hidden on Desktop */
  font-size: 3.5rem;
  color: var(--slate-dark);
  cursor: pointer;
}

/* --- MOBILE NAVIGATION --- */
@media (max-width: 991px) {
  .nav-toggle-btn {
    display: block;
  }

  .nav-toggle-btn ion-icon {
    display: block;
  }

  .nav-toggle-btn.active .open { display: none; }
  .nav-toggle-btn.active .close { display: block; }
  .nav-toggle-btn .close { display: none; }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding-inline: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-block-end: 1px solid rgba(0,0,0,0.05);
  }

  .navbar.active {
    max-height: 100vh; /* Allows for more content if needed */
    opacity: 1;
    visibility: visible;
  }

  .navbar-list {
    flex-direction: column;
    gap: 0; /* Removing gap to allow borders to touch */
    padding: 10px 0;
    align-items: stretch; /* Stretch links to full width */
    text-align: center;
  }

  .navbar-link {
    font-size: 1.8rem;
    padding: 18px 20px;
    width: 100%;
    border-bottom: 1px solid #f8fafc;
    display: block;
  }

  /* Make the button look separate in mobile menu */
  .navbar-list li:last-child .navbar-link {
    border-bottom: none;
    background-color: var(--brand-orange);
    color: #ffffff;
    margin: 15px 25px;
    border-radius: 50px;
    padding: 12px;
  }
}



/*-----------------------------------*\
  #HERO & ABOUT SECTION
\*-----------------------------------*/

.hero-about {
  padding-block-start: calc(var(--section-padding) + 60px);
}

.hero-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 5rem);
  font-family: var(--ff-headline);
  margin-bottom: 60px;
}

.hero-title .highlight-orange {
  color: var(--brand-orange);
  display: inline-block;
}

.layout-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}

.text-content {
  flex: 1;
}

.about-title {
  font-size: var(--fs-2);
  margin-bottom: 30px;
}

.about-title .highlight-orange {
  color: var(--brand-orange);
  display: inline-block;
}

.definition-block {
  margin-bottom: 25px;
  line-height: 1.7;
}

.large-word {
  font-family: var(--ff-headline);
  font-size: 2.8rem;
  font-weight: 600;
  display: inline-block;
  margin-right: 4px;
}

.experience-text {
  margin: 35px 0;
}

.experience-text .highlight-years {
  color: var(--brand-orange);
  font-size: 2rem;
  font-weight: 700;
}

.button-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-orange {
  background-color: var(--brand-orange);
  color: #ffffff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.3);
}

.btn-orange:hover {
  transform: translateY(-3px);
  background-color: var(--brand-orange-dark);
}

.image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-content img {
  max-width: 100%;
  height: auto;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 991px) {
  .layout-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .button-group { justify-content: center; }
  .image-content { order: 1; }
  .text-content { order: 2; }
}



/*-----------------------------------*\
  #ABOUT US SECTION (Text Left, Image Right)
\*-----------------------------------*/

.about-us-section {
  background-color: var(--bg-color);
  width: 100%;
  /* Standardized padding + Header Offset */
  padding-block: var(--section-padding) !important;
  padding-top: calc(var(--section-padding) + 80px) !important; 
  scroll-margin-top: 100px; 
  overflow: visible; 
}

.about-us-section .container {
  max-width: 1440px;
  margin-inline: auto;
  width: 90%;
}

.about-us-section .layout-wrapper {
  display: flex;
  flex-direction: row; /* Forces horizontal layout */
  align-items: flex-start; /* Keeps headline at the very top */
  justify-content: space-between;
  gap: clamp(40px, 6vw, 100px);
}

/* 1. TEXT CONTENT (FIRST/LEFT) */
.about-us-section .text-content {
  flex: 1.2;
  max-width: 750px; 
  text-align: left;
  order: 1; /* Ensures it stays first */
}

.about-us-section .about-title {
  font-family: var(--ff-headline);
  font-size: clamp(3.2rem, 4.5vw, 6rem);
  color: var(--slate-dark);
  margin-bottom: 25px;
  line-height: 1.1;
  font-weight: 500;
  padding-top: 5px; /* Extra room for font flourishes */
}

.about-description {
  font-family: var(--ff-body);
  font-size: clamp(1.6rem, 1.1vw, 1.9rem);
  color: var(--slate-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.about-list li {
  font-family: var(--ff-body);
  color: var(--slate-muted);
  font-size: clamp(1.5rem, 1vw, 1.8rem);
  line-height: 1.6;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.about-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--brand-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

/* 2. IMAGE CONTENT (SECOND/RIGHT) */
.about-us-section .image-content {
  flex: 1;
  display: flex;
  justify-content: flex-end; /* Pushes image to the far right on 4K */
  order: 2; /* Ensures it stays second */
  padding-top: 10px; /* Aligns top of image with top of text */
}

.about-us-section .image-content img {
  width: 100%;
  max-width: clamp(400px, 40vw, 800px); 
  border-radius: 30px;
  box-shadow: var(--shadow-2);
  transition: transform 0.4s ease;
}

/* --- ADAPTIVE UI BREAKPOINTS --- */

@media (max-width: 991px) {
  .about-us-section {
    padding-top: calc(var(--section-padding) + 40px) !important;
  }

  .about-us-section .layout-wrapper {
    flex-direction: column; /* Stack vertically */
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  .about-us-section .text-content {
    max-width: 100%;
    order: 1; /* Headline/Text stays on TOP of image */
    text-align: center;
  }

  .about-us-section .about-title {
    text-align: center;
  }

  .about-us-section .image-content {
    order: 2; /* Image stays BELOW the text */
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }

  .about-list li {
    justify-content: left;
    text-align: left;
    max-width: 500px;
    margin-inline: auto;
  }
}

@media (max-width: 576px) {
  .about-us-section .about-title {
    font-size: 3.2rem;
  }
}







/*-----------------------------------*\
  #VISION & MISSION SECTION
\*-----------------------------------*/

.vision-mission {
  background-color: var(--bg-color);
  padding-block: var(--section-padding);
  overflow: hidden;
}

.vm-wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1400px;
  margin: 0 auto;
}

.vm-card {
  display: flex;
  align-items: stretch;
  width: 85%;
  min-height: 280px;
  box-shadow: var(--shadow-2);
  position: relative;
  overflow: hidden;
}

.vision-card {
  align-self: flex-start;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 25%, var(--brand-orange) 85%);
  border-radius: 20px 80px 20px 20px;
  z-index: 1;
}

.mission-card {
  align-self: flex-end;
  background: linear-gradient(90deg, var(--brand-orange) 15%, #ffffff 75%, #ffffff 100%);
  border-radius: 20px 20px 20px 80px;
  margin-top: -60px; 
  z-index: 2;
  box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.1), var(--shadow-2);
}

.vm-vertical-side {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vm-rotated-text {
  font-family: var(--ff-body);
  font-weight: 800;
  font-size: 5rem;
  letter-spacing: 4px;
  transform: rotate(-90deg);
  background: linear-gradient(to bottom, #94a3b8, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.5;
}

.vm-content {
  flex-grow: 1;
  padding: 40px 40px 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission-card .vm-content {
  padding: 40px 10px 40px 40px;
}

.vm-content p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--slate-dark);
  margin: 0;
}

.vm-list {
  list-style-type: disc;
  padding-left: 20px;
}

.vm-list li {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.vm-cta-container {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .vm-card {
    width: 95%;
  }
}

@media (max-width: 768px) {
  .vm-card {
    width: 100%;
    min-height: auto;
  }
  
  .vision-card {
    border-radius: 20px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, var(--brand-orange) 100%);
  }

  .mission-card {
    border-radius: 20px;
    margin-top: 0;
    background: linear-gradient(135deg, var(--brand-orange) 0%, #ffffff 100%);
  }

  .vm-vertical-side {
    width: 80px;
  }

  .vm-rotated-text {
    font-size: 4rem;
  }

  .vm-content p, .vm-list li {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .vm-card {
    flex-direction: column;
    padding: 30px 20px;
  }

  .mission-card {
    flex-direction: column-reverse; 
  }

  .vm-vertical-side {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    justify-content: flex-start;
  }
  
  .mission-card .vm-vertical-side {
    margin-bottom: 0;
    margin-top: 15px;
  }

  .vm-rotated-text {
    transform: rotate(0deg);
    background: var(--slate-dark);
    -webkit-background-clip: text;
    opacity: 0.2;
  }

  .vm-content {
    padding: 0;
  }

  .mission-card .vm-content {
    padding: 0;
  }
}

/*-----------------------------------*\
  #FOUNDER SECTION
\*-----------------------------------*/

.founder-section {
  background-color: white; 
  position: relative;
}

.founder-top-area {
  background-color: white; 
  overflow: hidden;
}

.founder-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.founder-text-content {
  flex: 0 0 55%;
  z-index: 2;
}

.founder-title {
  color: black;
  font-family: var(--ff-headline);
  font-size: var(--fs-2, 4.4rem);
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 25px;
}

.script-accent {
  color: var(--brand-orange, #ff6b00);
  font-style: italic; 
  font-weight: 400;
}

.founder-bio {
  color: var(--slate-dark, #333);
  font-family: var(--ff-body);
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 95%;
}

.founder-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
}

.founder-card {
  max-width: 420px; 
  width: 100%;
  font-family: var(--ff-headline, sans-serif);
}

.founder-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end; 
}

.shape-backdrop {
  position: absolute;
  width: 75%;
  height: 90%;
  bottom: 0;
  right: 5%; 
  background-color: #dce3eb;
  border-radius: 40px 40px 0 0;
  z-index: 0;
}

.founder-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
}

.founder-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  padding-inline: 10px;
}

.founder-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.founder-name {
  font-size: 2.8rem;
  font-weight: 800;
  color: #111111;
  margin: 0;
  line-height: 1.1;
}

.founder-designation {
  font-size: 1.5rem;
  color: var(--brand-orange, #ff6b00);
  font-weight: 600;
  margin: 0;
}

.linkedin-icon {
  display: inline-flex;
  transition: transform 0.2s ease, opacity 0.2s ease;
  margin-top: 4px;
}

.linkedin-icon svg {
  width: 32px;
  height: 32px;
}

.linkedin-icon:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.founder-stats-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 40px 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: -90px; 
  position: relative;
  z-index: 10; 
  margin-bottom: 80px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.stat-number {
  font-family: Aloevera;
  font-size: 3.2rem;
  color: var(--brand-orange, #ff7a3c);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-item p {
  color: var(--slate-muted, #666);
  font-family: var(--ff-body);
  font-size: 1.35rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .founder-section{
    padding-top: 20px;
  }
  .founder-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  
  .founder-text-content {
    flex: 1 1 100%;
  }

  .founder-bio {
    max-width: 100%;
    margin-inline: auto;
    text-align: left;
  }

  .founder-top-area {
    padding-bottom: 60px; 
  }

  .founder-image-box {
    width: 100%;
    margin-top: 20px;
  }

  .founder-stats-card {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  .founder-stats-card {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .stat-item {
    align-items: center; 
  }
  
  .founder-name { font-size: 2.4rem; }
  .founder-designation { font-size: 1.4rem; }
}




/*-----------------------------------*\
  #TEAM SECTION (Single Row & 4K Optimized)
\*-----------------------------------*/

.team-list {
  display: grid;
  grid-template-columns: 1fr; /* Stacked on mobile */
  gap: 25px;
  margin-block-start: 50px;
  width: 100%;
}

.team-card {
  position: relative;
  background-color: var(--brand-orange);
  border-radius: 40px 0 40px 0; /* Refined modern corners */
  overflow: hidden;
  height: 500px;
  transition: var(--transition-2);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-orange);
}

.team-card .card-banner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.team-card .img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Soft fade at the bottom to transition into the orange content area */
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.team-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px; 
  background: linear-gradient(to top, var(--brand-orange) 60%, transparent 100%);
  color: white;
  z-index: 2;
  text-align: center;
}

.team-card .card-title {
  font-family: var(--ff-headline); /* Aloevera Display */
  font-size: clamp(2.4rem, 2vw, 3.2rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 8px;
}

.team-card .card-subtitle {
  font-family: var(--ff-body); /* Poppins */
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}

/* --- THE SINGLE LINE FIX --- */

/* For Tablets and Desktops */
@media (min-width: 768px) {
  .team-list {
    /* This forces all cards into a single row */
    grid-template-columns: repeat(4, 1fr); 
    max-width: 100%; /* Allows it to fill the 4K container */
    gap: 20px;
  }
  
  .team-card {
    height: clamp(450px, 40vw, 650px); /* Height scales with screen width */
  }
}

/* For 4K Screens */
@media (min-width: 1800px) {
  .team-list {
    gap: 40px; /* More breathing room on huge screens */
  }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
  .team-list {
    grid-template-columns: 1fr; /* Returns to stack for readability */
    max-width: 400px;
    margin-inline: auto;
  }
  
  .team-card {
    height: 480px;
  }
}







/*-----------------------------------*\
  #SERVICES (NEW IMAGE UI)
\*-----------------------------------*/

.service-visual {
  background-color: var(--white); 
  
}

.service-header-top {
  display: flex;
  flex-direction: column;
  align-items: center;    
  justify-content: center;
  margin-bottom: 50px;
  gap: 25px;
}

.header-text-content {
  max-width: 700px;
  margin: 0 auto;
}

.service-visual .section-title {
  text-align: center; 
  margin-inline: auto;
  font-family: var(--ff-headline, 'Poppins', sans-serif);
  font-size: var(--fs-2, 4.4rem);
  font-weight: 400;
  color: var(--slate-dark);
  margin-bottom: 15px;
}

.service-visual .section-title span {
  color: var(--brand-orange); 
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.img-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4; 
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background-color: #2a2a2a; 
  border: 6px solid var(--brand-orange); 
}

.card-bg-img {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.img-card:hover .card-bg-img {
  transform: scale(1.08); 
}

.img-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
  z-index: 2;
  transition: opacity 0.3s ease;
}

.card-arrow {
  position: absolute;
  top: 20px; right: 20px;
  width: 45px; height: 45px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  z-index: 3;
  transition: all 0.3s ease;
}

.img-card:hover .card-arrow {
  background-color: var(--brand-orange);
  color: var(--white);
  transform: scale(1.1);
}

.img-card:hover .card-arrow ion-icon {
  transform: rotate(-45deg);
}

.img-card-content {
  position: absolute;
  bottom: 0; left: 0; width: 100%;
  padding: 30px 25px;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

.img-card-title {
  color: var(--white);
  font-family: var(--ff-body, 'Poppins', sans-serif);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.img-card-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .visual-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .service-header-top { flex-direction: column; gap: 20px; }
  .img-card { aspect-ratio: 4 / 5; }
}

@media (max-width: 576px) {
  .visual-grid { grid-template-columns: 1fr; }
  
}
@media (max-width: 600px) {
  .visual-grid {
    grid-template-columns: 1fr; /* 1 big card per row on phones */
  }
  
  .img-card {
    aspect-ratio: 1 / 1; /* Square cards look better on phones */
  }
}




/* --- SERVICES PAGE SPECIFIC STYLES --- */

/* 1. CONTAINER: REMOVE ALL PADDING AND HEIGHT LIMITS */
.services-hero-image {
  background-color: #ffffff; /* Matches image background */
  padding: 0;               /* Removes top/bottom space */
  margin: 0;                /* Removes side space */
  width: 100%;              /* Ensures container is full width */
  overflow: hidden;         /* Prevents any accidental scrollbars */
  
  /* IMPORTANT: If your header is "fixed" at the top, 
     keep a margin-top equal to your header height so the image 
     doesn't hide under the menu. Usually 80px or 100px. */
  margin-top: 85px; 
}

/* 2. IMAGE: SCALE TO FILL THE ENTIRE SCREEN WIDTH */
.hero-img {
  width: 100%;              /* Forces image to touch both sides */
  max-width: 100%;          /* Removes the 1200px limit */
  height: auto;             /* Maintains correct proportions */
  display: block;           /* Removes the tiny gap at the bottom of images */
  margin: 0;
}

/* 3. MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
  .services-hero-image {
    margin-top: 70px;       /* Smaller margin for mobile headers */
    padding: 0;
  }
}



/* --- SERVICES PAGE SPECIFIC STYLES --- */

:root {
  /* Brand Colors */
  --primary-orange: #f26522;
  --primary-orange-soft: rgba(242, 101, 34, 0.1);
  --dark-navy: #0e2133;
  --slate-text: #4a4a4a;
  --bg-pure: #ffffff;
  
  /* Layout */
  --radius-premium: 30px;
  --container-width: 1200px;
  --transition: all 0.5s cubic-bezier(0.3, 1, 0.3, 1);
  
  /* Modern Shadows */
  --shadow-premium: 0 20px 40px -10px rgba(14, 33, 51, 0.1);
  --shadow-hover: 0 30px 60px -15px rgba(14, 33, 51, 0.2);
}

/* 1. HERO SECTION */
.services-hero-image {
  background-color: var(--bg-pure);
  margin-top: 85px; /* Adjust based on your header height */
  overflow: hidden;
  width: 100%;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 2. SERVICES SECTION GENERAL */
.service-detail {
  background-color: var(--bg-pure);
  padding-block: 100px;
}

.service-intro {
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 100px;
}

.service-intro .section-title {
  font-size: clamp(3rem, 5vw, 4.5rem); /* Fluid Heading */
  font-weight: 700;
  color: var(--dark-navy);
  line-height: 1.1;
}

.service-intro .span {
  color: var(--primary-orange);
  display: block;
}

/* 3. ALTERNATING ROWS (DESKTOP) */
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center; /* Perfect vertical centering */
  gap: 80px;
  margin-bottom: 140px;
}

.service-row.reverse {
  direction: ltr; /* Keeps text flowing left-to-right */
}

.service-row.reverse .service-content {
  order: 1;
}

.service-row.reverse .service-image {
  order: 2;
}

/* Content Styling */
.service-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.icon-box {
  background-color: var(--primary-orange-soft);
  color: var(--primary-orange);
  min-width: 65px;
  height: 65px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 30px;
  transition: var(--transition);
  display: none;
}

.icon-box.teal {
  background-color: rgba(15, 23, 42, 0.08);
  color: var(--teal);
}

.service-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  color: var(--dark-navy);
  line-height: 1.2;
}

.service-content .section-text {
  max-width: 580px; /* Crucial: Prevents lines from getting too wide to read easily */
  margin-bottom: 40px;
}
.service-content .section-text p:first-of-type {
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--dark-navy);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* 2. Selective Emphasis (Bolding) */
.service-content .section-text strong {
  color: var(--dark-navy);
  font-weight: 700;
}

/* 3. Brand Highlight (Optional span class) */
.service-content .section-text .highlight {
  color: var(--primary-orange);
  font-weight: 600;
  display: inline-block;

}

/* 4. FEATURE GRID (DESKTOP) */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns for a cleaner look */
  gap: 15px 30px;
  margin-bottom: 45px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list li p {
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--dark-navy);
}

.check-icon {
  background-color: var(--primary-orange);
  color: white;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

/* 5. IMAGE TREATMENT */
.service-image {
  position: relative;
}

.img-holder {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-premium);
  box-shadow: var(--shadow-premium);
  transition: var(--transition);
  display: block;
}

.service-row:hover .img-holder {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* --- RESPONSIVE ADJUSTMENTS --- */

@media (max-width: 1100px) {
  .service-row { gap: 40px; }
  
}

@media (min-width: 993px) {
  .service-content .section-text {
    padding-left: 2px; /* Visual alignment with the icon/heading */
  }
}

@media (max-width: 992px) {
  .service-row, .service-row.reverse {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-bottom: 100px;
  }

  /* Force image to top on mobile for all rows */
  .service-row.reverse .service-content { order: 2; }
  .service-row.reverse .service-image { order: 1; }

  /* Centering Logic for Mobile */
  .service-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-header {
    flex-direction: column;
    gap: 15px;
  }

  .service-content .section-text {
    max-width: 100%;
    margin-inline: auto;
  }
  .service-content .section-text p:first-of-type {
    font-size: 1.75rem; /* Slightly smaller for mobile */
  }

  .feature-list {
    grid-template-columns: 1fr; /* Single column on mobile */
    text-align: left;
    max-width: 400px;
    margin-inline: auto;
  }

  .img-holder {
    height: 380px;
  }
  
  .btn-primary {
    margin-inline: auto;
  }
}

@media (max-width: 575px) {
  .service-detail { padding-block: 60px; }
  
  .img-holder {
    height: 280px;
    border-radius: 20px;
  }

  .service-intro .section-title { font-size: 3.2rem; }
  
  .service-content h2 { font-size: 2.6rem; }
}







/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact { background-color: #ffffff; }
.contact-form {
  background-color: #ffffff; padding: 30px; border-radius: var(--radius-8);
  margin-block-end: 40px; box-shadow: var(--shadow-1);
}

.input-field {
  background-color: var(--bg-color); color: var(--slate-dark);
  font-family: var(--ff-body); font-size: var(--fs-5);
  padding: 16px 20px; border: 1px solid #e2e8f0; border-radius: var(--radius-5);
  margin-block-end: 20px; transition: var(--transition-1);
}

.input-field:focus { 
  border-color: var(--brand-orange); background-color: var(--white);
  box-shadow: 0 0 0 3px hsla(25, 95%, 53%, 0.1); outline: none;
}

textarea.input-field { resize: vertical; min-height: 120px; }

.checkbox-wrapper { display: flex; align-items: flex-start; gap: 10px; margin-block-end: 25px; }
.checkbox { width: max-content; margin-block-start: 5px; accent-color: var(--brand-orange); }
.label-link { display: inline-block; color: var(--brand-orange); font-weight: var(--fw-500); }





/*-----------------------------------*\
  #BLOG SPECIFIC STYLES
\*-----------------------------------*/

.blog-page { padding-block: 120px 80px; }

.blog-intro { margin-bottom: 60px; }
.blog-intro .section-subtitle { font-size: 1.4rem; font-weight: 600; color: var(--slate-muted); margin-bottom: 10px; }
.blog-main-title { font-size: 6rem; max-width: 600px; line-height: 1.1; }
.italic-text { font-family: 'Georgia', serif; font-style: italic; font-weight: 400; }

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: white;
  overflow: hidden;
  margin-bottom: 80px;
  align-items: center;
}
.featured-img-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.featured-img-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.featured-img-link:hover img {
  transform: scale(1.08);
  filter: brightness(0.9);
}

.featured-img-box { border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-2); }
.featured-img-box img { transition: transform 0.5s ease; }
.featured-img-box:hover img { transform: scale(1.05); }

.post-title { margin-bottom: 20px; font-size: 3.2rem; }
.post-excerpt { font-size: 1.6rem; color: var(--slate-muted); margin-bottom: 30px; line-height: 1.6; }

.post-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #ffffff; padding-top: 10px; }
.author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 35px; height: 35px; border-radius: 50%; object-fit: cover; }
.author-name, .post-date { font-size: 1.3rem; color: var(--slate-muted); }

.author-link {
  font-size: 2rem;
  font-weight: 600;
  color: var(--slate-dark);
  text-decoration: none;
  transition: var(--transition-1);
}

.author-link:hover {
  color: var(--brand-orange);
  text-decoration: underline;
}

.post-meta .author {
  display: flex;
  align-items: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card { cursor: pointer; }
.card-banner { border-radius: 24px; overflow: hidden; margin-bottom: 20px; box-shadow: var(--shadow-1); }
.card-banner img { aspect-ratio: 16 / 9; object-fit: cover; transition: 0.4s ease; }
.blog-card:hover .card-banner img { transform: scale(1.1); }
.blog-card .card-title { font-size: 2.2rem; line-height: 1.3; margin-top: 10px; }

@media (max-width: 991px) {
  .blog-intro{ padding-top: 20px;}
  .featured-img-box {cursor: pointer;}
  .featured-card { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-main-title { font-size: 4.5rem; }
}

@media (max-width: 576px) {
  .blog-grid { grid-template-columns: 1fr; }
}






/*-----------------------------------*\
  #ENQUIRIES IMAGE-BASED DESIGN
\*-----------------------------------*/

.enquiry-section {
  background-color: #ffffff;
}

.enquiry-top-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.pill-input {
  width: 100%;
  background-color: #fcf4ee;
  border: none;
  border-radius: 50px;
  padding: 18px 25px;
  margin-bottom: 20px;
  font-family: var(--ff-body);
  font-size: 1.5rem;
  color: var(--slate-dark);
}

.pill-input.textarea {
  border-radius: 30px;
  min-height: 140px;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.btn-pill-teal {
  background-color: #f97316;
  color: white;
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}


.newsletter-pill-card {
  background-color: #303a52;
  border-radius: 40px;
  padding: 45px 35px;
  color: white;
  display: flex;
  flex-direction: column;
}

.newsletter-pill-card .h3 { color: white; margin-bottom: 15px; }
.newsletter-pill-card p { font-size: 1.4rem; margin-bottom: 25px; line-height: 1.6; }

.pill-input.white-bg { background-color: white; }

.btn-pill-black {
  background-color: #f97316;
  color: white;
  padding: 16px;
  border-radius: 50px;
  font-weight: 600;
}

.contact-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.info-card {
  padding: 30px 30px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.card-icon { font-size: 40px; opacity: 0.8; flex-shrink: 0; }
.info-card h4 { font-size: 1.8rem; font-weight: 700; margin-bottom: 5px; }
.info-card p { font-size: 1.3rem; line-height: 1.4; opacity: 0.9; }

.teal-dark { background-color: #303a52; color: white; }
.teal-light { background-color: #e5ecfd; color: var(--slate-dark); }
.white-border { 
  background-color: #fffbf7; 
  color: var(--slate-dark); 
  border: 1px solid #eee;
  box-shadow: var(--shadow-1);
}

.pill-map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-2);
}

@media (max-width: 991px) {
  .input-row{padding-top: 50px;}
  .enquiry-top-grid { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }

  .newsletter-pill-card {
    padding: 35px 25px;
    border-radius: 30px;
  }
}

@media (max-width: 768px) {
  .enquiry-section {
    padding-block-start: 120px;
    padding-inline: 15px;
  }

  .h1 { font-size: 3.2rem; }

  .input-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pill-input {
    padding: 16px 20px;
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  .pill-input.textarea {
    min-height: 120px;
  }

  .btn-pill-teal, 
  .btn-pill-black {
    width: 100%;
    padding-block: 16px;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .contact-pill-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .info-card {
    padding: 25px 20px;
    border-radius: 25px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .card-icon {
    font-size: 32px;
    margin-bottom: 5px;
  }

  .info-card h4 {
    font-size: 1.7rem;
  }

  .pill-map-container {
    border-radius: 25px;
    height: 300px;
  }
  
  .pill-map-container iframe {
    height: 100%;
  }
}

@media (max-width: 480px) {
  .newsletter-pill-card {
    padding: 30px 20px;
  }
  
  .enquiry-section {
    padding-block-end: 60px;
  }
}






/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer { 
  background-color: var(--slate-dark); color: #94a3b8; padding-top: 80px; 
}

.footer__container { 
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); 
  gap: 50px; padding-bottom: 40px; border-bottom: 1px solid hsla(0, 100%, 100%, 0.1); 
}

.footer__logo .logo { 
  
  justify-content: center; /* This centers the items horizontally */
  gap: 10px;
  text-decoration: none;
  width: 100%;            /* Ensures the link takes full width to allow centering */
}
.logo-img { width: 300px; height: auto; display: block; }
.footer .logo span { color: var(--brand-orange); }

.footer .h3 { 
  color: var(--white); margin-bottom: 20px; font-size: 2rem; text-align: left;
}

.footer__socials { display: flex; gap: 15px; margin-top: 20px; }

.footer__socials a { 
  width: 42px; height: 42px; background: hsla(0, 0%, 100%, 0.05); 
  display: grid; place-items: center; border-radius: 50%; font-size: 18px; 
  color: var(--white); transition: var(--transition-1); 
}

.footer__socials a:hover { background: var(--brand-orange); transform: translateY(-3px); }
.footer__links { padding: 0; }
.footer__links li { margin-bottom: 14px; }
.footer__links a { display: flex; gap: 10px; align-items: center; transition: var(--transition-1); }

.footer__links ion-icon { 
  color: var(--brand-orange); font-size: 22px; min-width: 22px; flex-shrink: 0; 
}

.footer__bar { 
  text-align: center; padding: 20px 20px; font-size: 1.4rem; 
  background: #020617; max-width: auto; margin: 0 auto;
}
/* Keep your existing desktop code as is, then add this at the bottom */

@media (max-width: 991px) {
  .footer__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer__logo .logo {
    display: flex;
    justify-content: center;
    margin-inline: auto;
  }
}
@media (max-width: 768px) {

  .footer__container {
    grid-template-columns: 1fr; /* Single column */
    text-align: center;
    gap: 40px;
  }
 
  .footer .h3 {
    text-align: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__links a {
    justify-content: center;
  }
}
/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed; bottom: 20px; right: 20px; background-image: var(--gradient);
  color: var(--white); padding: 15px; border-radius: 50%; box-shadow: var(--shadow-2);
  z-index: 4; opacity: 0; visibility: hidden; transition: var(--transition-1);
}

.back-top-btn.active { opacity: 1; visibility: visible; transform: translateY(-10px); }
.back-top-btn:is(:hover, :focus) { transform: translateY(-15px); box-shadow: var(--shadow-orange); }

/*-----------------------------------*\
  #DESKTOP OPTIMIZATIONS
\*-----------------------------------*/

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}


/* For Large Laptops/Desktops (QHD) */
@media (min-width: 1600px) {
  .container { max-width: 1500px; }
}

@media (min-width: 2500px) {
  .container { max-width: 2200px; }
}

/* For 4K Monitors and Ultra-Wide */
@media (min-width: 2200px) {
  .container { max-width: 2000px; }
}

@media (max-width: 1200px) {
  .container { max-width: 1140px; }
  .hero-about .container {
    padding-inline: 40px;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-padding: 60px; /* Reduced from 80px */
  }

  .container {
    padding-inline: 25px; /* More breathing room on edges */
  }
}

@media (max-width: 576px) {
  html {
    font-size: 55%; /* Slightly scale down all REM units for small phones */
  }
}

@media (min-width: 768px) {
  .contact-form { padding: 40px; }
  .input-wrapper { display: flex; gap: 20px; }
  .input-wrapper .input-field { margin-block-end: 20px; }
  .about-section .layout-wrapper { flex-direction: row; }
}

@media (min-width: 992px) {

  .nav-toggle-btn { display: none; }
  .navbar, .navbar.active { all: unset; }
  .navbar-list { all: unset; display: flex; align-items: center; gap: 35px; }
  
  .navbar-link { position: relative; border-bottom: none; padding-block: 0; }
  .navbar-link::after {
    content: ""; position: absolute; bottom: -5px; left: 0; width: 100%; height: 3px;
    background-color: var(--brand-orange); border-radius: 5px; transform: scaleX(0);
    transform-origin: right; transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  .navbar-link:is(:hover, :focus)::after { transform: scaleX(1); transform-origin: left; }
  .header .btn { margin-block-start: 0; }

  .hero .container {
    display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; text-align: left;
  }
  .hero-text, .hero .btn { margin-inline: 0; }
  
  .about .container { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; }
}




/* --- NAVBAR CLICK & HOVER COLOR --- */

/* Changes text to orange when hovering, clicking, or on the current page */
.navbar-link:hover,
.navbar-link:active,
.navbar-link.active {
  color: var(--brand-orange) !important;
}

/* Ensures the underline is also orange and visible for the active link */
.navbar-link.active::after {
  transform: scaleX(1);
  background-color: var(--brand-orange);
}