* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  user-select: none;
}

/* ============================================
   CLEAN NAVBAR WITH RESPONSIVE DRAWER + GRADIENT INDICATOR --- START
============================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  /* logo left, menu right */
  align-items: center;
  padding: 18px 2%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  transition: all 0.35s ease-in-out;
}

/* ===============================
   LOGO
================================= */
.navbar-logo {
  width: clamp(110px, 10vw, 140px);
  height: auto;
  margin-right: 45px;
  flex-shrink: 0;
  cursor: pointer;
}

/* ===============================
   NAV LINKS
================================= */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(25px, 3vw, 45px);
  transition: all 0.3s ease-in-out;
}

/* Each tab */
.nav-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

/* Menu text */
.link-View {
  text-decoration: none;
  color: rgba(25, 25, 25, 0.95);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

/* Hover / Active gradient text */
.link-View:hover,
.nav-tab.active .link-View {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #8a2387, #f27121, #e94057);
}

/* Bottom gradient line */
.nav-tab .line {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  height: 3px;
  width: 60%;
  border-radius: 2px;
  background: linear-gradient(to right, #8a2387, #e94057, #f27121);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}

.nav-tab:hover .line,
.nav-tab.active .line {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* ===============================
   MENU ICON (HIDDEN BY DEFAULT)
================================= */
/* Smaller hamburger icon */
/* Default: hidden on desktop and tablet */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 4px;
  z-index: 10000;
  width: 24px;
  height: 20px;
}

.bar {
  width: 20px;
  height: 2.5px;
  background-color: rgba(25, 25, 25, 0.95);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Adjusted animation for smaller size */
.menu-icon.active .bar:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}

.menu-icon.active .bar:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

/* CTA BUTTON -- START */
.consult-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-shrink: 0;
  margin-left: clamp(20px, 4vw, 70px);
}

.consult-heading {
  font-size: clamp(0.85rem, 1vw, 1rem);
  font-weight: 700;
  color: #000;
  letter-spacing: 0.3px;
}

.cta-whatsapp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: ctaPulse 2.5s infinite ease-in-out;
  z-index: 10003;
}

.cta-whatsapp-btn img {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 2px 6px rgba(37, 211, 102, 0.6));
  transition: transform 0.3s ease;
}

.cta-whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.cta-whatsapp-btn:hover img {
  transform: scale(1.1);
}

/* ✅ Floating version */
.cta-whatsapp-btn.floating {
  position: fixed;
  bottom: 24px;
  right: 22px;
  animation: fadeInUp 0.6s ease, ctaPulse 2.5s infinite ease-in-out;
}

/* Hide floating CTA on desktop */
@media (min-width: 768px) {
  .cta-whatsapp-btn.floating {
    display: none;
  }
}

/* Subtle Pulse Animation */
@keyframes ctaPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.35);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Fade in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA BUTTON -- END */



/* ===============================
   TABLET VIEW
================================= */
@media (max-width: 992px) {
  nav {
    padding: 14px 5%;
  }

  .nav-links {
    gap: 25px;
  }

  .link-View {
    font-size: 0.95rem;
  }

  .navbar-logo {
    width: clamp(100px, 9vw, 130px);
  }

  .consult-heading {
    display: none;
  }
}

/* ===============================
   MOBILE VIEW (DRAWER NAV)
================================= */

/* ✅ Show only on mobile */
/* @media (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
} */
@media (max-width: 768px) {

  .menu-icon {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 80px 30px 40px;
    gap: 30px;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.25);
    transition: right 0.45s ease, opacity 0.45s ease;
    opacity: 0;
    pointer-events: none;
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }

  /* Animate hamburger into X */
  .menu-icon.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .menu-icon.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-icon.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Adjust underline spacing */
  .nav-tab .line {
    bottom: -4px;
    height: 2px;
  }

  .consult-cta {
    display: none;
  }
}

/* Optional: dark overlay behind menu */
body.menu-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
  z-index: 9998;
}

/* ============================================
   CLEAN NAVBAR WITH RESPONSIVE DRAWER + GRADIENT INDICATOR --- END
============================================ */





/* ===============================
   ENHANCED HERO SECTION
   Full-screen, Glassmorphic & Engaging
================================= */

.enhanced-hero {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
  padding: 120px 8%;
  background: radial-gradient(circle at 30% 40%, rgba(255, 200, 200, 0.1), rgba(255, 180, 180, 0.05) 70%),
    linear-gradient(to bottom right, #ffffff, #fff7f3);
  overflow: hidden;
}

/* Glass overlay for frosted effect */
.glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  z-index: 1;
}

#slogan-view {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slogan-content-wrapper {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-radius: 24px;
  padding: 60px 70px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  max-width: 900px;
  animation: fadeUp 1s ease forwards;
}

/* Headings */
.slogan-title-text {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 0.4em;
}

.slogan-gradients-text {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #8a2387, #f27121, #e94057);
  margin-bottom: 0.8em;
}

/* Description */
.slogan-description-text {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgb(70, 70, 70);
  line-height: 1.6;
  margin-bottom: 1.5em;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.button-view {
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn {
  background: linear-gradient(to right, #8a2387, #e94057, #f27121);
  color: white;
}

.primary-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #8a2387;
  color: #8a2387;
}

.secondary-btn:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* Stats below CTA */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(to right, #8a2387, #e94057, #f27121);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item p {
  font-size: 1rem;
  font-weight: 600;
  color: #444;
}

.hero-stats .stat-item {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUpStats 1s ease forwards;
}

.hero-stats .stat-item:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-stats .stat-item:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-stats .stat-item:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeUpStats {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
  .slogan-content-wrapper {
    padding: 40px 40px;
  }

  .hero-stats {
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .enhanced-hero {
    padding: 80px 20px;
  }

  .slogan-content-wrapper {
    padding: 30px 20px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .stat-item h3 {
    font-size: 1.6rem;
  }

  .stat-item p {
    font-size: 0.9rem;
  }
}


/* ===============================
   OUR SERVICES SECTION -- START
================================= */

#our-services-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 8%;
  background: linear-gradient(to top, rgb(250, 158, 158), rgb(255, 232, 200));
}

/* Section description spacing */

.our-services-description-view {
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 60px;
  line-height: 1.6;
  font-size: 1.1rem;
  color: #4a4a4a;
}

/* Cards container */
#our-services-cards-row-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
  /* ✅ ensures equal card height */
  width: 100%;
  margin-top: 20px;
}

/* Each service card */
.our-services-card-view {
  flex: 1 1 300px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: all 0.35s ease;
  padding: 30px 25px 40px;
  text-align: center;
  height: 100%;
  min-height: 520px;
  position: relative;
  z-index: 1;
}

/* Hover effect with smooth lift */
.our-services-card-view:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}


/* Inner content wrapper (to align top elements naturally) */
.our-services-card-view>*:not(.button-view) {
  margin-bottom: 15px;
}

/* Service image */
.card-image-view {
  height: 200px;
  width: 200px;
  object-fit: contain;
  margin-bottom: 20px;
}

/* Card title */
.card-title-view {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #8a2387, #f27121, #e94057);
}

/* Description should expand naturally */
.card-description-view {
  flex-grow: 1;
  /* 🟢 Allows text to expand without affecting button */
  font-size: 1rem;
  color: #6e6e6e;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Keep button fixed at bottom */
.button-view {
  width: 100%;
  align-self: center;
  margin-top: auto;
  background: linear-gradient(to right, #8a2387, #e94057, #f27121);
  border-radius: 8px;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}


.button-view:hover {
  transform: scale(1.05);
  opacity: 0.95;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */

/* Tablets (2 cards per row) */
@media (max-width: 992px) {
  #our-services-view {
    padding: 80px 6%;
  }

  .our-services-card-view {
    flex: 1 1 calc(50% - 30px);
    max-width: 400px;
  }

  .card-image-view {
    height: 180px;
    width: 180px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #our-services-cards-row-view {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .our-services-card-view {
    min-height: auto;
    padding: 25px 20px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* 🟢 Vertically center the whole content */
    align-items: center;
    /* 🟢 Horizontally center */
    text-align: center;
    height: 100%;
  }

  .card-image-view {
    height: 140px;
    width: 140px;
    margin-bottom: 15px;
  }

  .card-title-view {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .card-description-view {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .button-view {
    font-size: 0.95rem;
    padding: 10px 18px;
    margin-top: 10px;
  }
}


/* ===============================
   OUR SERVICES SECTION -- END
================================= */











/* ============================================
   TECHNOLOGIES WE WORK — FULLY OPTIMIZED
============================================ */

#technologies-we-work-view {
  text-align: center;
  padding: 100px 8%;
  background: #ffffff;
  overflow-x: hidden !important;
}

/* ======================================================
   WEB + TABLET — Fixed Left Image | Right Content
====================================================== */
#techbnologies-we-worked-row-view {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /* 🔥 prevents image from moving vertically */
  gap: 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* LEFT IMAGE — FIXED, NEVER MOVES */
#background-gif-view {
  width: 100%;
  max-width: 460px;
  object-fit: contain;
  flex-shrink: 0;
  /* 🔥 prevents shrinking */
  position: sticky;
  /* 🔥 keeps it fixed relative to section */
  top: 120px;
  /* adjust if needed */
}

/* RIGHT SIDE CONTENT */
#technologies-display-view {
  width: 100%;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* 🔥 Tabs & grid start at left (not centered) */
}

/* ======================================================
   TABS — Equal Size, Aligned Left (Web & Tablet)
====================================================== */
.tabs-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /* 🔥 left alignment */
  gap: 12px;
  width: 100%;
  max-width: 650px;
  padding: 0 10px;
  margin-bottom: 30px;
}

.technologies-department-button {
  flex: 1 1 150px;
  max-width: 180px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 18px;
  white-space: nowrap;
  border-radius: 6px;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(to right, #8a2387, #f27121, #e94057) border-box;
  color: #8a2387;
  transition: 0.3s ease;
}

.technologies-department-button.active {
  background: linear-gradient(to right, #8a2387, #e94057, #f27121);
  color: white;
  border: none;
}

/* ======================================================
   GRID — Auto-Fit, Never Overflow, Left Aligned
====================================================== */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 26px;
  width: 100%;
  max-width: 650px;
  padding: 0 10px;
  margin: 0 auto;
}

.grid-item {
  width: 100%;
  max-width: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.grid-image-box {
  height: 95px;
  width: 95px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.grid-image-box img {
  height: 65px;
  width: 65px;
}

.grid-item h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  color: #444;
}

/* ======================================================
   TABLET
====================================================== */
@media (max-width: 992px) {

  #techbnologies-we-worked-row-view {
    gap: 40px;
  }

  #background-gif-view {
    max-width: 320px;
    top: 100px;
    /* adjust sticky offset for tablets */
  }

  .tabs-container,
  .grid-container {
    max-width: 520px;
  }

  .grid-image-box {
    height: 85px;
    width: 85px;
  }
}

/* ======================================================
   MOBILE — Vertical Layout Only
====================================================== */
@media (max-width: 600px) {

  #technologies-we-work-view {
    padding: 80px 20px;
  }

  /* FULL VERTICAL STACK */
  #techbnologies-we-worked-row-view {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0;
  }

  /* IMAGE CENTER */
  #background-gif-view {
    max-width: 240px;
    margin: 0 auto;
    position: static !important;
    /* stop sticky in mobile */
  }



  /* MOBILE TABS */
  .tabs-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
    gap: 10px;
  }

  .technologies-department-button {
    flex: 1;
    /* equal width */
    padding: 10px 0;
    font-size: 0.9rem;
    text-align: center;
    white-space: nowrap;
  }

  /* GRID — ALWAYS 3 PER ROW */
  .grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 100%;
    padding: 0 5px;
  }

  .grid-image-box {
    height: 70px;
    width: 70px;
  }

  .grid-image-box img {
    height: 48px;
    width: 48px;
  }

  .grid-item h3 {
    font-size: 0.75rem;
  }
}

/* ============================================
   TECHNOLOGIES WE WORK — END
============================================ */













/* ===============================
   OUR PORTFOLIO SECTION -- START
================================= */

#our-portfolio-view {
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  background: linear-gradient(145deg, #fff2eb, #ffd6c0, #ffc6cf);
  padding-top: 100px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

/* Soft gradient glow background behind cards */
#our-portfolio-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%,
      rgba(255, 157, 157, 0.35),
      transparent 70%),
    radial-gradient(circle at 70% 70%,
      rgba(255, 201, 150, 0.35),
      transparent 70%);
  z-index: 0;
  filter: blur(60px);
}

/* Keep text content above gradient */
#our-portfolio-view>* {
  position: relative;
  z-index: 1;
}

/* Horizontal scroll container */
#our-portfolio-scrolling-view {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  white-space: nowrap;
  padding: 30px;
  gap: 30px;

  /* Hide scrollbar across browsers */
  scrollbar-width: none;
  -ms-overflow-style: none;

  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
}

#our-portfolio-scrolling-view:active {
  cursor: grabbing;
}

#our-portfolio-scrolling-view::-webkit-scrollbar {
  display: none;
}

/* Portfolio cards */
.portfolio-card-view {
  position: relative;
  border-radius: 16px;
  box-shadow: 6px 6px 25px rgba(150, 150, 150, 0.4);
  transition: 0.5s ease;
  flex: 0 0 auto;
  display: inline-block;
  cursor: pointer;
  overflow: hidden;
  width: 500px;
  height: 320px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio-card-view:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 25px rgba(255, 120, 120, 0.3);
}

/* Portfolio image */
.portfolio-card-image-view {
  display: block;
  opacity: 1;
  transition: 0.5s ease;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: transparent;
  object-fit: cover;
}

/* Glassmorphism hover overlay */
.portfolio-content-background-view {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.4s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-align: center;
  padding: 15px 25px;
}

.portfolio-card-view:hover .portfolio-content-background-view {
  opacity: 1;
}

/* Glass text content */
.portfolio-content-title-text-view {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  background: linear-gradient(to right, #8a2387, #f27121, #e94057);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio-content-title-description-view {
  color: #000000;
  font-size: 16px;
  padding: 0 15px;
  line-height: 1.5em;
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {
  .portfolio-card-view {
    width: 380px;
    height: 260px;
  }

  .portfolio-content-title-text-view {
    font-size: 20px;
  }

  .portfolio-content-title-description-view {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .portfolio-card-view {
    width: 300px;
    height: 220px;
  }

  .portfolio-content-title-text-view {
    font-size: 18px;
  }

  .portfolio-content-title-description-view {
    font-size: 14px;
    padding: 0 10px;
  }
}


/* ===============================
   OUR PORTFOLIO SECTION -- END
================================= */


/* ===============================
   GET IN TOUCH VIEW -- START
================================= */

#get-in-touch-view {
  display: flex;
  flex-direction: column;
  padding-top: 30px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 50px;
  text-align: center;
  background-color: #000;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
}


/* Row Layout */
#get-in-touch-row-view {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.have-any-query-text {
  padding-bottom: 10px;
  padding-top: 10px;
}

/* Card Layout */
.get-in-touch-card-view {
  flex: 1 1 420px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: white;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: start;
  transition: all 0.3s ease;
}

#get-in-touch-card-view:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

#get-in-touch-center-text {
  text-align: center;
}

.get-in-touch-description-view {
  font-size: 1rem;
  color: #ccc;
  font-weight: 500;
  margin-bottom: 20px;
}

/* Social Icons */
.social-links-view {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 12px;
}

.social-icon-view {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icon-view:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Input Fields */
.inquiry-text-fields {
  padding: 0.8rem 1rem;
  border: double 2px transparent;
  border-radius: 50px;
  text-indent: 12px;
  background-image: linear-gradient(white, white),
    linear-gradient(to right, #8a2387, #f27121, #e94057);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  margin-top: 15px;
  width: 100%;
  outline: none;
}

.inquiry-text-fields::placeholder {
  color: #555;
}

.inquiry-text-area-view {
  border-radius: 20px;
  resize: none;
}

/* Submit Button */
#inquiry-button {
  /* width: 50%; */
  border-radius: 50px;
  margin-top: 20px;
  padding: 12px 25px;
  font-weight: 600;
  align-self: flex-start;
}


/* ===============================
   RESPONSIVE INPUT FIELD LAYOUT
================================= */

/* Default (Desktop + Tablet) → Horizontal */
.input-horizontal-view {
  display: flex;
  flex-direction: row;
  gap: 15px;
  width: 100%;
}

.input-horizontal-view .inquiry-text-fields {
  flex: 1;
  min-width: 0;
}

/* Mobile (≤768px) → Vertical stack */
@media (max-width: 768px) {
  .input-horizontal-view {
    flex-direction: column;
    gap: 0px;
  }

  .input-horizontal-view .inquiry-text-fields {
    width: 100%;
  }

  /* Reduce outer padding of entire section */
  #get-in-touch-view {
    padding: 40px 20px !important;
  }


  .get-in-touch-card-view {
    padding: 20px !important;
    /* reduce internal card padding */
  }



}

/* ===============================
   GET IN TOUCH VIEW -- END
================================= */


/* ===============================
   CONTACT US VIEW -- START
================================= */

#contact-us-view {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 100px 50px 40px 50px;
  background-color: #000;
  /* keep black background */
  color: #fff;
  /* ensure all base text is white */
}

/* Row layout */
#contact-us-row-view {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}

/* Each Column */
#contact-us-section {
  flex: 1 1 250px;
  text-align: start;
}

#contact-us-view .logo {
  margin-bottom: 10px;
  width: 40%;
}

/* Gradient section titles */
.footer-section-title-view {
  font-size: 20px;
  font-weight: 700;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #8a2387, #f27121, #e94057);
}

.text-top-padding {
  margin-bottom: 20px;
}

/* Default link and text style — always white */
#contact-us-view .footer-section-two-text-view,
#contact-us-view .link-View {
  display: block;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

/* Gradient hover effect */
#contact-us-view .link-View:hover {
  -webkit-text-fill-color: transparent !important;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(to right, #8a2387, #f27121, #e94057);
  transform: translateX(3px);
}

/* Newsletter input spacing */
#contact-us-section input[type="email"] {
  margin-top: 10px;
  width: 100%;
}

/* Divider styling */
#contact-us-view .divider-view {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

#copy-right-text-1 {
  font-weight: 500;
}

/* Submit Button */
#subscribe-button {
  /* width: 50%; */
  border-radius: 50px;
  margin-top: 20px;
  padding: 12px 25px;
  font-weight: 600;
  align-self: flex-start;
}


/* ===============================
   RESPONSIVENESS
================================= */

/* Tablet */
@media (max-width: 992px) {
  #contact-us-row-view {
    justify-content: center;
    text-align: center;
  }

  #contact-us-section {
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 600px) {
  #contact-us-view {
    padding: 60px 25px;
  }

  .footer-section-title-view {
    font-size: 18px;
  }

  #contact-us-view .footer-section-two-text-view,
  #contact-us-view .link-View {
    font-size: 0.9rem;
  }

  .divider-view {
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }
}

/* ===============================
   CONTACT US VIEW -- END
================================= */

/* FOR RESPONSIVE NESS AND MAKE SURE TAKE SCREEN */
html,
body {
  max-width: 100%;
  overflow-x: hidden !important;
}

/* ============================================
   MOBILE FIXES FOR GET-IN-TOUCH + GLOBAL SPACING
============================================ */

@media (max-width: 768px) {

  /* Reduce spacing between title/description and cards */
  .our-services-description-view {
    padding-bottom: 20px !important;
    margin-bottom: 0 !important;
    margin-top: 10px;
  }

  .our-services-description-view {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 60px;
    line-height: 1.6;
    font-size: 1.1rem;
    color: #4a4a4a;
  }

  /* Reduce outer spacing between the two cards */
  #get-in-touch-row-view {
    gap: 15px !important;
    margin-top: 20px !important;
  }

  /* Reduce card inner padding */
  .get-in-touch-card-view {
    padding: 18px !important;
  }

  /* Reduce space inside card text */
  .get-in-touch-description-view {
    margin-bottom: 10px !important;
  }

  .footer-section-title-view {
    margin-top: 10px !important;
    margin-bottom: 6px !important;
  }

  .footer-section-two-text-view {
    margin-bottom: 8px !important;
  }

  /* Reduce input spacing */
  .inquiry-text-fields {
    margin-top: 10px !important;
    padding: 0.65rem 1rem !important;
  }

  /* Reduce textarea height */
  .inquiry-text-area-view {
    min-height: 90px !important;
  }

  /* Button spacing reduce */
  #inquiry-button {
    margin-top: 12px !important;
  }

  /* Fix Write Us card title spacing */
  .get-in-touch-card-view .title-text {
    margin-bottom: 8px !important;
  }
}