:root {
  --clr-bg: #FFFFFF;
  --clr-text: #1a202c;
  --clr-text-light: #4a5568;
  --clr-primary: #0072CE;
  /* Blue accent */
  --clr-secondary: #025c64;
  /* Dark Teal */
  --clr-accent-red: #e53e3e;
  --clr-accent-yellow: #ecc94b;
  --clr-accent-green: #38a169;

  --font-main: 'Outfit', sans-serif;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(135deg, var(--clr-secondary), #0072ce);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #0072ce, #0056a0);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 114, 206, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 114, 206, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #0072ce;
  color: #0072ce;
}

.btn-outline:hover {
  background: #0072ce;
  color: #fff;
}

/* ===================
   COMPONENTS
   =================== */

/* --- Navbar --- */
/* --- Navbar --- */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar .logo a {
  display: flex;
  align-items: center;
}

.navbar-logo {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  position: relative;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #0072ce;
  transition: var(--transition);
}

.nav-links a:not(.btn):hover::after,
.nav-links a.active:not(.btn)::after {
  width: 100%;
}

.nav-links a.active {
  color: #0072ce;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--clr-text);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(0, 114, 206, 0.1);
  color: #0072ce;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 114, 206, 0.2);
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  color: var(--clr-secondary);
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--clr-text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
}

/* Hero Graphics & Animations */
.hero-imagery {
  position: relative;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  opacity: 0.6;
}

.blur-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 114, 206, 0.3);
  top: -10%;
  right: -5%;
}

.blur-2 {
  width: 300px;
  height: 300px;
  background: rgba(2, 92, 100, 0.2);
  bottom: 0;
  left: 20%;
}

.graphic-element {
  position: absolute;
  border-radius: 20px;
  background: linear-gradient(135deg, #0072ce, #0056a0);
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 250px;
  height: 350px;
  transform: rotate(-15deg);
  z-index: 1;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #10b981, #059669);
  right: 10%;
  bottom: 10%;
  border-radius: 50%;
  animation-delay: 1s;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-glass);
}

.hero-card {
  position: absolute;
  bottom: 15%;
  left: 0;
  z-index: 3;
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: float 5s ease-in-out infinite reverse;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: #0072ce;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 114, 206, 0.4);
}

.card-info strong {
  display: block;
  font-size: 1.1rem;
  color: var(--clr-secondary);
}

.card-info span {
  font-size: 0.9rem;
  color: var(--clr-text-light);
}

/* --- Features Section --- */
.features {
  padding: 6rem 0;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--clr-secondary);
}

.section-header p {
  color: var(--clr-text-light);
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0072ce;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.icon-blue {
  background: rgba(0, 114, 206, 0.1);
  color: #0072ce;
}

.icon-teal {
  background: rgba(2, 92, 100, 0.1);
  color: var(--clr-secondary);
}

.icon-yellow {
  background: rgba(236, 201, 75, 0.15);
  color: #d69e2e;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--clr-secondary);
}

.feature-card p {
  color: var(--clr-text-light);
}

/* --- Services / Portfolio Section --- */
.services {
  padding: 8rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-item {
  position: relative;
  height: 250px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--clr-bg);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 114, 206, 0.9), rgba(2, 92, 100, 0.9));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.service-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.service-item:hover .service-bg {
  opacity: 1;
  transform: scale(1);
}

.service-content {
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.service-icon {
  font-size: 3rem;
  color: #0072ce;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.service-item h3 {
  font-size: 1.25rem;
  color: var(--clr-text);
  transition: var(--transition);
}

.service-item:hover::before {
  opacity: 1;
}

.service-item:hover .service-icon,
.service-item:hover h3 {
  color: white;
  transform: translateY(-5px);
}

/* --- Clients Marquee Section --- */
.clients-marquee-section {
  padding: 2rem 0;
  background-color: var(--clr-light);
  overflow: hidden;
}

.marquee-header {
  text-align: center;
  margin-bottom: 2rem;
}

.marquee-header h2 {
  font-size: 2rem;
  color: var(--clr-secondary);
}

.marquee-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: white;
  padding: 1rem 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) inset;
}

.clients-marquee {
  display: flex;
  width: max-content;
  animation: scroll-marquee 65s linear infinite;
}

.clients-marquee:hover {
  animation-play-state: paused;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 0 2rem;
}

.logo-ind {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.logo-ind:hover {
  transform: scale(1.1);
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-ind {
    height: 45px;
    max-width: 150px;
  }

  .marquee-track {
    gap: 2.5rem;
    padding: 0 1.25rem;
  }

  .clients-marquee {
    animation-duration: 40s;
  }
}

/* --- CTA Section --- */
.cta-section {
  padding: 6rem 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(0, 114, 206, 0.05), rgba(2, 92, 100, 0.05));
  border-radius: 24px;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--clr-secondary);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--clr-text-light);
}

/* --- Click2Print Section --- */
.click2print-section {
  padding: 6rem 0;
  background-color: var(--clr-bg);
}

.click2print-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: #f8fafc;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.click2print-content h2 {
  font-size: 2.5rem;
  color: var(--clr-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.click2print-content p {
  font-size: 1.1rem;
  color: var(--clr-text-light);
  margin-bottom: 1rem;
}

.click2print-features {
  margin: 2rem 0;
}

.click2print-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.click2print-icon-wrapper {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 114, 206, 0.1);
  color: #0072ce;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.click2print-feature-text {
  font-weight: 500;
  color: var(--clr-text);
}

.click2print-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.click2print-image-wrapper img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.click2print-image-wrapper:hover img {
  transform: translateY(-5px);
}

@media (max-width: 992px) {
  .click2print-container {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .click2print-content h2 {
    font-size: 2rem;
  }
}

/* --- Split Certifications Section --- */
.certifications-split {
  background-color: transparent;
  padding: 4rem 0;
  color: var(--clr-text);
}

.certifications-split .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.cert-group {
  display: flex;
  flex-direction: column;
}

.cert-group-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  white-space: nowrap;
}

.cert-group-header h3 {
  font-size: 1.5rem;
  font-weight: 500;
  margin: 0 1rem;
  color: var(--clr-secondary);
}

.cert-group-header::before,
.cert-group-header::after {
  content: '';
  flex: 1;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
}

.cert-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cert-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.cert-logo:hover {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .certifications-split .container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .cert-logo {
    height: 75px;
  }
}

/* --- Footer --- */
.footer {
  background: var(--clr-secondary);
  color: white;
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.brand-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.brand-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.social-links a:hover {
  background: #0072ce;
  transform: translateY(-3px);
}

.links-col h4,
.contact-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.links-col h4::after,
.contact-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0072ce;
}

.links-col ul li {
  margin-bottom: 0.8rem;
}

.links-col ul li a {
  color: rgba(255, 255, 255, 0.7);
}

.links-col ul li a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  color: #0072ce;
  font-size: 1.2rem;
  margin-top: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* --- Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.5, 0, 0, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-container {
    gap: 2rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {

  /* Typography */
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
    margin: 1.5rem auto 2rem auto;
  }

  .section-header h2,
  .about-content h2,
  .cta-content h2 {
    font-size: 2rem;
  }

  /* Spacing */
  .features,
  .services,
  .cta-section,
  .about {
    padding: 4rem 0;
  }

  .hero {
    padding-top: 120px;
  }

  .gallery-section {
    padding: 3rem 0;
  }

  .cta-box {
    padding: 2.5rem 1.5rem;
  }

  .feature-card {
    padding: 2rem 1.5rem;
  }

  /* Grids and Layouts */
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .hero-cta .btn {
    width: 100%;
    margin-left: 0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .cta-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }

  .cta-action .btn {
    width: 100%;
    margin-left: 0 !important;
  }

  /* Header & Navigation */
  .nav-content {
    justify-content: center;
    position: relative;
  }

  .navbar-logo {
    max-height: 15vh;
    width: auto;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    position: absolute;
    right: 20px;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    flex-direction: column;
    padding-top: 2rem;
    justify-content: flex-start;
    align-items: center;
    transition: 0.4s;
  }

  .nav-links a {
    font-size: 1.5rem;
    padding: 10px;
  }

  .nav-links.active {
    left: 0;
  }

  .mobile-socials {
    display: block !important;
    margin-top: auto;
    padding-bottom: 2rem;
  }

  .mobile-socials a {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4a5568;
    position: relative;
  }

  .mobile-socials a::after {
    display: none;
  }

  /* Portfolio Grid 2 Cols Minimalist */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-item {
    height: auto;
    min-height: 150px;
    padding: 1.5rem 1rem;
    background-image: none !important;
    background: #fff;
    border: 1px solid #f0f0f0;
    flex-direction: column;
  }

  .service-bg {
    display: none;
  }

  .service-item::before {
    display: none;
  }

  .service-icon {
    color: #0072ce;
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .service-item h3 {
    color: var(--clr-text);
    font-size: 1rem;
  }

  .service-item:hover h3,
  .service-item:hover .service-icon {
    color: #0072ce;
    transform: none;
  }

  /* About Us */
  .about-content p {
    line-height: 1.6;
  }

  .about-video-wrapper {
    display: block;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }

  .whatsapp-fab .fab-text {
    display: none;
  }

  .whatsapp-fab i {
    font-size: 2rem;
    margin: 0;
  }

  /* Certifications */
  .cert-logos-row {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     align-items: center;
     justify-items: center;
  }

  .cert-logo {
    width: 100%;
    height: auto;
    max-width: 80px;
  }

  /* Footer & Accordions */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .accordion-group .accordion-content {
    display: none;
    padding-top: 1rem;
  }

  .accordion-group.active .accordion-content {
    display: block;
  }

  .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
  }

  .accordion-header i {
    transition: transform 0.3s;
  }

  .accordion-group.active .accordion-header i {
    transform: rotate(180deg);
  }

  .social-links {
    justify-content: center;
  }

  .contact-info li {
    justify-content: center;
  }

  .brand-col {
    align-items: center;
    text-align: center;
  }

  .brand-col p {
    margin: 0 auto 1.5rem auto;
  }

  /* Touch targets for links */
  .social-links a,
  .contact-info a,
  .footer-col ul li a {
    display: inline-block;
    padding: 10px;
    margin: 5px 0;
  }

  /* Carousel and Graphics */
  .product-carousel {
    height: 350px;
  }

  .product-img {
    max-height: 250px;
    margin-bottom: 30px;
  }

  .hero-card.glassmorphism {
    max-width: 90%;
    bottom: 5%;
    padding: 1rem;
    margin: 0 auto;
    left: 0;
    right: 0;
    justify-content: center;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .card-info strong {
    font-size: 0.95rem;
  }

  .card-info span {
    font-size: 0.85rem;
  }
}


/* --- Product Carousel --- */
.product-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.carousel-slide {
  overflow: visible;
  overflow: visible;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, visibility 0.8s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  z-index: 2;
}

.carousel-slide.exit {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  z-index: 1;
}

@keyframes float-tilt {
  0% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(-15px) rotate(-6deg);
  }

  100% {
    transform: translateY(0) rotate(-6deg);
  }
}

.product-img {
  max-width: 90%;
  max-height: 400px;
  object-fit: contain;
  /* Animates the image so it floats like the shapes did */
  animation: float 6s ease-in-out infinite;
  z-index: 5;
  margin-bottom: 60px;
  /* Adds a soft blush glow matching the primary button to create contrast */
  filter: drop-shadow(0 0 45px rgba(0, 114, 206, 0.4));
}

/* Glassmorphism Card attached to product */
.hero-card.glassmorphism {
  position: absolute;
  bottom: 8%;
  left: 2%;
  z-index: 10;
  padding: 1.2rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
  animation: float-tilt 5s ease-in-out infinite reverse;
  width: 85%;
  max-width: 380px;
}

/* --- About Us Section --- */
.about {
  padding: 100px 0;
  background-color: var(--clr-bg);
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 3rem;
  color: var(--clr-secondary);
  margin-bottom: 1.5rem;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0072ce;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--clr-text-light);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.about-cta-wrapper {
  margin-top: 2rem;
}

.whatsapp-btn {
  background-color: #25D366;
  /* WhatsApp Official Green */
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background-color: #1EBE5A;
  box-shadow: 0 15px 25px rgba(37, 211, 102, 0.4);
}

/* --- Video Container --- */
.about-video-wrapper {
  position: relative;
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background-color: #000;
  cursor: pointer;
}

.svg-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  transition: opacity 0.5s ease, visibility 0.5s;
}

.svg-poster.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.native-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.native-video.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: -1;
}

.pulse-ring {
  transform-origin: center;
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.play-circle {
  transition: transform 0.3s ease, fill 0.3s ease;
}

.play-btn-group:hover .play-circle {
  transform: scale(1.1);
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* --- SVG Scene Animation --- */
.scene-frame {
  opacity: 0;
  animation: sceneFade 16s infinite;
}

.scene-1 {
  animation-delay: 0s;
}

.scene-2 {
  animation-delay: 4s;
}

.scene-3 {
  animation-delay: 8s;
}

.scene-4 {
  animation-delay: 12s;
}

@keyframes sceneFade {

  0%,
  20% {
    opacity: 1;
  }

  25%,
  100% {
    opacity: 0;
  }
}

/* --- Dedicated Portfolio Gallery --- */
.page-portfolio {
  background: #fdfdfd;
}

.gallery-section {
  padding: 4rem 0 8rem 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  border: 1px solid rgba(0, 114, 206, 0.2);
  background: transparent;
  color: var(--clr-secondary);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #0072ce;
  color: white;
  border-color: #0072ce;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-img-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  display: block;
}

.gallery-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(2, 92, 100, 0.95), transparent);
  color: white;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.2rem;
}

.gallery-title {
  font-size: 1.2rem;
  margin: 0;
}

/* --- Project Carousel Modal --- */
.carousel-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.carousel-modal.hidden {
  display: none;
}

.carousel-content {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-header {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: white;
}

.carousel-header span {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0072ce;
  font-weight: 600;
}

.carousel-header h2 {
  margin: 0.5rem 0 0 0;
  font-size: 2rem;
  color: white;
}

.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 1.5rem;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #0072ce;
  border-color: #0072ce;
  transform: scale(1.1);
}

.carousel-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 45px;
  height: 45px;
}

.carousel-status {
  position: absolute;
  bottom: 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  letter-spacing: 2px;
}

.gallery-count {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 114, 206, 0.6);
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  width: max-content;
}