/* ==========================================================================
   ANTA GRAVITY - CORE STYLESHEET
   Luxury, Minimal, Professional, Modern
   ========================================================================== */

/* @import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* Cascade Layers Definition - Disabled to override bootstrap unlayered selectors */
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html {
    scroll-behavior: initial; /* Managed by Lenis smooth scroll */
    -webkit-text-size-adjust: 100%;
  }

  body {
    overflow-x: hidden;
    position: relative;
  }

  :root {
    /* Design Tokens */
    --accent: #A7073D;
    --accent-rgb: 167, 7, 61;
    --accent-glow: rgba(167, 7, 61, 0.15);
    
    --bg-dark: #101828;
    --bg-dark-rgb: 16, 24, 40;
    --bg-light: #F9FAFB;
    --bg-light-rgb: 249, 250, 251;
    
    --text-primary: #101828;
    --text-secondary: #344054;
    --text-muted: #667085;
    
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    
    --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.04);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.08);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Dark mode class to override tokens */
  [data-theme="dark"] {
    --bg-light: #101828;
    --bg-light-rgb: 16, 24, 40;
    --bg-dark: #F9FAFB;
    --bg-dark-rgb: 249, 250, 251;
    
    --text-primary: #F9FAFB;
    --text-secondary: #D0D5DD;
    --text-muted: #98A2B3;
  }

  body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    transition: background-color 0.5s ease, color 0.5s ease;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.25;
  }

  a {
    color: var(--accent);
    text-decoration: none !important;
    transition: var(--transition-fast);
  }

  a:hover, a:focus, a:active {
    color: var(--text-primary);
    text-decoration: none !important;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Custom Scrollbar */
  ::-webkit-scrollbar {
    width: 8px;
  }
  ::-webkit-scrollbar-track {
    background: var(--bg-light);
  }
  ::-webkit-scrollbar-thumb {
    background: var(--text-muted);
    border-radius: 4px;
    border: 2px solid var(--bg-light);
  }
  ::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
  }

  /* Premium Preloader - White Background */
  #preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  
  .loader-logo {
    background: transparent;
    border: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    width: 180px;
    height: auto;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.85) translateY(10px);
    animation: loaderLogoReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards, loaderLogoPulse 2s 1s ease-in-out infinite alternate;
  }
  
  .loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(167, 7, 61, 0.15);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
  }
  
  .loader-progress {
    width: 0%;
    height: 100%;
    background: var(--accent);
    position: absolute;
    top: 0;
    left: 0;
    animation: loaderProgressFill 2s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
  }

  /* Mouse Follower */
  .cursor-follower {
    width: 20px;
    height: 20px;
    background: var(--accent-glow);
    border: 1px solid var(--accent);
    border-radius: 50%;
    position: fixed;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9999;
    transition: width 0.3s ease, height 0.3s ease, background 0.3s ease;
  }

  .cursor-follower.hovering {
    width: 50px;
    height: 50px;
    background: rgba(167, 7, 61, 0.05);
    border: 1.5px solid var(--accent);
  }

  /* Glassmorphism Header */
  .navbar-ag {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
  }

  .navbar-ag.sticky {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.97) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  }

  /* Nav links dark when navbar is sticky (scrolled) */
  .navbar-ag.sticky .nav-link-ag {
    color: #101828 !important;
    text-shadow: none;
    opacity: 0.85;
  }
  .navbar-ag.sticky .nav-link-ag:hover,
  .navbar-ag.sticky .nav-link-ag.active {
    color: #A7073D !important;
    opacity: 1;
  }

  .navbar-brand {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-fast);
  }

  .navbar-brand:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  }

  .navbar-brand img {
    height: 32px;
    width: auto;
    object-fit: contain;
  }

  .nav-menu-ag {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .nav-link-ag {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    padding: 8px 16px;
    position: relative;
    opacity: 0.9;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
  }

  .nav-link-ag:hover, .nav-link-ag.active {
    color: #FFFFFF;
    opacity: 1;
  }

  .nav-link-ag::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-link-ag:hover::after, .nav-link-ag.active::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Hamburger Toggle */
  .hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: none; /* Block on mobile */
  }

  .hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-fast);
  }

  /* Mega Menu Integration */
  .mega-menu-trigger {
    position: relative;
  }
  
  .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 600px;
    background: rgba(var(--bg-light-rgb), 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--bg-dark-rgb), 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .mega-menu-trigger:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
  }

  .mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
  }

  .mega-menu-item:hover {
    background: rgba(var(--accent-rgb), 0.05);
  }

  .mega-menu-icon {
    width: 36px;
    height: 36px;
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
  }

  .mega-menu-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
  }

  .mega-menu-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
  }

  /* Premium Buttons */
  .btn-ag {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 30px;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth);
  }

  .btn-ag-primary {
    background: var(--accent);
    color: #FFF;
    box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.3);
  }

  .btn-ag-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-fast);
  }

  .btn-ag-primary:hover {
    background: #FFF;
    color: var(--accent);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.25);
    transform: translateY(-2px);
    border-color: #FFF;
  }

  .btn-ag-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(var(--text-primary-rgb, 16, 24, 40), 0.15);
  }

  .btn-ag-secondary:hover {
    border-color: var(--text-primary);
    background: rgba(var(--text-primary-rgb, 16, 24, 40), 0.03);
    color: var(--text-primary);
    transform: translateY(-2px);
  }

  /* Interactive Cards */
  .card-ag {
    background: rgba(var(--bg-light-rgb), 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(var(--text-primary-rgb, 16, 24, 40), 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
  }

  .card-ag:hover {
    transform: translateY(-8px);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  }

  /* Sections common layout */
  .section-padding {
    padding: 120px 0;
  }

  .section-header {
    margin-bottom: 60px;
    max-width: 600px;
  }

  .section-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
    display: inline-block;
  }

  .section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    font-weight: 800;
  }

  .section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
  }

  /* Logo filter for dark mode compatibility */
  [data-theme="dark"] {
    --logo-filter: brightness(0) invert(1);
  }

/* Preloader Keyframes */
@keyframes loaderLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes loaderLogoPulse {
  0% { transform: scale(1) translateY(0); filter: drop-shadow(0 0 0px rgba(167,7,61,0)); }
  100% { transform: scale(1.04) translateY(-4px); filter: drop-shadow(0 6px 18px rgba(167,7,61,0.25)); }
}

@keyframes loaderProgressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

/* ==========================================================================
   SECTIONS STYLING
   ========================================================================== */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 140px;
  overflow: hidden;
  background-color: #101828;
  color: #FFF;
}

[data-theme="light"] .hero-section {
  background-color: var(--bg-light);
  color: var(--text-primary);
}

.hero-particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 24px;
  display: inline-block;
  background: rgba(167, 7, 61, 0.1);
  padding: 6px 16px;
  border-radius: 30px;
  border: 1px solid rgba(167, 7, 61, 0.2);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, #FFF 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .hero-title span {
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 550px;
}

[data-theme="light"] .hero-desc {
  color: var(--text-secondary);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

[data-theme="light"] .hero-stats {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.hero-stat-item h4 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #FFF;
}

[data-theme="light"] .hero-stat-item h4 {
  color: var(--text-primary);
}

.hero-stat-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* Floating Glass Cards on Hero Right Side */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-img {
  width: 80%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
  transform: perspective(1000px) rotateY(-15deg) rotateX(10deg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.hero-visual:hover .hero-main-img {
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
}

.floating-glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-glass);
  z-index: 10;
  pointer-events: none;
  animation: floatShape 6s ease-in-out infinite;
}

.fg-card-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.fg-card-2 {
  bottom: 15%;
  right: 5%;
  animation-delay: 2s;
}

.fg-card-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.fg-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFF;
}

.fg-card-val {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Infinite Auto-Scroll Logo Marquee */
.clients-section {
  padding: 60px 0;
  background: rgba(var(--bg-dark-rgb), 0.02);
  border-y: 1px solid rgba(var(--bg-dark-rgb), 0.05);
}

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

.marquee-content {
  display: inline-flex;
  gap: 80px;
  animation: marqueeAutoScroll 30s linear infinite;
}

.marquee-logo {
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
  cursor: pointer;
}

.marquee-logo i {
  margin-right: 8px;
  font-size: 1.8rem;
}

.marquee-logo:hover {
  color: var(--accent);
  filter: none;
}

/* About Section */
.about-image-wrapper {
  position: relative;
  padding-right: 30px;
}

.about-img-main {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.about-img-floating {
  position: absolute;
  bottom: -40px;
  right: -10px;
  width: 50%;
  border-radius: var(--radius-lg);
  border: 4px solid var(--bg-light);
  box-shadow: var(--shadow-glass);
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.stat-item {
  background: rgba(var(--bg-dark-rgb), 0.02);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.04);
}

.stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Services Grid & Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: auto;
}

.service-card-link {
  margin-top: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link i {
  transition: transform 0.3s ease;
}

.service-card-link:hover i {
  transform: translateX(4px);
}

/* Why Choose Us Timeline */
.why-choose-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: rgba(var(--bg-dark-rgb), 0.015);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.04);
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.feature-card:hover {
  background: var(--bg-light);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.feature-title {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.timeline-wrapper {
  position: relative;
  padding-left: 32px;
  border-left: 2px solid rgba(var(--accent-rgb), 0.2);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -41px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 3px solid var(--accent);
  transition: var(--transition-fast);
}

.timeline-item:hover::before {
  background: var(--accent);
}

.timeline-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Masonry Portfolio Grid */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(var(--bg-dark-rgb), 0.08);
  padding: 8px 24px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: #FFF;
  border-color: var(--accent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(16, 24, 48, 0.9) 0%, rgba(16, 24, 48, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.portfolio-project-title {
  color: #FFF;
  font-size: 1.35rem;
  font-weight: 700;
}

/* Portfolio Modals */
.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  background: var(--bg-light);
  width: 90%;
  max-width: 800px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(var(--bg-dark-rgb), 0.08);
  transform: translateY(40px);
  transition: var(--transition-smooth);
}

.portfolio-modal.active .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent);
}

.modal-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.modal-body {
  padding: 40px;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-step {
  position: relative;
  text-align: center;
}

.process-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(to bottom, rgba(167, 7, 61, 0.15) 0%, rgba(167, 7, 61, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -20px;
}

.process-step h4 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.05);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--accent-rgb), 0.2);
}

.team-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.team-socials {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.7);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover .team-socials {
  opacity: 1;
}

.team-social-link {
  width: 44px;
  height: 44px;
  background: #FFF;
  color: var(--bg-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.team-social-link:hover {
  background: var(--accent);
  color: #FFF;
}

.team-info {
  padding: 24px;
  text-align: center;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

/* Video Section Banner */
.video-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.6);
}

.video-play-btn {
  position: relative;
  z-index: 2;
  width: 80px;
  height: 80px;
  background: #FFF;
  color: var(--accent);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  animation: playBtnPulse 2s infinite;
  transition: var(--transition-fast);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--accent);
  color: #FFF;
}

/* Video Lightbox Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2100;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.video-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonial Carousel Swiper */
.testimonials-section {
  overflow: hidden;
}

.swiper-testimonials {
  padding-bottom: 50px !important;
}

.testimonial-card {
  background: rgba(var(--bg-light-rgb), 0.5);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-rating {
  color: #FFC107;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.testimonial-title {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border-color: var(--accent);
  background: rgba(167, 7, 61, 0.03);
  transform: translateY(-10px);
}

.pricing-card.featured:hover {
  transform: translateY(-15px);
}

.pricing-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--accent);
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 30px;
}

.pricing-tier {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  padding-left: 0;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 10px 0;
  border-bottom: 1px solid rgba(var(--bg-dark-rgb), 0.04);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--accent);
}

.pricing-features li.disabled {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.pricing-features li.disabled i {
  color: var(--text-muted);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(var(--bg-dark-rgb), 0.02);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.06);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-header {
  width: 100%;
  padding: 24px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content {
  padding: 0 24px 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-item.active {
  border-color: var(--accent);
  background: var(--bg-light);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

.blog-card-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  margin-bottom: 24px;
}

.blog-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 600;
}

.blog-card-cat {
  color: var(--accent);
}

.blog-card-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  border-top: 1px solid rgba(var(--bg-dark-rgb), 0.05);
  padding-top: 16px;
}

.blog-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-author-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}

/* Careers Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: rgba(var(--bg-dark-rgb), 0.015);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.04);
  padding: 32px;
  border-radius: var(--radius-md);
}

.benefit-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}

.jobs-list {
  max-width: 900px;
  margin: 0 auto;
}

.job-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.06);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-soft);
  transition: var(--transition-fast);
}

.job-row:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.job-info h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.job-meta {
  display: flex;
  gap: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Careers/Jobs Application Modal Form */
.application-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 24, 40, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2200;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.application-modal.active {
  opacity: 1;
  visibility: visible;
}

.apply-modal-card {
  background: var(--bg-light);
  width: 90%;
  max-width: 600px;
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  border: 1px solid rgba(var(--bg-dark-rgb), 0.08);
}

/* Call To Action (CTA) Section */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-box {
  background: linear-gradient(135deg, #1A1F36 0%, #101828 100%);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #FFF;
}

[data-theme="light"] .cta-box {
  background: linear-gradient(135deg, var(--accent) 0%, #101828 100%);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 7, 61, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #FFF;
  margin-bottom: 24px;
}

.cta-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

/* Contact Form Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.contact-card-info {
  background: rgba(var(--bg-dark-rgb), 0.015);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.05);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-detail-content h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-detail-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form-wrapper {
  background: var(--bg-light);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.06);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control, .application-modal .form-control {
  background: rgba(var(--bg-dark-rgb), 0.02);
  border: 1px solid rgba(var(--bg-dark-rgb), 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.contact-form .form-control:focus, .application-modal .form-control:focus {
  background: var(--bg-light);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.map-placeholder {
  height: 400px;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(var(--bg-dark-rgb), 0.08);
  margin-top: 60px;
}

/* Footer layout */
.footer-ag {
  background: #101828;
  color: #FFF;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 50px;
  margin-bottom: 40px;
}

.footer-brand {
  display: inline-block;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
}

.footer-brand img {
  height: 32px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-widget-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #FFFFFF !important;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.newsletter-form {
  position: relative;
}

.newsletter-form input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 60px 12px 20px;
  border-radius: 30px;
  color: #FFF;
  font-size: 0.9rem;
}

.newsletter-submit {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  background: var(--accent);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #FFF;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.newsletter-submit:hover {
  background: #FFF;
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 105px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(167, 7, 61, 0.3);
  transition: var(--transition-fast);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
  background: #FFF;
  color: var(--accent);
}

/* Floating WhatsApp Action button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #FFF;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

/* ==========================================================================
   ANIMATIONS & KEYFRAMES
   ========================================================================== */

@keyframes floatShape {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes marqueeAutoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes playBtnPulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* WhatsApp Live Chat Popup */
.wa-chat-popup {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 320px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.wa-chat-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wa-chat-header {
  background: #075E54;
  color: #FFF;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #075E54;
  font-size: 1.2rem;
}

.wa-chat-title h5 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
}

.wa-chat-title span {
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.wa-chat-title span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
}

.wa-chat-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: #FFF;
  opacity: 0.7;
  cursor: pointer;
  font-size: 1rem;
}

.wa-chat-close:hover {
  opacity: 1;
}

.wa-chat-body {
  padding: 20px;
  background: #E5DDD5;
  font-size: 0.9rem;
  color: #333;
}

.wa-chat-msg {
  background: #FFF;
  padding: 12px 16px;
  border-radius: 8px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  margin-bottom: 15px;
  line-height: 1.4;
}

.wa-chat-btn {
  background: #25D366;
  color: #FFF;
  border: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  width: 100%;
}

.wa-chat-btn:hover {
  background: #128C7E;
  color: #FFF;
  transform: translateY(-1px);
}

/* ===== CHECKBOX GRID AND FOOTER BLACK-TEXT OVERRIDES ===== */
.checkbox-grid-ag {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin-top: 10px;
}

.footer-ag, 
.footer-ag p, 
.footer-ag li, 
.footer-ag span, 
.footer-ag a,
.footer-ag .footer-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

.footer-ag a:hover {
  color: #FFFFFF !important;
}

.footer-widget-title {
  color: #FFFFFF !important;
}

