/* style.css */
:root {
  --primary-color: #ff481e;
  --nav-height: 70px;
  --nav-padding: 1.5rem clamp(1rem, 5%, 3rem);
  --text-light: rgba(255, 255, 255, 0.95); /* For hover states */
  --text-dark: #2a2a2a; /* Base text color */
}
@font-face {
  font-display: swap;
  font-family: "LufgaR";
  src: url("font/LufgaRegular.ttf") format("woff2"),
    url("font/LufgaRegular.ttf") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "Lufga";
  src: url("font/LufgaSemiBold.ttf") format("woff2"),
    url("font/LufgaSemiBold.ttf") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-display: swap;
  font-family: "shahab";
  src: url("font/signategrotesk-black.ttf") format("woff2"),
    url("font/signategrotesk-black.ttf") format("woff");
  font-weight: 700;
  font-style: normal;
}

/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background: #000;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Lufga", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  scroll-behavior: smooth;
}

/* Animated Grid Background */
body::before,
body::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

body::before {
  background: linear-gradient(90deg, #ff481e66 1px, transparent 1px),
    /* Increased opacity (40%) */
      linear-gradient(180deg, #ff481e66 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: 1px 0;
  animation: gridGlow 3s ease-in-out infinite; /* Faster animation */
  filter: drop-shadow(0 0 10px var(--primary-color)); /* Added glow effect */
}

body::after {
  background: linear-gradient(
    45deg,
    #ff481e33 1px,
    transparent 1px
  ); /* Increased opacity */
  background-size: 50px 50px;
  animation: moveLines 15s linear infinite; /* Faster diagonal movement */
}

/* Navigation */

.main-nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: var(--nav-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ff481e;
  backdrop-filter: blur(12px);
  z-index: 1000;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a.active {
  color: #fff301;
  transform: translateY(-2px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  transition: width 0.3s ease;
  background: #fff301;
}

.nav-links a:hover::after {
  width: 100%;
  background: #094cf5;
}

/* Mobile Menu */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001; 
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  min-height: calc(100vh - var(--nav-height));
  align-items: center;
  padding: 0 5%;
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 8vw, 230px);
}

.logo-image {
  height: 50px; /* Ideal size for logos */
  width: auto; /* Maintain aspect ratio */
  margin-top: 10px;
  transition: opacity 0.3s ease;
}

.logo-image:hover {
  opacity: 0.8;
}

.hero-shape-container {
  position: relative;
  width: 100vw;
  top: -15%;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.hero-shape {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 100vh;
}

.hero-branding {
  position: absolute;
  left: 5%;
  top: 34%;
  transform: translateY(-50%);
  z-index: 20;
}

.logo-combo {
  display: flex;
  align-items: start;
  gap: 1.5rem;
}

.hero-logo__main {
  width: min(18vw, 180px);
  height: auto;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-watermark__image {
  width: min(18vw, 110px);
  height: auto;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hero-watermark__image {
  position: absolute;
  left: 80%;
  top: 24%;
  opacity: 1;
  mix-blend-mode: soft-light;
}

/* Updated Logo Styles */
.dual-stroke-logo {
  position: relative;
  filter: drop-shadow(-1px 1px 0 var(--primary-color))
    drop-shadow(1px -1px 0 var(--primary-color))
    drop-shadow(-1px -1px 0 var(--primary-color))
    drop-shadow(2px 2px 0 var(--primary-color));
  transform: scale(1.05); /* Permanent scale */
  transition: none !important; /* Disable all transitions */
}

.hero-right-content {
  position: absolute;
  right: 8%;
  top: 48.5%;
  transform: translateY(-50%);
  z-index: 20;
  text-align: left;
}

/* Animations */
@keyframes gridGlow {
  0%,
  100% {
    opacity: 0.5; /* Brighter base state */
    filter: drop-shadow(0 0 5px var(--primary-color));
  }
  50% {
    opacity: 0.65; /* Peak brightness */
    filter: drop-shadow(0 0 10px var(--primary-color));
  }
}

@keyframes moveLines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 2000px 2000px;
  } /* Longer travel distance */
}
@keyframes textReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* About Section */
.about {
  background-color: #000000b7;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 2rem 0 4rem;
  box-sizing: border-box;
}

.about__container {
  max-width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0rem;
  column-gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 5%;
}

/* Text Content */
.about__title {
  all: unset; /* Resets inherited styles */
  display: block;
  width: 30%;
}

.title-image {
  width: min(100%, 600px); /* Max width matching original text size */
  height: auto;
  filter: drop-shadow(0 0 15px rgba(255, 72, 30, 0.2));
}

.about__text {
  font-family: "Lufga", sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.about__text p {
  margin-bottom: 1.5rem;
  font-family: "LufgaR", sans-serif;
}

/* Interactive Logo */
.logo__interactive {
  position: relative;
  perspective: 1000px;
  cursor: pointer;
}

.logo__orb {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.logo__image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(255, 72, 30, 0.3));
  animation: floats 6s ease-in-out infinite;
}

/* Hover Effects */
.logo__orb:hover {
  transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

.logo__orb:hover .logo__image {
  filter: drop-shadow(0 0 50px rgba(255, 72, 30, 0.5));
}

/* Animations */
@keyframes floats {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.glow-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1; /* Above background, below content */
  pointer-events: none;
}
.shape {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(255, 72, 30, 0.25) 0%,
    rgba(255, 72, 30, 0) 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  animation: float 25s linear infinite;
  transform: translateZ(0);
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 65%;
  left: 2%;
  animation-duration: 35s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(100px, 80px) scale(1.1);
  }
  50% {
    transform: translate(-50px, 120px) scale(0.9);
  }
  75% {
    transform: translate(80px, -60px) scale(1.05);
  }
}

@keyframes float-alt {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(150px, -100px) rotate(180deg);
  }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  padding: 0 5%;
  margin-top: 4rem;
}
.stat-card {
  background: #390f036c;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden; /* Ensures content stays inside */
  height: 110px; /* Reduced card height */
  transition: 0.3s;
}

.stat-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(255, 72, 30, 0.1);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-number {
  font-family: "Lufga", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Button Container Styles */
.button-container {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
  max-width: 400px; /* Constrain to card width */
  margin: 10px 0;
  justify-content: flex-start;
}

.cta-button {
  width: 100%;
  max-width: 210px; /* Match stat-card max-width */
  min-width: unset; /* Remove previous min-width */
  padding: 1.2rem 2rem 1.2rem 1.5rem;
  background: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  border-radius: 15px;
  font-family: "Lufga", sans-serif;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  border: 2px solid transparent;
  position: relative;
}

.button-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Makes icon white */
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 72, 30, 0.3);
  background: transparent;
  color: #fff;
  border-color: var(--primary-color);
}

.cta-button--outline:hover {
  background: rgba(255, 72, 30, 0.1);
  box-shadow: 0 10px 20px rgba(255, 72, 30, 0.1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

/* Add this CSS */
.about__heading {
  text-align: center;
  margin: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}

.about__heading h2 {
  font-family: "Lufga", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(45deg, #ff6b3e, var(--primary-color), #ff3600);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--primary-color);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-transform: capitalize;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-around;
}

.social-link {
  color: rgba(255, 255, 255, 0.3); /* Transparent white */
  font-size: 1.8rem;
  background: transparent;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.social-link.instagram:hover {
  color: #e1306c;
  background: linear-gradient(
    45deg,
    #405de6,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #ffdc80
  );
  -webkit-background-clip: text;
  background-clip: text;
}

/* Behance Hover */
.social-link.behance:hover {
  color: #1769ff;
}

/* WhatsApp Hover */
.social-link.whatsapp:hover {
  color: #25d366;
}

/* gmail Hover */
.social-link.gmail:hover {
  color: #fff;
}

/* gmail Hover */
.social-link.snap:hover {
  color: #fff301;
}

.social-link:hover {
  transform: scale(1.2) translateY(-3px);
  text-shadow: 0 2px 10px rgba(255, 72, 30, 0.3);
}

.social-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #e1306c;
}
.social-link.behance::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #1769ff;
}
.social-link.whatsapp::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #25d366;
}
.social-link.gmail::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #fff;
}
.social-link.snap::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #fff301;
}

.social-link.instagram:hover::after {
  width: 100%;
  background: #e1306c;
}
.social-link.behance:hover::after {
  width: 100%;
  background: #1769ff;
}
.social-link.whatsapp:hover::after {
  width: 100%;
  background: #25d366;
}
.social-link.gmail:hover::after {
  width: 100%;
  background: #fff;
}
.social-link.snap:hover::after {
  width: 100%;
  background: #fff301;
}



.text-line {
  font-family: "shahab", sans-serif;
  line-height: 0.85;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.text-graphic {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 700;
  animation-delay: 0.2s;
  /* Removed white color */
}

.gradient-stroke {
  background: linear-gradient(45deg, var(--primary-color), #ff6b3e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent; /* Makes text fill transparent */
  -webkit-text-stroke: 2px transparent;
  display: inline-block;
}
/* Corrected Gradient Text with White Base */
.gradient-text {
  color: #fff !important; /* Force white text */
  position: relative;
  display: inline-block;
}

.gradient-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, var(--primary-color), #ff6b3e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: -1;
  -webkit-text-stroke: 2px transparent;
  filter: blur(1px);
}

.text-designer {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 500;
  color: #fff;
  animation-delay: 0.4s;
}

/* Line 3: "and" with line-through + Digital (Yellow) */
.text-digital {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #fff301; /* Yellow */
  animation-delay: 0.6s;
}

.line-through {
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
  color: #fff301;
  margin-left: 6px;
}
.text-digital .line-through {
  color: #fff301; /* Yellow text */
}
.line-through::after {
  content: "";
  position: absolute;
  left: -5%;
  top: 50%;
  width: 110%;
  height: 10px;
  background: #094cf5 !important; /* Blue line */
}

.text-artist {
  font-size: clamp(2rem, 6vw, 4rem);
  color: #fff301; /* Yellow */
  animation-delay: 0.8s;
}

.blue-t {
  color: #094cf5 !important; /* Blue text */
  font-weight: 700;
  margin-left: 0.2rem;
  letter-spacing: 2px;
}

.hero-cta {
  display: inline-block;
  width: 100%;
  max-width: 100%; /* Matches text block width */
  padding: 0.7rem 1.4rem;
  background: var(--primary-color);
  color: #fff;
  font-family: "shahab", sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.2vw, 1.8rem);
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 0.6rem;
  opacity: 0;
  animation: fadeUp 0.8s 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 72, 30, 0.3);
  border-color: #fff301;
}

.about__heading,
.service__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 4rem 0 1rem;
}

.heading-icon {
  max-width: 60px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 72, 30, 0.5));
}

.service {
  background-color: #000000b7;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-rows: auto auto 1fr; /* Text | Logo | Stats */
  padding: 0 5%;
  box-sizing: border-box;
}

.service__heading {
  text-align: center;
  margin: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}

.service__heading h2 {
  font-family: "Lufga", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(45deg, #ff6b3e, var(--primary-color), #ff3600);
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--primary-color);
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  text-transform: capitalize;
  letter-spacing: -2px;
  position: relative;
  display: inline-block;
}
.service-icon__container {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
}

.service-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 72, 30, 0.3));
}

.service-title {
  color: var(--primary-color);
  font-family: "Lufga", sans-serif;
  font-size: 1.6rem; /* Slightly smaller font */
  line-height: 1.2;
  margin: 0;
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  max-width: calc(100% - 70px); /* Prevents overlap with icon */
}

/* Add to your CSS */
/* Base project section styling */
.projects {
  background-color: #000000b7;
  padding: 4rem 1rem; /* Add padding for mobile */
  scroll-behavior: auto;
  overflow: hidden; /* Prevent horizontal scroll */
}

.projects__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 0 2rem; /* Reduced margin for mobile */
  position: relative;
  z-index: 2;
}

.heading-icon {
  width: 30px; /* Base size for mobile */
  height: auto;
}

.projects__heading h2 {
  font-family: "Lufga", sans-serif;
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 3.5rem); /* Responsive font size */
  background: linear-gradient(45deg, #ff6b3e, var(--primary-color), #ff3600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px; /* Reduced for mobile */
  text-transform: capitalize;
}

/* Sub heading styles */
.subh {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 3rem 0 1.5rem; /* Adjusted margins for better spacing */
  position: relative;
  z-index: 2;
}

.subh h3 {
  font-family: "LufgaR", sans-serif;
  font-size: clamp(1.25rem, 3vw, 2.5rem); /* Responsive font size */
  font-weight: normal;
  background: linear-gradient(45deg, #ff6b3e, var(--primary-color), #ff3600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-transform: capitalize;
  letter-spacing: -1px;
  text-align: center; /* Center on mobile */
}

/* Carousel container */
.swiper-container {
  width: 100%;
  max-width: 100%; /* Full width on mobile */
  position: relative;
  overflow: hidden;
  padding: 20px 0; /* Reduced padding for mobile */
  margin: 0 auto;
}

/* Slides styling */
.swiper-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.swiper-slide {
  flex: 0 0 100%; /* Full width on mobile */
  height: 280px; /* Reduced height for mobile */
  padding: 0 10px; /* Reduced padding for mobile */
  transition: all 0.5s ease;
  filter: grayscale(100%);
  transform: scale(0.85);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px; /* Reduced for mobile */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease-in-out;
}

.swiper-slide.active {
  filter: grayscale(0%);
  transform: scale(1);
  z-index: 2;
}

.swiper-slide.active img:hover {
  cursor: pointer;
  transform: scale(1.05); /* Reduced scale effect on mobile */
  transition: 0.3s ease-in-out;
  border: var(--primary-color) solid 3px; /* Thinner border for mobile */
  border-radius: 8px;
  box-shadow: -4px -4px 10px rgba(0, 0, 0, 0.1);
}

/* Navigation buttons */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 41.5%;
  width: 40px; /* Smaller for mobile */
  height: 40px; /* Smaller for mobile */
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  width: 45px; /* Smaller for mobile */
  height: 45px; /* Smaller for mobile */
}

.swiper-button-prev {
  left: 5px; /* Closer to edge on mobile */
  background-image: url("img/icon/left.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next {
  right: 5px; /* Closer to edge on mobile */
  background-image: url("img/icon/Right.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Remove the pseudo-elements */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: none;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-bullet.active {
  background-color: var(--primary-color);
  transform: scale(1.3);
}

/* Fullscreen image overlay */
.image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.3s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.overlay-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  transform: scale(0.9);
  animation: zoomIn 0.3s ease forwards;
}

@keyframes zoomIn {
  to {
    transform: scale(1);
  }
}

/* Tablet Responsive Styles */
@media (min-width: 576px) {
  .projects {
    padding: 4rem 2rem;
  }
  
  .heading-icon {
    width: 35px;
  }
  
  .projects__heading {
    margin: 0 0 2.5rem;
  }
  
  .swiper-slide {
    height: 320px;
    flex: 0 0 80%; /* Slightly narrower on small tablets */
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }
  
  .swiper-button-prev {
    left: 15px;
  }
  
  .swiper-button-next {
    right: 15px;
  }
}


@media (max-width: 480px) {
  .projects {
    padding: 2rem 10% !important;
  }

  .swiper-slide {
    height: 250px;
    padding: 0 15px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: 50%;
    
  }

  .swiper-button-prev {
    left: 1px;
  }
  
  .swiper-button-next {
    right: 2px;
  }

  .subh h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
  }
}

@media (max-width: 480px) {
  .projects {
    padding: 2rem 5% !important;
  } 
}

@media (max-width: 340px) {
  .projects {
    padding: 2rem 2% !important;
  } 
}

/* Medium Tablet Styles */
@media (min-width: 768px) {
  .projects {
    padding: 5rem 3rem;
  }
  
  .heading-icon {
    width: 40px;
  }
  
  .projects__heading h2 {
    letter-spacing: -1.5px;
  }
  
  .swiper-slide {
    flex: 0 0 50%; /* Two slides visible on tablets */
    height: 350px;
    padding: 0 15px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 45px;
    height: 45px;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    width: 50px;
    height: 50px;
  }
  
  .swiper-button-prev {
    left: 25px;
  }
  
  .swiper-button-next {
    right: 3px;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .projects {
    padding: 6rem 10%;
  }
  
  .projects__heading {
    margin: 0 0 3rem;
  }
  
  .heading-icon {
    width: 45px;
  }
  
  .projects__heading h2 {
    letter-spacing: -2px;
  }
  
  .swiper-container {
    max-width: 1200px;
    padding: 40px 0;
  }
  
  .swiper-slide {
    flex: 0 0 33.333%; /* Three slides visible on desktop */
    height: 400px;
    padding: 0 15px;
  }
  
  .swiper-slide.active img:hover {
    transform: scale(1.1);
    border: var(--primary-color) solid 4px;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    width: 55px;
    height: 55px;
  }
  
  .swiper-button-prev {
    left: 20px;
  }
  
  .swiper-button-next {
    right: 20px;
  }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
  .swiper-container {
    max-width: 1400px;
  }
  
  .swiper-slide {
    height: 420px;
  }
}

/* ---------- contact ----------- */
.contact {
  background-color: #000000b7;
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 0 5%;
  box-sizing: border-box;
}

.contact__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 4rem 0 3rem;
  position: relative;
  z-index: 2;
}

.contact__heading h2 {
  font-family: "Lufga", sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3.5rem);
  background: linear-gradient(45deg, #ff6b3e, var(--primary-color), #ff3600);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -2px;
  text-transform: capitalize;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

.parent {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 0;
  margin: 0 5rem;
}

.div2 {
  grid-column: span 4 / span 4;
  grid-column-start: 1;
}

.div4 {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-column-start: 1;
  grid-row-start: 2;
}

.div5 {
  grid-column: span 4 / span 4;
  grid-column-start: 1;
  grid-row-start: 3;
}

.div6 {
  grid-column: span 4 / span 4;
  grid-column-start: 5;
  grid-row-start: 1;
}

.div6 p {
  font-family: 'LufgaR',sans-serif;
}

.div7 {
  grid-column: span 4 / span 4;
  grid-row: span 6 / span 6;
  grid-column-start: 5;
  grid-row-start: 1;
  margin-top: 70px;
}

.parent2 {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  margin-top: 2rem;
  font-family: 'LufgaR',sans-serif;
}

.div122 {
  grid-row: span 2 / span 2;
}

.div222 {
  grid-column: span 8 / span 8;
  display: flex;
  align-items: end;
}

.div322 {
  grid-column: span 8 / span 8;
  grid-column-start: 2;
  grid-row-start: 2;
}

.div122 a {
  padding: 0;
  margin: 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.contact input,
.contact textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--primary-color);
  background: #390f036c;
  border-radius: 8px;
  font-size: 16px;
  margin: 0;
  color: #fff;
  transition: 0.3s;
}

input {
  height: 40px;
}

input:hover,
input:focus {
  opacity: 0.9;
  transition: 0.3s;
}

textarea {
  height: 100px;
  resize: vertical;
}

textarea::placeholder,
input::placeholder {
  font-family: "lufga" !important;
}

button {
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
  transition: 0.3s;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  margin: 0;
  color: #fff;
  transition: 0.3s;
}

button:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.whatsappb {
  background: #25d366;
  color: #fff;
}

.emailb {
  background: #fff;
  color: var(--text-dark);
}

.parent h3,
.parent h5 {
  color: var(--primary-color);
  font-size: 24px;
}

.parent h1 {
  font-size: 38px;
}

.parent .p {
  margin-right: 8rem;
  font-family: 'LufgaR',sans-serif;
}

.iconnn {
  color: #ffdc80;
  font-size: 20px;
}

.social-linkks {
  display: flex;
  gap: 1.5rem;
  align-items: end;
  justify-content: space-between;
  margin: 1.7rem 8rem 0 0;
}

.social-linkk {
  color: rgba(255, 255, 255, 0.3); /* Transparent white */
  font-size: 1.8rem;
  background: transparent;
  padding: 0 0.5rem;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-linkk.instagram {
  padding: 0.5rem 0.5rem 0 0.1rem;
}

.social-linkk.instagram:hover {
  color: #e1306c;
  background: linear-gradient(
    45deg,
    #405de6,
    #833ab4,
    #c13584,
    #e1306c,
    #fd1d1d,
    #f56040,
    #ffdc80
  );
  -webkit-background-clip: text;
  background-clip: text;
}

/* Behance Hover */
.social-linkk.behance:hover {
  color: #1769ff;
}

/* WhatsApp Hover */
.social-linkk.whatsapp:hover {
  color: #25d366;
}

/* gmail Hover */
.social-linkk.gmail:hover {
  color: #fff;
}

/* gmail Hover */
.social-linkk.snap:hover {
  color: #fff301;
}

.social-linkk:hover {
  transform: scale(1.2) translateY(-3px);
  text-shadow: 0 2px 10px rgba(255, 72, 30, 0.3);
}

.social-linkk::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 10%;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: var(--primary-color);
}
.social-linkk.behance::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 15%;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #1769ff;
}
.social-linkk.whatsapp::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 15%;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #25d366;
}
.social-linkk.gmail::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 15%;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #fff;
}
.social-linkk.snap::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 15%;
  width: 0;
  height: 2px;
  transition: width 0.3s ease;
  background: #fff301;
}

.social-linkk.instagram:hover::after {
  width: 60%;
  background: #e1306c;
}
.social-linkk.behance:hover::after {
  width: 70%;
  background: #1769ff;
}
.social-linkk.whatsapp:hover::after {
  width: 70%;
  background: #25d366;
}
.social-linkk.gmail:hover::after {
  width: 70%;
  background: #fff;
}
.social-linkk.snap:hover::after {
  width: 70%;
  background: #fff301;
}

.clogo {
  width: 50px;
  height: 50px;
  padding: auto 20px auto auto;
}

.blogo {
  width: 20px;
  height: 20px;
  margin: 0 10px 0 3px;
}

.submit {
  display: flex;
  justify-content: start;
}

/* ---------- footer ----------- */

.custom-footer {
  color: var(--text-light);
  padding: 0 6px;
  font-family: 'LufgaR';
  box-sizing: border-box;
  background-color: #141313;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  align-items: start;
  padding: 20px 0 14px 0;
}

.footer-column {
  flex: 1;
  min-width: 150px;
  padding: 0 10px;
}

.logo-column {
  flex: 0 0 180px;
  display: flex;
  align-items: flex-start;
  margin-top: -0.5em;
}

.footer-logo {
  max-width: 50px;
  height: auto;
  padding: 11px 0 5px 0;
}

.icon-column {
  flex: 0 0 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-icon {
  max-width: 50px;
  height: auto;
  transition: all 0.3s ease;
}

.footer-text {
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
  font-size: 0.80rem;
  opacity: 0.9;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid var(--primary-color);
  margin-top: 30px;
  color: var(--text-light);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Hover Effects */
a:hover .footer-icon {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 4px rgba(255, 72, 30, 0.3));
}


::-webkit-scrollbar {
  width: 15px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
}
::-webkit-scrollbar-track {
  background-color: var(--text-dark);
  width: 30px;
}

*::selection {
  color: var(--primary-color);
  background-color: var(--text-dark);
}

@media (max-width: 768px) {
  .main-nav {
    padding: 1rem;
    height: 60px;
    width: 100%;
  }

  .nav-logo {
    order: 1; 
  }

  /* Keep existing logo styles */
  .nav-logo .logo-image {
    height: 40px;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 450px);
    background: #ff481e;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.5rem;
    padding: 1rem;
    display: block;
    width: 100%;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a::after {
    bottom: -3px;
    left: 35%;
    width: 0;
    height: 4px;
  }
  
  .nav-links a:hover::after {
    width: 30%;
  }

  .nav-links.active a.active {
    color: #fff301 !important; /* Force override any conflicting styles */
    transform: translateY(-2px);
  }
  
  .nav-links.active a::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 35%;
    width: 0px;
    height: 4px;
    transition: width 0.3s ease;
    background: #fff301;
  }
  
  .nav-links.active a:hover::after {
    width: 30%;
    background: #094cf5;
  }

  .nav-links.active a.active::after {
    width: 30% !important;
    background: #fff301 !important;
    transition: width 0.3s ease;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 0;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 1rem;
    display: block;
    width: 100%;
  }

  .hamburger {
    display: block;
    position: relative;
    z-index: 1000;
    order: 2; 
    width: 30px;
  }

  .hamburger button {
    width: 30px;
  }

  /* Keep existing hamburger animation styles */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hamburger span {
    transition: all 0.3s ease;
  }
}

/* Larger Mobile Devices - Keep existing adjustments */
@media (max-width: 480px) {
  .main-nav {
    height: 55px;
  }

  .nav-logo .logo-image {
    height: 35px;
  }

  .nav-links {
    top: 55px;
    height: calc(100vh - 55px);
  }
}

/* Hero Section Responsive Styles */
@media (max-width: 768px) {
  .hero {
    padding: 100px 20px 50px;
    min-height: auto;
    flex-direction: column;
    text-align: center;
  }

  .hero-branding {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-bottom: 2rem;
  }

  .logo-combo {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-logo__main {
    width: 220px !important;
  }

  .hero-watermark {
    display: none; /* Hide watermark on mobile */
  }

  .hero-right-content {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    text-align: center;
    padding: 0 0px;
  }

  .text-line {
    line-height: 1;
    margin-bottom: 0.5rem;
  }

  .text-graphic,
  .text-designer,
  .text-digital,
  .text-artist {
    font-size: clamp(3.5rem, 8vw, 2.5rem) !important;
  }

  .line-through::after {
    content: "";
    position: absolute;
    left: -5%;
    top: 50%;
    width: 110%;
    height: 4px;
    background: #094cf5 !important; /* Blue line */
  }

  .hero-cta {
    font-size: 2rem;
    padding: 0.8rem 1.2rem;
    max-width: 100%;
    margin-top: 1rem;
  }

  .hero-shape-container {
    display: none; /* Hide complex shape on mobile */
  }

  .hero-shape {
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 80px 0px 30px;
  }

  .text-graphic,
  .text-designer,
  .text-digital,
  .text-artist {
    font-size: clamp(2.5rem, 8vw, 2.5rem) !important;
  }

  .hero-cta {
    font-size: 1.4rem;
    padding: 0.8rem 1.2rem;
    max-width: 100%;
    margin-top: 1rem;
  }

  .line-through::after {
    content: "";
    position: absolute;
    left: 30%;
    top: 50%;
    width: 40%;
    height: 4px;
    background: #094cf5 !important; 
  }
}

@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about__content {
    width: 70%;
    margin: 0 auto;
  }

  .logo__interactive {
    order: -1; /* Move logo above text on tablet */
    margin-bottom: 2rem;
  }

  .logo__orb {
    width: 300px;
    height: 300px;
  }

  .button-container {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
    margin-top: 2rem;
  }

  .glow-shapes {
    display: none; /* Hide complex shapes on smaller screens */
  }

  .about__title {
    margin: 0 0 0 3%;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 4rem 9%;
  }

  .about__heading h2 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  
  .about__content {
    width: 100%;
    margin: 0;
  }

  .logo__image {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(255, 72, 30, 0.3));
    animation: floats 6s ease-in-out infinite;
  }

  .logo__orb {
    width: 250px;
    height: 250px;
  }

  .about__text {
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
  }

  .about__container {
    gap: 0;
}
  
  .about__text p {
    margin-bottom: 1.5rem;
    font-family: "LufgaR", sans-serif;
    font-size: 1rem;
    padding: 0 10px;
}

  .button-container {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    max-width: 100%;
    text-align: center;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    font-size: 1.5rem;
  }
  .social-linkks {
    gap: 1rem;
  }

  .social-linkk {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .about__heading {
    margin: 2rem 0;
  }

  .logo__orb {
    width: 200px;
    height: 200px;
  }

  .about__text {
    font-size: 0.9rem;
    padding: 0;
  }

  .title-image {
    width: 80%;
    margin: 0 auto;
  }

  .button-container {
    width: 100%;
  }

  .shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
  }

  .shape-3 {
    width: 150px;
    height: 150px;
    top: 70%;
  }

  .social-linkk.instagram {
  padding: 0rem 0rem 0.3rem 0rem;
  }
}


@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .service__heading h2 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

@media (max-width: 768px) {
  .service {
    padding: 4rem 5%;
  }

  .stats-container {
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 2rem 5% 0;
  }

  .stat-card {
    height: auto;
    padding: 2rem;
  }

  .service-icon__container {
    width: 35px;
    height: 35px;
  }

  .service-title {
    font-size: 1.4rem;
    position: relative;
    top: auto;
    left: auto;
  }

  .stat-content {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
  }

  .service-icon__container {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 1rem;
  }
}

@media (max-width: 480px) {
  .service__heading h2 {
    font-size: 2rem;
  }

  .stats-container {
    gap: 1.5rem;
  }

  .stat-card {
    padding: .5rem;
  }

  .stat-content {
    gap: 40px;
  }

  .service-title {
    font-size: 1.2rem;
  }

  .service-icon__container {
    width: 30px;
    height: 30px;
  }

  .stat-card:hover {
    transform: none; /* Remove hover effects on mobile */
  }

  .service-icon {
    width: 50px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 5px rgba(255, 72, 30, 0.3));
}
}

/* Special Case for Very Small Phones */
@media (max-width: 360px) {
  .service-title {
    font-size: 1.1rem;
  }

  .stat-card {
    padding: 1rem;
  }
}

@media (max-width: 1024px) {
  .swiper-container {
    padding: 30px 0;
  }

  .swiper-slide {
    flex: 0 0 50% !important;
    height: 350px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .pagination {
    display: none;
  }
}

@media (max-width: 1300px) {
  .projects {
    padding: 2rem 2%;
  } 
}

@media (max-width: 1150px) {
  .projects {
    padding: 2rem 0;
  } 
}

@media (max-width: 768px) {
  .projects {
    padding: 2rem 25%;
  }

  .swiper-container {
    padding: 20px 0 40px;
  }

  .swiper-slide {
    flex: 0 0 100% !important;
    height: 300px;
    padding: 0 20px;
    transform: scale(1) !important;
    filter: grayscale(0) !important;
  }

  .swiper-slide img {
    border-radius: 8px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 50px;
    height: 50px;
    background-size: 60%;
    top: 38%;
  }

  .subh h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0;
  }
}

@media (max-width: 768px) {
  .projects {
    padding: 2rem 20%;
  }
}


@media (max-width: 1280px) {
  .parent {
    margin: 0 2rem;
  }
}

@media (max-width: 992px) {
  .parent {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    margin: 0 1rem;
  }

  .div2,
  .div4,
  .div5,
  .div6,
  .div7 {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .div7 {
    margin-top: 2rem;
  }
  
  .parent .p {
    margin-right: 0;
    padding-right: 1rem;
  }

  .social-linkks {
    margin: 1.7rem 0 0 0;
    justify-content: flex-start;
    gap: 1rem;
  }
}

@media (max-width: 1200px) {
  .div6 p {
    font-size: 14px;
  }
}

@media (max-width: 1020px) {
  .div6 p {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .contact__heading h2 {
    font-size: 2rem;
  }

  .parent h1 {
    font-size: 2rem;
  }

  .parent h3 {
    font-size: 1.5rem;
  }

  .parent .p {
    font-size: 0.9rem;
  }

  .parent2 {
    gap: -0.3rem;
  }

  .div222 {
    margin-top: 0.5rem;
  }

  .div122 {
    margin: auto 0;
  }

  .clogo {
    width: 50px;
    height: 50px;
    margin-right: .3rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0px;
  }

  .submit {
    gap: 10px;
  }

  button.submit {
    width: 100%;
    justify-content: center;
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 2rem 5%;
  }

  .parent {
    margin: 0;
  }

  .parent h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .parent h5 {
    font-size: 1.1rem;
  }

  .parent .p {
    font-size: 0.85rem;
  }

  .social-linkks {
    flex-wrap: wrap;
  }

  .div322 {
    margin-top: -0.4rem;
  }

  .social-linkk {
    font-size: 1.5rem;
    padding: 0.3rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 14px;
  }

  button.submit {
    font-size: 14px;
    padding: 10px;
    margin: 10px 0;
  }

  .blogo {
    width: 16px;
    height: 16px;
  }

}

/* Special adjustments for very small screens */
@media (max-width: 360px) {
  .parent h1 {
    font-size: 1.5rem;
  }

  .parent h3 {
    font-size: 1.2rem;
  }

  .iconnn {
    font-size: 0.9rem;
  }

  .div322 {
    font-size: 0.85rem;
  }

  .social-linkk {
    font-size: 1.2rem;
  }
}

@media (max-width: 1150px) {
  .footer-column {
    flex: 1;
    min-width: 70px;
    padding: 0 10px;
  }
  
  .logo-column {
    flex: 0 0 50px;
    display: flex;
    align-items: flex-start;
    margin-top: -0.5em;
  }
  
  .footer-logo {
    max-width: 50px;
    height: auto;
    padding: 11px 0 5px 0;
  }
  
  .icon-column {
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-icon {
    max-width: 50px;
    height: auto;
    transition: all 0.3s ease;
  }
  
  .footer-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.7rem;
    opacity: 0.9;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
  }
}

@media (max-width: 850px) {
  .footer-column {
    flex: 1;
    min-width: 44px;
    padding: 0 10px;
  }
  
  .logo-column {
    flex: 0 0 40px;
    display: flex;
    align-items: flex-start;
    margin-top: -0.5em;
  }
  
  .footer-logo {
    max-width: 40px;
    height: auto;
    padding: 11px 0 5px 0;
  }
  
  .icon-column {
    flex: 0 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-icon {
    max-width: 40px;
    height: auto;
    transition: all 0.3s ease;
  }
  
  .footer-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.56rem;
    opacity: 0.9;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
  }
}

@media (max-width: 700px) {
  .footer-column {
    flex: 1;
    min-width: 50px;
    padding: 0 10px;
  }
  
  .logo-column {
    flex: 0 0 50px;
    display: flex;
    align-items: flex-start;
    margin-top: -0.5em;
  }
  
  .footer-logo {
    max-width: 30px;
    height: auto;
    padding: 11px 0 5px 0;
  }
  
  .icon-column {
    flex: 0 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-icon {
    max-width: 30px;
    height: auto;
    transition: all 0.3s ease;
  }
  
  .footer-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.34rem;
    opacity: 0.9;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    gap: 4px;
    padding: 10px 0 10px 0;
  }

  .footer-column {
    flex: 1;
    min-width: 40px;
    padding: 0 10px;
  }
  
  .logo-column {
    flex: 0 0 20px;
    display: flex;
    align-items: flex-start;
    margin-top: -0.5em;
  }
  
  .footer-logo {
    max-width:20px;
    height: auto;
    padding: 11px 0 5px 0;
  }
  
  .icon-column {
    flex: 0 020px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-icon {
    max-width:20px;
    height: auto;
    transition: all 0.3s ease;
  }
  
  .footer-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.34rem;
    opacity: 0.9;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    gap: 4px;
    padding: 10px 0 10px 0;
  }

  .footer-column {
    flex: 1;
    min-width: 40px;
    padding: 0 10px;
  }
  
  .logo-column {
    flex: 0 0 20px;
    display: flex;
    align-items: flex-start;
    margin-top: -0.5em;
  }
  
  .footer-logo {
    max-width:20px;
    height: auto;
    padding: 11px 0 5px 0;
  }
  
  .icon-column {
    flex: 0 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .footer-icon {
    max-width:20px;
    height: auto;
    transition: all 0.3s ease;
  }
  
  .footer-text {
    color: var(--text-light);
    line-height: 1.65;
    margin: 0;
    font-size: 0.24rem;
    opacity: 0.9;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid var(--primary-color);
    margin-top: 30px;
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
  }
}

@media (max-width: 300px) {
  .footer-text {
    font-size: 0.16rem;
  }
}

@media (max-width: 768px) {
  .nav-links a.active,
  .nav-links a:hover::after {
    color: #fff !important;
    transform: none !important;
  }
  
  .nav-links a::after {
    display: none !important;
  }
}

.no-scroll {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 0;
    width: 100%;
  }
  
  body.no-scroll {
    position: fixed;
    top: var(--scroll-top);
  }
}