@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");


/* custome font family */
@font-face {
  font-family: "family-1";
  src: url("/pages/works/style/fonts/CarbonBlock.woff2") format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "family-2";
  src: url("/pages/works/style/fonts/AL_Nevrada_PersonalUseOnly.woff2") format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "family-3";
  src: url("/pages/works/style/fonts/Kugile_Demo.woff2") format('woff2');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "family-4";
  src: url("/pages/works/style/fonts/Moglan_DEMO.woff2") format('woff2');
  font-weight: normal;
  font-style: normal;
}



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --pure-white-color: #ffffff;
  --white-color: #e0dede;
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --tertiary-color: #0284c7;
  --quaternary-color: #333;
  --accent-color: #3b82f6;
  --text-primary: #1f2937;
  --text-primary-2: #111827;
  --text-secondary: #4b5563;
  --background-light: #ffffff;
  --background-light-2: #d9d9d9;
  --background-dark: #efeff0;
  --paragraph-color-1: #6b7280;
  --paragraph-color-2: #636060;
  --paragraph-color-3: #979ea9;

  --font-family-1: "Inter", sans-serif;
  /* --font-family-2: "Poppins", sans-serif; */

  --container-width: 1400px;
  --container-padding: 1.5rem;

  /* padding section */
  --padding-section-one: 10rem 8rem;
  --padding-section-two: 2rem 4rem;
  --padding-section-three: 2rem 6rem;
  --padding-section-four: 6rem 6rem;
  --padding-section-five: 3rem 2rem;

  /* mobile padding section */
  --mobile-padding-section-one: 4rem 2rem;
}

body {
  background-color: var(--background-dark);
}

html {
  scroll-behavior: smooth;
}

/* Navbar start */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 3rem;
  background-color: var(--background-light);
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.4s ease;
  font-family: var(--font-family-1);
}

.navbar.scrolled {
  padding: 0.8rem 3rem;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-logo a {
  font-size: 1.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  color: #1f2937;
  gap: 0.5rem;
  font-weight: 600;
  font-family: var(--font-family-2);
}

.nav-logo img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.2rem 0;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links span {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.2rem 0;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--quaternary-color);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.nav-links a:hover {
  color: var(--text-secondary);
}

.nav-links a:hover::after {
  width: 100%;
}

.services-dropdown {
  position: relative;
}

.services-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -20px;
  background-color: var(--background-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.2rem;
  list-style: none;
  min-width: 220px;
  border-radius: 12px;
  transform-origin: top;
  animation: fadeIn 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.services-dropdown.active .dropdown-menu {
  display: block; /* Show when active */
}

.dropdown-menu a {
  padding: 0.8rem 1rem;
  display: block;
  border-radius: 8px;
  transition: all 0.2s ease;
  margin-bottom: 0.3rem;
}

.dropdown-menu a:hover {
  background-color: var(--background-dark);
  transform: translateX(5px);
  color: var(--primary-color);
}

.contact-btn-hidee {
  display: none;
}

.contact-btn {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: var(--font-family-1);
}

.contact-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
}

.hamburger {
  display: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 8px;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .hamburger {
    display: block;
  }

  .hamburger:hover {
    background-color: var(--background-dark);
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform-origin: top;
    gap: 1.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: var(--background-dark);
    margin-top: 1rem;
    border-radius: 8px;
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .contact-btn-hidee {
    display: block;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .navbar.scrolled {
    padding: 0.8rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--background-light);
    flex-direction: column;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform-origin: top;
    gap: 1.5rem;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: var(--background-dark);
    margin-top: 1rem;
    border-radius: 8px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 425px) {
  .nav-links {
    padding: 1rem;
  }
}

/* Enhanced animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Added active link style */
.nav-links a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  background-color: var(--primary-color);
}

#inactive-btn {
  pointer-events: none;
  opacity: 0.6;
  color: #7e7e7e;           
  cursor: not-allowed;
}

#inactive-btn:hover {
  text-decoration: none;
  background: none;
}

/* Navbar end */


/* ========= HERO SECTION ========= */
.container-hero {
  margin: 0 auto;
  font-family: var(--font-family-1);
  margin-top: 79px;
}

.hero-section {
  padding: var(--padding-section-one);
  position: relative;
  background-image: url(/imgs/background-8.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  color: var(--white-color);
  text-align: start;

}

.hero-text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  font-family: var(--font-family-1);
}

.hero-text h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--paragraph-color-1);
  transition: all 0.3s ease-in-out;
}

.hero-text h1 {
  font-size: 6rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease-in-out;
  /* width: 50%; */
}

#dynamic-text {
  border-right: 4px solid #0b2847;
  animation: blink 0.6s step-end infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes blink {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: #104175;
  }
}

.create-style {
  font-size: 10rem;
  font-weight: 800;
  font-family: "family-4", sans-serif;
  background: linear-gradient(45deg, #8b5cf6, #ec4899, #3b82f6);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-animation 3s ease infinite;
  transition: all 0.3s ease-in-out;
}


.design-style {
  font-size: 10rem;
  font-weight: 800;
  font-family: "family-3", sans-serif;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-animation 3s ease infinite;
  transition: all 0.3s ease-in-out;
}

.build-style {
  font-size: 11rem;
  font-weight: 800;
  font-family: "family-1", sans-serif;
  background: linear-gradient(45deg, #10b981, #14b8a6, #06b6d4);
  background-size: 200% 200%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradient-animation 3s ease infinite;
  transition: all 0.3s ease-in-out;
}

@keyframes gradient-animation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
} 

.hero-btn {
  position: absolute;
  bottom: 2%;
  left: 10%;
  z-index: 2;
  animation-delay: 0.5s;
}

.hero-btn a {
  color: var(--text-primary-2);
  font-size: 1.2rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
  position: relative;
  width: fit-content;

  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-btn a img {
  height: 2.5rem;
  width: 2.5rem;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .hero-section {
    padding: var(--padding-section-two);
  }
  .hero-btn {
    left: 9%;
  }
  .create-style {
    font-size: 8rem;
  }
  .design-style {
    font-size: 8rem;
  }
  .build-style {
    font-size: 10rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: var(--padding-section-five);
    height: 85vh;
  }
  .hero-btn {
    left: 6%;
  }
  .create-style {
    font-size: 6rem;
  }
  .design-style {
    font-size: 6rem;
  }
  .build-style {
    font-size: 8rem;
  }
}

@media (max-width: 480px) {

  .hero-section {
    padding: 1rem;
    height: 70vh;
  }
  .create-style {
    font-size: 6rem;
  }
  .design-style {
    font-size: 6rem;
  }
  .build-style {
    font-size: 8rem;
  }
}

/* ========= END OF HERO SECTION ========= */

/* PROJECT HEADING SECTION START */

.container-project {
  padding: var(--padding-section-one);
  font-family: var(--font-family-1);
  background-color: var(--background-light-2);
}

.project-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.project-card {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  /* width: 50%; */
}

.project-card span {
  font-size: 1.2rem;
  font-weight: 500;
  margin-top: 0.5rem;
}

.project-card img {
  height: 2.5rem;
  width: 2.5rem;
}

.project-content-text {
  font-size: 1rem;
  color: rgb(61, 60, 60);
  width: 90%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.project-content-text p {
  font-size: 1rem;
  color: var(--text-secondary);
}

.project-content-text a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  width: fit-content;
}

.project-content-text a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--text-primary);
  transition: all 0.3s ease-in-out;
}

.project-content-text a:hover::after {
  width: 100%;
}

@media (max-width: 1024px) {
  .container-project {
    padding: var(--padding-section-four);
  }
}

@media (max-width: 768px) {
  .container-project {
    padding: var(--padding-section-five);
  }
}

@media (max-width: 480px) {
  .container-project {
    padding: var(--mobile-padding-section-one);
  }

  .project-content {
    grid-template-columns: 1fr;
  }

  .project-card img {
    display: none;
  }
}
 

/* ========= END OF PROJECT HEADING SECTION ========= */

/* ========= PROJECT SHOWCASE SECTION START ========= */
.container-projectshowcase {
  padding: var(--padding-section-one);
  font-family: var(--font-family-1);
  background-color: var(--background-light-2);
}

.row-1 {
  display: grid;
  /* grid-template-columns: 2fr 1fr; */
  grid-template-columns: 60% 40%;
  gap: 1rem;
  margin-bottom: 1rem;
}
.row-2 {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 1rem;
  margin-bottom: 1rem;
}
.row-3 {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 1rem;
}


.row1-card1, .row1-card2,
.row2-card1, .row2-card2,
.row3-card1, .row3-card2 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.row1-card1 .project-img,
.row1-card2 .project-img,
.row2-card1 .project-img,
.row2-card2 .project-img,
.row3-card1 .project-img,
.row3-card2 .project-img {
  width: 100%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  border-radius: 1.5rem; /* Added border radius */
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.row-1 .row1-card1 .project-img .img-2,
.row-1 .row1-card2 .project-img .img-2,
.row-2 .row2-card1 .project-img .img-2,
.row-2 .row2-card2 .project-img .img-2,
.row-3 .row3-card1 .project-img .img-2,
.row-3 .row3-card2 .project-img .img-2 {
  display: none;
}

.row1-card1 .project-img:hover,
.row1-card2 .project-img:hover,
.row2-card1 .project-img:hover,
.row2-card2 .project-img:hover,
.row3-card1 .project-img:hover,
.row3-card2 .project-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.3);
}

.row1-card1 .project-img img,
.row1-card2 .project-img img,
.row2-card1 .project-img img,
.row2-card2 .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  transition: transform 0.5s ease;
}
.row3-card1 .project-img img,
.row3-card2 .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.row1-card1 .project-img:hover img,
.row1-card2 .project-img:hover img,
.row2-card1 .project-img:hover img,
.row2-card2 .project-img:hover img,
.row3-card1 .project-img:hover img,
.row3-card2 .project-img:hover img {
  transform: scale(1.05);
  filter: blur(1px);
}

.row1-card1 .project-info,
.row1-card2 .project-info,
.row2-card1 .project-info,
.row2-card2 .project-info,
.row3-card1 .project-info,
.row3-card2 .project-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  bottom: 1.5rem; /* Added margin from bottom for floating effect */
  left: 1.5rem; /* Added margin from sides */
  right: 1.5rem;
  width: calc(100% - 3rem); /* Adjusted width for margins */
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Changed from border-top to full border */
  border-radius: 1rem; /* Added border radius */
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.row1-card1 .project-img:hover .project-info,
.row1-card2 .project-img:hover .project-info,
.row2-card1 .project-img:hover .project-info,
.row2-card2 .project-img:hover .project-info,
.row3-card1 .project-img:hover .project-info,
.row3-card2 .project-img:hover .project-info {
  transform: translateY(0);
}


/* row 1 */
.row-1 .row1-card1 .project-info h1 {
  color: #564157;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
.row-1 .row1-card2 .project-info h1 {
  color: #47290b;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
/* row 2 */
.row-2 .row2-card1 .project-info h1 {
  color: #1c134f;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
.row-2 .row2-card2 .project-info h1 {
  color: #033410;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
/* row 3 */
.row-3 .row3-card1 .project-info h1 {
  color: #beb4b2;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}
.row-3 .row3-card2 .project-info h1 {
  color: #167626;
  font-size: 2rem;
  font-weight: 500;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.1s, opacity 0.5s ease 0.1s;
}

.row1-card1 .project-info a,
.row1-card2 .project-info a,
.row2-card1 .project-info a,
.row2-card2 .project-info a,
.row3-card1 .project-info a,
.row3-card2 .project-info a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--pure-white-color);
  text-decoration: none;
  position: relative;
  width: fit-content;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease 0.2s, background 0.3s ease, border-color 0.3s ease, opacity 0.5s ease 0.2s;

  display: flex;
  align-items: center;
  cursor: pointer;
}

.row1-card1 .project-info a img,
.row1-card2 .project-info a img,
.row2-card1 .project-info a img,
.row2-card2 .project-info a img,
.row3-card1 .project-info a img,
.row3-card2 .project-info a img {
  height: 2.5rem;
  width: 2.5rem;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
  
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  filter: none !important;
}

.row1-card1 .project-img:hover .project-info h1,
.row1-card2 .project-img:hover .project-info h1,
.row1-card1 .project-img:hover .project-info a,
.row1-card2 .project-img:hover .project-info a,
.row2-card1 .project-img:hover .project-info h1,
.row2-card2 .project-img:hover .project-info h1,
.row2-card1 .project-img:hover .project-info a,
.row2-card2 .project-img:hover .project-info a,
.row3-card1 .project-img:hover .project-info h1,
.row3-card2 .project-img:hover .project-info h1,
.row3-card1 .project-img:hover .project-info a,
.row3-card2 .project-img:hover .project-info a {
  transform: translateY(0);
  opacity: 1;
}

.row1-card1 .project-info a:hover img,
.row1-card2 .project-info a:hover img,
.row2-card1 .project-info a:hover img,
.row2-card2 .project-info a:hover img,
.row3-card1 .project-info a:hover img,
.row3-card2 .project-info a:hover img {
  transform: translateX(5px);
}

.row1-card1 .project-info a:hover,
.row1-card2 .project-info a:hover,
.row2-card1 .project-info a:hover,
.row2-card2 .project-info a:hover,
.row3-card1 .project-info a:hover,
.row3-card2 .project-info a:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}


.row1-card1 .project-img::after,
.row1-card2 .project-img::after,
.row2-card1 .project-img::after,
.row2-card2 .project-img::after,
.row3-card1 .project-img::after,
.row3-card2 .project-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 1.5rem; 
  z-index: 1;
}

.row1-card1 .project-img:hover::after,
.row1-card2 .project-img:hover::after,
.row2-card1 .project-img:hover::after,
.row2-card2 .project-img:hover::after,
.row3-card1 .project-img:hover::after,
.row3-card2 .project-img:hover::after {
  opacity: 1;
}


@media (max-width: 1024px) {
  .container-projectshowcase {
    padding: var(--padding-section-five);
    color: cyan;
  }
}

@media (max-width: 768px) {
  .container-projectshowcase {
    padding: var(--padding-section-five);
  }

  .row-1 {
    grid-template-columns: 1fr;
  }
  .row-2 {
    grid-template-columns: 1fr;
  }
  .row-3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container-projectshowcase {
    padding: var(--mobile-padding-section-one);
  }

  .row1-card1 .project-img img,
  .row1-card2 .project-img img,
  .row2-card1 .project-img img,
  .row2-card2 .project-img img {
    object-position: center;
  }
  .row1-card1 .project-img,
  .row1-card2 .project-img,
  .row2-card1 .project-img,
  .row2-card2 .project-img,
  .row3-card1 .project-img,
  .row3-card2 .project-img {
    width: 100%;
    height: 40vh;
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem; /* Added border radius */
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .row-1 .row1-card1 .project-img .img-1,
  .row-1 .row1-card2 .project-img .img-1,
  .row-2 .row2-card1 .project-img .img-1,
  .row-2 .row2-card2 .project-img .img-1,
  .row-3 .row3-card1 .project-img .img-1,
  .row-3 .row3-card2 .project-img .img-1 {
    display: none;
  }
  .row-1 .row1-card1 .project-img .img-2,
  .row-1 .row1-card2 .project-img .img-2,
  .row-2 .row2-card1 .project-img .img-2,
  .row-2 .row2-card2 .project-img .img-2,
  .row-3 .row3-card1 .project-img .img-2,
  .row-3 .row3-card2 .project-img .img-2 {
    display: block;
  }

  .row-2 .row2-card1 .project-info h1 {
    color: rgb(4, 212, 212);
  }
  .row-2 .row2-card2 .project-info h1 {
    color: #afb9b2;
  }
  .row-3 .row3-card1 .project-info h1 {
    color: #d7d8c7;
  }
  .row-3 .row3-card2 .project-info h1 {
    color: #3bc251;
  }

}

/* ==== END OF PROJECT SHOWCASE SECTION */


/* ========= WORK WITH US SECTION ========= */

.work-together-section {
  background-image: url(/imgs/background-5.jpg);
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
}

.work-together-content-container {
  padding: var(--padding-section-three);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.work-together-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 4rem 4rem 4rem;
  font-family: var(--font-family-1);
}

.great-idea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  gap: 1rem;
  width: 80%;
  margin: auto;
}

.great-idea h1 {
  font-size: 4rem;
  font-weight: 500;
}

.great-idea p {
  font-size: 1rem;
  color: var(--black-color-light);
}

.chat-text h1 {
  font-size: 4rem;
  font-weight: 500;
  align-items: center;
  text-align: center;
}


.chat-text h1 img {
  height: 3rem;
  width: 3rem;
}

@keyframes rotate-img {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(180deg);
  }
}
.chat-text h1 img {
  animation: rotate-img 5s linear infinite;
  transform-origin: center;
}

/* moving text section */
.moving-text-div {
  font-family: var(--font-family-2);
  background-color: blue;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  border-radius: 2.5rem;
  position: relative; 
  width: 85%;
  margin: auto auto 2rem auto;
  padding: 1rem;
  text-decoration: none;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.moving-text-div:hover {
  background-color: var(--text-primary-2);
  transition: all 0.3s ease-in-out;

  .arrow-button {
    background-color: #FFFF00;
    filter: invert(1);
    transition: all 0.3s ease-in-out;
  }
}

.text-container {
  display: flex;
  animation: moveText 10s linear infinite;
  align-items: center;
  justify-content: flex-start;
  width: calc(300%);
}

.text-container h2 {
  font-size: 3rem;
  font-weight: 500;
}

.moving-text {
  color: var(--white-color);
  margin: 0;
  white-space: nowrap;
}

.arrow-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px; 
  height: 40px; 
  margin: auto 2rem auto 0.5rem;
  background-color: var(--white-color); 
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.arrow-button img {
  height: 2.5rem; 
  width: 2.5rem; 
  rotate: -35deg;
}

@keyframes moveText {
  0% {
      transform: translateX(0);
  }
  100% {
    transform: translateX(-33.33%);
  }
}

/* moving text section end */


@media (max-width: 1024px) {
  .work-together-content-container {
    padding: var(--padding-section-five);
  }
}

@media (max-width: 768px) {
  .work-together-content-container {
    padding: var(--padding-section-five);
  }
}

@media (max-width: 480px) {
  .work-together-content-container {
    padding: var(--padding-section-five);
  }
  .work-together-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    align-items: start;
  }
  .great-idea {
    width: 100%;
  }
  .great-idea h1 {
    font-size: 3rem;
    padding: 0;
  }
  .chat-text h1 {
    font-size: 3rem;
  } 
  .moving-text-div {
    width: 100%;
    background-color: black;
  }
  .text-container h2 {
    font-size: 1.5rem;
    margin-left: 0.5rem;
  }
  .arrow-button {
    height: 20px;
    width: 40px;
    margin: 0;
  }
  .arrow-button img {
    height: 1rem;
    width: 1rem;
  }
}

/* ========= END OF WORK WITH US SECTION ========= */

/* ========= FOOTER SECTION ========= */

.footer-section {
  background-image: url(/imgs/name-bg.png);
  background-size: cover;
  font-family: var(--font-family-1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-content-right {
  display: flex;
  flex-direction: column;
  padding: 3rem;
}

.footer-content-right .footer-logo {
  height: 8rem;
  width: 26rem;
  margin-bottom: 1.5rem;
}

.footer-content-right h1 {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}

.footer-content-right p {
  font-size: 1rem;
  color: var(--black-color-light);
  margin-bottom: 2rem;
}

.footer-contact-btn {
  display: flex;
  flex-direction: column;
}

.drop-us-email {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--black-color-light);
}

.contact-email {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.contact-email img {
  height: 1.5rem;
  width: 1.5rem;
}

.contact-email span {
  font-size: 1rem;
  font-weight: 700;
}

.footer-content-left {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 4rem 4rem;
}

.contact-us-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
}

.contact-us-info h3, .social-media-links h3 {
  font-size: 1.2rem;
  font-weight: 500;
  padding-bottom: 1rem;
}

.contact-us-info-p {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-us-info-p span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color-light);
}

.social-media-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 50%;
}

.social-media-links-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-media-links-container a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color-light);
  transition: all 0.3s ease-in-out;
}

.social-media-links-container a img {
  height: 0.8rem;
  width: 0.8rem;
  margin-left: 0.2rem;
}

.social-media-links-container a:hover {
  color: var(--black-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.services-link {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 50%;
}

.services-link h3 {
  font-size: 1.2rem;
  font-weight: 500;
}

.services-link a {
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  color: var(--black-color-light);
  transition: all 0.3s ease-in-out;
}

.services-link a:hover {
  color: var(--black-color);
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
  }
  .footer-content-right {
    padding: 1rem 3rem;
  }
  .footer-content-left {
    padding: 1rem 3rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
  }
  .footer-content-right {
    padding: 1rem;
  }
  .footer-content-right .footer-logo {
    height: 6rem;
    width: 20rem;
    margin-bottom: 1.5rem;
  }
  .footer-content-left {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .footer-content-left .contact-us-info {
    width: 100%;
  }


/* privacy policy section */
.privacy-policy-section {
display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========= END OF FOOTER SECTION ========= */

/* ========= PRIVACY POLICY SECTION ========= */

.privacy-policy-section {
  background-color: rgb(201, 201, 201);
  padding: 1rem 2rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.8rem;
  font-family: var(--font-family-1);
}

.privacy-policy-section span {
  font-weight: 400;
  color: var(--paragraph-color-2);
}

.privacy-policy-section a {
  text-decoration: none;
  color: var(--paragraph-color-2);
}

.privacy-policy-section a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .privacy-policy-section {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .privacy-policy-section {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 425px) {
  .privacy-policy-section {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========= END OF PRIVACY POLICY SECTION ========= */




