/* ==============================================
   Jaya Shrivastava Portfolio – style.css
   Fonts: Roboto (headings) | DM Sans (body)
   ============================================== */

/* ---------- CSS Custom Properties (Light) ---------- */
:root {
  --bg:            #f9f9f9;
  --bg-card:       #ffffff;
  --fg:            #1a1814;
  --primary:       #000;
  --primary-dark:  #4f52d4;
  --navy:          #000033;
  --muted-fg:      #6b6560;
  --border:        #939393;
  --photo-bg:      #ede0ff;
  --stat-label:    #9e9890;
  --brand-opacity: 0.7;
  --ordinal-color: #dbdbdb;
  --footer-bg:     #6366f1;
	--text :  #fff;
	--text-1 :  #000;
	--outline:#000;
	--skils-text:#000;
	--skills-bg:#fff;
	--card-border:#e5e5e5;
	--skill-pill:#e5e5e5;
	--clients-bg:#f9f9f9;
}

/* ---------- CSS Custom Properties (Dark) ---------- */
[data-theme="dark"] {
--bg:            #0a0a0a;
--bg-card:       #141414;
--fg:            #f9f9f9;
--primary:       #fff;
--primary-dark:  #6366f1;
--navy:          #f9f9f9;
--muted-fg:      #9e9890;
--border:        #2a2a2a;
--photo-bg:      #1c1530;
--stat-label:    #9e9890;
--brand-opacity: 0.4;
 --ordinal-color: #2e2e2e;
--footer-bg:     #1e1e2e;
--text :  #000;
--text-1 :  #fff;
--outline : #fff;
--skils-text : #818CF8;
--skills-bg:#18181B;
	--card-border:#272729;
	--skill-pill:#393939;
	--clients-bg:#313131;
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--bg);
  color: var(--fg);
  transition: background-color 0.3s, color 0.3s;
  margin: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif;
}

p, li, label, input, textarea, select, small, span {
  font-family: 'DM Sans', sans-serif;
}

.serif-italic {
  font-family: 'Roboto', sans-serif;
/*   font-style: italic; */
/*   font-weight: 400; */
  color: var(--text-1);

}
.serif-italic1 {
  font-family: 'Roboto', sans-serif;
  font-style: italic;
  font-weight: bolder;; /* instead of lighter */
  color: --primary;
  font-size: 68px;
line-height:normal;
}
/* slider */
.brands-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
	background:var(--clients-bg);
	
}

.brands-section .swiper-slide div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
	background:#fff;
	height:80px
	
}

.brands-section .swiper-slide img {
    max-height: 65px;
    object-fit: contain;
	background:#fff;
}
.brands-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.brands-section .brand-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    display: block;
}
/* ---------- Navbar ---------- */
.site-navbar {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.3s;
}

.navbar-brand-name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 25px;
  color: var(--fg) !important;
  text-decoration: none;
  letter-spacing: -0.02em;
}
/* selected work */
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-item {
  width: 100%; /* important */
}

.nav-link-custom {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--muted-fg) !important;
  text-decoration: none;
  padding-bottom: 4px;
  position: relative;
  transition: color 0.2s;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: var(--fg) !important;
  font-weight: 500;
}

.nav-link-custom.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
}

.btn-contact {
  background: var(--primary);
  color: var(--text);
  border: none;
  border-radius: 999px;
  padding: 10px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-contact:hover { opacity: 0.88; }

.btn-theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  font-size: 1rem;
}
.btn-theme-toggle:hover { background: var(--border); }

.btn-hamburger {

  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--fg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* ---------- Hero ---------- */
.hero-section {
  padding: 30px 0 60px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background-image: url(images/Gradient\ \(3\).png);

}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color:#f4f3fb;
  border: 1px solid #6366F1;
  border-radius: 100px;
  font-size: 15px;
color:#6366F1;
  font-weight: 300;
  margin-bottom: 32px;
  animation: fadeUp 0.6s both;

}

.hero-heading{
	font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 300;
    color: #7A746D;
    line-height: 86%;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1.90px;
}

.hero-greeting {
  color: #7A746D;
  font-size: 48px;
  font-weight: 100;
  font-family: 'Roboto', sans-serif;
}

.hero-role {
  font-size: 68px;
  line-height: 1.1;
  margin-top: 4px;
  font-weight:bolder;
}

.hero-desc {
 color: #7A746D;
  font-size: 20px;
  line-height: 1.75;
	font-weight:300;
  /* max-width: 400px; */
  /* text-align: justify; */
}

.btn-outline-hero {
  border: 1px solid var(--outline);
  background: transparent;
  color: var(--text-1);
  border-radius: 999px;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-outline-hero:hover{
	color:var(--text);
  background: var(--text-1);
  border: 1px solid #000;
  border-radius: 999px;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary-hero {
  background: var(--primary);
  color: var(--text);
  border: 1px solid #000;
  border-radius: 999px;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-primary-hero:hover { 
	color: var(--text); 
}

.stat-number {
  font-family: 'DM Sans Display', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--fg);
}
.stat-label {
  font-size: 0.8rem;
  color: var(--stat-label);
  margin-top: 4px;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.hero-photo-card {
  border-radius: 24px;
  overflow: hidden;
  /* background-color: var(--photo-bg); */
  aspect-ratio: 4/5;
  /* position: relative; */
}

.hero-photo-card img {
  width: 100%;
  /* height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block; */
}

.hero-photo-shadow {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  z-index: -1;
}

/* ---------- Social Sidebar ---------- */
/* .social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 10px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 12px 0 0 12px;
} */

.social-sidebar {
  position: fixed;
  right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  padding: 1rem 0.7rem;
  background:#d2d2d2;
  /* border: 1px solid #A7A7A7; */
  border-right: none;
  border-radius: 12px 0 0 12px;
  z-index: 90;
  box-shadow: var(--shadow);
  transition: background 0.35s, border-color 0.35s;
}
.social-sidebar a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.social-sidebar a:hover {
  background-color: var(--text-1);
  color: var(--text);
  transform: translateX(-2px);
}

/* ---------- Brands ---------- */
.brands-section {
  padding: 48px 0;
  /* border-top: 1px solid var(--border); */
	background:var(--clients-bg);
}

.brand-img {
  opacity: var(--brand-opacity);
  max-height: 44px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.2s;
  filter: grayscale(100%);
}
[data-theme="dark"] .brand-img { filter: grayscale(100%) invert(1); }
.brand-img:hover { opacity: 1; }

/* ---------- Section Heading Pattern ---------- */
.section-heading {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.15;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.1px;
}
.section-heading-1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 300;
  color: var(--fg);
  line-height: 1.15;
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.1px;
	text-align:center;
	margin-top:48px;
}

.sub-list {
  list-style: decimal;
  padding-left: 20px;
}
.section-subtitle {
  font-size: 18px;
 color: #7A746D;
  line-height: 1.6;
	font-weight:300;
}

.btn-view-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--primary);
  background: fff;
  color: var(--primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.btn-view-more:hover {
  background: var(--text-1);
  border-color: #000;
  color: var(--text);
}

/* ---------- Case Studies ---------- */
.case-studies-section {
  padding: 80px 0;
}

.case-sticky-sidebar {
  position: sticky;
  top: 88px;
}

.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.case-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.08); }

.case-card img {
  width: 100%;
  height: 300px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s;
}
.case-card:hover img { transform: scale(1.02); }

.case-card-body { padding: 20px 24px; }

.case-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
}

.case-card-year {
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.tag-pill {
  display: inline-block;
  font-size:14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
  background: #e5e5e5;
  border: 1px solid var(--border);
  color: #7A746D;
}

.divider-dashed {
  border: none;
  border-top: 1px dashed var(--border);
  margin: 28px 0;
}

/* ---------- Experience ---------- */
.experience-section {
  background: var(--bg-card);
  padding: 80px 0;
}

.exp-ordinal {
  font-family: 'Roboto', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--ordinal-color);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.exp-company {
  font-family: 'Roboto', sans-serif;
  font-size: 32px;
  font-weight: 500;
 
  text-transform: uppercase;
  color: var(--navy);
}

.exp-role {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--fg);
}

.exp-desc {
  font-size: 18px;
color: #7A746D;
  line-height: 1.7;
	font-weight:300;
  /* max-width: 680px; */
}

.exp-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}


/* Container */
.skills-container {
    padding-top: 60px;
    /* background-color: #f5f5f5; */
    /* min-height: 100vh; */
}

/* Section Title */
.skills-title {
    font-size: 28px;
    font-weight: 500;
    color: var(--text-1);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

/* Skill Cards */
.skill-card {
    background-color: var(--skills-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
	
}

.skill-card:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #d0d0d0;
    transform: translateY(-2px);
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

/* Card Icon */
.card-icon {
    width: 24px;
    height: 24px;
    color: var(--text-1);
    stroke:  var(--text-1);
    flex-shrink: 0;
}

/* Card Title */
.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-1);
    margin: 0;
}

/* Card Body */
.card-body {
    padding: 0;
}

/* Skill Tags Container */
.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Skill Tag */
.skill-tag {
    display: inline-block;
    background-color: var(--skill-pill);
    color: var(--text-1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
    cursor: default;
    border: 1px solid transparent;
}

/* .skill-tag:hover {
    background-color: #dde4f3;
    transform: translateY(-1px);
} */

/* Skill Tag with Indicator Dot */
.skill-tag.with-indicator {
    position: relative;
    padding-left: 24px;
}

.skill-tag.with-indicator::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: #fbbf24;
    border-radius: 50%;
}

/* ---------- Selected Work ---------- */
.selected-work-section { padding: 80px 0; }

.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.work-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 12px;
}

.work-card-num {
  font-family: 'Roboto', sans-serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--muted-fg);
  opacity: 0.35;
  line-height: 1;
  user-select: none;
}

.work-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--fg);
  padding: 0 20px 12px;
}

.work-card-img-wrap {
  margin: 0 16px;
  border-radius: 12px;
  overflow: hidden;
}

.work-card-img-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.work-card-footer {
  padding: 16px 20px;
  margin-top: auto;
}

.link-view-project {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
/* .link-view-project:hover { text-decoration: underline; } */

/* ---------- Latest Articles ---------- */
.articles-section { padding: 80px 0; }

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 370px;
}

.article-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.article-card:hover .article-card-img { transform: scale(1.04); }
.article-card-img-wrap { overflow: hidden; }

.article-date {
  font-size: 0.75rem;
  color: var(--muted-fg);
  letter-spacing: 0.04em;
}

.article-title {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

.link-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: none;
}
/* .link-read-more:hover { text-decoration: underline; } */

/* ---------- Contact ---------- */
.contact-section { padding: 80px 0; }

.contact-accent-bar {
  width: 48px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
  margin-top: 16px;
}

.contact-label-dt {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 4px;
}

.contact-label-dd {
  font-family: 'DM Sans', sans-serif;
  font-size:16px;
  font-weight: 600;
  color: var(--fg);
}

.contact-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
  font-size:16px;
}

.contact-avail::before {
  content: '◆';
  font-size: 0.55rem;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--muted-fg);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}
.social-icon-btn:hover { color: var(--primary); border-color: var(--primary); }

.contact-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
}

.form-label-custom {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 6px;
  display: block;
}

.form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-control-custom::placeholder { color: var(--muted-fg); }
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.btn-send {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
/* .btn-send:hover { background: var(--text);color:var(--text-1);border:1px solid #fff; } */
.btn-send:active { transform: scale(0.98); }

/* FAQ */
/* Main Section Styling */
.faq-section {
    background-color: var(--text);
    padding-bottom: 80px;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
}

/* FAQ Title */
.faq-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}



/* FAQ Card Styling */
.faq-card {
    background-color: var(--skills-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

/* Hover Effect */
.faq-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
    border-color: #d0d0d0;
}

/* FAQ Question Styling */
.faq-question {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-1);
    margin-bottom: 16px;
    line-height: 1.4;
    margin-top: 0;
}

/* FAQ Answer Styling */
.faq-answer {
    font-size: 16px;
    color: #7A746D;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Decorative Dot Between Cards */
.faq-dot {
    text-align: center;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.faq-dot::before {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #b8a853;
    border-radius: 50%;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #000!important;
  padding: 24px 0 !important;
}

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

.footer-nav a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #fff; }

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after{
  display: none;
}
.swiper-button-next:after, .swiper-button-prev:after{
  display: none;
}
.our-client1 {
  overflow: hidden;
}

.our-client1 .swiper-wrapper {
  align-items: stretch;
}

.our-client1 .swiper-slide {
  width: auto;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next{
  display: none;
}
.swiper-button-next, .swiper-rtl .swiper-button-prev{
  display: none;
}

/* ---------- Responsive Adjustments ---------- */
@media (max-width: 991.98px) {
  .social-sidebar { display: none; }
  .hero-section { padding: 48px 0 40px; min-height: auto; }
  .hero-photo-wrap { max-width: 300px; margin-top: 40px; }
  .case-sticky-sidebar { position: static; }
  .contact-form-card { padding: 24px; }
}
@media (max-width: 768px) {
  .navbar-brand-name{
    padding-right: 180px;
  }
  .nav-link-custom{
    font-size: 12px;

  }
  .btn-contact{
    display: none;
  }
  .navbar-brand-name{
        padding-right: 415px;
  }
}

@media (max-width: 575.98px) {
  .site-navbar .d-flex { gap: 8px !important; }
  .hero-greeting {
    font-size: 24px;
}
  .hero-role {
    font-size: 42px;
}
  .brands-section .d-flex { gap: 24px !important; }
  .btn-contact{
    display: none;
  }
  .navbar-brand-name{
    font-size: 14px;
  }
  /* hero-section */
  .hero-desc{
    font-size: 14px;
  }
  .hero-photo-wrap{
    margin-top: 0px;
  }
  .section-subtitle{
    font-size: 16px;
    font-weight:300;
  }
  .divider-dashed{
    margin: 0px;
  }
  /* case-study */
  .case-card-title{
    font-size: 18px;
  }
  .case-studies-section{
    padding: 40px 0;
  }
  /* experience-section */
  .experience-section{
    padding: 40px 0;
  }
  .exp-ordinal{
font-size: 42px;
  }
  .exp-company{
    font-size: 24px;
  }
  .exp-role{
    font-size: 18px;
    font-weight: 500;
  }
  .exp-desc{
    font-size: 16px;
    font-weight:300;
  }
  .tag-pill{
    font-size: 12px;
  }
  .selected-work-section{
    padding: 40px 0;
  }
  .articles-section{
    padding: 40px 0;
  }
  .contact-section{
    padding: 40px 0;
  }
  .hero-section {
    padding: 48px 0 40px;
  }
  .article-title{
    font-size: 18px;
  }
}
@media (max-width: 450px) {
  .navbar-brand-name{
    font-size: 12px;
    padding-right: 140px;
  }
  .stat-number{
    font-size: 26px;
  }
  .stat-label{
    font-size: 12px;
  }
  .btn-outline-hero{
    font-size: 12px;
  }
  .btn-primary-hero{
    font-size: 12px;
  }
  .articles-section {
    padding: 5px 0;
}
	.hero-badge{
		font-size:14px;
		
	}
}
@media (max-width: 350px) {
  .navbar-brand-name{
    font-size: 12px;
    padding-right: 70px;
  }
  .stat-number{
    font-size: 18px;
  }
  .hero-role{
    font-size:32px;
  }
  .stat-label{
    font-size: 10px;
  }
  .btn-outline-hero{
    font-size: 10px;
  }
  .btn-primary-hero{
    font-size: 10px;
  }
  .articles-section {
    padding: 5px 0;
}
.exp-role{
  font-size: 16px
}
	.serif-italic1{
	font-size:48px;
	}
	.footer-nav a{
		font-size:14px;
	}
}

/* about-section */
/* Tablet (768px and up) */
@media (max-width: 991px) {
    .skills-container {
        padding: 40px 15px;
    }

    .skills-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .skill-card {
        padding: 25px;
    }
}

/* Small Tablet (576px and up) */
@media (max-width: 767px) {
    .skills-container {
        padding: 30px 15px;
    }

    .skills-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .skill-card {
        padding: 20px;
    }

    .card-header {
        gap: 10px;
        margin-bottom: 16px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .skill-tags {
        gap: 8px;
    }

    .skill-tag {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

/* Mobile (up to 575px) */
@media (max-width: 575px) {
    .skills-container {
        padding: 20px 10px;
    }

    .skills-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .skill-card {
        padding: 16px;
    }

    .card-header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .card-icon {
        width: 20px;
        height: 20px;
    }

    .card-title {
        font-size: 1rem;
    }

    .skill-tags {
        gap: 6px;
    }

    .skill-tag {
        padding: 5px 10px;
        font-size: 0.8rem;
        padding-left: 20px;
    }

    .skill-tag.with-indicator::before {
        left: 6px;
        width: 6px;
        height: 6px;
    }
}

/* Extra Small (320px and up) */
@media (max-width: 375px) {
    .skills-container {
        padding: 15px 10px;
    }

    .skills-title {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    .skill-card {
        padding: 12px;
    }

    .card-header {
        margin-bottom: 10px;
    }

    .skill-tags {
        gap: 5px;
    }

    .skill-tag {
        padding: 4px 8px;
        font-size: 0.75rem;
        padding-left: 18px;
    }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

/* For dark mode (optional) */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f0f0f;
    }

    .skills-container {
        background-color: #0f0f0f;
    }

    .skills-title {
        color: #fff;
    }

    .skill-card {
        background-color: #1a1a1a;
        border-color: #333;
    }

    .card-title {
        color: #fff;
    }

    .skill-tag {
        background-color: #2d2d5f;
        color: #a5b4fc;
    }

    .skill-tag:hover {
        background-color: #3d3d7f;
    }
}
/* Tablets and Medium Devices (768px and above) faq */
@media (max-width: 991px) {
    .faq-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .faq-grid {
        gap: 25px;
    }

    .faq-card {
        padding: 30px 24px;
    }

    .faq-question {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .faq-answer {
        font-size: 14px;
    }
}

/* Small Tablets and Large Mobile (576px to 767px) */
@media (max-width: 767px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .faq-grid {
        gap: 20px;
    }

    .faq-card {
        padding: 25px 20px;
        min-height: auto;
    }

    .faq-question {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .faq-answer {
        font-size: 13.5px;
    }

    .faq-dot {
        display: none;
    }
}

/* Mobile Devices (Up to 575px) */
@media (max-width: 575px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .faq-grid {
        gap: 10px;
    }

    .faq-card {
        padding: 20px 16px;
        border-radius: 10px;
    }

    .faq-question {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 13px;
        line-height: 1.5;
    }
}

/* Extra Small Devices (Up to 360px) */
@media (max-width: 360px) {
    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .faq-card {
        padding: 16px 12px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
    }
}
.keyhigh-light{
	font-size:30px;
}
.wpcf7 p {
    margin-bottom: 0;
}

.wpcf7 br {
    display: none;
}

