@charset "UTF-8";
/* General & Global Styles */
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}
a:hover {
  color: rgb(6.328125, 125.296875, 236.671875);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: rgb(6.0625, 120.0375, 226.7375);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Disable AOS animation delay on mobile devices */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 9997;
  transition: all 0.5s;
  padding: 15px;
  overflow-y: auto;
}
@media (max-width: 991px) {
  #header {
    width: 300px;
    background: #fff;
    border-right: 1px solid #e6e9ec;
    left: -300px;
  }
}
@media (min-width: 992px) {
  #header ~ #main {
    margin-left: 100px;
  }
}

/* Navigation Menu */
.nav-menu {
  padding: 0;
  display: block;
}
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}
.nav-menu a,
.nav-menu a:focus {
  display: flex;
  align-items: center;
  color: #45505b;
  padding: 10px 18px;
  margin-bottom: 8px;
  transition: 0.3s;
  font-size: 15px;
  border-radius: 50px;
  background: #f2f3f5;
  height: 56px;
  width: 100%;
  overflow: hidden;
}
.nav-menu a i,
.nav-menu a:focus i {
  font-size: 20px;
}
.nav-menu a span,
.nav-menu a:focus span {
  padding: 0 5px 0 7px;
  color: #45505b;
}
.nav-menu a:hover, .nav-menu .active, .nav-menu .active:focus,
.nav-menu li:hover > a {
  color: #fff;
  background: #0563bb;
}
.nav-menu a:hover span, .nav-menu .active span, .nav-menu .active:focus span,
.nav-menu li:hover > a span {
  color: #fff;
}
@media (min-width: 992px) {
  .nav-menu a,
  .nav-menu a:focus {
    width: 56px;
  }
  .nav-menu a span,
  .nav-menu a:focus span {
    display: none;
  }
  .nav-menu li:hover > a {
    width: 100%;
  }
  .nav-menu li:hover > a span {
    display: block;
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  top: 10px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 28px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 0;
  cursor: pointer;
  border-radius: 50px;
  padding: 5px;
}
.mobile-nav-toggle i {
  color: #45505b;
}

.mobile-nav-active {
  overflow: hidden;
}
.mobile-nav-active #header {
  left: 0;
}
.mobile-nav-active .mobile-nav-toggle {
  color: #fff;
  background-color: #0563bb;
}

/* Hero Section */
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top right no-repeat;
  background-size: cover;
  position: relative;
}
#hero::before {
  content: "";
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #45505b;
}
#hero p {
  color: #45505b;
  margin: 15px 0 0 0;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}
#hero p span {
  color: #0563bb;
  letter-spacing: 1px;
}
#hero .social-links {
  margin-top: 30px;
}
#hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: #45505b;
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}
#hero .social-links a:hover {
  color: #0563bb;
}
@media (min-width: 992px) {
  #hero {
    padding-left: 160px;
  }
}
@media (max-width: 991px) {
  #hero {
    text-align: center;
  }
  #hero h1 {
    font-size: 32px;
    line-height: 36px;
  }
  #hero p {
    margin-top: 10px;
    font-size: 20px;
    line-height: 24px;
  }
}

/* Sections General */
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #45505b;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #0563bb;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}

/* Base & General Styles */
body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
}

a {
  color: #0563bb;
  text-decoration: none;
}
a:hover {
  color: rgb(4.3359375, 85.8515625, 162.1640625);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.small-text {
  font-size: 14px;
}

/* Reusable Components */
/* Back to top button */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #0563bb;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: rgb(5.6640625, 112.1484375, 211.8359375);
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}
#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #0563bb;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Disable AOS animation delay on mobile */
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/* Scrolling Widget */
.scrolling-widget {
  width: 100%;
  background-color: #9ebccd;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  background-image: url("../img/background-2.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.marquee-container {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: marquee-animation 40s linear infinite;
}
.marquee-content img {
  max-height: 80px;
  width: auto;
  display: inline-block;
  filter: brightness(0.9);
  transition: transform 0.3s ease-in-out;
}
.marquee-content img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Infinite Scrolling Effect */
@keyframes marquee-animation {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* Scrolling Skills Text */
.scrolling-skills-widget .scrolling-skills {
  font-family: Salvaje, Sans-serif;
  font-size: 70px;
  color: #9ebccd;
  margin: 0;
  padding-top: 10px;
}

/* About Section */
#about {
  padding-bottom: 700px;
}

.about .content h3 {
  font-size: 28px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.about .content p {
  font-size: 16px;
}
.about .content p.fst-italic {
  line-height: 1.7;
  max-width: 95%;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  display: flex;
  align-items: baseline;
  padding-bottom: 16px;
  font-size: 15px;
}
.about .content ul strong {
  min-width: 140px;
  color: #0563bb;
}
.about .content ul i {
  font-size: 16px;
  margin-right: 8px;
  color: #0563bb;
}

.background-section {
  background: url("../img/background-about.jpg") center/cover no-repeat;
  opacity: 0.9;
}

/* Image Collage with 3D Tilt Effect */
.image-collage {
  perspective: 1000px;
}
.image-collage .img-1 {
  border-radius: 8px;
  transition: transform 0.2s ease-out;
  transform-style: preserve-3d;
  will-change: transform;
  transform: rotateX(8deg) rotateY(15deg);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0);
}
.image-collage:hover .img-1 {
  transform: rotateX(0deg) rotateY(0deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
}

/* Featured Project Floating Card */
.featured-project-card {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: float-animation 6s ease-in-out infinite;
}
.featured-project-card.alt-animation {
  animation-duration: 7s;
  animation-delay: -3s;
}
.featured-project-card .featured-project-content h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0563bb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.featured-project-card .featured-project-content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}
.featured-project-card .featured-project-content p {
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
}
.featured-project-card .featured-project-content .btn-view-project {
  background: #0563bb;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
}
.featured-project-card .featured-project-content .btn-view-project:hover {
  background: rgb(4.3359375, 85.8515625, 162.1640625);
  color: #fff;
}
@media (max-width: 991px) {
  .featured-project-card {
    padding: 20px;
    text-align: center;
  }
  .featured-project-card .col-lg-6 {
    margin-bottom: 20px;
  }
}

@keyframes float-animation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}
/* Services Section */
.services {
  background-color: #9ebccd;
}
.services .iconbox-blue {
  --icon-color: #47aeff;
}
.services .iconbox-orange {
  --icon-color: #ffa76e;
}
.services .iconbox-pink {
  --icon-color: #e80368;
}
.services .iconbox-yellow {
  --icon-color: #ffbb2c;
}
.services .iconbox-red {
  --icon-color: #ff5828;
}
.services .iconbox-teal {
  --icon-color: #11dbcf;
}
.services {
  /* General Card Styling */
}
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  background-color: #acc6d5;
  border-radius: 20px;
  box-shadow: 0 5px 90px 0 rgba(110, 123, 131, 0.05);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.services .icon-box .icon {
  margin: 0 auto;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.services .icon-box .icon svg {
  position: absolute;
  top: 0;
  left: 0;
}
.services .icon-box .icon svg path {
  fill: #f5f5f5;
  transition: fill 0.3s;
}
.services .icon-box .icon i {
  font-size: 36px;
  position: relative;
  color: var(--icon-color);
  transition: color 0.3s;
}
.services .icon-box h4 {
  font-weight: 600;
  margin: 10px 0 15px 0;
  font-size: 22px;
}
.services .icon-box h4 a {
  color: #45505b;
  transition: ease-in-out 0.3s;
}
.services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.services .icon-box:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: #fff;
}
.services .icon-box:hover .icon i {
  color: #fff;
}
.services .icon-box:hover .icon svg path {
  fill: var(--icon-color);
}

/* Client Work Layout */
#grid-section .container-fluid {
  background-color: #9ebccd;
  background-image: url("../img/background-2.png");
  padding: 40px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.grid-section {
  padding: 0;
}

.logo-img {
  position: relative;
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.15));
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
  z-index: 2;
}
.logo-img.logo-big {
  width: 300px !important;
  height: 300px !important;
  max-width: 300px !important;
  max-height: 300px !important;
}

.grid-square {
  min-height: 450px;
  cursor: pointer;
  position: relative;
  border: 3px dashed #999;
  /* Dashed “cut-out lines” look */
  overflow: hidden;
}
.grid-square .logo-img {
  z-index: 10;
}
.grid-square .logo-img:hover {
  transform: scale(1.2);
  /* Enlarges the logo to 120% */
  filter: drop-shadow(0px 4px 10px rgba(0, 0, 0, 0.3));
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.portfolio-details .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* --- Image Slider --- */
.portfolio-details-slider {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details-slider .swiper-slide img {
  width: 100%;
}

/* --- Text Content Column --- */
.portfolio-info {
  padding: 0;
  box-shadow: none;
  background: none;
}

.portfolio-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.portfolio-info h2 {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.portfolio-info ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  font-size: 14px;
  line-height: 1.6;
}

.portfolio-info ul li {
  padding-bottom: 8px;
}

.portfolio-info ul strong {
  display: inline-block;
  min-width: 100px;
  color: #333;
}

/* --- Description & Tech Stack --- */
.portfolio-description {
  margin-top: -20px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.portfolio-description h5 {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 15px;
}

.portfolio-description ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.7;
  color: #666;
}

.portfolio-description ul li {
  padding-bottom: 10px;
}

/* 1. Barbie */
.grid-square:nth-child(1) {
  background-color: #FF3EB5;
  background-image: url("../img/client-work/barbie-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 62, 181, 0.6);
  pointer-events: none;
}

/* 2. Minor Figures */
.grid-square:nth-child(2) {
  background-color: #09428f;
  background-image: url("../img/client-work/minor-figures-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 66, 143, 0.6);
  pointer-events: none;
}

/* 3. Mikes Hard Lemonade */
.grid-square:nth-child(3) {
  background-image: url("../img/client-work/mikes-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(3)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 0, 0.549);
  pointer-events: none;
}

/* 4. Jam Shed */
.grid-square:nth-child(4) {
  background-color: #FFDAB9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(4)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 0, 89, 0.681);
  z-index: 1;
  pointer-events: none;
}

/* 5. Skittles */
.grid-square:nth-child(5) {
  background-image: url("../img/client-work/skittles-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(5)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(211, 180, 175, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* 6. Pop works */
.grid-square:nth-child(6) {
  background-image: url("../img/client-work/popworks-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(6)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(231, 189, 201, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 7. Malfy Gin */
.grid-square:nth-child(7) {
  background-image: url("../img/client-work/malfy-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(7)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(52, 183, 216, 0.6);
  z-index: 1;
  pointer-events: none;
}

/* 8. Terlato */
.grid-square:nth-child(8) {
  background-image: url("../img/client-work/terlato-bgg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(8)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(149, 140, 116, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 9. Laphroaig */
.grid-square:nth-child(9) {
  background-image: url("../img/client-work/laphroaig-bg.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(9)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(207, 205, 205, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 10. Coca-cola */
.grid-square:nth-child(10) {
  background-image: url("../img/client-work/coca-cola-bg.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(10)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(220, 101, 101, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 11. Monster */
.grid-square:nth-child(11) {
  background-image: url("../img/client-details/monster/monster-1.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(11)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(148, 193, 31, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 12. Snickers */
.grid-square:nth-child(12) {
  background-image: url("../img/client-work/snickers-bg2.png");
  background-size: 150%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(12)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(62, 19, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 13. Lego */
.grid-square:nth-child(13) {
  background-image: url("../img/client-work/lego-bg.jpg");
  background-size: 150%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(13)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 236, 62, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 14. Smyths */
.grid-square:nth-child(14) {
  background-image: url("../img/client-work/smyths-bg.jpg");
  background-size: 150%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(14)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 134, 175, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 15. Whitworths */
.grid-square:nth-child(15) {
  background-image: url("../img/client-work/whitworths-bg.png");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(15)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(237, 27, 77, 0.7), rgba(237, 29, 143, 0.7));
  z-index: 1;
  pointer-events: none;
}

/* 16. Richmond */
.grid-square:nth-child(16) {
  background-image: url("../img/client-work/richmond-bg-2.png");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(16)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 245, 189, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 17. Rubicon */
.grid-square:nth-child(17) {
  background-image: url("../img/client-work/rubicon-bg.jpg");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(17)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 177, 0, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 18. Pepsi */
.grid-square:nth-child(18) {
  background-image: url("../img/client-work/pepsi-bg.jpg");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(18)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 22, 137, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 19. Tropicana */
.grid-square:nth-child(19) {
  background-image: url("../img/client-work/tropicana-bg.jpg");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(19)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 108, 52, 0.847);
  z-index: 1;
  pointer-events: none;
}

/* 20. Doritos */
.grid-square:nth-child(20) {
  background-image: url("../img/client-work/doritos-bg.jpg");
  background-size: 100%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(20)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(206, 60, 55, 0.788);
  z-index: 1;
  pointer-events: none;
}

/* 21. Jammy Drop */
.grid-square:nth-child(21) {
  background-image: url("../img/client-work/jammy-bg-1.png");
  background-color: #FFDAB9;
  background-size: cover;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(21)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(213, 0, 89, 0.681);
  z-index: 1;
  pointer-events: none;
}

/* 22. Lipton */
.grid-square:nth-child(22) {
  background-image: url("../img/client-work/lipton-bg.jpg");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(22)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(200, 181, 68, 0.647);
  z-index: 1;
  pointer-events: none;
}

/* 23. Dolmio */
.grid-square:nth-child(23) {
  background-image: url("../img/client-work/dolmio-bg.webp");
  background-size: 200%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(23)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 195, 98, 0.7);
  z-index: 1;
  pointer-events: none;
}

/* 24. Diet Coke */
.grid-square:nth-child(24) {
  background-image: url("../img/client-work/diet-coke-bg.webp");
  background-size: 150%;
  background-position: center;
  position: relative;
}

.grid-square:nth-child(24)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(191, 218, 200, 0.583);
  z-index: 1;
  pointer-events: none;
}

/* Brands Section */
.brands {
  padding: 60px 0;
  background: linear-gradient(to bottom, rgb(164, 188, 203) 0%, rgb(240, 234, 214) 50%, rgb(144, 168, 183) 100%);
  color: #333;
}
.brands .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 40px;
  position: relative;
  color: #444;
}
.brands .brands-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.brands .brands-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.brands .brands-list li {
  margin: 15px;
}
.brands .brands-list img {
  max-width: 150px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.brands .brands-list img:hover {
  opacity: 1;
}

/* A.I Section */
.ai-section {
  background-color: #e9ecef;
  padding: 80px 0;
}

.ai-project-card {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 100px;
  background: linear-gradient(to top, #f8f9fa, #ffffff);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ai-project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.ai-project-card .ai-project-image {
  flex: 1 1 55%;
  padding: 30px;
}
.ai-project-card .ai-project-image img {
  width: 100%;
  border-radius: 6px;
}
.ai-project-card .ai-project-content {
  flex: 1 1 45%;
  padding: 40px 50px;
}
.ai-project-card .ai-project-content h4 {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0563bb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ai-project-card .ai-project-content h3 {
  font-family: "Raleway", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 20px;
}
.ai-project-card .ai-project-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}
.ai-project-card.alt-layout {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .ai-project-card {
    flex-direction: column;
  }
  .ai-project-card.alt-layout {
    flex-direction: column;
  }
  .ai-project-card .ai-project-content {
    padding: 30px;
  }
}

/* Dropdown Styles */
.btn-view-project {
  background: #0563bb;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
}
.btn-view-project:hover {
  background: rgb(4.3359375, 85.8515625, 162.1640625);
  color: #fff;
}
.btn-view-project .icon-arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.btn-view-project.active .icon-arrow {
  transform: rotate(180deg);
}

.ai-project-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, margin-top 0.5s ease-in-out;
  margin-top: 0;
}
.ai-project-details.expanded {
  max-height: 500px;
  margin-top: 30px;
}
.ai-project-details h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}
.ai-project-details ul {
  list-style: none;
  padding-left: 0;
}
.ai-project-details ul li {
  font-size: 15px;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Projects */
.goverlay {
  background: linear-gradient(to bottom, rgba(164, 188, 203, 0.95) 0%, rgba(240, 234, 214, 0.95) 100%);
}

.project-details-content {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  max-width: 900px;
  margin: 0 auto;
}
.project-details-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 5px;
}
.project-details-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0563bb;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.project-details-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.project-details-content h5 {
  font-size: 14px;
  font-weight: 700;
  color: #555;
  margin-bottom: 10px;
}
.project-details-content p {
  color: #555;
}

/* Portfolio Accordion Gallery */
.portfolio.section-bg {
  background: linear-gradient(to bottom, rgb(164, 188, 203) 0%, rgb(240, 234, 214) 50%, rgb(144, 168, 183) 100%);
  padding-bottom: 0;
}
.portfolio.section-bg .section-title h2,
.portfolio.section-bg .section-title p {
  color: #45505b;
}

.accordion-gallery-full {
  display: flex;
  width: 100%;
  height: 75vh;
}

.accordion-panel {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  filter: grayscale(80%) brightness(0.5);
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s ease-in-out;
}
.accordion-panel::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(44, 62, 80, 0.65) 0%, rgba(44, 62, 80, 0) 60%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: 1;
}
.accordion-panel a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.accordion-panel .panel-icon {
  font-size: 48px;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.accordion-panel h3 {
  color: #fff;
  font-size: 28px;
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out 0.2s, transform 0.4s ease-out 0.2s;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.accordion-panel.active {
  flex: 5;
  filter: grayscale(0%) brightness(1);
}
.accordion-panel.active::after {
  opacity: 1;
}
.accordion-panel.active .panel-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.accordion-panel.active h3 {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion Mobile (Vertical) View */
@media (max-width: 768px) {
  .accordion-gallery-full {
    display: block;
    height: auto;
  }
  .accordion-panel,
  .accordion-panel.active {
    flex-grow: 1;
    aspect-ratio: 4/3;
    width: 100%;
    margin-bottom: 0;
    border-radius: 0;
    filter: none;
  }
  .accordion-panel::after,
  .accordion-panel.active::after {
    opacity: 1;
    background: linear-gradient(to top, rgba(44, 62, 80, 0.8) 0%, rgba(44, 62, 80, 0.1) 70%);
  }
  .accordion-panel h3,
  .accordion-panel .panel-icon,
  .accordion-panel.active h3,
  .accordion-panel.active .panel-icon {
    opacity: 1;
    transform: none;
  }
  .accordion-panel h3,
  .accordion-panel.active h3 {
    bottom: 25px;
    font-size: 24px;
  }
  .accordion-panel .panel-icon,
  .accordion-panel.active .panel-icon {
    transform: translate(-50%, -50%);
    font-size: 44px;
  }
  .portfolio.section-bg {
    background: linear-gradient(to bottom, #e9ecef, #dee2e6);
  }
}
/* Portfolio Details (Inside pop-up modal) */
.portfolio-details .portfolio-details-slider {
  height: 80vh;
  position: relative;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-details-slider .swiper-slide {
  height: 100%;
  text-align: center;
}
.portfolio-details .portfolio-details-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.portfolio-details .portfolio-details-slider .swiper-button-next,
.portfolio-details .portfolio-details-slider .swiper-button-prev {
  top: 50%;
  width: 44px;
  height: 44px;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}
.portfolio-details .portfolio-details-slider .swiper-button-next:hover,
.portfolio-details .portfolio-details-slider .swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.portfolio-details .portfolio-details-slider .swiper-button-next::after,
.portfolio-details .portfolio-details-slider .swiper-button-prev::after {
  font-size: 20px;
  font-weight: 900;
}
.portfolio-details .portfolio-info {
  padding-left: 15px;
}
.portfolio-details .portfolio-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.portfolio-details .portfolio-info h2 {
  font-family: "Raleway", sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}
.portfolio-details .portfolio-info ul {
  line-height: 1.6;
}
.portfolio-details .portfolio-info ul a {
  word-break: break-all;
}
.portfolio-details .portfolio-info .small-text {
  line-height: 1.7;
  font-size: 15px;
}

/* Resume */
.resume .resume-title {
  font-size: 26px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #45505b;
}
.resume .resume-item {
  padding: 0 0 20px 20px;
  margin-top: -2px;
  border-left: 2px solid #0563bb;
  position: relative;
}
.resume .resume-item h4 {
  line-height: 18px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #0563bb;
  margin-bottom: 10px;
}
.resume .resume-item h5 {
  font-size: 16px;
  background: #f7f8f9;
  padding: 5px 15px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 10px;
}
.resume .resume-item ul {
  padding-left: 20px;
}
.resume .resume-item ul li {
  padding-bottom: 10px;
}
.resume .resume-item:last-child {
  padding-bottom: 0;
}
.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50px;
  left: -9px;
  top: 0;
  background: #fff;
  border: 2px solid #0563bb;
}

.Resume-background-section {
  background-image: url("../img/background-about.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.9;
  padding-bottom: 800px;
}

/* Resume Accordion Details */
.details-toggle {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0563bb;
  cursor: pointer;
  transition: color 0.3s;
}
.details-toggle:hover {
  color: rgb(5.6640625, 112.1484375, 211.8359375);
}
.details-toggle i {
  display: inline-block;
  transition: transform 0.3s;
}
.details-toggle.active i {
  transform: rotate(180deg);
}

.resume-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out;
  margin-top: 0;
}
.resume-details.expanded {
  max-height: 500px;
  margin-top: 15px;
}

/* Skills Section */
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 10px 0;
  margin: 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #45505b;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #f2f3f5;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #0563bb;
}

/* Referrals */
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #90c8fc;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #0563bb;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0563bb;
}

/* Contact Section */
.contact .info {
  width: 100%;
  background: #fff;
}
.contact .info i {
  font-size: 20px;
  color: #0563bb;
  float: left;
  width: 44px;
  height: 44px;
  background: #eef7ff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45505b;
}
.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #728394;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #0563bb;
  color: #fff;
}
.contact .php-email-form {
  width: 100%;
  background: #fff;
}
.contact .php-email-form .form-group {
  padding-bottom: 8px;
}
.contact .php-email-form .error-message {
  display: none !important;
  opacity: 0;
  color: #fff;
  background: #28a745;
  text-align: left;
  padding: 15px;
  font-weight: 600;
  transition: 0.2s;
}
.contact .php-email-form .error-message.success {
  display: unset !important;
}
.contact .php-email-form .error-message.open {
  max-height: 5000px;
  opacity: 1;
}
.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #28a745;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .php-email-form .loading::before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #28a745;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email] {
  height: 44px;
}
.contact .php-email-form textarea {
  padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
  background: #0563bb;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form button[type=submit]:hover {
  background: rgb(5.6640625, 112.1484375, 211.8359375);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Footer */
#footer {
  background: #f7f8f9;
  color: #45505b;
  font-size: 14px;
  text-align: center;
  padding: 30px 0;
}
#footer h3 {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding: 0;
  margin: 0 0 15px 0;
}
#footer p {
  font-size: 15px;
  font-style: italic;
  padding: 0;
  margin: 0 0 40px 0;
}
#footer .social-links {
  margin: 0 0 40px 0;
}
#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #0563bb;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .social-links a:hover {
  background: rgb(5.6640625, 112.1484375, 211.8359375);
  color: #fff;
  text-decoration: none;
}
#footer .copyright {
  margin: 0 0 5px 0;
}
#footer .credits {
  font-size: 13px;
}
