/* ============================================
   GODMAX TECH — RESPONSIVE CSS
   ============================================ */

:root {
  --accent: #0ea5a4;
  --accent-dark: #0b2c3d;
  --bg: #f5f7fa;
  --text: #111;
  --muted: #555;
  --border: #e5e7eb;
  --white: #ffffff;
  --nav-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar112 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--bg);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  transition: all 0.3s ease;
  gap: 16px;
}

.navbar112.scrolled {
  background: rgba(243, 245, 245, 0.85);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.gt-logo {
  background-color: #065f46;
  border-radius: 10px;
  transform: rotate(-3deg);
  flex-shrink: 0;
  cursor: pointer;
}

.logo {
  font-weight: 700;
  font-size: 18px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 10px;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: calc(100% - 20px);
}

.hire-btn {
  background: #0f172a;
  color: white;
  border: none;
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: 0.3s;
}

.hire-btn:hover {
  background: var(--accent);
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */

.menu-btn {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: #222;
  padding: 8px;
  flex-shrink: 0;
}

/* ============================================
   SIDEBAR (MOBILE NAV)
   ============================================ */

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  z-index: 2000;
  background: rgba(245, 247, 250, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  gap: 0;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.open {
  right: 0;
}

.sidebar-close {
  font-size: 22px;
  cursor: pointer;
  color: #333;
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-end;
  padding: 4px;
  transition: color 0.2s;
}

.sidebar-close:hover {
  color: var(--accent);
}

.sidebar a {
  display: block;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 0;
  transition: color 0.2s;
}

.sidebar a:hover {
  color: var(--accent);
}

.hide-lines {
  border: none;
  border-top: 1px solid #e2e8f0;
}

.hide-hire-button {
  margin-top: 24px;
  background: #0f172a;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  transition: 0.3s;
}

.hide-hire-button:hover {
  background: var(--accent);
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(2px);
}

.sidebar-overlay.show {
  display: block;
}

/* ============================================
   HERO
   ============================================ */

.container112 {
  background-color: var(--bg);
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px 60px;
  gap: 48px;
  min-height: calc(100vh - var(--nav-height));
}

.hero-left {
  flex: 1;
  max-width: 560px;
}

.status {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-left h1 {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-left h1 span {
  color: var(--accent);
  position: relative;
}

.hero-left h1 span::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 50px;
  background: linear-gradient(120deg, transparent, rgba(250,251,252,0.4), transparent);
  animation: moveLight 9s linear infinite;
}

@keyframes moveLight {
  0%   { left: -10%; }
  50%  { left: 100%; }
  100% { left: -10%; }
}

.hero-left p {
  color: var(--muted);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.primary {
  background: #0f172a;
  color: white;
  border: none;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.primary:hover { background: var(--accent); }

.primary span {
  font-size: 17px;
}

.primary a {
  text-decoration: none;
  color: white;
}

.secondary {
  background: white;
  border: 1px solid #ddd;
  padding: 13px 26px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.secondary a {
  text-decoration: none;
  color: #110f0f;
}

.secondary:hover {
  background-color: rgba(0,0,0,0.08);
}

.socials {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 24px;
}

.socials a {
  text-decoration: none;
}

.fa-brands {
  color: #111;
  padding: 12px;
  font-size: 20px;
  transition: color 0.2s;
}

.fa-brands:hover {
  color: var(--accent);
}

/* Hero Right (desktop image) */
.hero-right {
  position: relative;
  flex-shrink: 0;
}

.Office-pic {
  width: clamp(280px, 40vw, 500px);
  height: auto;
  border-radius: 20px;
  animation: maxlee 2s ease-in-out infinite;
  transition: 0.5s;
  display: block;
}

.Office-pic:hover {
  transform: translateY(-7px);
}

@keyframes maxlee {
  0%, 100% { box-shadow: 0 0 40px rgba(14,165,164,0.3); }
  50%       { box-shadow: 0 0 60px rgba(14,165,164,0.7); }
}

.tag {
  position: absolute;
  background: rgba(15,23,42,0.4);
  color: rgb(236,220,220);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  backdrop-filter: blur(6px);
}

.tag.top {
  top: 20px;
  right: -10px;
}

.React {
  padding: 4px 8px;
  color: var(--accent);
  background-color: rgba(12,40,100,0.5);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}

/* Mobile-only hero image */
.mobile-hero-image-wrap {
  display: none;
  position: relative;
  margin-top: 24px;
}

.Office-pic-res {
  width: 100%;
  border-radius: 16px;
  display: block;
  animation: maxlee 2s ease-in-out infinite;
}

.tagf {
  position: absolute;
  background: rgba(15,23,42,0.5);
  color: rgb(236,220,220);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 11px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  backdrop-filter: blur(6px);
}

.topf {
  top: 16px;
  right: 12px;
}

/* ============================================
   ABOUT TEXT
   ============================================ */

.ftxt {
  padding: 80px 220px 20px;
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
  align-content: center;
  
}

.ftxt2 {
  font-size: clamp(22px, 4vw, 35px);
  margin-bottom: 16px;
  text-align: center;
}

.ftxt3 {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 760px;
  text-align: center;
  
}

/* ============================================
   SERVICE BOXES
   ============================================ */

.box-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px 60px 60px;
  max-width: 1400px;
  margin: 0 auto;
}

.boxes {
  background: white;
  border-radius: 14px;
  padding: 32px 20px 24px;
  box-shadow: 0 4px 20px rgba(38,39,39,0.12);
  transition: 0.4s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.boxes:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(21,22,22,0.18);
}

.boxes i {
  font-size: 36px;
  color: var(--muted);
  background-color: #e5e7eb;
  padding: 16px;
  border-radius: 10px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-txt h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.box-txt p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================
   SKILLS
   ============================================ */

:root {
  --accent-var: linear-gradient(black, #0ea5a4);
  --text-var: #0f172a;
  --muted-var: #64748b;
  --border-var: #e5e7eb;
  --bg-var: #ffffff;
}

.sectionq {
  max-width: 1200px;
  margin: 20px auto 80px;
  padding: 0 40px;
}

.titleq {
  text-align: center;
  margin-bottom: 10px;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 700;
}

.qqq { color: var(--accent); }

.subtitleq {
  text-align: center;
  color: #64748b;
  margin-bottom: 50px;
  font-size: 15px;
}

.gridq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 60px;
}

.categoryq {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.category-titleq {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 600;
}

.category-titleq::before {
  content: "";
  width: 6px;
  height: 28px;
  background: var(--accent-var);
  border-radius: 4px;
  flex-shrink: 0;
}

.tagsq {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tagq {
  padding: 7px 14px;
  border: 1px solid var(--border-var);
  border-radius: 10px;
  background: var(--bg-var);
  font-size: 13px;
  color: #334155;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
  transition: 0.2s;
}

.tagq:hover {
  border-color: black;
}

/* ============================================
   EXPERIENCE / TIMELINE
   ============================================ */

.journey {
  padding: 80px 20px;
  background: #f8fafc;
  text-align: center;
}

.journey-title {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #0f172a;
}

.journey-subtitle {
  color: #64748b;
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #94a3b8;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: white;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  display: inline-block;
  max-width: 380px;
  width: 100%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 32px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(14,165,164,0.2);
}

.timeline-item.left .timeline-dot  { right: -8px; }
.timeline-item.right .timeline-dot { left: -8px; }

.date {
  color: #475569;
  font-size: 13px;
  margin-bottom: 8px;
}

.timeline-content h3 {
  font-size: 16px;
  margin: 6px 0 4px;
  color: #0f172a;
}

.company {
  color: var(--accent);
  margin-bottom: 10px;
  font-weight: 600;
}

.timeline-content p {
  color: #475569;
  line-height: 1.6;
  font-size: 14px;
}

/* 4th Timeline card (standalone) */
.timeline-extra {
  max-width: 420px;
  margin: 0 auto 20px;
  position: relative;
  margin-left: 590px;
  padding-left: 40px;
  text-align: left;
}

.timeline-extra-dot {
  position: absolute;
  left: 12px;
  top: 24px;
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  border: 4px solid white;
  box-shadow: 0 0 0 4px rgba(14,165,164,0.2);
}

.timeline-extra::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #94a3b8;
}

.timeline-extra-card {
  background: white;
  padding: 20px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
}

.timeline-extra-card h3 {
  font-size: 16px;
  margin: 6px 0 4px;
  color: #0f172a;
}

.timeline-extra-card p {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */

.my-btn {
  background-color: #cbd5e1;
  padding: 12px 14px;
  border-radius: 50%;
  color: black;
  font-size: 16px;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index:100px;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  display: none;
  border: 1px solid #94a3b8;
  line-height: 1;
}

.fa-arrow-down { transform: rotate(180deg); }

.my-btn:hover { background-color: #475569; color: white; }

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonialst {
  text-align: center;
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, #052a5a, #003a7a, #002d62);
}

.testimonialst h1 {
  font-size: clamp(26px, 5vw, 40px);
  margin-bottom: 10px;
  color: white;
}

.testimonialst h1 span { color: #75dbcf; }

.subtitlet {
  color: #cbd5e1;
  margin-bottom: 48px;
}

.cardst {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cardt {
  background: rgba(255,255,255,0.07);
  padding: 28px;
  width: clamp(260px, 28vw, 320px);
  border-radius: 16px;
  text-align: left;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.starst {
  color: #ffd700;
  font-size: 17px;
  margin-bottom: 14px;
}

.quotet {
  font-size: 14px;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 24px;
}

.profilet {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profilet img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #00e0c6;
}

.profilet h4 { margin: 0; font-size: 15px; color: white; }
.profilet span { font-size: 12px; color: #00e0c6; }

/* ============================================
   FAQ
   ============================================ */

.faq-section {
  max-width: 760px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}

.faq-section h1 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: 10px;
  color: #1f2d3d;
}

.faq-section > p {
  color: #6c7a89;
  margin-bottom: 36px;
}

.help-box {
  border: 1.3px solid #94a3b8;
  margin-bottom: 14px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  text-align: left;
}

.help-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  gap: 12px;
}

.help-header span { font-weight: 600; font-size: 14px; line-height: 1.5; }
.help-header:hover { background: #e8e8e8; }

.dropdown-icon { transition: transform 0.3s; flex-shrink: 0; }

.help-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}

.help-content p {
  padding: 12px 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.help-box.active .help-content { max-height: 220px; }
.help-box.active .dropdown-icon { transform: rotate(180deg); }

/* ============================================
   CONTACT
   ============================================ */

.collab-section {
  padding: 80px 5%;
  background: #f4f7f9;
}

.collab-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.collab-left {
  flex: 1;
  min-width: 280px;
}

.collab-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #0b2c3d;
  margin-bottom: 14px;
}

.collab-subtext {
  color: #4d6775;
  margin-bottom: 36px;
  line-height: 1.65;
  font-size: 15px;
}

.collab-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  background: white;
}

.collab-card h4 { margin: 0 0 4px; color: #0b2c3d; font-size: 14px; }
.collab-card p  { margin: 0; color: #5b7685; font-size: 13px; word-break: break-all; }

.collab-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.email-icon    { background: #e6f0f6; color: #0b2c3d; }
.phone-icon    { background: #e0f7f4; color: #00a99d; }
.location-icon { background: #fff1e6; color: #ff8c42; }

.collab-form {
  flex: 1;
  min-width: 300px;
  background: white;
  padding: 36px;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.collab-input-group {
  margin-bottom: 18px;
}

.collab-input-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #0b2c3d;
}

.collab-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.collab-row .collab-input-group { flex: 1; min-width: 140px; }

.collab-form input,
.collab-form textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid #d6dde3;
  background: #f8fafc;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.collab-form input:focus,
.collab-form textarea:focus {
  border-color: #0b2c3d;
  background: white;
}

.collab-btn {
  width: 100%;
  padding: 14px;
  background: #0b2c3d;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}

.collab-btn:hover { background: var(--accent); }

/* ============================================
   FOOTER
   ============================================ */

.fav-footer {
  background: #cbd5e1;
  padding: 50px 6% 28px;
}

.fav-footer-container {
  max-width: 1200px;
  margin: auto;
}

.fav-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.fav-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.fav-tagline {
  font-size: 13px;
  color: #6b7c93;
}

.footer-socials .fa-brands {
  padding-top: 12px;
}

.fav-divider {
  border: none;
  height: 1px;
  background: #b0bccc;
  margin-bottom: 20px;
}

.fav-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: #6b7c93;
}

.fav-made {
  display: flex;
  align-items: center;
  gap: 5px;
}

.fav-heart { color: #ff4d6d; }

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet landscape */
@media (max-width: 1100px) {
  .navbar112 { padding: 0 28px; }
  .logo { font-size: 16px; }
  .nav-links a { font-size: 13px; padding: 6px 7px; }
  .box-container { grid-template-columns: repeat(2, 1fr); padding: 40px; }
  .ftxt { padding: 60px 40px 16px; }

  
}

/* Tablet portrait */
@media (max-width: 900px) {
  /* Nav: hide desktop links & hire btn, show hamburger */
  .nav-links  { display: none; }
  .hire-btn   { display: none; }
  .menu-btn   { display: block; }

  /* Hero stacks */
  .hero {
    flex-direction: column;
    padding: 40px 28px 48px;
    text-align: center;
    min-height: auto;
    gap: 32px;
  }

  .hero-left { max-width: 100%; }
  .hero-left p { margin-left: auto; margin-right: auto; }

  .hero-buttons { justify-content: center; }
  .socials { justify-content: center; }

  /* Hide desktop image, show mobile image */
  .hero-right { display: none; }
  .mobile-hero-image-wrap { display: block; }

  /* About text */
  .ftxt { padding: 48px 28px 16px; }

  /* Boxes */
  .box-container { padding: 28px; gap: 20px; }

  /* Skills */
  .sectionq { padding: 0 28px; }

  /* Timeline */
  .timeline::before { left: 20px; }

  .timeline-item {
    width: 100%;
    padding-left: 52px;
    padding-right: 16px;
    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item.left .timeline-dot,
  .timeline-item.right .timeline-dot {
    left: 12px !important;
    right: auto;
  }

  .timeline-content { max-width: 100%; }

  .timeline-extra {
    max-width: 100%;
    padding: 0 16px 0 52px;
    margin: 0 auto 40px;
  }

  .timeline-extra::before { left: 19px; }
  .timeline-extra-dot { left: 12px; }

  /* FAQ */
  .faq-section { margin: 48px auto; }

  /* Contact */
  .collab-section { padding: 60px 5%; }
}

/* Mobile */
@media (max-width: 600px) {
  .navbar112 { padding: 0 18px; }

  .logo { font-size: 14px; }

  .hero { padding: 32px 18px 40px; }

  .hero-left h1 { font-size: 30px; }

  .hero-buttons { flex-direction: column; width: 100%; }
  .primary, .secondary { width: 100%; justify-content: center; text-align: center; }

  .ftxt { padding: 40px 18px 12px; }
  .ftxt2 { font-size: 20px; }

  .box-container {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 16px;
  }

  .sectionq { padding: 0 18px; margin-bottom: 48px; }
  .gridq { grid-template-columns: 1fr; gap: 32px; }

  .journey { padding: 50px 16px; }

  .testimonialst { padding: 48px 16px 56px; }
  .cardt { width: 100%; max-width: 100%; }
  .cardst { flex-direction: column; align-items: center; }

  .faq-section { padding: 0 16px; margin: 40px auto; }

  .collab-section { padding: 48px 4%; }
  .collab-form { padding: 24px 20px; }
  .collab-row { flex-direction: column; gap: 0; }

  .fav-footer { padding: 36px 5% 20px; }
  .fav-footer-top { flex-direction: column; align-items: flex-start; }
  .fav-footer-bottom { flex-direction: column; gap: 8px; }

  .my-btn { bottom: 16px; right: 16px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .logo { font-size: 12px; }
  .gt-logo { width: 36px !important; height: 36px !important; }
  .hero-left h1 { font-size: 26px; }
}
