/* Designed and Developed by SYRONYX */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
.hero-section {
  min-height: 20vh;
  /* background: linear-gradient(135deg, #152C77 0%, #0E1A47 50%, #0A1230 100%); */
  background: url(/assets/img/hero-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
  margin-top:160px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: -1px;
  /* position: relative; */
  /* overflow: hidden; */
}

@media (max-width: 991px) {
  .hero-section {
    margin-top: 80px;
  }
}

.hero-section .hero-text h1 {
  font-size: 80px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  color: #fff;
  transition: .5s all;
  line-height: 1.2;
  padding: 80px 0;
}

@media (max-width: 991px) {
  .hero-section .hero-text h1 {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .hero-section .hero-text h1 {
    padding: 40px 0;
  }
}

/* Hero Diagonal Background */
.hero-diagonal-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.1) 45%, rgba(255,255,255,0.05) 55%, transparent 60%);
  z-index: 1;
}

.hero-diagonal-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-45deg, transparent 30%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0.03) 45%, transparent 50%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
  /* padding-left: 60px; */
}

.hero-groundbreaking-text-break {
  display: none !important;
}

@media (max-width: 380px) {
  .hero-groundbreaking-text-break {
    display: block !important;
  }
}

.intro-section {
  display: flex;
  justify-content: center;
  background: #fff;
  align-items: center;
  padding-top: 50px;
}

@media (max-width: 575px) {
  .intro-section {
    padding-top: 0;
  }
}

.story-section {
  padding: 40px 0;
}

.story-label {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
  transition: .5s all;
}

.story-line {
  flex-grow: 1;
  height: 2px;
  background-color: black;
  margin-left: 10px;
  display: block;
  margin-top: 15px;
}

.story-content h2 {
  font-weight: 600;
  margin-top: 18px;
  transition: .5s all;
}


.service-section {
  padding-top: 0;
  min-height: 100px;
}

.service-label {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 6px;
  width: 100%;
}

.service-line {
  flex-grow: 1;
  height: 2px;
  background-color: black;
  margin-left: 10px;
  display: block;
  margin-top: 15px;
}
/* .service-content {
  display: flex;
} */

.service-content h2 {
  font-weight: bold;
  font-size: 70px;
  display: inline-block;
  position: relative;
  min-width: 300px;
  /* Adjust based on your longest word */
}

.service-content h2 .typing-text {
  display: inline-block;
  opacity: 1;
  transition: color 0.3s ease;
}

.service-content h2 .cursor {
  font-weight: 600;
  color: #000;
  animation: blink 0.7s infinite;
  margin-left: -5px;
}

/* Remove the old ::after pseudo-element styles */
/* .service-content h2::after {
  content: '|';
  font-weight: 600;
  position: absolute;
  right: -15px;
  animation: blink 0.7s infinite;
} */

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.service-content .text-deliver {
  color: #152C77;
}

.service-content .text-distinct {
  color: #152C77;
}

.service-content .text-dynamic {
  color: #152C77;
}

/* Marquee Styles */
.marquee-container {
  width: 100%;
  overflow: visible;
  position: relative;
  margin-top: -25px;
}

.marquee {
  position: relative;
  width: fit-content;
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee 20s linear infinite;
  padding-right: 0px;
}

.marquee-content img {
  height: 30px;
  width: auto;
  margin-right: 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Marquee Styles */
.partner-with-us-marquee-container {
  width: 100%;
  overflow: visible;
  position: relative;
}

.partner-with-us-marquee {
  position: relative;
  width: fit-content;
  display: flex;
  white-space: nowrap;
}

.partner-with-us-marquee-content {
  display: flex;
  animation: partner-with-us-marquee 35s linear infinite;
  padding-right: 0px;
}

.partner-with-us-marquee-content img {
  height: 60px;
  width: auto;
  margin-right: 25px;
}

@keyframes partner-with-us-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Carousel Styles */
.services-section {
  padding-bottom: 60px;
  background: #FFFFFFB5;
  overflow: hidden;
  /* Prevent horizontal scrollbar */
}

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  /* padding: 0 50px; */
  /* Increased padding for navigation buttons */
  margin: 0 auto;
  margin-top: 50px;
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0 1px;
  /* Add small padding to prevent edge cropping */
}

.carousel-track {
  display: flex;
  position: relative;
  height: 100%;
  gap: 30px;
  padding: 20px 0;
  will-change: transform;
  /* Optimize performance */
}

.carousel-slide {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: calc((100% - 60px) / 3);
  transition: transform 0.3s ease;
  padding: 0 1px;
  /* Add small padding to prevent edge cropping */
}

/* .service-card {
  max-height: 265px;
  max-width: 353px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  transition: transform 0.3s ease;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  font-size: 24px;
  width: 100%;
  padding: 0px 15px;
  margin-bottom: 15px;
  color: #333;
}

.service-card p {
  color: #666;
  line-height: 1.6;
} */

.carousel-button {
  background: none;
  border: none !important;
  outline: none !important;
  font-size: 24px;
  cursor: pointer;
  /* padding: 10px; */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  color: #333;
  transition: opacity 0.3s ease;
}

.carousel-button:hover {
  opacity: 0.7;
}

.carousel-button.prev {
  left: -23px;
}

.carousel-button.next {
  right: -23px;
}

/* Update responsive styles */
@media (max-width: 992px) {
  /* .carousel-container {
    padding: 0 30px;
  } */

  .carousel-slide {
    flex: 0 0 calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 576px) {
  /* .carousel-container {
    padding: 0 30px;
  } */

  .carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

.services-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 0px;
}

/* Update the nav link styles */
.desk-nav-link,
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.desk-nav-link::after,
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #152C77;
  transition: width 0.3s ease;
}

.desk-nav-link.active::after,
.nav-link.active::after {
  width: 100%;
}

/* Optional: Add hover effect */
.desk-nav-link:hover::after,
.nav-link:hover::after {
  width: 100%;
}

.portfolio-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
  background: #FFFFFFB5;
}

/* Portfolio Carousel Styles */
.portfolio-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0 40px;
  /* Bottom padding for nav buttons */
}

.portfolio-track-container {
  overflow: hidden;
  margin-bottom: 20px;
}

.portfolio-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.portfolio-grid {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 30px;
}

.portfolio-card {
  position: relative;
  width: 100%;
  padding-bottom: 400px;
  /* 3:2 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

@media (max-width: 991px) {
  .portfolio-card {
    padding-bottom: 300px;
  }
}

@media (max-width: 450px) {
  .portfolio-card {
    padding-bottom: 250px;
  }
}

.portfolio-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-nav-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.portfolio-nav {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: #ffffff00;
  outline: none !important;
  cursor: pointer;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.portfolio-nav:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

/* Add these styles */
.portfolio-carousel-mobile {
  display: none;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 30px;
}

.portfolio-carousel-mobile .portfolio-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.portfolio-carousel-mobile .portfolio-card {
  flex: 0 0 100%;
  padding-bottom: 66.67%;
}

/* Update media query */
@media (max-width: 768px) {
  .portfolio-carousel {
    display: none;
  }

  .portfolio-carousel-mobile {
    display: block;
  }
}

/* Partners Logo Section */
.partners-logo-section {
  --logo-width: 200px;
  /* Control logo width */
  --logo-height: 200px;
  /* Control logo height */
  --logo-gap: 20px;
  /* Control space between logos */
  --logo-padding: 10px;
  /* Control padding inside logo card */
  --logo-count: 6;
  /* Number of logos to show */

  padding: 20px 0;
  width: 100%;
  background: transparent;
}

/* Logo Slider Styles */
.logo-slider {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: transparent;
}

.logo-slide-track {
  display: flex;
  animation: scroll 25s linear infinite;
  gap: var(--logo-gap);
  width: calc((var(--logo-width) + var(--logo-gap)) * 12);
  /* 12 is total logos (original + duplicate) */
}

.logo-slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-1 * (var(--logo-width) + var(--logo-gap)) * 6));
  }
}

.logo-slide {
  flex: 0 0 var(--logo-width);
  height: var(--logo-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-card {
  width: 100%;
  height: 100%;
  padding: var(--logo-padding);
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #D9D9D9;
  transition: transform 0.3s ease;
}

.logo-card:hover {
  transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .partners-logo-section {
    --logo-width: 80px;
    --logo-height: 80px;
    --logo-gap: 15px;
    --logo-padding: 8px;
    --logo-count: 3;
  }

  .logo-slide-track {
    width: calc((var(--logo-width) + var(--logo-gap)) * 12);
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-1 * (var(--logo-width) + var(--logo-gap)) * 6));
    }
  }
}

.partner-with-us-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* height: 450px; */
  height: 100%;
  padding: 70px;
  text-align: center;
  background: url(/assets/img/partner-with-us-bg.png)no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  transition: .5s all;
}

.partner-with-us-section:hover h3 {
  letter-spacing: 2px;
  transition: .5s;
}

.partner-with-us-section h3 {
  font-size: 120px;
  font-weight: 700;
  transition: .5s;
  color: #fff;
}

.partner-with-us-section p {
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  max-width: 500px;
  margin-bottom: 20px;
}

.partner-with-us-section a {
  font-size: 20px;
  font-weight: 400;
  text-decoration: underline #fff 2px !important;
  text-underline-offset: 5px;
  color: #fff;
  transition: .5s;
}

.partner-with-us-section a:hover {
  letter-spacing: 1px;
  transition: .5s;
}

.team-section {
  padding-bottom: 0px;
  background: #FFFFFFB5;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Team Carousel Styles */
.team-carousel {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 50px;
  overflow: hidden;
}

.team-track-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.team-track {
  display: flex;
  position: relative;
  gap: 30px;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.team-member {
  flex: 0 0 calc((100% - 90px) / 4);
  min-width: calc((100% - 90px) / 4);
  transition: transform 0.3s ease;
  padding: 0;
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
}

.member-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 15px;
  background: #D9D9D9;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-member p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Update responsive styles with centering calculations */
@media (max-width: 992px) {
  .team-carousel {
    padding: 0 30px;
  }

  .team-member {
    flex: 0 0 calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
  }
}

@media (max-width: 768px) {
  .team-member {
    flex: 0 0 calc((100% - 30px) / 2);
    min-width: calc((100% - 30px) / 2);
  }
}

@media (max-width: 576px) {
  .team-carousel {
    padding: 0 30px;
  }

  .team-member {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Nav buttons */
.team-nav-buttons {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.team-nav {
  width: 40px;
  height: 40px;
  background: none;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  pointer-events: auto;
  color: #333;
  transition: opacity 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.team-nav:hover {
  opacity: 0.7;
}

.team-nav.prev {
  left: -10px;
}

.team-nav.next {
  right: -10px;
}

/* Add these styles at the end of the file */

.main-footer {
  background: #000;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-evenly;
  gap: 100px;
}

.footer-left {
  flex: 0 0 50%;
  padding: 20px;
  border-right: 1px solid #fff;
}

.footer-left h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0;
  margin-bottom: 70px;
}

.footer-left img {
  width: 250px;
  /* position: absolute; */
  /* bottom: 120px; */
}

.footer-right {
  flex: 0 0 40%;
  display: flex;
  padding: 20px;
  flex-direction: column;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  transition: opacity 0.3s ease;
  position: relative;
}

.footer-column a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s ease;
}

.footer-column a:hover::after {
  width: 100%;
}

.footer-cta {
  margin-top: auto;
}

.footer-cta a {
  color: #fff;
  text-decoration: none;
  font-size: 25px;
  font-weight: 400;
  position: relative;
  top: -10px;
}

.footer-cta a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

/* Responsive styles */
@media (max-width: 991px) {
  .footer-content {
    gap: 60px;
  }

  /* .footer-left h2 {
    font-size: 50px;
  } */

  .footer-links {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 80px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 60px;
  }

  .footer-left {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-left h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
  }

  .footer-left img {
    margin-bottom: 40px;
  }

  .footer-right {
    flex: 0 0 100%;
    align-items: center;
    gap: 40px;
    padding-top: 0;
    margin-bottom: 50px;
  }

  .footer-links {
    gap: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .main-footer {
    padding: 60px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 100%;
    align-items: center;
    text-align: center;
  }

  .footer-column {
    align-items: center;
  }
}

.contact-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.contact-popup.active {
  opacity: 1;
  visibility: visible;
  background: rgba(0, 0, 0, 0.8);
}

.contact-popup-content {
  background: #000;
  padding: 50px;
  border-radius: 0px;
  width: 90%;
  max-width: 600px;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-popup.active .contact-popup-content {
  transform: translateY(0);
  opacity: 1;
}

.close-popup {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.close-popup:hover {
  opacity: 0.7;
}

.contact-popup h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 30px;
  font-weight: 600;
}

.contact-form .form-group {
  margin-bottom: 25px;
  position: relative;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-form textarea {
  height: 100px;
  resize: none;
}

.contact-form label {
  position: absolute;
  left: 0;
  top: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: #fff;
}

.contact-form input:focus+label,
.contact-form textarea:focus+label,
.contact-form input:valid+label,
.contact-form textarea:valid+label {
  top: -20px;
  font-size: 14px;
  color: #fff;
}

.submit-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
}

.submit-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.submit-btn:hover {
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .contact-popup-content {
    padding: 30px;
  }

  .contact-popup h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .contact-popup-content {
    padding: 20px;
  }

  .contact-popup h2 {
    font-size: 24px;
  }
}

/* ####################################
 Responsive Settings
 ######################################*/

@media (max-width: 1650px) {
  .hero-image {
    position: absolute;
    right: 150px;
    top: 140px;
    z-index: 1;
    transition: .5s all;
    will-change: transform;
  }

  .hero-image img {
    max-width: 240px;
    transform: rotate(39.81deg);
    transition: .5s;
  }
}

@media (max-width: 1400px) {
  .partner-with-us-section h3 {
    font-size: 100px;
    font-weight: 700;
    transition: .5s;
    color: #fff;
  }

  .partner-with-us-section p {
    font-size: 18px;
    transition: .5s;
  }

  .partner-with-us-section a {
    font-size: 18px;
    transition: .5s;
  }
}

@media (max-width: 1300px) {
  .hero-section .hero-text h1 {
    font-size: 60px;
  }
}

@media (max-width: 1150px) {
  /* .hero-section .hero-text h1 {
    font-size: 50px;
  } */

  .hero-image {
    position: absolute;
    right: 100px;
    top: 140px;
    z-index: 1;
    transition: .5s all;
    will-change: transform;
  }

  .hero-image img {
    max-width: 200px;
    transform: rotate(39.81deg);
    transition: .5s;
  }

  .story-label {
    font-size: 29px;
  }

  .service-label {
    font-size: 29px;
  }

  .story-content h2 {
    font-size: 26px;
    margin-top: 14px;
  }

  .story-content p {
    font-size: 14px;
  }

  /* .desktop-nav {
    padding: 30px 5px 30px 5px !important;
  } */

  /* .logo-nav-desktop img {
    height: 10px !important;
  } */

  .desktop-nav-links .desk-nav-link {
    font-size: 15px !important;
  }

  /* .hero-section .hero-text h1 {
    font-size: 45px;
  } */
}

@media (max-width: 991px) {
  .partner-with-us-section h3 {
    font-size: 80px;
    font-weight: 700;
    transition: .5s;
    color: #fff;
  }

  .partner-with-us-section p {
    font-size: 16px;
    transition: .5s;
  }

  .partner-with-us-section a {
    font-size: 18px;
    transition: .5s;
  }
  .team-section {
    padding-bottom: 80px;
  }
}

.here-textbreak-one {
  display: none;
}

.here-textbreak-two {
  display: block;
}

.here-textbreak-three {
  display: none;
}

@media (max-width: 960px) {
  .here-textbreak-one {
    display: block;
  }

  .here-textbreak-two {
    display: none;
  }

  .here-textbreak-three {
    display: block;
  }

  /* .hero-section .hero-text h1 {
    margin-top: -16px;
  } */
}

.partner-with-us-line-break {
  display: none;
}

@media(max-width: 841px) {
  .partner-with-us-line-break {
    display: block;
  }

  .partner-with-us-section h3 {
    line-height: .9;
  }
}

@media (max-width: 768px) {
  .hero-image {
    position: absolute;
    right: 90px;
    top: 145px;
    z-index: 1;
    transition: .5s all;
    will-change: transform;
  }

  .hero-image img {
    max-width: 160px;
    transform: rotate(39.81deg);
    transition: .5s;
  }
  .portfolio-section {
    padding-bottom: 60px;
  }
}

/* @media(max-width: 768px) and (min-width: 577px) {
  .service-card {
    height: 250px;
  }
} */

@media (max-width: 670px) {
  .hero-image {
    display: none;
  }

  .hero-section .hero-text h1 {
    font-size: 55px;
  }

  .here-textbreak-one {
    display: none;
  }

  .here-textbreak-two {
    display: none;
  }

  .here-textbreak-three {
    display: none;
  }

  .story-content-line-break {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-section .hero-text h1 {
    font-size: 45px;
  }

  .service-content h2 .typing-text {
    font-size: 60px;
  }
  .partner-with-us-section {
    padding: 50px;
  }
  .partner-with-us-section h3 {
    font-size: 70px;
  }
  .partner-with-us-marquee-content img {
    height: 50px;
  }
  .portfolio-section {
    padding-bottom: 50px;
  }
}

.hero-text-word-break {
  display: none;
}

@media (max-width: 420px) {
  .hero-section .hero-text h1 {
    font-size: 40px;
  }
}

@media(max-width: 400px) {
  .partner-with-us-section h3 {
    font-size: 60px;
    font-weight: 700;
    transition: .5s;
    color: #fff;
  }

  .partner-with-us-section p {
    font-size: 16px;
    line-height: 1.1;
    transition: .5s;
  }

  .partner-with-us-section a {
    font-size: 18px;
    transition: .5s;
  }

  /* .service-card {
    height: 250px;
  } */
}

@media (max-width: 370px) {
  .hero-text-word-break {
    display: block;
  }
  .partner-with-us-section {
    padding: 40px;
  }
  .portfolio-section {
    padding-bottom: 40px;
  }
}

@media (max-width: 300px) {
  .service-content h2 .typing-text {
    font-size: 55px;
  }
  .partner-with-us-section {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Breathing Animation for Lines */
@keyframes breathing {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.2);
  }
  100% {
    transform: scaleX(1);
  }
}

.breathing-lines {
  animation: breathing 3s ease-in-out infinite;
  transform-origin: left;
  max-width: 100%;
  height: auto;
}

/* Service Card Lines */
/* .service-card {
  position: relative;
  overflow: hidden;
}

.service-card-lines {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  opacity: 0.6;
  overflow: hidden;
}

.service-card-lines .breathing-lines {
  width: 100%;
  max-width: 200px;
  height: auto;
} */

/* Service Text Lines */
.service-text-lines {
  margin-top: 30px;
  /* opacity: 0.7; */
  overflow: hidden;
}

.service-text-lines .text-breathing {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation-delay: 1s;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* .service-card-lines .breathing-lines {
    max-width: 150px;
  } */
  
  .service-text-lines .text-breathing {
    max-width: 200px;
  }
  
  /* .hero-section .hero-text h1 {
    font-size: 50px;
  } */
}

@media (prefers-reduced-motion: reduce) {
  .breathing-lines {
    animation: none;
  }
}

/* Ensure proper stacking */
.hero-section .hero-text {
  position: relative;
  z-index: 4;
}

/* Updated Navbar Styling */
.container-nav-desktop {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
}

.logo-nav-desktop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.nav-tagline {
  font-size: 21px;
  font-weight: 400;
  font-family: "Raleway";
  color: #152C77;
  line-height: 1.1;
  margin-top: 2px;
}

.desktop-nav-links ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desk-nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  position: relative;
}

.desk-nav-link.active {
  color: #000;
  font-weight: 600;
}

/* .desk-nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #152C77;
} */

.desk-nav-link:hover {
  color: #152C77 !important;
}

/* Service Cards Blue Theme */
.service-card {
  background: #152C77 !important;
  color: #fff;
  padding: 2rem;
  height: 265px;
  /* width: 353px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  z-index: 2;
  position: relative;
  padding: 0 18px;
  line-height: 1.1;
}

.service-card-lines {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 20px;
  opacity: 0.4;
  overflow: hidden;
}

.service-card-lines .breathing-lines {
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: brightness(0) invert(1);
}

@media(max-width: 1400px) {
  .service-card br {
    display: none;
  }
  .service-card {
    height: 240px;
    padding: 1rem;
  }

  .service-card-lines {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 20px;
    opacity: 0.4;
    overflow: hidden;
  }

  .service-card h3 {
    padding: 0 25px;
  }
}
/* Service Content Styling */
.service-content h2 {
  color: #152C77;
}

.text-deliver {
  color: #152C77;
}

.text-distinct {
  color: #152C77;
}

.text-dynamic {
  color: #152C77;
}

/* Service Text Lines */
/* .service-text-lines .text-breathing {
  filter: brightness(0) saturate(100%) invert(8%) sepia(89%) saturate(1899%) hue-rotate(208deg) brightness(97%) contrast(93%);
} */

/* Portfolio Static Grid */
.portfolio-grid-static {
  margin-top: 40px !important;
  margin-bottom: 10px !important;
}

.portfolio-row {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.portfolio-card {
  flex: 1;
  /* border-radius: 10px; */
  overflow: hidden;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

/* Portfolio CTA */
.portfolio-cta {
  text-align: right;
  margin-bottom: 30px 0;
}

.explore-more-btn {
  background: #000;
  color: #fff !important;
  border: none;
  padding: 9px 20px;
  font-size: 18px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore-more-btn:hover {
  background: #152C77;
}

/* Partner CTA Section */
.partner-with-us-section {
  background: #152C77;
  color: #fff;
  padding: 35px 0;
  text-align: center;
  margin-top: 25px;
}

.partner-cta-container h3 {
  font-size: 128px;
  font-weight: 700;
  padding: 0 20px;
  margin-bottom: 20px;
  color: #fff;
}

@media (max-width: 1150px) {
  .partner-cta-container h3 {
    font-size: 100px;
  }
}

.partner-cta-container p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
}

.partner-cta-btn {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  /* border-bottom: 2px solid #fff; */
  transition: all 0.3s ease;
}

.partner-cta-btn:hover {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.7);
}

/* Partners Logo Grid */
.partners-logo-grid {
  margin: 60px 0;
}

.partners-grid-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}

.partner-logo-card {
  aspect-ratio: 1;
  background: #F3F3F3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.partner-logo-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  /* opacity: 0.8; */
  transition: opacity 0.3s ease;
}

.partner-logo-card:hover img {
  opacity: 1;
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .service-card-lines .breathing-lines {
    max-width: 150px;
  }
  
  .service-text-lines .text-breathing {
    max-width: 200px;
  }
  
  /* .hero-section .hero-text h1 {
    font-size: 50px;
  } */

  .portfolio-row {
    flex-direction: column;
    gap: 15px;
  }

  /* .portfolio-card img {
    height: 200px;
  } */

  .partners-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .partner-cta-container h3 {
    font-size: 76px;
  }

  .partner-cta-container p {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .partners-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-cta-container h3 {
    font-size: 46px;
  }
}

.services-page-hero-section {
  padding-top: 280px !important;
}

@media (max-width: 991px) {
  .services-page-hero-section {
    padding-top: 180px !important;
  }
}

@media (max-width: 768px) {
  .services-page-hero-section {
    padding-top: 140px !important;
  }
}


/* Services Page Grid Layout */
.services-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  margin-top: 80px;
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .services-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
}

@media (max-width: 600px) {
  .services-grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.service-page-intro-text {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Contact Page Styles */
.contact-page-hero-section {
  padding-top: 280px !important;
}

.contact-page-hero-section {
  padding-bottom: 60px;
  background: #FFFFFFB5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-label {
  display: flex;
  align-items: center;
  font-size: 36px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 6px;
  width: 100%;
}

.contact-line {
  flex-grow: 1;
  height: 2px;
  background-color: black;
  margin-left: 10px;
  display: block;
  margin-top: 15px;
}

.contact-content h2 {
  font-weight: bold;
  font-size: 70px;
  display: inline-block;
  position: relative;
  min-width: 300px;
}

.contact-text-lines {
  margin-top: 30px;
  overflow: hidden;
}

.contact-text-lines .text-breathing {
  width: 100%;
  max-width: 300px;
  height: auto;
  animation-delay: 1s;
}

.contact-page-intro-text {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #152C77;
  color: #fff;
  transition: transform 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.contact-info-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-form-section {
  background: #fff;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-container h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #152C77;
}

.contact-page-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-page-form .form-group {
  position: relative;
  margin-bottom: 25px;
}

.contact-page-form input,
.contact-page-form textarea {
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  color: #333;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.contact-page-form textarea {
  height: 120px;
  resize: none;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  padding: 15px;
}

.contact-page-form label {
  position: absolute;
  left: 0;
  top: 15px;
  color: #999;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
}

.contact-page-form textarea + label {
  top: 15px;
  left: 15px;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
  outline: none;
  border-bottom-color: #152C77;
}

.contact-page-form textarea:focus {
  border-color: #152C77;
}

.contact-page-form input:focus + label,
.contact-page-form textarea:focus + label,
.contact-page-form input:valid + label,
.contact-page-form textarea:valid + label {
  top: -20px;
  font-size: 14px;
  color: #152C77;
}

.contact-page-form textarea:focus + label,
.contact-page-form textarea:valid + label {
  top: -20px;
  left: 0;
}

.contact-submit-btn {
  background: #152C77;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.contact-submit-btn:hover {
  background: #0f1f5a;
  transform: translateY(-2px);
}

.contact-submit-btn i {
  font-size: 14px;
}

/* Responsive Design for Contact Page */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-content h2 {
    font-size: 50px;
  }
  
  .service-content h2 {
    font-size: 50px !important;
  }
  
  .contact-label {
    font-size: 29px;
  }
}

@media (max-width: 768px) {
  .contact-page-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-form-section {
    padding: 30px 20px;
  }
  
  .contact-info-card {
    padding: 20px;
  }
  
  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .contact-content h2 {
    font-size: 40px;
  }
  
  .service-content h2 {
    font-size: 40px !important;
  }
  
  .contact-text-lines .text-breathing {
    max-width: 200px;
  }
  
  .contact-page-intro-text, .service-page-intro-text {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .contact-page-hero-section {
    padding-top: 200px !important;
  }
  
  .contact-content h2 {
    font-size: 35px;
  }
  
  .service-content h2 {
    font-size: 35px !important;
  }
  
  .contact-label {
    font-size: 24px;
  }
  
  .contact-page-intro-text, .service-page-intro-text {
    font-size: 16px;
  }
}

/* Service Pages Styles */
.single-service-hero-section-banner{
  background-image: url('/assets/img/services-banners/banner_branding\ 1.svg');
  background-size: cover;
  background-position: center ;
  background-repeat: no-repeat;
  max-height: 400px;
  height: 35vh;
  margin-top:160px;
}

@media (max-width: 991px) {
  .single-service-hero-section-banner{
    margin-top:80px;
  }
}

.branding-design-banner {
  background-image: url('/assets/img/services-banners/banner_branding\ 1.svg');
}

.social-media-banner {
  background-image: url('/assets/img/services-banners/banner_social_media.svg');
}

.photography-banner {
  background-image: url('/assets/img/services-banners/banner_photography.svg');
}

.web-banner {
  background-image: url('/assets/img/services-banners/banner_web.svg');
}

.event-banner {
  background-image: url('/assets/img/services-banners/banner_event.svg');
}

.gifting-banner {
  background-image: url('/assets/img/services-banners/banner_gifting.svg');
}

.printing-banner {
  background-image: url('/assets/img/services-banners/banner_printing.svg');
}

@media (max-width: 991px) {
  .single-service-hero-section-banner{
    background-position: center left;
    background-position-x: -60px;
  }
}

@media (max-width: 575px) {
  .single-service-hero-section-banner{
    background-position: center left;
    background-position-x: -100px;
  }
}

.service-hero-section {
  padding-top: 60px;
  /* padding-bottom: 80px; */
  background: #fff;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}



.service-hero-content h1 {
  font-size: 68px;
  font-weight: 700;
  color: #152C77;
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-hero-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  /* margin-bottom: 30px; */
}

.service-hero-lines {
  margin-top: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  opacity: 0.6;
}

.service-hero-lines .breathing-lines {
  width: 100%;
  max-width: 300px;
  height: 50px;
  animation-delay: 1s;
}

.service-hero-right {
  padding: 0;
}

.service-hero-image {
  width: 100%;
  height: 500px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.other-services-section {
  padding: 30px 0 80px 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  max-width:100%;
  width: 100%;
  /* padding: 0 20px; */
}

.other-service-card {
  background: #152C77;
  color: #fff;
  padding: 20px 30px;
  height: auto;
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.other-service-card:hover {
  transform: translateY(-5px);
}

.other-service-card h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  z-index: 2;
  position: relative;
  line-height: 1.2;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-size: 30px;
  color: #152C77;
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
}

/* Responsive Design for Service Pages */
@media (max-width: 991px) {
  .service-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-hero-content h1 {
    font-size: 50px;
  }
  
  .other-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  /* .service-hero-section {
    padding-top: 200px;
    padding-bottom: 60px;
  } */
  
  /* .service-hero-content h1 {
    font-size: 28px;
  } */
  
  .service-hero-content p {
    font-size: 16px;
  }
  
  .service-list li {
    font-size: 24px;
  }
  
  .other-services-grid {
    grid-template-columns: 1fr;
  }
  
  .other-service-card {
    padding: 25px;
  }
  
  /* .other-service-card h3 {
    font-size: 18px;
  } */
}

/* Portfolio Page Styles */
.portfolio-hero-section {
  padding-top: 280px;
  padding-bottom: 80px;
  background: transparent;
}

.portfolio-page-hero-section {
  padding-top: 280px !important;
}

@media (max-width: 991px) {
  .portfolio-page-hero-section {
    padding-top: 180px !important;
  }
}

@media (max-width: 768px) {
  .portfolio-page-hero-section {
    padding-top: 140px !important;
  }
}

.portfolio-gallery-section {
  padding: 80px 0;
  background: #FFFFFFB5;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  position: relative;
}

.portfolio-tab {
  background: none;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 18px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  padding: 10px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.portfolio-tab::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: #152C77;
  transition: width 0.3s ease;
}

.portfolio-tab.active {
  color: #152C77;
  font-weight: 600;
}

.portfolio-tab.active::after {
  width: 100%;
}

.portfolio-tab:hover {
  color: #152C77;
}

.portfolio-tab:hover::after {
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
}

.portfolio-item.hidden {
  opacity: 0;
  transform: scale(0.8);
  pointer-events: none;
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: #f5f5f5;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 44, 119, 0.9);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
  backdrop-filter: blur(10px);
}

.portfolio-overlay h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.portfolio-overlay p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.portfolio-item:hover .portfolio-image img {
  transform: scale(1.1);
}

/* Portfolio Action Buttons */
.portfolio-action-buttons {
  position: absolute;
  top: 0px;
  right: 0px;
  display: flex;
  flex-direction: column;
  opacity: 0.2;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-action-buttons {
  opacity: 1;
}

.portfolio-action-btn {
  background: rgba(21, 44, 119, 0);
  color: #fff;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.portfolio-action-btn:hover {
  background: #fff;
  color: #152C77;
  transform: scale(1.1);
}

/* Portfolio Info Overlay */
.portfolio-info-overlay {
  display: flex;
  visibility: hidden;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,44,119,0.85);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
}

.portfolio-info-overlay.active {
  visibility: visible;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
}

.info-overlay-content {
  padding: 40px;
  max-width: 700px;
  width: 90%;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.portfolio-info-overlay.active .info-overlay-content {
  transform: scale(1);
}

.info-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}

.info-close:hover {
  color: #666;
}

.info-overlay-content h3 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.info-overlay-content p {
  color: #f9f9f9;
  line-height: 1.6;
  font-size: 16px;
}

@media (max-width: 600px) {
  /* .portfolio-action-buttons {
    top: 10px;
    right: 10px;
    gap: 6px;
  } */
  
  .portfolio-action-btn {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  
  .info-overlay-content {
    padding: 30px 20px;
    margin: 20px;
  }
  
  .info-overlay-content h3 {
    font-size: 20px;
  }
  
  .info-overlay-content p {
    font-size: 14px;
  }
}

/* Responsive Design for Portfolio */
@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .portfolio-tabs {
    gap: 20px;
  }
  
  .portfolio-tab {
    font-size: 16px;
    padding: 8px 16px;
  }
}

@media (max-width: 768px) {
  .portfolio-hero-section {
    padding-top: 200px;
    padding-bottom: 60px;
  }
  
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .portfolio-tabs {
    gap: 15px;
    margin-bottom: 40px;
  }
  
  .portfolio-tab {
    font-size: 14px;
    padding: 6px 12px;
  }
  
  .portfolio-image {
    height: 250px;
  }
  
  .portfolio-overlay h3 {
    font-size: 20px;
  }
  
  .portfolio-overlay p {
    font-size: 14px;
  }
}

/* Portfolio Lightbox Styles */
.portfolio-lightbox {
  display: flex;
  visibility: hidden;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(21,44,119,0.85);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(10px);
  opacity: 0;
}
.portfolio-lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: visible;
  opacity: 1;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 2010;
  background: rgba(21,44,119,0.7);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: #fff;
  color: #152C77;
}
@media (max-width: 600px) {
  .lightbox-img {
    max-width: 98vw;
    max-height: 60vh;
  }
  .lightbox-close {
    top: 12px;
    right: 16px;
    font-size: 2rem;
    width: 36px;
    height: 36px;
  }
}

/* 404 Error Page Styles */
.error-page-hero-section {
  padding-top: 280px !important;
  padding-bottom: 100px;
  background: transparent;
}

@media (max-width: 991px) {
  .error-page-hero-section {
    padding-top: 200px !important;
    padding-bottom: 80px;
  }
}

@media (max-width: 768px) {
  .error-page-hero-section {
    padding-top: 180px !important;
    padding-bottom: 60px;
  }
}

.error-content-section {
  padding: 80px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  background: #FFFFFFB5;
  backdrop-filter: blur(10px);
}

.error-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.error-number {
  margin-bottom: 40px;
}

.error-number h1 {
  font-size: 120px;
  font-weight: 700;
  color: #152C77;
  margin: 0;
  line-height: 1;
  text-shadow: 0 4px 20px rgba(21, 44, 119, 0.2);
}

.error-message {
  margin-bottom: 50px;
}

.error-message h3 {
  font-size: 32px;
  font-weight: 600;
  color: #152C77;
  margin-bottom: 20px;
}

.error-message p {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.error-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.error-btn.primary-btn {
  background: #152C77;
  color: #fff;
}

.error-btn.primary-btn:hover {
  background: #fff;
  color: #152C77;
  border-color: #152C77;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 44, 119, 0.2);
}

.error-btn.secondary-btn {
  background: transparent;
  color: #152C77;
  border-color: #152C77;
}

.error-btn.secondary-btn:hover {
  background: #152C77;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21, 44, 119, 0.2);
}

.error-suggestions {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.error-suggestions h4 {
  font-size: 20px;
  font-weight: 600;
  color: #152C77;
  margin-bottom: 25px;
}

.suggestion-links {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.suggestion-links a {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.suggestion-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #152C77;
  transition: width 0.3s ease;
}

.suggestion-links a:hover {
  color: #152C77;
}

.suggestion-links a:hover::after {
  width: 100%;
}

/* Responsive Design for 404 Page */
@media (max-width: 768px) {
  .error-number h1 {
    font-size: 80px;
  }
  
  .error-message h3 {
    font-size: 24px;
  }
  
  .error-message p {
    font-size: 16px;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .error-btn {
    width: 200px;
    justify-content: center;
  }
  
  .suggestion-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .error-number h1 {
    font-size: 60px;
  }
  
  .error-message h3 {
    font-size: 20px;
  }
  
  .error-message p {
    font-size: 14px;
  }
  
  .error-btn {
    width: 180px;
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .error-suggestions h4 {
    font-size: 18px;
  }
  
  .suggestion-links a {
    font-size: 14px;
  }
}