@import url("https://fonts.cdnfonts.com/css/satoshi");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* Global custom styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Satoshi", sans-serif;
}

/* for testing */
.red {
  border: 1px solid red;
}

/* for testing */

:root {
  /* Font Family */
  --primary-font: "Satoshi", sans-serif;
  --secondary-font: "Inter", sans-serif;
  /* Primary Colors */
  --primary-100: #f6f9fe;
  --primary-400: #007bff;
  --primary-600: #3b78dc;
  --primary-900: #0a1425;

  /* Secondary Colors */
  --secondary-100: #fff7f2;
  --secondary-400: #ff6600;
  --secondary-600: #e55c00;
  --secondary-900: #401900;

  /* Black color shades */
  --neutral-black-600: #6e6e6e;
  --neutral-black-700: #4a4a4a;
  --neutral-black-800: #2e2e2e;
  --neutral-black-900: #1a1a1a;
  --neutral-black-950: #0c0c0c;

  --neutral-gray-500: #999999;
  --neutral-gray-600: #f5f5f5;

  /* White color shades */
  --neutral-white-600: #bfbfbf;
  --neutral-white-700: #d9d9d9;
  --neutral-white-800: #ededed;
  --neutral-white-900: #f8f8f8;
  --neutral-white-950: #ffffff;

  /* Semantic colors */
  --semantic-red: #eb4335;
  --semantic-green: #34a853;
  --semantic-yellow: #fbbc05;
  --semantic-orange: #fb8c00;
  --semantic-blue: #4285f4;

  /* ---Light theme configurations--- */
  /* Text colors */
  --text-hero: var(--neutral-black-950);
  --text-headings: var(--neutral-black-900);
  --text-title: var(--neutral-black-800);
  --text-paragraph-1: var(--neutral-black-700);
  --text-paragraph-2: var(--neutral-black-600);
  --text-helping: var(--neutral-gray-500);
  --text-primary: var(--primary-400);
  --text-secondary: var(--secondary-400);
  --text-red: var(--semantic-red);
  --text-green: var(--semantic-green);
  --text-yellow: var(--semantic-yellow);
  --text-orange: var(--semantic-orange);
  --text-blue: var(--semantic-blue);

  /* Border colors */
  --border-white-700: var(--neutral-white-700);
  --border-white-600: var(--neutral-white-600);
  --border-black-600: var(--neutral-black-600);
  --border-primary-100: var(--primary-100);
  --border-primary: var(--primary-400);
  --border-secondary: var(--secondary-400);
  --border-green: var(--semantic-green);
  --border-red: var(--semantic-red);

  /* Background colors or surface colors */
  --background-white: var(--neutral-white-950);
  --background-white-900: var(--neutral-white-900);
  --background-white-800: var(--neutral-white-800);
  --background-white-700: var(--neutral-white-700);
  --background-white-600: var(--neutral-white-600);
  --background-gray: var(--neutral-gray-500);
  --background-primary: var(--primary-100);
  --background-primary-200: #007bff1a;
  --background-secondary: var(--secondary-100);

  /* Button colors */
  --btn-primary-before: var(--primary-400);
  --btn-primary-after: var(--primary-600);
  --btn-primary-active: var(--primary-900);
  --btn-secondary-before: var(--secondary-400);
  --btn-secondary-after: var(--secondary-600);
  --btn-secondary-active: var(--secondary-900);

  /* Shadow */
  --card-shadow: 0 0 25px 0 rgba(0, 123, 255, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(0deg,
      var(--button-input-button-primary-before, #007bff),
      var(--button-input-button-primary-before, #007bff)),
    linear-gradient(93.2deg,
      rgba(0, 123, 255, 0.75) 0.17%,
      rgba(255, 102, 0, 0.75) 99.83%),
    linear-gradient(0deg,
      var(--brand-color-primay-transparent-primary-10, rgba(0, 123, 255, 0.1)),
      var(--brand-color-primay-transparent-primary-10, rgba(0, 123, 255, 0.1)));

  --gradient-secondary: linear-gradient(0deg,
      var(--brand-color-primay-primary-brand, #007bff),
      var(--brand-color-primay-primary-brand, #007bff)),
    linear-gradient(93.2deg,
      rgba(0, 123, 255, 0.75) 0.17%,
      rgba(59, 120, 220, 0.75) 50%,
      rgba(10, 20, 37, 0.75) 99.83%),
    linear-gradient(0deg,
      var(--brand-color-primay-transparent-primary-10, rgba(0, 123, 255, 0.1)),
      var(--brand-color-primay-transparent-primary-10, rgba(0, 123, 255, 0.1)));
  --gradient-1: linear-gradient(180deg,
      rgba(26, 67, 191, 0) 0%,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 100%),
    var(--body-bw-95100-base, #fff);
  --gradient-1-opposite: linear-gradient(180deg,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 0%,
      rgba(26, 67, 191, 0) 100%),
    var(--body-bw-95100-base, #fff);
  --gradient-project: linear-gradient(0deg,
      var(--button-input-button-primary-before, #007bff),
      var(--button-input-button-primary-before, #007bff)),
    linear-gradient(93.2deg,
      rgba(0, 123, 255, 0.75) 0.17%,
      rgba(255, 102, 0, 0.75) 99.83%),
    linear-gradient(0deg,
      var(--brand-color-primay-transparent-primary-10, rgba(0, 123, 255, 0.1)),
      var(--brand-color-primay-transparent-primary-10, rgba(0, 123, 255, 0.1)));

  /* === Font Sizes with clamp === */
  --font-xxs: clamp(0.5rem, 1vw, 0.625rem);
  /* 8px–10px */
  --font-xs: clamp(0.625rem, 1.2vw, 0.75rem);
  /* 10px–12px */
  --font-sm: clamp(0.75rem, 1.5vw, 0.875rem);
  /* 12px–14px */
  --font-base: clamp(0.875rem, 1.8vw, 1rem);
  /* 14px–16px */
  --font-md: clamp(1rem, 2vw, 1.125rem);
  /* 16px–18px */
  --font-lg: clamp(1.125rem, 2.2vw, 1.25rem);
  /* 18px–20px */
  --font-xl: clamp(1.25rem, 2.5vw, 1.5rem);
  /* 20px–24px */
  --font-2xl: clamp(1.5rem, 3vw, 2rem);
  /* 24px–32px */
  --font-3xl: clamp(2rem, 4vw, 2.5rem);
  /* 32px–40px */
  --font-4xl: clamp(2.5rem, 5vw, 3rem);
  /* 40px–48px */

  /* === Font Weights === */
  --font-thin: 100;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-dark: 900;

  /* === Line Heights === */
  --line-tight: 1.2;
  --line-normal: 1.5;
  --line-loose: 1.75;
}

p {
  font-family: var(--secondary-font);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primary-font);
}

.hero-heading {
  font-size: 4rem;
}

h1 {
  font-size: 4rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.85rem;
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.15rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
}

/* === Utility Classes === */
/* Text */
.text-primary {
  color: var(--text-primary) !important;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

.text-title {
  color: var(--text-title);
}

.text-helping {
  color: var(--text-helping);
}

.text-red {
  color: var(--text-red);
}

.text-green {
  color: var(--text-green);
}

.text-yellow {
  color: var(--text-yellow);
}

.text-blue {
  color: var(--text-blue);
}

.text-paragraph-1 {
  color: var(--text-paragraph-1);
}

/* Backgrounds */
.bg-primary {
  background-color: var(--background-primary) !important;
}

.bg-secondary {
  background-color: var(--background-secondary) !important;
}

.bg-white {
  background-color: var(--background-white);
}

.bg-white-900 {
  background-color: var(--background-white-900);
}

.bg-white-800 {
  background-color: var(--background-white-800);
}

/* Borders */
.border-primary {
  border: 1px solid var(--border-primary);
}

.border-primary-100 {
  border: 1px solid var(--border-primary-100);
}

.border-secondary {
  border: 1px solid var(--border-secondary);
}

.border-white-700 {
  border: 1px solid var(--border-white-700);
}

.card-shadow:hover {
  box-shadow: var(--card-shadow);
}

/* Buttons */
.btn {
  padding: 0.6rem 1.25rem;
  font-size: 1.125rem;
  font-weight: var(--font-medium);
  font-family: var(--secondary-font);
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.btn-primary {
  background-color: var(--btn-primary-before);
  color: var(--neutral-white-950);
}

.btn-primary:hover {
  background-color: var(--btn-primary-after);
}

.btn-primary:active {
  background-color: var(--btn-primary-active);
}

.btn-secondary {
  background-color: var(--btn-secondary-before);
  color: var(--neutral-white-950);
}

.btn-secondary:hover {
  background-color: var(--btn-secondary-after);
}

.btn-outlined:hover {
  background-color: var(--btn-secondary-after);
  border: 1px solid var(--btn-secondary-after);
}

.btn-secondary:active {
  background-color: var(--btn-secondary-active);
}

.btn-outlined {
  color: var(--text-secondary);
  background-color: var(--background-secondary);
  border: 1px solid var(--border-secondary);
}

/* Fonts */
.font-xxs {
  font-size: var(--font-xxs);
}

.font-xs {
  font-size: var(--font-xs);
}

.font-sm {
  font-size: var(--font-sm);
}

.font-base {
  font-size: var(--font-base);
}

.font-md {
  font-size: var(--font-md);
}

.font-lg {
  font-size: var(--font-lg);
}

.font-xl {
  font-size: var(--font-xl);
}

.font-2xl {
  font-size: var(--font-2xl);
}

.font-3xl {
  font-size: var(--font-3xl);
}

.font-4xl {
  font-size: var(--font-4xl);
}

.font-regular {
  font-weight: var(--font-regular);
}

.font-semibold {
  font-weight: var(--font-semibold);
}

.font-bold {
  font-weight: var(--font-bold);
}

.font-extrabold {
  font-weight: var(--font-extrabold);
}

.font-dark {
  font-weight: var(--font-dark);
}


.lh-normal {
  line-height: var(--line-normal);
}

.lh-loose {
  line-height: var(--line-loose);
}

/* Layout helpers */
.p-4 {
  padding: 1rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.rounded {
  border-radius: 0.5rem;
}

.h-64 {
  font-size: 4rem;
}

.gap-20 {
  --bs-gutter-x: 1.25rem;
  --bs-gutter-y: 1.25rem;
}

.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.line-clamp-5 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

/* Default container width (mobile-first) */
.container {
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
  margin-left: auto;
  margin-right: auto;
  /* border: 1px solid; */
}

.section-subtitle {
  color: var(--text-primary);
  font-weight: var(--font-semibold);
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: 0.75rem;
  text-align: center;
}

.section-title {
  font-weight: var(--font-dark);
  font-size: 1.75rem;
  color: var(--text-headings);
  font-family: var(--primary-font);
  line-height: normal;
  text-align: center;
  margin-bottom: 2.5rem;
}

.project-subtitle {
  color: var(--text-primary);
  font-weight: var(--font-semibold);
  font-family: var(--secondary-font);
  text-transform: uppercase;
  font-size: 0.75rem;

}

.section-padding {
  padding: 1.5rem;
}

.form-label {
  color: var(--text-title);
  font-weight: var(--font-medium);
  font-size: 1.15rem;
  font-family: var(--secondary-font);
}

input,
textarea {
  padding: 0.75rem !important;
  border: 1px solid var(--border-white-700);
  font-family: var(--secondary-font);
}

input:focus,
textarea:focus {
  border-color: var(--border-primary);
  box-shadow: none !important;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-helping) !important;
  font-weight: var(--font-light);
}

.form-check {
  display: flex;
  align-items: center;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 1rem;
  height: 1rem;
  transform: scale(0.7);
  margin-right: 0.5rem;
  border: 1.5px solid var(--border-white-700);
  border-radius: 0.25rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

input[type="checkbox"]:focus {
  border-color: var(--border-secondary);
  box-shadow: none !important;
}

input[type="checkbox"]:checked {
  background-color: var(--secondary-400);
  border-color: var(--border-secondary);
}

/* input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 4px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
} */

/* header css starts */



.nav-item .nav-link {
  padding: 12px 24px !important;
  font-weight: 500;
  color: var(--text-paragraph-2);
}

.navbar-nav .nav-link.active {
  background-color: var(--secondary-400);
  color: var(--neutral-white-950) !important;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
}

.header {

  border-radius: 0.5rem;
  padding: 0.5rem 2.5rem;
  /* backdrop-filter: blur(20px); */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  /* background-color: var(--background-white); */
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.header .nav-item .nav-link {
  font-size: 1.125rem !important;
}

.right-nav {
  background-color: var(--neutral-gray-600);
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
}

/* header css ends */

/* footer css starts */
footer a:hover {
  text-decoration: underline;
}

footer .cta-section-container {
  background: var(--gradient-1-opposite);
padding-top:2rem;
}

footer .cta-section {
  background-color: var(--primary-400);
  background-image: url("../images/Banner.png");
  background-repeat: no-repeat;
  color: var(--neutral-white-950);
  border-radius: 1.25rem;
  padding: 3.5rem;
}

footer .cta-section span {
  font-size: 0.75rem;
  font-weight: var(--font-bold);
  text-transform: uppercase;
  font-family: var(--secondary-font);
}

footer h2 {
  /* font-size: 2.25rem; */
  font-weight: var(--font-dark);
}

footer h6 {
  font-size: 1rem;
  font-weight: var(--font-medium);
  margin-bottom: 1rem;
}

footer .cta-section p {
  font-size: 1.125rem;
  font-weight: var(--font-medium);
}

footer .cta-section a {
  display: flex;
  padding: 0.75rem 1.5rem;
  color: var(--secondary-400);
  font-family: var(--primary-font);
  border: 1px solid var(--border-secondary);
  background-color: var(--background-secondary);
  border-radius: 0.5rem;
  backdrop-filter: blur(5px);
  text-decoration: none;
}

footer .cta-section a div {
  margin-right: 2.5rem;
  min-height: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

footer .cta-section .arrow {
  align-self: self-start;
}

footer .cta-section a span {
  font-weight: var(--font-bold);
  text-transform: capitalize;
  font-size: 1.25rem;
}

footer .cta-section small {
  font-family: var(--secondary-font);
  font-weight: var(--font-medium);
}

footer .main {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: var(--background-white-900);
  border-radius: 40px 40px 4px 4px;
}

footer .sub {
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  border-radius: 4px 4px 40px 40px;
  background: var(--background-white-900);
}

footer .about p {
  color: var(--text-paragraph-2);
  /* font-weight: var(--font-medium); */
}

footer li {
  margin-bottom: 0.75rem;
  color: var(--text-paragraph-2);
  font-weight: var(--font-medium);
}

footer li a {
  text-decoration: none;
  font-size: 1rem;
  color: var(--text-paragraph-2);
  font-weight: var(--font-medium);
}

footer li a:hover {
  text-decoration: none;
  color: var(--text-primary);
}

footer .email {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsletter-input-group {
  width: 100%;
  padding: 0.375rem 0.45rem;
  border: 1px solid var(--border-black-600);
  font-family: var(--secondary-font);
  display: flex;
  border-radius: 0.75rem;
  max-width: 427px;
}

.newsletter-input-group:focus-within {
  border-color: var(--border-primary);
}

.newsletter-input-group img {
  margin-left: 1rem;
  margin-right: 0.5rem;
}

.newsletter-input-group input {
  padding: 0rem !important;
  border: none;
  background-color: transparent;
}

.newsletter-input-group input:focus {
  background-color: transparent;
}

.newsletter-input-group button {
  padding: 0.45rem 1.25rem;
  font-size: 1rem;
}

/* footer css ends */

/* Home page css starts */
.hero {
  background: url("../images/abstract_wavy_lines_gradient_background.png");
  /* background-size: cover; */
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.5;
  background: linear-gradient(180deg,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 0%,
      rgba(26, 67, 191, 0) 100%),
    var(--body-bw-95100-base, #fff);
}

.hero .content {
  padding-top: 11.25rem;
  padding-bottom: 8rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 4rem;
  font-weight: var(--font-dark);
}

.hero h2 {
  font-size: 2.5rem;
  font-weight: var(--font-dark);
  margin-bottom: 1.25rem;
}

.hero h4 {
  color: var(--text-paragraph-1);
  font-weight: var(--font-medium);
  text-align: center;
  max-width: 750px;
  margin-bottom: 3.75rem;
  margin-top: 0.75rem;
}

.hero p {
  color: var(--text-title);
  font-weight: var(--font-regular);
  text-align: center;
  max-width: 750px;
}

.rotating-words {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  height: 5.25rem;
  /* height: 100%; */
  overflow: hidden;
  line-height: 5rem;
}

.home-page .rotating-words .word {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  animation: rotateWord 8s ease-in-out infinite;
  animation-fill-mode: both;
  white-space: nowrap;
}

.home-page .rotating-words .word:nth-child(1) {
  animation-delay: 0s;
}

.home-page .rotating-words .word:nth-child(2) {
  animation-delay: 3s;
}

.home-page .rotating-words .word:nth-child(3) {
  animation-delay: 6s;
}

/* Services cards */
.service-card {
  border-radius: 20px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  border: none;
  background-color: #ffffff;
  cursor: pointer;
height:100%;
}

.service-card:hover {
  box-shadow: var(--card-shadow);
}

.service-card .icon-container {
  margin: auto;
  margin-bottom: 1.75rem;
}

.icon-container {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-container .bg-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--background-primary-200);
  border-radius: 0.75rem;
  z-index: 0;
  transition: transform 0.4s ease;
}

.icon-container img {
  width: 30px;
  height: auto;
  position: relative;
  z-index: 1;
}

.service-card:hover .icon-container .bg-layer {
  transform: rotate(45deg);
}

.service-card h4 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
}

.service-card p {
  color: var(--text-paragraph-2);
  font-family: var(--secondary-font);
  font-size: 1rem;
  font-weight: var(--font-regular);
  margin-bottom: 1.75rem;
}

.service-card ul {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25rem;
  font-family: var(--secondary-font);
  font-weight: var(--font-regular);
  color: var(--text-paragraph-2);
}

.service-card ul li {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  text-align: start;
  display: list-item;
}

.service-card ul li span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  font-weight: var(--font-medium);
}

.service-card a {
  color: var(--secondary-400);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: color 0.2s ease;
  text-align: start;
}

/* .projects-section {
  background: linear-gradient(to bottom right, #f9fbff, #ffffff);
} */


/* ------------------------------
   Project Content Styling
------------------------------ */
.badge {
  font-size: 0.75rem;
  padding: 0.5rem 0.8rem;
  margin-right: 0.5rem;
  border-radius: 99rem;
  background-color: var(--background-primary);
  color: var(--text-primary);
  font-weight: var(--font-regular);
  font-family: var(--secondary-font);
}

.project-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-headings);
  font-weight: var(--font-bold);
  font-family: var(--primary-font);
}

.project-description {
  font-size: 1rem;
  color: var(--text-paragraph-1);
  font-size: 1rem;
  font-weight: var(--font-regular);
  margin-bottom: 1rem;
}

.project-link {
  color: #ff6b00;
  font-weight: 600;
  text-decoration: none;
}

.project-link span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.project-link:hover span {
  transform: translateX(4px);
}

/* ------------------------------
   Project Slider Container
------------------------------ */
.project-slider {
  padding: 3.85rem 0;
  overflow: hidden;
  position: relative;
}

.project-slider .slick-list {
  overflow: visible !important;
  /* VERY IMPORTANT */
  z-index: inherit;
}

.project-slider .slick-track {
  display: flex;
  align-items: stretch;
  overflow: visible !important;
  /* Ensures track doesn't clip overflow */
}

/* ------------------------------
   Individual Slide Box
------------------------------ */
.projects-section .project-slide {
  position: relative;
  padding: 1.75rem 2.5rem;
  border: 1px solid var(--border-primary-100);
  border-radius: 1.25rem;
  overflow: visible;
  background:
    linear-gradient(180deg,
      var(--brand-color-primary-transparent-primary-50, rgba(0, 123, 255, 0.05)) 0%,
      rgba(26, 67, 191, 0) 100%),
    url("../images/abstract_wavy_lines_gradient_background.png"),
    var(--body-bw-95100-base, #fff);

  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--gradient-primary);

}



/* ------------------------------
   Slide Images & Positioning
------------------------------ */
.slide-img-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-placeholder-img {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100% + 260px);
  /* overflow both top & bottom */
  width: auto;
  object-fit: contain;
  border-radius: 1.25rem;
  z-index: 0;
}

.project-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: 300px;
  border-radius: 1.25rem;

}

/* ------------------------------
   Slick Dots Custom Styling
------------------------------ */
.project-slider .slick-dots {
  position: absolute;
  bottom: 6rem;
  left: 1.85rem;
  display: flex !important;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.project-slider .slick-dots li {
  width: 8px;
  height: 8px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-slider .slick-dots li.slick-active {
  width: 120px;
}

.project-slider .slick-dots li button {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  border: none;
}

/* ------------------------------
   Animated Progress Fill on Active Dot
------------------------------ */
.project-slider .slick-dots li.slick-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--bs-primary);
  /* Bootstrap primary color */
  animation: fillDot 5s linear forwards;
  /* Match autoplay speed */
  border-radius: inherit;
}

@keyframes fillDot {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Why choose us card */
.why-card {
  background-color: var(--background-white);
  border-radius: 1rem;
  border: 1px solid var(--border-primary-100);
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  /* max-width: 650px; */
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.why-card:hover {
  box-shadow: var(--card-shadow);
}

.why-card:hover .icon-container .bg-layer {
  transform: rotate(45deg);
}

.why-card .icon-container {
  margin-bottom: 1.75rem;
}

.why-card h3 {
  font-size: 1.75rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.75rem;
  color: var(--text-headings);
}

.why-card h4 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
  color: var(--text-headings);
}

.why-card p {
  font-size: 1rem;
  color: var(--text-paragraph-2);
  margin: 0 auto;
  line-height: 1.5;
}

.tab-btn {
  background-color: var(--background-white);
  border-radius: 12px;
  text-align: left;
  padding: 1rem;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:focus {
  background-color: var(--background-primary);
  border-color: var(--primary-400);
}

.tab-style-1 {}

.tab-style-1 .nav-link h6 {
  color: var(--text-title);
}

.tab-style-1 .nav-link:hover {
  box-shadow: var(--card-shadow);
}

.tab-style-1 .nav-link p {
  color: var(--text-paragraph-2);
}

.tab-style-1 .nav-link.active h6 {
  color: var(--text-primary);
}

.tab-style-1 .nav-link.active p {
  color: var(--text-paragraph-2);
}

.tab-style-1 .carousel-inner {
  padding: 0 2.5rem;
}

.tab-style-1 .tab-pane {
  padding: 0rem;
}

.step-box {
  background-color: var(--background-white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 1.5rem;
height:100%;
}

.step-box:hover {
  box-shadow: var(--card-shadow);
}

/* .step-box:last-child {
  margin-bottom: 0;
} */

.step-box h3 {
  font-size: 2.25rem;
  font-weight: var(--font-dark);
  background: linear-gradient(180deg, rgba(0, 123, 255, 0.1) 0%, #007bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* for Firefox */
  color: transparent;
  margin-bottom: 0.5rem;
}

.step-box h5 {
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  color: var(--text-title);
}

.step-box p {
  font-size: 1rem;
  font-weight: var(--font-regular);
  color: var(--text-title);
  line-break: 1.25rem;
  opacity: 0.75;
  margin-bottom: 0;
}

/* 
.about-us-section .container {
  padding-top: 3.75rem;
  padding-bottom: 3.75rem;
} */

/* Accordion Styling */
.custom-accordion .accordion-item {
  border: none;
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid var(--border-primary-100);
  transition: all 0.1s ease;
}

.custom-accordion .accordion-item:has(.accordion-collapse.show) {
  background: linear-gradient(180deg,
      rgba(255, 102, 0, 0) 0%,
      rgba(255, 102, 0, 0.05) 100%);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
}

.accordion-item:has(.accordion-collapse.show) .accordion-button {
  background-color: transparent;
  /* font-weight: 600; */
  box-shadow: none;
}

.custom-accordion .accordion-button {
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  color: var(--text-title);
  font-weight: var(--font-medium);
  font-size: 1.125rem;
  background-color: var(--neutral-white-950);
  border: none;
  box-shadow: none;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-accordion .accordion-item:first-child .accordion-button,
.custom-accordion .accordion-item:last-child .accordion-button {
  border-radius: 1.25rem !important;
}

.custom-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23666' stroke-width='1.5'/%3E%3C/svg%3E");
  transition: transform 0.3s ease;
}

.custom-accordion .accordion-button::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 700;
  color: #666;
  background-image: none !important;
  transform: none !important;
  transition: none !important;
}

.custom-accordion .accordion-button:not(.collapsed)::after {
  /* content: "–"; */
  content: "-";
  font-size: 1.75rem;
  font-weight: 700;
  color: #666;
  align-self: center;
  margin-top: -12px;
}

/* .custom-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
} */

.custom-accordion .accordion-body {
  padding: 1rem 1.5rem;
  color: var(--text-paragraph-2);
  font-family: var(--secondary-font);
  font-size: 0.875rem;
  line-height: 1.6;
  border-top: 1px solid #f2f2f2;
  border-radius: 0 0 12px 12px;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

/* .about-us-row{
  gap: 3.85rem;
} */
.about-us-text .section-title {
  font-size: 2.25rem;
  color: var(--text-title);
}

.about-us-image {
  background-image: url("images/about_1.png");
}

.about-us-image img {
  width: 100%;
  border-radius: 0 2rem 2rem 0;
  /* object-fit: cover; */
}

.founder-quote {
  margin-top: 4rem;
  max-width: 700px;
}

.founder-quote blockquote {
  font-size: 1.75rem;
  font-weight: var(--font-bold);
  margin-bottom: 1.5rem;
  color: var(--text-title);
}

.founder-profile {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.founder-img {
  width: 106px;
  height: 106px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.founder-profile h4 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--text-title);
}

.founder-profile small {
  color: var(--text-paragraph-2);
  font-size: 0.85rem;
}

.founder-socials {
  margin-top: 0.5rem;
  display: flex;
  gap: 0.75rem;
}

.founder-socials img {
  width: 20px;
  height: 20px;
}

.faq-section {
  background: var(--gradient-1);
}

/* Home page css ends */

/* Contact page css starts */
.contact-hero {
  padding: 8rem 2.5rem;
  background-color: var(--background-primary);
  min-height: 64vh;
}

.contact-info {
  margin-top: 5rem;
}

.contact-info .icon-container {
  height: fit-content;
  width: fit-content;
  padding: 0.25rem;
  border-radius: 0.25rem;
  background-color: var(--background-primary);
  margin-right: 0.75rem;
}

.contact-info img {
  flex-shrink: 0;
}

.contact-info span {
  font-size: 1rem;
  color: var(--text-title);
  font-family: var(--secondary-font);
  font-weight: var(--font-medium);
}

.contact-info small {
  font-size: 0.75rem;
  color: var(--text-title);
  font-family: var(--secondary-font);
  font-weight: var(--font-regular);
  /* margin-bottom: 0.25rem; */
}

.contact-info img {
  height: 2.25rem;
  width: 2.25rem;
}

.contact-form {
  padding: 3.85rem 5rem;
  background-color: transparent;
  /* transform: translateY(-43%); */
  margin-top: -23.5rem;
}

.contact-form p {
  color: var(--text-title);
}

.contact-form .card {
  border: 2px solid var(--border-primary-100);
}

.contact-page .faq-section {
  padding-top: 3.85rem;
  padding-bottom: 3.85rem;
}

/* Contact page css ends */

/* Services page css starts */
.services-page .rotating-words .word {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  animation: rotateWord 12s ease-in-out infinite;
  animation-fill-mode: both;
  white-space: nowrap;
}

.services-page .rotating-words .word:nth-child(1) {
  animation-delay: 0s;
}

.services-page .rotating-words .word:nth-child(2) {
  animation-delay: 3s;
}

.services-page .rotating-words .word:nth-child(3) {
  animation-delay: 6s;
}

.services-page .rotating-words .word:nth-child(4) {
  animation-delay: 9s;
}

.services-page .design-services {
  padding: 1.5rem;
  z-index: 1;
}

.services-page .design-services .services-container {
  border-radius: 3.5rem;
  padding: 1.25rem;
}

.services-page .processes-section {
  background: var(--gradient-1);
}

.process-slider .slick-track,
.work-slider .slick-track {
  margin-left: 0 !important;
}

.process-slider .slick-slide,
.work-slider .slick-slide {
  padding-right: 20px;
  /* Optional spacing between slides */
}

.work-card {
  border: 1px solid var(--border-primary-100);
  border-radius: 1.25rem;
}

.work-card img {
  border-radius: 1.25rem 1.25rem 0 0;
  object-fit: cover;
  height: 325px;
  width: 100%;
}

.work-card h4 {
  text-align: left;
  font-size: 1.25rem;
  font-weight: var(--font-bold);
  margin-bottom: 0.5rem;
}

.work-card .card-body {
  padding: 1.25rem;
}

.work-card p {
  text-align: left;
  font-size: 1rem;
  color: var(--text-paragraph-1);
  font-weight: var(--font-regular);
}

.work-card a {
  text-align: left;
  color: var(--text-secondary);
  font-weight: var(--font-medium);
  display: block;
  text-decoration: none;
  font-size: 1rem;
}

.tools-technologies .tools-technologies-container {
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-primary-100);
  background: linear-gradient(180deg,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 0%,
      rgba(26, 67, 191, 0) 100%),
    var(--body-bw-95100-base, #fff);
}

.tools-card {
  padding: 2.5rem 1.25rem 1.25rem;
  border-radius: 1.25rem;
  background-color: var(--background-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.tools-card:hover .icon-container .bg-layer {
  transform: rotate(45deg);
}

.tools-card .icon-container {
  margin-bottom: 1.25rem;
}

.tools-card:hover {
  box-shadow: var(--card-shadow);
}

.tools-card h4 {
  text-align: center;
  font-weight: var(--font-bold);
  min-height: 100%;
  /* min-height: 3rem; */
}

.design-frameworks .design-frameworks-container {
  padding: 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border-primary-100);
  background: var(--gradient-1);
}

.approach-section {
  background: var(--gradient-1);
}

.services-page.ui-ux-design .approach-section .step-box {
  min-height: 250px;
}

.services-page.frontend-development .approach-section .step-box {
  min-height: 250px;
}

.services-page.product-consulting .approach-section .step-box {
  min-height: 230px;
}

/* Services page css starts */

/* Portfolio page css starts */
.portfolio-page .projects .projects-container {
  border-radius: 3.5rem;
  padding: 1.25rem;
}

.portfolio-page .hero .content {
  padding-top: 9.375rem;
  padding-bottom: 0;
}

/* Portfolio page css ends */

/* Portfolio detail page css starts */
.portfolio-page .projects .projects-container {
  border-radius: 3.5rem;
  padding: 1.25rem;
}

.portfolio-detail-page .portfolio-hero .content {

  padding: 9.5rem 2.75rem 2.75rem 2.75rem;
}

/* Portfolio detail page css ends */

/* About page css starts */
.about-page .hero-overlay {
  background: linear-gradient(180deg,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 100%,
      rgba(26, 67, 191, 0) 100%),
    var(--body-bw-95100-base, #fff);
}

.about-page .hero .content {
  padding-top: 9.375rem;
}

.who-we-are {
  background: linear-gradient(180deg,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 0%,
      rgba(26, 67, 191, 0) 100%),
    var(--body-bw-95100-base, #fff);
}

.who-we-are .section-title {
  /* font-size: 2.25rem; */
  margin-bottom: 1.25rem;
}

.who-we-are content {
  font-size: 1.125rem;
  color: var(--text-title);
  font-weight: var(--font-medium);
}

.industry-container {
  padding: 2.5rem;
  border-radius: 2.5rem;
  background-color: var(--background-white-900);
}

.industry-container .section-title {
  margin-bottom: 1.25rem;
}

.industry-container .tools-card {
  padding: 1.25rem;
  border-radius: 1.25rem;
}

.industry-container .tools-card h4 {
  min-height: 100%;
}

.about-page .our-vision {
  background: linear-gradient(180deg,
      rgba(26, 67, 191, 0) 0%,
      var(--brand-color-primay-transparent-primary-50, rgba(0, 123, 255, 0.05)) 100%),
    var(--body-bw-95100-base, #fff);
}

/* About page css ends */

/* ===========================================================TO be optimized================================ */
.p-40 {
  padding: 40px;
}

.sub-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
}

.section-padding {
  padding: 2rem;
}

.portfolio-section-padding {
  padding: 3.5rem 2.5rem;
}

/* Header ends */

/* About page starts */
.hero-section {
  padding: 80px 0;
  background-color: #f8f9fa;
  /* background-image: url('/assets/images/hero.png'); */
  /* update path as needed */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  /* optional for parallax feel */
  /* min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1; */
}

.about-hero {
  background: url("images/hero-bg-pattern.png") no-repeat center top;
  background-size: cover;
  position: relative;
  z-index: 1;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: -1;
}

.about-hero h1 {
  font-size: 2rem;
  font-weight: 600;
}

.about-detail h2 {
  font-size: 1.75rem;
}

.text-primary {
  color: #007bff !important;
  /* or match your brand color */
}

.icon-box {
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.feature-box {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
  height: 100%;
}

.cta-box {
  background-color: #0d6efd;
  color: #fff;
  padding: 40px;
  border-radius: 10px;
}

/* About page ends */
/* ===========================================================TO be optimized================================ */

@keyframes rotateWord {
  0% {
    opacity: 0;
    transform: translateY(300px);
  }

  10% {
    opacity: 1;
    transform: translateY(0);
  }

  25% {
    opacity: 1;
    transform: translateY(0);
  }

  35% {
    opacity: 0;
    transform: translateY(-300px);
  }

  100% {
    opacity: 0;
    transform: translateY(-150px);
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 123, 255, 0.8);
  background-size: 50% 50%;
  border-radius: 50%;

}

/* .carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231E90FF' viewBox='0 0 8 8'%3E%3Cpath d='M5.5 0L4.5 1 7 4 4.5 7 5.5 8l4-4-4-4z'/%3E%3C/svg%3E");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%231E90FF' viewBox='0 0 8 8'%3E%3Cpath d='M2.5 0L3.5 1 1 4l2.5 3-1 1-4-4 4-4z'/%3E%3C/svg%3E");
} */



/* SM (≥576px) */
@media (min-width: 100px) and (max-width: 576px) {

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.25rem !important;
  }

  h3 {
    font-size: 1rem !important;
  }

  h4 {
    font-size: 0.9rem;
  }

  h5 {
    font-size: 0.75rem;
  }

  h6 {
    font-size: 0.6rem;
  }

  .container {
    max-width: 540px;
    padding: 0.5rem;
  }

  .header {
    padding: 0.5rem 1.75rem;
  }

  .header-button {
    padding: 0.75rem 1.5rem;
  }

  .about-page .hero .content {
    padding: 8rem 2rem 2rem 2rem;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 150%;
  }

  .hero h1 span {
    font-size: 1.7rem;
  }

  .hero h4 {
    margin-bottom: 1.75rem;
  }

  .hero .content {
    padding-top: 8rem;
  }

  .project-placeholder-img {

    top: -10px;
    height: 220px;
  }

  .project-slider .slick-dots {
    bottom: 0rem;
  }



  .btn {
    font-size: 0.85rem;
    padding: 0.37rem 0.75rem;
  }

  .section-padding {
    padding: 1rem;
  }

  .section-title {
    font-size: 1.8rem !important;
    margin-bottom: 1.5rem;
  }

  .project-slider {
    padding: 0;
  }

  .why-card {
    padding: 0.75rem;
  }

  .industry-container {
    padding: 1rem;
  }

  .navbar-collapse {
    background-color: white;
  }

  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 1rem !important;
  }

  .navbar .dropdown-item {
    border-bottom: 1px solid #f1f1f1;
  }

  /* .industry-container .tools-card {
    padding: 1rem
  } */

  .project-img {
    margin-top: 2rem;
    height: auto;
  }

  .portfolio-page .hero .content {
    padding-top: 8rem;
  }

  footer .cta-section {
    padding: 1.2rem;
    margin: 0 1rem;
  }

  footer .cta-section a span {
    font-size: 1.2rem;
  }

  footer .main {
    padding: 1.5rem 1rem;
    margin-top: 0rem;
  }

  footer .sub {
    padding: 0.5rem 1rem;
    margin: 0;
    align-self: center;
  }

  footer h6 {
    margin-bottom: 0.4rem;
  }

  footer li {
    margin-bottom: 0.1rem;
  }

  .badge {
    padding: 0.3rem;
    margin-right: 0rem;
  }

  .carousel-control-prev {
    width: 10%;
  }

  .carousel-control-next {
    width: 10%;
  }

  .process-slide,
  .work-slider .slick-slide {

    width: 100vw !important;
  }

  .services-page.ui-ux-design .approach-section .step-box {
    min-height: fit-content;
  }

  .services-page.frontend-development .approach-section .step-box {
    min-height: fit-content;
  }

  .services-page.product-consulting .approach-section .step-box {
    min-height: fit-content;
  }

  .tools-technologies .tools-technologies-container {
    padding: 1rem 2.5rem;
  }

  .tools-card {
    padding: 1rem;
  }

  .services-page .design-services {
    padding: 1rem;
  }

  .contact-page .faq-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .contact-form {
    padding:6rem 0.5rem;
  }

 .contact-hero {
    min-height: 50vh;
padding:6rem 2rem;
background:#fff;
  }

  .contact-info {
    margin-top: 2rem;
  }

.portfolio-detail-page .portfolio-hero .content {
    padding: 7.5rem  1rem  2.75rem  1rem;
}
  .portfolio-section-padding {
    padding: 1rem;
  }
}

/* MD (≥768px) */
@media (min-width: 567px) and (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  h4 {
    font-size: 0.9rem;
  }

  h5 {
    font-size: 0.75rem;
  }

  h6 {
    font-size: 0.6rem;
  }

  .btn {
    padding: 0.37rem 0.75rem;
  }

  .container {
    max-width: 720px;
  }

  .header-button {
    padding: 0.75rem 1.5rem;
  }

  .hero h1 {
    font-size: 3rem;
  }


  .navbar-collapse {
    background-color: white;
  }

  .navbar .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 0.5rem 0 !important;
  }

  .navbar .dropdown-item {
    border-bottom: 1px solid #f1f1f1;
  }

  .section-title {
    font-size: 1.8rem !important
  }

  .industry-container .tools-card {
    padding: 0.5rem
  }

  .section-padding,
  .contact-form {
    padding: 1rem;
  }

  footer .main {
    padding: 1rem;
  }

  footer .cta-section {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  footer .sub {
    padding: 0.25rem 1.25rem;

  }

  /* footer h2 {
    font-size: 1.5rem;
  } */

  .carousel-control-prev {
    width: 5%;
  }

  .carousel-control-next {
    width: 5%;
  }

.contact-hero {
    min-height: 80vh;
padding:6rem 2rem;
  }
  .contact-page .faq-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
  }


}

/* LG (≥992px) */
@media (min-width: 769px) and (max-width: 991px) {
  .container {
    max-width: 960px;
  }

  h1 {
    font-size: 3rem !important;
  }

  h2 {
    font-size: 1.75rem !important;
  }

  h3 {
    font-size: 1.25rem !important;
  }

  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: 0.9rem;
  }

  h6 {
    font-size: 0.75rem;
  }

  /* Show dropdown on hover */
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }

  /* Optional: add slight spacing for appearance */
  .navbar .dropdown-menu {
    margin-top: 0.5rem;
  }

  .navbar-collapse {
    background-color: white;
  }

  .section-padding,
  .contact-form {
    padding: 1rem;
  }

  .contact-page .faq-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .navbar-nav .dropdown-menu {
    position: relative;
  }
}

/* XL (≥1200px) */
@media (min-width: 992px) and (max-width: 1200px) {
  .container {
    max-width: 1280px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  h4 {
    font-size: 1rem;
  }

  h5 {
    font-size: 0.9rem;
  }

  h6 {
    font-size: 0.75rem;
  }

  .section-padding,
  .contact-form {
    padding: 1.5rem;
  }

  .contact-page .faq-section {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

}

/* XXL (≥1400px) */
@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}

/* Ultra-wide (≥1600px) */
@media (min-width: 1600px) {
  .container {
    max-width: 1480px;
  }
}