:root {
  --color-primary: #2563EB;
  --color-secondary: #1F2937;
  --color-background-light: #F9FAFB;
  --color-text-dark: #111827;
  --color-text-medium: #6B7280;
  --color-text-light: #D1D5DB;
  --color-white: #ffffff;
  --color-blue-light: #BFDBFE;
  --color-purple: #9333EA;
  --color-orange: #EA580C;
  --color-green: #10B981;
  --color-red: #EF4444;
  --color-teal: #0D9488;

  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
  font-family: 'Outfit', sans-serif;
  color: var(--color-text-dark);
  -webkit-font-smoothing: antialiased;
  background-color: var(--color-white);
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  padding-bottom: 0 !important;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;

  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
    /* lg:px-8 */
  }
}

.header-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  margin-left: 4px;
  display: flex;
  align-items: center;
}

.section-tag {
  color: var(--color-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;

}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: rgb(0, 0, 0);
  line-height: 1.25;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;

  }
}

.section-subtitle {
  font-size: 1.25rem;

  color: var(--color-text-medium);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  text-align: center;
  margin-bottom: 4rem;
  margin-top: 4rem;
}



.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-weight: 700;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.cta-btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.1), 0 4px 6px -2px rgba(37, 99, 235, 0.05);
}

.cta-btn--primary:hover {
  background-color: #1D4ED8;

}

.cta-btn--secondary {
  background-color: rgba(255, 255, 255, 0.1);

  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.3);

  backdrop-filter: blur(8px);

}

.cta-btn--secondary:hover {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  border-color: var(--color-white);
}

.cta-btn--white {
  background-color: var(--color-white);
  color: var(--color-text-dark);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cta-btn--white:hover {
  background-color: #F3F4F6;

}

/*

2. NAVIGATION BAR 

*/
.m-nav {
  background-color: #ffffff;
  box-shadow: var(--shadow-base);
  position: fixed;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease;
}

.nav-content {
  height: 6rem;

}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

/* Logo */
.nav-logo-wrap {
  display: flex;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon-bg {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.site-logo:hover .logo-icon-bg {
  background-color: var(--color-secondary);
}

.logo-icon-bg i {
  font-size: 1.5rem;
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
  color: var(--color-secondary);
}

.logo-text-footer {
  color: white;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

/* Desktop Menu */
.nav-menu__desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;

}

@media (min-width: 768px) {
  .nav-menu__desktop {
    display: flex;
  }
}

.nav-menu__link {
  color: var(--color-text-medium);
  transition: color 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.nav-menu__link:hover {
  color: var(--color-primary);
}

.nav-menu__cta-btn {
  padding: 0.75rem 1.5rem;
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 9999px;

  box-shadow: var(--shadow-lg);
}

.nav-menu__cta-btn:hover {
  background-color: var(--color-primary);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.05);

}

/* Mobile Toggle */
.mob-menu-toggle-wrap {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .mob-menu-toggle-wrap {
    display: none;
  }
}

.mob-nav-toggle {
  color: var(--color-text-medium);
  padding: 0.5rem;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

.mob-nav-toggle:hover {
  color: var(--color-secondary);
}

.mob-nav-toggle i {
  font-size: 1.5rem;
}

/* Mobile Menu Panel */
.mob-menu-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 20rem;
  background-color: var(--color-white);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 50;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;


  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(100%);
}

.mob-menu-panel.open {
  transform: translateX(0);
}

.mob-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  /* mb-12 */
}

.mob-menu-title {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.025em;
}

.mob-menu-close {
  color: var(--color-text-light);
  transition: color 0.3s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.mob-menu-close:hover {
  color: var(--color-secondary);
}

.mob-menu-close i {
  font-size: 1.875rem;

}

.mob-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;

}

.mob-menu__link {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  color: #374151;
  transition: color 0.3s ease;
}

.mob-menu__link:hover {
  color: var(--color-primary);
}

.mob-menu__link--cta {
  width: 100%;
  display: block;
  text-align: center;
  padding: 1rem 0;

  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 0.5rem;
  font-size: 1.125rem;
}

.mob-menu__link--cta:hover {
  background-color: #1E40AF;

}

/*
======================================
3. HERO SLIDER SECTION 
======================================
*/
.hero-section {
  position: relative;
  padding-top: 0;
}

.h-slide-wrap {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.h-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-size: cover;
  background-position: center;
}

.h-slide--active {
  opacity: 1;
}

/* Gradient Overlay for better text readability on images */
.h-slide__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-white);
  padding: 0 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.2));
}

.h-slide__max-width {
  max-width: 56rem;
}

.h-slide__tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.h-slide__title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .h-slide__title {
    font-size: 4.5rem;
  }
}

.h-slide__title-highlight {
  background-image: linear-gradient(to right, #60A5FA, #5EEAD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.h-slide__desc {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  color: #E5E7EB;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .h-slide__desc {
    font-size: 1.5rem;
  }
}

.h-slide__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .h-slide__ctas {
    flex-direction: row;
  }
}

.h-slide__controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .h-slide__controls {
    padding: 0 2rem;
  }
}

.slide-btn {
  pointer-events: auto;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.2);
  color: var(--color-white);
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  z-index: 20;
  cursor: pointer;
  outline: none;
}

.slide-btn:hover {
  background-color: var(--color-white);
  color: var(--color-secondary);
}

.h-slide__indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.indicator {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.3s ease;
  cursor: pointer;
  border: none;
  outline: none;
}

.indicator.bg-white {
  background-color: var(--color-white);
}

/*SERVICES SECTION */

.services-section {
  background-color: var(--color-background-light);
}

.services-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .services-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.services-header-content {
  max-width: 42rem;
}

.all-capabilities-link {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  transition: color 0.3s ease;
  margin-top: 1rem;
  text-decoration: none;
}

.all-capabilities-link:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .all-capabilities-link {
    display: inline-flex;
    margin-top: 0;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem auto;
  width: 100%;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.srv-card {
  padding: 2.5rem;
  background-color: var(--color-white);
  border-radius: 1.5rem;
  border: 1px solid #F3F4F6;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.srv-card:hover {
  transform: translateY(-0.625rem);

  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.srv-card__bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;

  height: 8rem;

  border-bottom-left-radius: 9999px;

  margin-right: -2.5rem;

  margin-top: -2.5rem;

  transition: transform 0.4s ease, background-color 0.4s ease;
}

.srv-card:hover .srv-card__bg {
  transform: scale(1.5);
}

.srv-card__bg--blue {
  background-color: #EFF6FF;
}


.srv-card--blue:hover .srv-card__bg--blue {
  background-color: #DBEAFE;
}



.srv-card__bg--purple {
  background-color: #FAF5FF;
}

.srv-card--purple:hover .srv-card__bg--purple {
  background-color: #EDE9FE;
}



.srv-card__bg--orange {
  background-color: #FFF7ED;
}


.srv-card--orange:hover .srv-card__bg--orange {
  background-color: #FFEDD5;
}



.srv-card__bg--green {
  background-color: #ECFDF5;
}


.srv-card--green:hover .srv-card__bg--green {
  background-color: #D1FAE5;
}


.srv-card__bg--red {
  background-color: #FEF2F2;
}

.srv-card--red:hover .srv-card__bg--red {
  background-color: #FEE2E2;
}


.srv-card__bg--teal {
  background-color: #F0FCFF;
}

.srv-card--teal:hover .srv-card__bg--teal {
  background-color: #CCFBF1;
}




/* Service icon */
.srv-card__icon {
  width: 4rem;

  height: 4rem;
  color: var(--color-white);
  border-radius: 1rem;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;

  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.srv-card:hover .srv-card__icon {
  transform: scale(1.1) rotate(5deg);
}

.srv-card__icon i {
  font-size: 1.5rem;
}

/* Colors for Icons */
.srv-card__icon--blue {
  background-color: var(--color-primary);
  box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3), 0 4px 6px -2px rgba(37, 99, 235, 0.05);
}

.srv-card__icon--purple {
  background-color: var(--color-purple);
  box-shadow: 0 10px 15px -3px rgba(147, 51, 234, 0.3), 0 4px 6px -2px rgba(147, 51, 234, 0.05);

}

.srv-card__icon--orange {
  background-color: var(--color-orange);
  box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3), 0 4px 6px -2px rgba(234, 88, 12, 0.05);

}

.srv-card__icon--green {
  background-color: var(--color-green);
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3), 0 4px 6px -2px rgba(16, 185, 129, 0.05);

}

.srv-card__icon--red {
  background-color: var(--color-red);
  box-shadow: 0 10px 15px -3px rgba(239, 68, 68, 0.3), 0 4px 6px -2px rgba(239, 68, 68, 0.05);

}

.srv-card__icon--teal {
  background-color: var(--color-teal);
  box-shadow: 0 10px 15px -3px rgba(13, 148, 136, 0.3), 0 4px 6px -2px rgba(13, 148, 136, 0.05);

}


.srv-card__title {
  font-size: 1.5rem;

  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
}

.srv-card__desc {
  color: #6B7280;

  line-height: 1.625;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 10;
}

.srv-card__features {
  list-style: none;
  margin-bottom: 2rem;

  position: relative;
  z-index: 10;
  color: var(--color-text-medium);
  font-size: 0.875rem;

  font-weight: 500;
}

.srv-card__feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.srv-card__feature i {
  font-size: 0.875rem;
}

/* Checkmark Colors */
.check-blue {
  color: var(--color-primary);
}

.check-purple {
  color: var(--color-purple);
}

.check-orange {
  color: var(--color-orange);
}

.check-green {
  color: var(--color-green);
}

.check-red {
  color: var(--color-red);
}

.check-teal {
  color: var(--color-teal);
}


/* Card Link */
.srv-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  z-index: 10;
}

.srv-card__link i {
  margin-left: 0.5rem;
  font-size: 0.75rem;

  transition: margin-left 0.3s ease;
}

.srv-card__link:hover i {
  margin-left: 0.75rem;
}

/* Link Colors */
.srv-card__link--blue {
  color: var(--color-primary);
}

.srv-card__link--purple {
  color: var(--color-purple);
}

.srv-card__link--orange {
  color: var(--color-orange);
}

.srv-card__link--green {
  color: var(--color-green);
}

.srv-card__link--red {
  color: var(--color-red);
}

.srv-card__link--teal {
  color: var(--color-teal);
}


/* TESTIMONIALS SECTION */

.testimonials-section {
  background-color: var(--color-background-light);
}

.test-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .test-content-wrap {
    flex-direction: row;
    align-items: flex-start;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.test-header-wrap {
  flex-shrink: 0;
  width: 100%;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .test-header-wrap {
    width: 33.333333%;
  }

}

.test-header-wrap .section-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.test-header-wrap .section-subtitle {
  margin-bottom: 2rem;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

.test-controls {
  display: flex;
  gap: 1rem;
}

.test-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  outline: none;
  cursor: pointer;
}

.test-btn--prev {
  border: 1px solid #D1D5DB;
  background-color: var(--color-background-light);
}

.test-btn--prev i {
  color: var(--color-text-medium);
}

.test-btn--prev:hover {
  background-color: var(--color-white);
  box-shadow: var(--shadow-base);
}

.test-btn--prev:active {
  background-color: #F3F4F6;
}

.test-btn--next {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border: none;
}

.test-btn--next:hover {
  background-color: #374151;
  box-shadow: var(--shadow-base);
}

.test-btn--next:active {
  background-color: #000000;
}

/* Testimonial Slider */
.test-track-wrap {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .test-track-wrap {
    width: 66.666667%;
  }
}

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

.test-slide {
  width: 100%;
  flex-shrink: 0;
  padding: 0 0.75rem;
}

@media (min-width: 640px) {
  .test-slide {
    width: 50%;
  }
}

.test-card {
  background-color: var(--color-white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #F3F4F6;
  height: 100%;
}

.test-card__stars {
  display: flex;
  gap: 0.25rem;
  color: #FBBF24;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.test-card__quote {
  color: #4B5563;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.625;
}

.test-card__client-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.test-card__client-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  object-fit: cover;
}

.test-card__name {
  font-weight: 700;
  color: var(--color-secondary);
  font-size: 0.875rem;
}

.test-card__title {
  font-size: 0.75rem;
  color: #6B7280;
}

/* ================================
   FINAL CONTACT SECTION (PREMIUM)
   ================================ */

.final-contact {
  padding: 6rem 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.contact-title {
  font-size: 3rem !important;
  font-weight: 700;
  color: #111 !important;
  /* black text for your white theme */
}

.contact-subtitle {
  max-width: 600px;
  margin: 0 auto;
  color: #555;
  font-size: 1.2rem;
}

/* --- Info Cards Grid --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem auto;
}

.info-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  /* light gray border */
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: .3s ease;
}

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

.info-card i {
  font-size: 2.3rem;
  color: #2563eb;
  /* your blue theme */
  margin-bottom: 1rem;
}

.info-card h4 {
  font-size: 1.3rem;
  margin-bottom: .3rem;
  font-weight: 700;
}

.info-card p {
  margin-bottom: .5rem;
  color: #444;
}

.info-card a {
  text-decoration: none;
  font-weight: 600;
  color: #2563eb;
}

.info-card a:hover {
  color: #1e40af;
}

/* --- CTA Button --- */
.contact-cta-wrap {
  text-align: center;
  margin-top: 2rem;
}

.whatsapp-btn {
  background: #25D366;
  color: #fff !important;
  padding: 1.2rem 2.6rem;
  font-size: 1.25rem;
  border-radius: .8rem;
  display: inline-block;
  font-weight: 700;
  transition: .3s ease;
}

.whatsapp-btn:hover {
  background: #1ebe5c;
  transform: translateY(-4px);
}

/* --- Mobile Tweaks --- */
@media (max-width: 640px) {
  .contact-title {
    font-size: 2.3rem !important;
  }

  .contact-subtitle {
    font-size: 1.1rem;
  }
}

/* ===============================
   FINAL PREMIUM FOOTER
================================ */

.final-footer {
  background: #f3f4f6;
  /* clean light grey */
  padding: 4rem 0 2rem;
  color: #1f2937;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.footer-desc {
  color: #4b5563;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.footer-social a {
  font-size: 1.2rem;
  color: #374151;
  margin-right: 0.8rem;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #2563eb;
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 1rem;
}

.footer-list li {
  list-style: none;
  margin-bottom: 0.5rem;
}

.footer-list a {
  color: #4b5563;
  text-decoration: none;
  transition: 0.3s;
}

.footer-list a:hover {
  color: #2563eb;
}

.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid #d1d5db;
  color: #6b7280;
}

.footer-bottom p {
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .footer-grid {
    text-align: left;
  }
}

a,
a:hover,
a:focus {
  text-decoration: none !important;
}


/* PORTFOLIO SECTION */
.projects-section {
  background: var(--color-white);
}

.projects-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--color-text-light);
  background: var(--color-white);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* GRID */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  background: var(--color-background-light);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
  height: 360px;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

/* IMAGE / VIDEO */
.portfolio-thumb {
  width: 100%;
  height: 220px;
  background-size: cover;
  background-position: center;
}

.video-wrapper video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  color: var(--color-text-medium);
}

/* APPLY ONLY TO REEL (does not touch other items) */
.portfolio-item[data-category="reel"] {
  height: auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  background: none !important;
  box-shadow: none !important;
}

/* Wrapper */
.portfolio-item[data-category="reel"] .video-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}


.portfolio-item[data-category="reel"] .video-wrapper video {
  width: 80% !important;
  height: 460px !important;
  object-fit: cover;
  border-radius: 1rem;
}

/* Info section also centered to 80% */
.portfolio-item[data-category="reel"] .portfolio-info {
  width: 80%;
  margin-top: 0.5rem;
}

.services-grid {
  margin: 2rem 0 !important;
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)) !important;
  gap: 2rem !important;
  width: 100% !important;
  padding: 0px 40px 0px 40px;
}

.srv-card {
  display: flex;
  flex-direction: column;
}

.srv-card__desc {
  min-height: 60px;
}

.srv-card__features {
  margin-top: auto;
}

/* Modern Upgrade Additions */

.srv-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  transition: all .35s ease;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.srv-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.15);
}

/* Gradient Glow Behind Icon */
.srv-card__icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.25), transparent 70%);
  z-index: -1;
}

/* Price Tag */
.price-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: .4rem .9rem;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--color-secondary);
}

/* Entrance Animation */
.srv-card {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp .8s forwards;
}

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

.video-wrapper video {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
