

/* Root Variables */
:root {
  /* Animation Keyframes */
  @keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
  }
  /* Navbar Height */
  --navbar-height: 120px; /* Adjust this value based on your navbar height */
  /* Color Scheme */
  --brand-primary: #ffd700;
  --brand-primary-light: #fff5cc;
  --brand-secondary: #ffd700;
  --brand-dark: #000000;
  --brand-light: #ffffff;
  --text-primary: #333333;
  --text-secondary: #666666;
  --text-color: #333333;
  --text-white: #ffffff;
  --text-muted: #888888;
  --white: #ffffff;
  --black: #000000;
  --primary-black: #000000;
  --light-grey: #f8f8f8;
  --bg-primary: #000000;
  --bg-gradient: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  --primary-bg: #ffffff;
  --secondary-text: #000000;
  --card-bg: #ffffff;
  --icon-bg: #fff9d6;
  --footer-bg: #000000;
  --section-bg: #ffffff;
  --form-bg: #ffffff;
  --btn-bg: #000000;
  --btn-text: #ffffff;
  --progress-gold: #fdf190;
  --progress-light: #fff9d6;
  --star-color: #fdf190;
  --arrow-color: #000000;
  --highlight-color: #fdf190;

  /* Digital Marketing Colors */
  --dm-primary: #fdf190;
  --dm-primary-dark: #000000;
  --dm-dark: #000000;
  --dm-light: #ffffff;
  --dm-gray: #ffffff;
  --dm-text: #000000;
  --dm-text-light: #000000;
  --accent-color: #fdf190;

  /* Additional Colors */
  --border-color: rgba(253, 241, 144, 0.3);
  --shadow-color: rgba(0, 0, 0, 0.1);
  --shadow-color-hover: rgba(0, 0, 0, 0.15);
  --shadow-dark: rgba(0, 0, 0, 0.1);
  --shadow-light: rgba(253, 241, 144, 0.2);
  --overlay-gradient: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4) 60%
  );
  --overlay-light: rgba(253, 241, 144, 0.3);
  --overlay-dark: rgba(0, 0, 0, 0.1);
  --divider-color: rgba(0, 0, 0, 0.1);

  /* Font */
  --font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Animations */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --dm-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --hover-transition: 0.5s cubic-bezier(0.4,0,0.2,1);

  /* Spacing */
  --navbar-padding: 0.75rem 0;
  --dropdown-padding: 1.25rem;
  --section-spacing: 60px;
  --radius: 30px;

  /* Border Radius */
  --border-radius: 16px;
  --border-radius-sm: 0.5rem;
  --border-radius-md: 12px;
  --border-radius-lg: 1.5rem;
  --border-radius-xl: 2.5rem;
  --border-radius-xxl: 60px;

  /* Shadows */
  --dm-card-shadow: 0 10px 30px rgba(109, 86, 255, 0.1);
  --hover-shadow: rgba(0, 0, 0, 0.1);
  --box-shadow: 0 15px 40px rgba(104, 86, 232, 0.15);
  --box-shadow-hover: 0 20px 50px rgba(104, 86, 232, 0.2);

  /* Sizes */
  --hero-title: 58px;
  --hero-subtitle: 20px;
  --section-title: 38px;
  --stat-number: 2.5rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 5px;
  width: 45px;
  height: 45px;
  background: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--brand-dark);
  transform: translateY(-3px);
  color: var(--brand-light);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scroll-to-top i {
  color: var(--white);
  font-size: 20px;
  line-height: 0;
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Add will-change for elements that will animate */
.navbar-scrolled,
.swiper-slide,
.hero-image img,
.who-card,
.dm-nav-item,
.navbar-quote-btn {
  will-change: transform;
}

/* Performance optimization for fixed elements */
.main-navbar {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

.full-width-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-bottom-left-radius: 60px !important;
  border-bottom-right-radius: 60px !important;
}

/* Layout Container Styles */
.full-width-container .container {
  padding-left: 15px;
  padding-right: 15px;
}

/* Section Title Styles */
.section-title {
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.navbar-quote-btn {
  background: linear-gradient(45deg, var(--brand-primary) 0%, #ffe44d 100%);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(253, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
}
h2{
  margin-bottom: 0px !important;
}

.navbar-quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.navbar-quote-btn:hover {
  text-decoration: none;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 215, 0, 0.4);
  filter: brightness(1.05);
}

.navbar-quote-btn:hover::before {
  left: 100%;
}

/* Header - Top Info Bar Styles */
.top-info-bar {
  background: linear-gradient(90deg, var(--black) 0%, #1a1a1a 100%);
  padding: 0.25rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(253, 215, 0, 0.2);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.top-info-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  animation: shimmer 2s infinite;
}

.projects-count, .contact-number {
  font-weight: 700;
  color: var(--brand-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  background: rgba(255, 215, 0, 0.1);
  display: inline-block;
  transition: all 0.3s ease;
}

.projects-count:hover, .contact-number:hover {
  transform: translateY(-2px);
  background: rgba(255, 215, 0, 0.2);
}



@media (max-width: 768px) {
  .top-info-bar .col-md-6 {
    text-align: center !important;
    margin: 5px 0;
  }
  .top-info-bar .text-md-end {
    text-align: center !important;
  }
}

/* Header - Main Navigation Bar Styles */
.main-navbar {
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.95) 100%);
  padding: var(--navbar-padding);
  box-shadow: none;
  transition: all var(--transition-slow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1020;
  border-bottom: 1px solid rgba(253, 215, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid var(--brand-primary);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  display: flex;
  align-items: center;
  letter-spacing: -0.5px;
  position: relative;
}

.navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.navbar-brand:hover::after {
  width: 100%;
}

.navbar-brand img {
  height: 4rem;
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.nav-item {
  position: relative;
  margin: 0 0.25rem;
}

.nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link:focus::before {
  width: 80%;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand-primary);
  transform: translateY(-2px);
}

.navbar-nav-center {
  margin: 0 auto;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-top: 0.4rem solid;
  border-right: 0.4rem solid transparent;
  border-left: 0.4rem solid transparent;
  transition: transform var(--transition-medium);
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(-180deg);
}

.dropdown-menu {
  background-color: var(--black);
  border: 1px solid var(--brand-primary);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25), 
              0 8px 15px rgba(253, 215, 0, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.75rem;
  overflow: hidden;
  min-width: 12rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dropdown-item {
  padding: 0.35rem 1.25rem;
  font-weight: 500;
  color: var(--white);
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  margin: 0.15rem 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: 0.5s;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  color: var(--brand-primary);
  border-left-color: var(--brand-primary);
  padding-left: 1.5rem;
  transform: translateX(5px);
}

.dropdown-item:hover::before {
  left: 100%;
}

/* Mega Menu */
.dropdown-mega {
  position: static;
}

.dropdown-mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  padding: 1rem;
  background-color: var(--black);
  border: 1px solid var(--brand-primary);
  border-radius: var(--border-radius-sm);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 
              0 10px 20px rgba(253, 215, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.mega-menu-col {
  padding: 0 1rem;
}

.mega-menu-title {
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mega-menu-title i {
  margin-right: 0.75rem;
  font-size: 1rem;
  color: var(--brand-primary);
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin-top: 0.5rem;
}

.mega-menu-list li {
  margin-bottom: 0.5rem;
}

.mega-menu-list a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all var(--hover-transition);
  padding: 0.35rem 0rem;
  border-left: 3px solid transparent;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
}

.mega-menu-list a i {
  margin-right: 0.75rem;
  color: var(--white);
  font-size: 0.875rem;
  width: 1.25rem;
  text-align: center;
  transition: all var(--hover-transition);
}

.mega-menu-list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: var(--hover-transition);
}

.mega-menu-list a:hover {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  color: var(--brand-primary);
  border-left-color: var(--brand-primary);
  padding-left: 1.5rem;
  transform: translateX(5px);
}

.mega-menu-list a:hover i {
  color: var(--brand-primary);
}

.mega-menu-list a:hover::before {
  left: 100%;
}

/* Hero Section - Main Banner Styles */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0px 30px 0px;
  background: linear-gradient(90deg, #f5f5f5 0%, #ffffff 50%, #f5f5f5 100%);
  color: var(--text-primary);
  border-bottom-left-radius: var(--border-radius-xxl);
  border-bottom-right-radius: var(--border-radius-xxl);
  position: relative;
  overflow: hidden;
}

/* Spider Web Animation Styles */
.web-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
}

.web-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--brand-primary), transparent);
  transform-origin: center;
}

.web-circle {
  position: absolute;
  border: 1px solid var(--brand-primary);
  border-radius: 50%;
  opacity: 0;
  transform-origin: center;
}

.web-1 {
  top: 20%;
  left: -10%;
  width: 120%;
  height: 1px;
  animation: webLine 3s ease-out forwards, webPulse 4s ease-in-out infinite;
}

.web-2 {
  top: 40%;
  left: -10%;
  width: 120%;
  height: 1px;
  animation: webLine 3s ease-out 0.5s forwards, webPulse 4s ease-in-out 0.5s infinite;
}

.web-3 {
  top: 60%;
  left: -10%;
  width: 120%;
  height: 1px;
  animation: webLine 3s ease-out 1s forwards, webPulse 4s ease-in-out 1s infinite;
}

.web-4 {
  top: 80%;
  left: -10%;
  width: 120%;
  height: 1px;
  animation: webLine 3s ease-out 1.5s forwards, webPulse 4s ease-in-out 1.5s infinite;
}

.web-c1 {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  animation: webCircle 2s ease-out forwards, webRotate 20s linear infinite;
}

.web-c2 {
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  animation: webCircle 2s ease-out 0.5s forwards, webRotate 25s linear infinite;
}

.web-c3 {
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  animation: webCircle 2s ease-out 1s forwards, webRotate 30s linear infinite;
}

.web-c4 {
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  animation: webCircle 2s ease-out 1.5s forwards, webRotate 35s linear infinite;
}

@keyframes webLine {
  0% {
    transform: scaleX(0);
    opacity: 0;
  }
  100% {
    transform: scaleX(1);
    opacity: 0.5;
  }
}

@keyframes webCircle {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
}

@keyframes webRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes webPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-section::before,
.hero-section::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: 0;
  filter: blur(80px);
  opacity: 0.15;
  animation: floatAnimation 8s infinite ease-in-out;
}

.hero-section::before {
  background: var(--brand-primary);
  top: -300px;
  right: -200px;
}

.hero-section::after {
  background: var(--brand-primary);
  bottom: -300px;
  left: -200px;
  animation-delay: -4s;
}

.hero-text {
  flex: 1 1 500px;
  max-width: 600px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease;
}

.hero-text h1 {
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  color: var(--text-primary);
  letter-spacing: -1px;
  position: relative;
  background: linear-gradient(45deg, var(--text-primary) 0%, #000000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h1 span.golden {
  background: linear-gradient(45deg, var(--brand-primary) 0%, #ffe44d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.hero-text h1::before {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(45deg, var(--brand-primary) 0%, transparent 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.1;
  transform: translateX(10px) translateY(10px);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--text-primary);
  opacity: 0;
  animation: fadeInUp 1s ease 0.2s forwards;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.4s forwards;
}

.email-box {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 50px;
  padding: 5px;
  box-shadow: 6px 8px 0px var(--black), 0 15px 35px rgba(0, 0, 0, 0.1) !important;
  max-width: 500px;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.6s forwards;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.email-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--brand-primary), transparent, var(--brand-primary));
  border-radius: 50px;
  z-index: -1;
  animation: borderGlow 3s linear infinite;
}

.email-box input {
  flex: 1;
  border: none;
  outline: none;
  padding: 18px 25px;
  border-radius: 50px;
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
}

.email-box input::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.email-box button {
  background: linear-gradient(45deg, var(--brand-primary) 0%, #ffe44d 100%);
  color: var(--black);
  font-weight: 700;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin: 5px;
}

.email-box button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.email-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
  filter: brightness(1.05);
}

.email-box button:hover::before {
  left: 100%;
}

@media (max-width: 576px) {
  .email-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 5px;
    box-shadow: 6px 8px 0px var(--black) !important;
    width: 100%;
    gap: 10px;
    flex-wrap: wrap;
  }

  .email-box input {
    flex: 1 1 200px;
    background: transparent;
    box-shadow: none !important;
    min-width: 100%;
  }

  .email-box button {
    flex: 1;
    margin: 0 5px 5px;
    min-width: calc(100% - 10px);
    background: var(--black);
    box-shadow: none !important;
  }
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
  margin-top: 0px;
  position: relative;
  z-index: 1;
  opacity: 0;
  animation: fadeInRight 1s ease 0.4s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--brand-primary) 0%, transparent 70%);
  opacity: 0.1;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  max-width: 90%;
  height: auto;
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

@keyframes floatAnimation {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, 20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.5;
  }
}

@keyframes borderGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.7;
  }
}

/* Partner Companies Logo Section Styles */
.child-companies-section {
  padding: 43px 0 0px 0px;
  margin-top: -2rem;
  position: relative;
  z-index: -1;
  border-bottom-left-radius: var(--border-radius-xxl) !important;
  border-bottom-right-radius: var(--border-radius-xxl) !important;
}

.child-companies-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.child-companies-logos img {
  height: 55px;
  opacity: 0.7;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  filter: grayscale(100%);
  flex: 0 1 auto;
}

.child-companies-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .child-companies-logos {
    justify-content: space-evenly;
    gap: 30px;
  }
  .child-companies-logos img {
    height: 50px;
  }
}

@media (max-width: 576px) {
  .child-companies-logos {
    gap: 20px;
    padding: 20px 0;
  }
  .child-companies-logos img {
    height: 45px;
  }
}

/* Statistics & Numbers Section Styles */
.stats-section {
  background-color: var(--white);
  padding: 80px 0;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  border-radius: var(--border-radius-sm);
  background-color: var(--brand-primary-light);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

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

.stat-number {
  font-size: var(--stat-number);
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* About Us - Who We Are Section Styles */
#who-we-are {
  padding: 0px 0px 0px 0px;
  background-color: var(--white);
  color: var(--text-primary);
}
#who-we-are .container{
  max-width: 1200px;
}

.who-we-are-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-subtitle {
  color: var(--brand-primary);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
}

[style*="background-color: var(--black)"] .section-title,
[style*="background: var(--black)"] .section-title,
.bg-black .section-title {
  color: var(--white);
}

.section-title .highlight {
  color: var(--brand-primary);
  position: relative;
}

.section-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(249, 238, 147, 0.4);
  z-index: -1;
  border-radius: 4px;
}

.section-description {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--brand-primary);
  border-radius: 20px;
  padding: 10px;
  height: 100%;
  position: relative;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.who-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
  background-color: rgba(255, 255, 255, 0.1);
}

.who-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--brand-primary) 0%,
    rgba(255, 215, 0, 0.8) 100%
  );
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.who-card:hover .who-icon {
  background: var(--brand-primary);
}

.who-icon i {
  font-size: 24px;
  /* color: var(--brand-primary); */
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.who-card:hover .who-icon i {
  color: var(--white);
}

.who-card-content {
  position: relative;
  z-index: 1;
}

.who-card h5 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 22px;
  color: var(--text-primary);
}

.who-card-divider {
  width: 40px;
  height: 3px;
  background: var(--brand-primary);
  margin-bottom: 10px;
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.who-card:hover .who-card-divider {
  width: 60px;
}

.who-card p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.who-card-number {
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-size: 100px;
  font-weight: 800;
  color: rgba(104, 86, 232, 0.05);
  transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
}

.who-card:hover .who-card-number {
  color: rgba(104, 86, 232, 0.1);
}

@media (max-width: 992px) {
  .section-title {
    font-size: 36px;
  }

  .who-card {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .section-title,
  .hero-text h1,
  .dm-section-title,
  .why-ultimologics h2 {
    font-size: 36px;
  }

  .who-card {
    margin-bottom: 20px;
  }

  .who-icon {
    width: 50px;
    height: 50px;
  }

  .who-card h5 {
    font-size: 20px;
  }

  .who-card-number {
    font-size: 80px;
  }
}

/* Why ultimologics Section */
.why-ultimologics {
  padding: 10px 0px 10px 0px;
  background-color: var(--white);
}

.why-ultimologics .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.why-ultimologics .content {
  flex: 1 1 500px;
}

.why-ultimologics h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
  line-height: 1.2;
}

.why-ultimologics h2 span.golden {
  color: var(--brand-primary);
}

.why-ultimologics h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 25px 0px 3px 0px;
  color: var(--black);
}

.why-ultimologics p {
  line-height: 1.5;
  margin-bottom: 15px;
}

.why-ultimologics .image-box {
  flex: 1 1 400px;
}

.why-ultimologics .image-box img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Digital Marketing Solutions Section */
/* Digital Marketing Solutions Section */
.dm-solutions-section {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}

.dm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dm-section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.dm-section-title span.golden {
  color: var(--brand-primary);
}

.dm-section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.dm-services-container {
  display: flex;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--dm-card-shadow);
  min-height: 500px;
}

.dm-services-nav {
  position: relative;
  width: 320px;
  background: var(--dm-dark);
  padding: 40px 0;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  flex-shrink: 0;
}

.dm-nav-highlight {
  position: absolute;
  left: 0;
  width: 4px;
  height: 60px;
  background: var(--dm-primary);
  border-radius: 0 4px 4px 0;
  transition: var(--dm-transition);
  z-index: 1;
}

.dm-nav-item {
  position: relative;
  z-index: 2;
  padding: 18px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 3px solid transparent;
  overflow: hidden;
}

.dm-nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: 0.5s;
}

.dm-nav-item.active {
  background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
  border-left-color: var(--brand-primary);
}

.dm-nav-item:not(.active):hover {
  background: rgba(255, 215, 0, 0.05);
  border-left-color: var(--brand-primary);
  transform: translateX(5px);
}

.dm-nav-item:hover::before {
  left: 100%;
}

.dm-nav-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(109, 86, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--dm-transition);
}

.dm-nav-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.dm-nav-item.active .dm-nav-icon {
  background: var(--brand-primary);
}

.dm-nav-item.active .dm-nav-icon svg {
  stroke: white;
}

.dm-nav-text {
  display: flex;
  flex-direction: column;
}

.dm-nav-text span:first-child {
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 3px;
}

.dm-nav-description {
  font-size: 0.85rem;
  color: var(--brand-primary);
  transition: var(--dm-transition);
}

.dm-services-content {
  flex-grow: 1;
  padding: 40px;
  position: relative;
}

.dm-content-box {
  display: none;
  height: 100%;
}

.dm-content-box.active {
  display: block;
  animation: dmFadeIn 0.4s ease-out;
}

.dm-content-header {
  margin-bottom: 30px;
}

.dm-content-header h3 {
  font-size: 1.8rem;
  color: var(--dm-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.dm-content-header p {
  color: var(--dm-text-light);
  line-height: 1.6;
  max-width: 500px;
}

.dm-content-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dm-services-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.dm-service-item {
  flex: 1 1 calc(50% - 10px); /* 2 items per row */
  display: flex;
  align-items: center; /* vertical center */
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--dm-gray);
  transition: var(--dm-transition);
}

.dm-service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(109, 86, 255, 0.1);
  border-color: var(--dm-primary);
}

.dm-service-icon {
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(109, 86, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--dm-primary);
}

.dm-service-details h4 {
  font-size: 1rem;
  color: var(--dm-dark);
  margin-bottom: 5px;
  font-weight: 600;
}

.dm-service-details p {
  font-size: 0.85rem;
  color: var(--dm-text-light);
  line-height: 1.5;
}

.dm-content-stats {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-shrink: 0;
}

.dm-stats-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: var(--dm-card-shadow);
  text-align: center;
}

.dm-big-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dm-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.dm-stats-label {
  font-size: 0.9rem;
  color: var(--dm-text-light);
  font-weight: 500;
}

.dm-service-cta {
  background: linear-gradient(45deg, var(--brand-primary) 0%, #ffe44d 100%);
  color: var(--black);
  border: none;
  padding: 16px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 320px;
  box-shadow: 0 4px 15px rgba(253, 215, 0, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.dm-service-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.dm-service-cta svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}

.dm-service-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(253, 215, 0, 0.4);
  filter: brightness(1.05);
  text-decoration: none;
  color: var(--black);
}

.dm-service-cta:hover::before {
  left: 100%;
}

/* Responsive: Stack service items on mobile */
@media (max-width: 768px) {
  .dm-service-item {
    flex: 1 1 100%;
  }
}

/* Investment Section */
#investment{
  background-color: var(--black) !important;
}

.investment-section {
  font-family: "Inter", sans-serif;
  max-width: 1140px;
  margin: 0 auto;
  padding: 10px 0px;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.investment-content {
  flex: 1 1 500px;
  padding-left: 40px;
}

.investment-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.investment-content p {
  font-size: 18px;
  color: var(--white);
  line-height: 1.7;
}

.did-you-know h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.did-you-know ul {
  padding-left: 20px;
  color: var(--secondary-text);
  font-size: 18px;
  line-height: 1.6;
}

.investment-images {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
}

.investment-images img {
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  object-fit: cover;
}

/* Company Profile Update Form Styles */
.admin-main {
  background-color: #f5f5f5;
  padding: 10px;

}

.admin-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.admin-card .card-header {
  background: transparent;
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 1.5rem;
}

.admin-card .card-header h5 {
  color: #000000;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.admin-card .card-body {
  padding: 0rem 2rem 2rem 2rem;
}

.admin-form-label {
  color: #000000;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.admin-form-control {
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.admin-form-control:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-text {
  color: #666;
  font-size: 0.9rem;
}

.admin-btn-primary {
  background: linear-gradient(45deg, #ffd700 0%, #ffe44d 100%);
  border: none;
  color: #000000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.admin-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
  background: linear-gradient(45deg, #ffe44d 0%, #ffd700 100%);
  color: #000000;
}

.admin-btn-secondary {
  background: transparent;
  border: 2px solid #ffd700;
  color: #000000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.admin-btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  border-color: #ffe44d;
  color: #000000;
  transform: translateY(-2px);
}

.alert {
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.alert-success {
  background-color: rgba(0, 200, 81, 0.1);
  border-color: rgba(0, 200, 81, 0.2);
  color: #00c851;
}

.alert-danger {
  background-color: rgba(255, 71, 87, 0.1);
  border-color: rgba(255, 71, 87, 0.2);
  color: #ff4757;
}

/* Digital Marketing Cards Section */
.digital-marketing-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
}

.digital-marketing-header {
  text-align: center;
  /* margin-bottom: 50px; */
}

.digital-marketing-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.digital-marketing-header p {
  font-size: 18px;
  color: var(--secondary-text);
  margin: 0 auto;
  line-height: 1.6;
}

.digital-marketing-cards {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  padding: 0px;
  gap: 10px;
}

.digital-card {
  background-color: var(--card-bg);
  border: 1px solid #e0e0e0;
  border-radius: 24px;
  padding: 30px 20px;
  text-align: center;
  transition: transform var(--hover-transition),
    box-shadow var(--hover-transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
}

.digital-card:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 30px var(--hover-shadow);
}

.digital-card .icon-circle {
  background-color: var(--icon-bg);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.digital-card .icon-circle i {
  font-size: 24px;
  color: var(--purple-color);
}

.digital-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.digital-card p {
  font-size: 16px;
  color: var(--secondary-text);
  line-height: 1.6;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .digital-marketing-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu,
  .dropdown:focus-within > .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }

  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
  }
}

@media (max-width: 991.98px) {
  .dropdown-mega-menu {
    padding: 1rem;
  }

  .mega-menu-col {
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-image {
    display: none;
  }

  .child-companies-logos {
    gap: 20px;
  }

  .child-companies-logos img {
    height: 30px;
  }

  .why-ultimologics .container {
    flex-direction: column;
  }

  .why-ultimologics h2 {
    font-size: 32px;
  }

  .why-ultimologics h3 {
    font-size: 20px;
  }

  .investment-section {
    flex-direction: column-reverse;
    padding: 40px 20px;
  }

  .investment-content {
    padding-left: 0;
    padding-top: 40px;
    text-align: center;
  }

  .investment-images {
    padding-right: 0;
  }

  .investment-images img {
    max-width: 100%;
  }

  .dm-content-grid {
    flex-direction: column;
  }

  .dm-content-stats {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  .dm-stats-card {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .dm-section-title {
    font-size: 2rem;
  }

  .dm-service-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .dm-service-details h4 {
    font-size: 0.95rem;
  }
}

@keyframes dmFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Partner Logo Slider Styles */
.partner-logo-section {
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.partner-logo-swiper {
  position: relative;
  width: 100%;
}

.partner-logo-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.partner-logo-swiper .swiper-slide {
  width: 20% !important;
  height: 80px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  transform: none !important;
  box-shadow: none;
  border: none;
}

.partner-logo-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease;
  transform: none !important;
  position: static !important;
  padding: 0;
  margin: 0;
  box-shadow: none;
}

.partner-logo-swiper .swiper-slide:hover img {
  opacity: 1;
  transform: none !important;
  position: static !important;
  box-shadow: none;
}



/* Updated Digital Marketing Solutions for small devices */
@media (max-width: 768px) {
  .dm-services-container {
    flex-direction: column;
    min-height: auto;
  }

  .dm-services-nav {
    width: 100%;
    padding: 15px 0;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
    justify-content: flex-start;
  }

  .dm-services-nav::-webkit-scrollbar {
    display: none;
  }

  .dm-nav-highlight {
    display: none;
  }

  .dm-nav-item {
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
    min-width: 100px;
    flex-shrink: 0;
  }

  .dm-nav-icon {
    width: 30px;
    height: 30px;
    margin: 0 auto 5px;
  }

  .dm-nav-icon svg {
    width: 16px;
    height: 16px;
  }

  .dm-nav-text span:first-child {
    font-size: 0.85rem;
  }

  .dm-nav-description {
    display: none;
  }

  .dm-services-content {
    padding: 20px;
  }

  .dm-content-header h3 {
    font-size: 1.4rem;
  }

  .dm-content-grid {
    flex-direction: column;
  }

  .dm-content-stats {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .dm-stats-card {
    flex: 1 1 calc(50% - 10px);
    padding: 15px;
  }

  .dm-big-number {
    font-size: 1.8rem;
  }

  .dm-service-cta {
    width: 100%;
    margin-top: 10px;
  }
}

/* New section with image first then content */
.investment-section-alt {
  font-family: "Inter", sans-serif;
  background-color: var(--brand-primary-light);
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.investment-images-alt {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.investment-images-alt img {
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.investment-content-alt {
  flex: 1 1 500px;
  padding-left: 40px;
}

.investment-content-alt h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.investment-content-alt p {
  font-size: 18px;
  color: var(--secondary-text);
  line-height: 1.7;
}

@media (max-width: 992px) {
  .investment-section-alt {
    flex-direction: column-reverse;
  }

  .investment-content-alt {
    padding-left: 0;
    margin-bottom: 40px;
  }

  .investment-images-alt img {
    max-width: 100%;
  }
}

/* faqs section css  */

:root {
  /* --brand-primary: #6856e8; */
  /* --brand-secondary: #4f3bd6; */
  --brand-light: #f5f3ff;
  --dark-text: #1a1a2e;
  --medium-text: #4a4a6a;
  --light-text: #7a7a9a;
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
  --border-radius-sm: 8px;
  --box-shadow: 0 15px 40px rgba(104, 86, 232, 0.15);
  --box-shadow-hover: 0 20px 50px rgba(104, 86, 232, 0.2);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --section-spacing: 60px;
}

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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f9f9ff;
  color: var(--dark-text);
  line-height: 1.6;
}

.ultimologics-faqs-premium {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding: 10px 15px 10px 15px;
}



.faq-header {
  display: inline-block;
  position: relative;
  margin-bottom: 15px;
  text-align: center;
  width: 100%;
}

.faq-header h2 {
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.2;
  color: var(--dark-text);
  margin-bottom: 0;
}




.faq-header .subtitle {
  font-size: 20px;
  color: var(--medium-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.decor-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(249, 238, 147, 0.15) 0%,
    rgba(249, 238, 147, 0) 100%
  );
  top: -200px;
  right: -200px;
}

.faq-accordion-premium {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.faq-card-premium {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-color);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border-color);
  height: 100%;
}

.faq-card-premium:hover {
  box-shadow: var(--shadow-color-hover);
  transform: translateY(-3px);
  border-color: var(--brand-primary);
}

.faq-card-header {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.faq-number {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-right: 24px;
  min-width: 30px;
}

.faq-card-header h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-text);
  margin-right: 40px;
  flex: 1;
  transition: color 0.3s ease;
}

.faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.toggle-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--brand-dark);
  transform: scale(0);
  transition: var(--transition);
  opacity: 0;
}

.plus-icon {
  position: relative;
  z-index: 2;
  color: var(--brand-primary);
  transition: var(--transition);
}

.faq-card-premium.active .toggle-circle {
  transform: scale(1);
  opacity: 1;
}

.faq-card-premium.active .plus-icon {
  transform: rotate(45deg);
  color: white;
}

.faq-card-body {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-card-content {
  padding: 0 32px;
}

.faq-card-premium.active .faq-card-body {
  max-height: 1000px;
  padding-bottom: 32px;
}

.faq-card-content p {
  color: var(--medium-text);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.8;
}

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

.faq-features li {
  display: flex;
  align-items: center;
  color: var(--medium-text);
}

.faq-features li::before {
  content: "✓";
  color: var(--brand-primary);
  font-weight: bold;
  margin-right: 8px;
}

.results-timeline {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}

.timeline-item {
  flex: 1;
}

.timeline-badge {
  width: 50px;
  height: 50px;
  background: var(--brand-light);
  color: var(--brand-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}

.timeline-content {
  font-size: 15px;
  color: var(--medium-text);
  line-height: 1.6;
}

.social-proof {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}

.stat-box {
  flex: 1;
  background: var(--brand-light);
  padding: 20px;
  border-radius: var(--border-radius-md);
  text-align: center;
}

.stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--medium-text);
  line-height: 1.5;
}

.service-features {
  display: flex;
  gap: 20px;
  margin: 25px 0;
}

.feature-card {
  flex: 1;
  background: white;
  border: 1px solid rgba(253, 215, 0, 0.2);
  border-radius: var(--border-radius-md);
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
  transition: 0.5s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(253, 215, 0, 0.2);
  border-color: var(--brand-primary);
  background: linear-gradient(45deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
}

.feature-card:hover::before {
  left: 100%;
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 18px;
  color: var(--dark-text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--medium-text);
  margin: 0;
}

@media (max-width: 992px) {
  .faq-header h2 {
    font-size: 36px;
  }

  .faq-header .subtitle {
    font-size: 18px;
  }

  .faq-card-header {
    padding: 22px 25px;
  }

  .faq-card-header h3 {
    font-size: 18px;
  }

  .results-timeline,
  .social-proof,
  .service-features {
    flex-direction: column;
    gap: 15px;
  }
}


  .faq-header h2 {
    font-size: 32px;
  }

  .faq-header .subtitle {
    font-size: 16px;
  }

  .faq-card-header {
    padding: 20px;
  }

  .faq-number {
    margin-right: 15px;
  }

  .faq-features {
    grid-template-columns: 1fr;
  }


@media (max-width: 576px) {
  .faq-header h2 {
    font-size: 28px;
  }

  .faq-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-number {
    margin-bottom: 10px;
  }

  .faq-toggle {
    position: absolute;
    right: 20px;
    top: 20px;
  }
}

/* Footer CTA and Footer Section */
.footer-cta-section {
  background-color: var(--black);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}

.footer-cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
}

.footer-cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background-color: var(--brand-primary);
  color: var(--black);
  font-weight: 600;
  font-size: 18px;
  border-radius: var(--border-radius-md);
  text-decoration: none;
  transition: all var(--transition-medium);
  box-shadow: 0 4px 12px rgba(253, 215, 0, 0.2);
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 215, 0, 0.3);
}

/* blog section css starts here  */

.modern-blog-slider {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 0px 20px 0px 20px;
  background: #f9f9ff;
  overflow: hidden;
}

.slider-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.section-header {
  text-align: center;
}



.section-label::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--brand-primary);
  margin: 8px auto 0;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 0;
  position: relative;
  display: inline-block;
}

.section-title .highlight,
.section-title span.golden {
  color: var(--brand-primary);
}
.highlight{
  color: var(--brand-primary);
}

.title-highlight {
  position: relative;
  color: var(--brand-primary);
}

.title-highlight::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(104, 86, 232, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.swiper {
  padding: 10px 0 0px;
  overflow: hidden;
}

.swiper-wrapper {
  padding: 10px 0;
}

.swiper-slide {
  height: 320px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  position: relative;
}

.swiper-slide:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(104, 86, 232, 0.25);
}

.blog-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-gradient);
  z-index: 2;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
}

.blog-date {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  position: relative;
}

.blog-date::after {
  content: "•";
  position: absolute;
  right: -10px;
}

.blog-category {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.blog-tag {
  background: var(--overlay-light);
  color: var(--white);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.swiper-slide:hover .blog-tag {
  background: var(--brand-primary);
}

/* Pagination */
.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 30px;
}

.swiper-pagination-bullet {
  background: var(--light-text);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  transition: var(--transition);
}

.swiper-pagination-bullet-active {
  background: var(--brand-primary);
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}

/* Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 15px var(--shadow-dark);
  transition: var(--transition);
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--brand-primary);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 16px;
  color: var(--brand-primary);
  font-weight: bold;
  transition: var(--transition);
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: var(--white);
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
  .section-title {
    font-size: 38px;
  }

  .swiper-slide {
    height: 300px;
  }
}

@media (max-width: 992px) {
  .modern-blog-slider {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 34px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }

  .swiper-slide {
    height: 280px;
  }

  .content-overlay {
    padding: 20px;
  }

  .blog-title {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 28px;
  }

  .swiper-slide {
    height: 260px;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-date::after {
    display: none;
  }

  .blog-category {
    margin-top: 5px;
  }
}

/* testimonials section css starts here  */

.testimonial-section {
  background-color: var(--section-bg);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%236754e9" opacity="0.03" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>')
    no-repeat;
  background-size: cover;
  z-index: 0;
}

.testimonial-container {
  position: relative;
  z-index: 1;
}

.testimonial-card {
  background-color: var(--card-bg);
  border-radius: 16px;
  padding: 30px;
  height: 280px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px var(--shadow-light);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 15px 35px var(--shadow-color);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  color: rgba(103, 84, 233, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.stars {
  color: var(--star-color);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 10px 0;
}

.verified-badge {
  width: 16px;
  height: 16px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  position: static;
  width: 50px;
  height: 50px;
  background-color: white;
  border-radius: 50%;
  opacity: 1;
  border: 1px solid #e0e0e0;
  color: var(--arrow-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--arrow-color);
  color: white;
  border-color: var(--arrow-color);
  transform: scale(1.1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev-icon:after {
  content: "←";
  font-size: 20px;
  font-weight: bold;
}

.carousel-control-next-icon:after {
  content: "→";
  font-size: 20px;
  font-weight: bold;
}

.testimonial-card p {
  flex-grow: 1;
  margin-bottom: 20px;
  line-height: 1.6;
  color: var(--text-color);
  position: relative;
  z-index: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 96px;
  max-height: 96px;
}

.testimonial-card strong {
  font-size: 1.1rem;
  color: var(--primary-black);
}

.testimonial-card .text-muted {
  font-size: 0.85rem;
  color: #6c757d;
}

.testimonial-header h2 {
  font-weight: 700;
  color: var(--primary-black);
  font-size: 2.5rem;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}


.testimonial-header p {
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text-color);
  margin-top: 30px;
  position: relative;
  padding-left: 20px;
}

.testimonial-header p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--highlight-color);
  border-radius: 50%;
}

.google-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* Equal height cards */
.carousel-item .row {
  display: flex;
  flex-wrap: wrap;
}
.carousel-inner {
  background-color: none !important;
}
.carousel-item .row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* Client Images Styling */
.clients-images {
  margin: 20px 0;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--highlight-color);
}

/* Responsive client images */
@media (max-width: 768px) {
  .client-img {
    width: 50px;
    height: 50px;
  }
  
  .clients-images .d-flex {
    gap: 10px !important;
  }
}

/* FAQ Responsive Styles */
@media (max-width: 768px) {
  .ultimologics-faqs-premium {
    padding: 10px 10px 10px 10px;
  }
  
  .faq-header h2 {
    font-size: 28px;
  }
  

  
  .faq-card-header {
    padding: 15px 18px;
  }
}

@media (max-width: 576px) {
  .ultimologics-faqs-premium {
    padding: 10px 5px 10px 5px;
  }
  
  .faq-header h2 {
    font-size: 24px;
  }
}

/* footer and form section */

.consult-section {
  background-color: var(--arrow-color);
  padding: 60px 0 10px 0px;
  border-top-right-radius: var(--border-radius-xxl);
  border-top-left-radius: var(--border-radius-xxl);
}

.consult-heading {
  font-size: 1.8rem !important;
  line-height: 1.4 !important;
  font-weight: bold !important;
  color: var(--brand-primary) !important;
  margin-bottom: 0px !important;
  text-align: center !important;
}

.consult-paragraph,
.consult-list p {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 20px;
  /* text-align: center; */
}

.consult-list {
  max-width: 600px;
  margin: 0 auto;
}

.consult-list i {
  color: var(--brand-primary-light);
  margin-right: 10px;
  margin-top: 4px; /* Better vertical alignment */
  flex-shrink: 0;
}

.consult-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.consult-list strong {
  color: var(--brand-primary);
  display: block;
  /* margin-bottom: 5px; */
}

.form-box {
  background-color: var(--form-bg);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  position: relative;
  z-index: 5;
}
.form-btn {
  background-color: var(--btn-bg);
  color: var(--btn-text);
  font-weight: bold;
}
.form-btn:hover {
  background-color: var(--bg-primary) !important;
  color: var(--text-white) !important;
}

.progress-bar-custom {
  height: 4px;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-bar-custom div:first-child {
  width: 40%;
  background-color: var(--progress-yellow);
}

.progress-bar-custom div:last-child {
  width: 60%;
  background-color: var(--progress-light);
}

.decorative-rocket {
  position: absolute;
  top: -52px;
  right: 50px;
  width: 65px;
  z-index: 6;
  transform: rotate(35deg);
}

.decorative-sparkle {
  position: absolute;
  top: -20px;
  right: 155px;
  width: 55px;
  z-index: 6;
  transform: rotate(14deg);
}

.awards-section {
  margin-top: 0rem;
  text-align: center;
  padding-top: 0rem;
  border-top: 1px solid var(--divider-color);
}

.awards-section img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: auto;
  transition: transform 0.3s ease;
}

.awards-section img:hover {
  transform: translateY(-5px);
}

.awards-section .label {
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.awards-section .label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--brand-primary);
}

@media (max-width: 576px) {
  .decorative-rocket,
  .decorative-sparkle {
    display: none;
  }

  .consult-heading {
    font-size: 1.5rem;
  }
}
.consult-section .container {
  max-width: 1400px;
}

/* footer second section css starts here reviews wala  */

.footer-top-section {
  background: var(--arrow-color);
  padding: 0px 20px;
}

.footer-top-container {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--border-radius-xxl);
  padding: 50px 40px;
  box-shadow: 0 20px 40px var(--shadow-dark);
}

.columns-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.footer-column {
  flex: 1;
  min-width: 0;
  position: relative;
}

.divider-container {
  position: relative;
  width: 1px;
  flex-shrink: 0;
}

.vertical-divider {
  width: 1px;
  background: #6754e9; /* Brand color - change to #000 for black */
  height: 80%;
  position: absolute;
  top: 10%;
  left: 0;
}

.contact-card,
.location-card,
.reviews-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.contact-card:hover,
.location-card:hover,
.reviews-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px var(--shadow-light);
}

.contact-card svg,
.location-card svg {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(103, 84, 233, 0.1);
  border-radius: 50%;
}

.footer-column h3 {
  font-size: 20px;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 15px;
  line-height: 1.3;
}

.phone {
  font-size: 22px;
  font-weight: 700;
  color: #6754e9;
  text-decoration: none;
  font-family: "Sora", sans-serif;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 5px;
}

.phone:hover {
  color: #4f3dc8;
}

.address {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 15px;
}

.email {
  font-size: 16px;
  font-weight: 600;
  color: #6754e9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email:hover {
  color: #4f3dc8;
  text-decoration: underline;
}

.badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.badge-item {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.badge-item:hover {
  transform: scale(1.05);
}

.badges img {
  height: 40px;
  width: auto;
  object-fit: contain;
  max-width: 100%;
}

@media (max-width: 900px) {
  .columns-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .footer-column {
    width: 100%;
  }

  .divider-container {
    display: none;
  }

  .contact-card,
  .location-card,
  .reviews-card {
    padding: 25px 20px;
  }

  .badges {
    grid-template-columns: repeat(4, 1fr);
  }

  .badges img {
    height: 30px;
  }
}

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

  .footer-top-section {
    padding: 40px 15px;
  }

  .footer-top-container {
    border-radius: 20px;
    padding: 30px 20px;
  }
}

/* footer bottom css code starts here */

.footer {
  background: var(--brand-dark);
  color: var(--text-white);
  padding: 0px 30px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
}

.footer-col {
  flex: 1 1 200px;
  margin: 20px;
  min-width: 200px;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  height: 60px;
}

.footer-logo-text {
  font-size: 24px;
  font-weight: bold;
  color: var(--brand-primary);
}

.footer-slogan {
  font-size: 18px;
  line-height: 1.6;
}

.footer-heading {
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-link {
  display: block;
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 8px !important;
  transition: color 0.3s ease;
  position: relative;
  font-weight: normal !important;
}

.footer-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--brand-dark);
  transition: width 0.3s ease;
}

.footer-link:hover {
  color: var(--brand-dark);
}

.footer-link:hover::before {
  width: 100%;
}

.footer-bottom-wrapper {
  background: var(--white) !important;
  width: 100%;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
  margin-top: 40px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 5px 30px !important;
  max-width: 1300px;
  margin: auto;
}

.footer-bottom p {
  font-size: 14px;
  color: #333;
}

.footer-bottom a {
  color: #333;
  margin: 0 15px;
  text-decoration: none;
  font-size: 14px;
}

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

.footer-icon {
  width: 45px;
  height: 45px;
  background: var(--icon-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, transform 0.3s ease;
}

.footer-icon i {
  font-size: 18px;
  color: #000;
  transition: color 0.3s ease;
}

.footer-icon:hover {
  transform: scale(1.1);
}

.footer-icon:hover i {
  color: var(--hover-color);
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 15px;
  }

  .footer-col {
    margin: 20px 0;
    width: 100%;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-slogan {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .footer-heading {
    margin-top: 10px;
  }

  .footer-link {
    margin-bottom: 12px;
    padding: 5px 0;
  }

  .footer-bottom-wrapper {
    border-radius: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding: 25px 15px;
    text-align: center;
  }

  .footer-bottom p {
    margin: 0;
  }

  .footer-bottom a {
    display: inline-block;
    margin: 5px 10px;
  }

  .footer-socials {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-icon {
    width: 40px;
    height: 40px;
  }
}
      #particles-js {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0; left: 0;
        z-index: 0; /* or less than navbar */
        pointer-events: none; /* This is the key! */
      }
      .hero-section {
        position: relative;
      }
      .hero-section .container {
        position: relative;
        z-index: 2;
      }




      /* blog page page css starts here  */

      :root {
  --primary-bg: #000;
  --primary-bg-dark: #111;
  --primary-color: #ffd700;
  --text-color: #000;
  --text-light: #fff;
  --date-color: #ccc;
  --card-date-color: #777;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: var(--text-color);
}

.top-blog-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-bg) 60%, var(--primary-bg-dark));
  color: var(--text-light);
  padding: 40px;
  border-radius: var(--border-radius-xxl);
  margin: 50px auto;
  max-width: 1160px;
  flex-wrap: wrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.top-blog-card .content {
  flex: 1 1 400px;
}

.top-blog-card .title {
  color: var(--primary-color);
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0 20px;
  max-width: 600px;
}

.top-blog-card .date {
  font-size: 16px;
  color: var(--date-color);
}

.top-blog-card .read-more {
  display: inline-block;
  background-color: var(--primary-bg);
  margin-top: 20px;
  text-decoration: none;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  transition: all 0.3s ease;
  padding: 5px 10px;
}

.top-blog-card .read-more:hover {
  background: var(--primary-color);
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: 5px;
  border: none;
}

.top-blog-card .image img {
  max-width: 360px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.bottom-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1210px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

.bottom-cards .card {
  background-color: #fff;
  color: var(--text-color);
  border-radius: 40px;
  overflow: hidden;
  width: 373px;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

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

.content {
  padding: 15px 0px;
}

.bottom-cards .card .date {
  font-size: 14px;
  color: var(--card-date-color);
  margin: 10px 0 5px;
}

.bottom-cards .card:hover .date {
  color: var(--text-light);
}

.bottom-cards .card h3 {
  font-size: 18px;
  padding: 10px 15px 20px;
}

.bottom-cards .card:hover {
  background-color: var(--primary-bg);
  color: var(--primary-color);
  transform: translateY(-6px);
}

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

@media (max-width: 768px) {
  .top-blog-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .top-blog-card .image img {
    margin-top: 20px;
    max-width: 100%;
  }
}

.dropdown-menu.show {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

/* ===== DESIGN PAGE CSS STARTS HERE ===== */

/* Design Page Specific Styles */
#design-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}

#design-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}

#design-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}

#design-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}

#design-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.design-comparison {
  background: var(--white);
}

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

.design-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.design-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.design-list.no-dots li {
  margin-bottom: 0.75rem;
}

.design-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}

.design-list .cross {
  color: #dc3545;
  font-weight: bold;
}

/* Design page card images */
.design-comparison .card img,
.website-design-comparison .card img,
.logo-design-comparison .card img,
.email-design-comparison .card img,
.app-design-comparison .card img {
  margin-bottom: 1rem;
}

/* ===== DESIGN PAGE CSS ENDS HERE ===== */

/* ===== WEBSITE DESIGN PAGE CSS STARTS HERE ===== */

/* Website Design Page Specific Styles */
#website-design-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}

#website-design-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}

#website-design-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}

#website-design-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}

#website-design-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.website-design-comparison {
  background: var(--white);
}

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

.website-design-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.website-design-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.website-design-list.no-dots li {
  margin-bottom: 0.75rem;
}

.website-design-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}

.website-design-list .cross {
  color: #dc3545;
  font-weight: bold;
}

/* ===== WEBSITE DESIGN PAGE CSS ENDS HERE ===== */

/* ===== LOGO DESIGN PAGE CSS STARTS HERE ===== */

/* Logo Design Page Specific Styles */
#logo-design-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}

#logo-design-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}

#logo-design-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}

#logo-design-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}

#logo-design-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.logo-design-comparison {
  background: var(--white);
}

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

.logo-design-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.logo-design-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.logo-design-list.no-dots li {
  margin-bottom: 0.75rem;
}

.logo-design-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}

.logo-design-list .cross {
  color: #dc3545;
  font-weight: bold;
}

/* ===== LOGO DESIGN PAGE CSS ENDS HERE ===== */

/* ===== EMAIL DESIGN PAGE CSS STARTS HERE ===== */

/* Email Design Page Specific Styles */
#email-design-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}

#email-design-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}

#email-design-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}

#email-design-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}

#email-design-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

.email-design-comparison {
  background: var(--white);
}

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

.email-design-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.email-design-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.email-design-list.no-dots li {
  margin-bottom: 0.75rem;
}

.email-design-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}

.email-design-list .cross {
  color: #dc3545;
  font-weight: bold;
}

/* ===== EMAIL DESIGN PAGE CSS ENDS HERE ===== */

/* ===== APP DESIGN PAGE CSS STARTS HERE ===== */

/* App Design Page Specific Styles */
#app-design-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}

#app-design-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}

#app-design-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}

#app-design-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}

#app-design-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* Development Page Specific Styles */
#development-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}
#development-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}
#development-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}
#development-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}
#development-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* Website Development Page Specific Styles */
#website-development-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}
#website-development-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}
#website-development-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}
#website-development-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}
#website-development-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* Software Development Page Specific Styles */
#software-development-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}
#software-development-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}
#software-development-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}
#software-development-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}
#software-development-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* App Development Page Specific Styles */
#app-development-banner {
  background: var(--white);
  color: var(--black);
  padding: 4rem 0;
}
#app-development-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}
#app-development-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}
#app-development-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}
#app-development-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* Development Page List Styles */
.development-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.development-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.development-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.development-list.no-dots li {
  margin-bottom: 0.5rem;
}

.development-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}

.development-list .cross {
  color: #ff4444;
  font-weight: bold;
}

.development-comparison .card img,
.website-development-comparison .card img,
.software-development-comparison .card img,
.app-development-comparison .card img {
  margin-bottom: 1rem;
}

.app-design-comparison {
  background: var(--white);
}

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

.app-design-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}

.app-design-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}

.app-design-list.no-dots li {
  margin-bottom: 0.75rem;
}

.app-design-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}

.app-design-list .cross {
  color: #dc3545;
  font-weight: bold;
}

/* ===== APP DESIGN PAGE CSS ENDS HERE ===== */

/* Shopify Pricing Card Styles */
.shopify-pricing-card {
  background: var(--card-bg);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px var(--shadow-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  transition: box-shadow var(--transition-medium);
  border: 1.5px solid var(--border-color);
  position: relative;
}
.shopify-pricing-card:hover {
  box-shadow: 0 12px 40px var(--shadow-color-hover);
  border-color: var(--brand-primary);
}
.shopify-card-header {
  background: var(--black);
  color: var(--brand-primary);
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 2.5rem; /* Prevent text from going behind the ribbon */
  box-sizing: border-box;
}
.shopify-ribbon {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 2.2rem;
  background: var(--brand-primary);
  color: var(--black);
  font-weight: bold;
  font-size: 0.95rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 2px 8px var(--shadow-light);
  letter-spacing: 1px;
  z-index: 2;
  border-radius: 0 var(--border-radius-md) 0 0;
  overflow: hidden;
}
.shopify-card-header h3,
.shopify-card-header h4,
.shopify-price {
  color: var(--brand-primary); /* Ensure text is gold on black */
}
.shopify-card-header h3 {
  margin: 2.5rem 0 0.5rem 0;
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
}
.shopify-card-header h4 {
  margin: 0 0 1.2rem 0;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}
.shopify-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 0.5rem;
}
.shopify-card-content {
  padding: 1.5rem 1.5rem 2rem 0rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.shopify-features-list {
  list-style: none;
  padding-left: 0 !important;
  margin: 0 0 1.5rem 0;
}
.shopify-features-list li {
  font-size: 1rem;
  color: var(--text-primary);
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
  list-style-type: none;
  position: relative;
  display: flex;
  align-items: center;
}
.shopify-features-list li:before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--brand-primary);
  border-radius: 50%;
}
.shopify-features-list li:last-child {
  border-bottom: none;
}
.shopify-btn {
  background: var(--brand-primary);
  color: var(--black);
  border: none;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--hover-transition), color var(--hover-transition);
  margin-top: 1rem;
  box-shadow: 0 2px 8px var(--shadow-light);
  text-decoration: none;
  display: block;
  text-align: center;
  width: 95%;
  margin-left: 1.5rem;
  margin-right: auto;
}
.shopify-btn:hover {
  background: var(--primary-black);
  color: var(--brand-primary);
}
@media (max-width: 768px) {
  .shopify-pricing-card {
    margin-bottom: 1.5rem;
  }
  .shopify-card-header {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  .shopify-card-content {
    padding: 1rem 1rem 1.5rem 1rem;
  }
  .shopify-card-header h3 {
    font-size: 1.2rem;
  }
  .shopify-card-header h4 {
    font-size: 1rem;
  }
  .shopify-price {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  /* Only 2 cards per row on desktop */
  .shopify-pricing-card {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    display: block;
  }
  .row.g-5 > .col-12.col-md-6.col-lg-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Equal height for Shopify cards in a row */
.row.g-5 {
  display: flex;
  flex-wrap: wrap;
}
.row.g-5 > [class*='col-'] {
  display: flex;
}
.shopify-pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.shopify-card-header {
  flex: 0 0 30%;
  max-height: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}
.shopify-card-content {
  flex: 1 1 70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Hide dots and set tick color for 3-cards section on dev pages */
.website-development-list.with-dots li:before,
.software-development-list.with-dots li:before,
.app-development-list.with-dots li:before {
  display: none !important;
}

.website-development-list .check,
.software-development-list .check,
.app-development-list .check {
  color: var(--brand-primary) !important;
  font-weight: bold;
}

.website-development-list .cross,
.software-development-list .cross,
.app-development-list .cross {
  color: #ff4444 !important;
  font-weight: bold;
}

/* Completely hide dots for all .with-dots lists in dev pages */
.website-development-list.with-dots li:before,
.software-development-list.with-dots li:before,
.app-development-list.with-dots li:before,
.website-development-list.with-dots p:before,
.software-development-list.with-dots p:before,
.app-development-list.with-dots p:before {
  display: none !important;
  content: none !important;
}

/* Hide default bullets for all .with-dots lists in dev pages */
.website-development-list.with-dots,
.software-development-list.with-dots,
.app-development-list.with-dots {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Hide bullets for .no-dots lists in dev pages */
.website-development-list.no-dots,
.software-development-list.no-dots,
.app-development-list.no-dots {
  list-style: none !important;
  padding-left: 0 !important;
}

/* Marketing Page Specific Styles */
#marketing-banner {
  background: var(--white);
  color: var(--black);
  padding: 1rem 0 0rem 0;
}
#marketing-banner h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-black);
  line-height: 1.2;
  transition: var(--transition-medium);
  margin-bottom: 1.5rem;
}
#marketing-banner p {
  font-size: 18px;
  color: var(--text-gray);
  transition: var(--transition-medium);
  margin-bottom: 2rem;
}
#marketing-banner a.btn {
  text-decoration: none;
  padding: 18px 54px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.7rem;
  display: inline-block;
  transition: var(--transition-medium);
}
#marketing-banner a.btn:hover {
  background-color: var(--primary-black);
  color: var(--primary-white);
}

/* Marketing Page List Styles */
.marketing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.marketing-list.with-dots li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  list-style: none;
}
.marketing-list.with-dots li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background-color: var(--white);
  border-radius: 50%;
}
.marketing-list.no-dots li {
  margin-bottom: 0.5rem;
}
.marketing-list .check {
  color: var(--brand-primary);
  font-weight: bold;
}
.marketing-list .cross {
  color: #ff4444;
  font-weight: bold;
}
.marketing-comparison .card img {
  margin-bottom: 1rem;
}

/* Digital Marketing Success Section */
#digital-success {
  background: var(--primary-black);
  color: var(--white);
  border-radius: 1rem;
  margin: auto !important;
  text-align: center;
  padding: 3rem 2rem;
}

#digital-success h2 {
  font-size: 2rem !important;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: white !important;
}

#digital-success p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--white);
}

#digital-success .btn {
  background-color: var(--brand-primary);
  border: none;
  color: var(--primary-black);
  font-weight: 600;
  padding: 1rem 6rem !important;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-align: center;
}

#digital-success .btn:hover {
  background-color: var(--primary-black);
  color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Game Changing Stats Section */
#game-changes {
  background: var(--primary-black);
  color: var(--white);
  border-radius: 1rem;
}

#game-changes .counter {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-primary);
}

/* Marketing Benefits Section - Enhanced Styling */
#marketing-benefits {
  padding: 4rem 0;
  background: var(--light-gray);
}

#marketing-benefits .container {
  max-width: 1200px;
}

#marketing-benefits h3 {
  color: var(--primary-black);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

#marketing-benefits p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

#marketing-benefits ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

#marketing-benefits ul li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
}

#marketing-benefits ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

#marketing-benefits .col-sm-12.col-md-6:first-child {
  padding-right: 2rem;
}

#marketing-benefits .col-sm-12.col-md-6:last-child {
  display: flex;
  align-items: center;
  justify-content: center;
}

#marketing-benefits img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Additional Marketing Benefits Styling */
#marketing-benefits .benefits-content {
  padding-right: 2rem;
}

#marketing-benefits .benefits-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

#marketing-benefits .benefits-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  color: var(--text-gray);
  font-size: 1rem;
  line-height: 1.5;
}

#marketing-benefits .benefits-list li:before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand-primary);
  font-weight: bold;
  font-size: 1.1rem;
}

#marketing-benefits .benefits-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

#marketing-benefits .benefits-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#marketing-benefits .benefits-image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  #marketing-benefits .benefits-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }
  
  #marketing-benefits .benefits-image {
    height: auto;
  }
}

/* Partner Logo Slider Styles */
.partner-logo-section {
  padding: 0px 0px;
  margin: 20px auto;
  max-width: 1200px;
  overflow: hidden;
}

.partner-logo-swiper {
  position: relative;
}

.partner-logo-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}

.partner-logo-swiper .swiper-slide {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo-swiper .swiper-slide img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-logo-swiper .swiper-slide:hover {
  opacity: 1;
}

.partner-logo-swiper .swiper-slide:hover img {
  transform: scale(1.05);
}

/* Digital Marketing Section Header */
.digital-marketing-section {
  padding: 0rem 0;
  background: var(--light-gray);
}

.digital-marketing-header {
  text-align: center;
  /* margin-bottom: 3rem; */
}

.digital-marketing-header h1 {
  color: var(--primary-black);
  font-weight: 900;
  margin-bottom: 5px;
}

.digital-marketing-header p {
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
}

/* Marketing Tools Section - Enhanced Styling */
#tools-section {
  padding: 0rem 0rem 0rem 0rem;
  background: var(--white);
}

#tools-section .container {
  max-width: 1200px;
}

#tools-section h2 {
  color: var(--primary-black);
  font-weight: 900;
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

#tools-section p {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Why Choose Our Marketing Tools Section */
#tools-section h2:last-of-type {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  color: var(--primary-black);
  font-weight: 900;
  text-align: center;
  font-size: 2.5rem;
}

#tools-section p:last-of-type {
  color: var(--text-gray);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Seven Images Slider */
.seven-imgs-slider {
  margin: 2rem 0;
  overflow: hidden;
}

.seven-imgs-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  will-change: transform;
}

.seven-imgs-slider .swiper-slide {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.seven-imgs-slider .swiper-slide img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.seven-imgs-slider .swiper-slide:hover {
  opacity: 1;
}

.seven-imgs-slider .swiper-slide:hover img {
  transform: scale(1.05);
}




/* home page partners section css slider  */


 .partner-logo-section {
      margin: 0 auto;
      max-width: 1200px;
      overflow: hidden;
    }

    .partner-logo-swiper {
      position: relative;
      width: 100%;
    }

    .partner-logo-swiper .swiper-wrapper {
      display: flex;
      align-items: center;
      width: 100%;
    }

    .partner-logo-swiper .swiper-slide {
      width: 20% !important;
      height: 80px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin: 0;
      transform: none !important;
      box-shadow: none;
      border: none;
    }

    .partner-logo-swiper .swiper-slide img {
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      object-fit: contain;
      opacity: 1;
      transition: opacity 0.3s ease;
      transform: none !important;
      position: static !important;
      padding: 0;
      margin: 0;
      box-shadow: none;
    }

    .partner-logo-swiper .swiper-slide:hover img {
      opacity: 1;
      transform: none !important;
      position: static !important;
      box-shadow: none;
    }


/* whole foooter updated css starts here  */
/* Unique Footer Styles */
.ulti-footer {
  border-top-left-radius: var(--border-radius-xxl);
    border-top-right-radius: var(--border-radius-xxl);
  padding: 10px 0px 0px 0px;
    background: var(--brand-dark) !important;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

.ulti-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.2), transparent);
}

.ulti-footer__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ulti-footer__col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.ulti-footer__logo {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0px;
}

.ulti-footer__logo img {
    height: 60px;
}

.ulti-footer__logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    margin-top: 5px;
    text-align: center;
}

.ulti-footer__heading {
    color: var(--white);
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.ulti-footer__link {
        display: block;
        color: var(--white);
        text-decoration: none;
        margin-bottom: 0px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        text-align: left;
        padding: 3px 0;
        font-size: 0.95rem;
        opacity: 0.85;
}

.ulti-footer__link-location{
  display: block;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 0px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-align: left;
  padding: 3px 0;
  font-size: 0.95rem;
  opacity: 0.85;
}

.ulti-footer__link::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.ulti-footer__link:hover {
    color: var(--white);
    opacity: 1;
    transform: translateX(5px);
}

.ulti-footer__link:hover::before {
    width: 100%;
}

.ulti-footer__slogan {
  text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: var(--white);
}

.ulti-footer__bottom-wrapper {
    background: var(--gold) !important;
    width: 100%;
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
    margin-top: 0px;
}

.ulti-footer__bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 5px 30px !important;
    max-width: 1300px;
    margin: auto;
}

.ulti-footer__bottom p {
    font-size: 14px;
    color: #333;
}



.ulti-footer__bottom a {
    /* color: var(--text-light); */
    margin: 0 15px;
    text-decoration: none;
    font-size: 14px;
}

.ulti-footer__socials{
color: var(--arrow-color) !important;
}
.ulti-footer__socials {
    display: flex;
    gap: 10px;
}

.ulti-footer__icon {
    width: 45px;
    height: 45px;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ulti-footer__icon i {
    font-size: 18px;
    color: white;
    transition: color 0.3s ease;
}

.ulti-footer__icon:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--white);
    color: var(--brand-dark) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ulti-footer__icon:hover i {
    color: black;
}

@media (max-width: 768px) {
    .ulti-footer__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 15px;
        gap: 0px;
    }

    .ulti-footer__col {
        margin: 0px 0;
        width: 100%;
    }

    .investment-images {
          flex: 1 1 0px;
    }

    .ulti-footer__logo {
        margin-bottom: 0px;
    }



    .ulti-footer__heading {
        margin-top: 10px;
        text-align: center;
    }

    .ulti-footer__link {
        margin-bottom: 0px;
        padding: 5px 0;
        text-align: center;
    }

    .ulti-footer__link::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .ulti-footer__bottom-wrapper {
        border-radius: 30px;
    }

    .ulti-footer__bottom {
        flex-direction: column;
        gap: 20px;
        padding: 25px 15px;
        text-align: center;
    }

    .ulti-footer__bottom p {
        margin: 0;
    }

    .ulti-footer__bottom a {
        display: inline-block;
        margin: 5px 10px;
    }

    .ulti-footer__socials {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .ulti-footer__icon {
        width: 40px;
        height: 40px;
    }
}



/* privicy and policy pages css atart here */

.legal-page {
    background-color: #ffffff;
}

.legal-hero {
    background-color: #000000;
    text-align: center;
    color: #fff;
}

.legal-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-primary);
}

.legal-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.legal-section {
    padding: 30px;
    border-bottom: 1px solid #eee;
}

.legal-section:last-child {
    border-bottom: none;
}

.section-heading {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-subheading {
    color: #444;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.legal-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.legal-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.legal-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--brand-primary);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.service-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eee;
}

.service-category h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--brand-primary);
}

.contact-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-box h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: var(--brand-primary);
    font-size: 1.2rem;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
    text-align: right;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

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

    .legal-hero h1 {
        font-size: 2rem;
    }

    .legal-section {
        padding: 20px;
    }

    .section-heading {
        font-size: 1.5rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }
}














/* Colors: only white / black / gold (#ffd700) */
:root {
  --gold: #ffd700;
  --black: #000000;
  --white: #ffffff;
}

/* Page base: keep body white as requested */



.hero-section-company-profile {
  width: 100%;
  height: 440px;
  overflow: hidden;
}

.hero-section-company-profile .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* perfect crop */
  object-position: center;   /* center-center focus */
  display: block;
}


/* HERO (black section inside white page) */


/* SERVICE CARDS (black cards on white canvas) */
.service-card {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  border: 2px solid rgba(255,215,0,0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card h5 { 
  color: var(--gold); 
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.service-card p { 
  line-height: 1.35; 
  margin-bottom: 0; 
}


.hero-img {
    height: 400px;
    object-fit: cover;
}
main h2{
    font-size: 2rem !important;
    text-align: left !important;
}
.screenshot-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    height: 500px;
}
.screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.text-gold {
    color: #ffd700;
}
.service-card {
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 10px;
    transition: transform 0.3s ease;
    background-color: #000;
}
.service-card p {
    color: #fff;
}
.service-card:hover {
    transform: translateY(-5px);
}
/* Project Visit Button Container */
.unique-image-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}
.unique-image-container img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}
.unique-visit-btn {
    position: absolute;
    bottom: 20px;
    /* left: 50%; */
    transform: translateX(-50%);
    background: #ffd700;
    color: #000;
    padding: 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    z-index: 1;
}
.unique-visit-btn:hover {
    background: #e6c200;
    color: #000;
}
.unique-image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    /* background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); */
    border-radius: 15px !important;
    pointer-events: none;
}

/* Pagination styles */
.pagination .page-link {
    color: #000;
    border: 1px solid #ffd700;
    margin: 0 2px;
}
.pagination .page-item.active .page-link {
    background-color: #ffd700;
    border-color: #ffd700;
    color: #000;
}
.pagination .page-item.disabled .page-link {
    color: #6c757d;
    border-color: #dee2e6;
}

/* Our Process Section */
.our-process .process-step {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  border: 2px solid rgba(255,215,0,0.12);
  height: 200px;
}
.our-process .step-number {
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.our-process h5 {
  color: var(--gold);
  font-size: 1.1rem;
}

.process-image{
  height: 400px;
}


/* trapezium section css starts here  */

.trapezium {
  background: var(--black);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  padding: 30px 0px;
  margin: 10px auto;
  text-align: center;
  box-sizing: border-box;
}

/* Small devices par clip-path remove */
@media (max-width: 576px) {
  .trapezium {
    clip-path: none;
    padding: 30px 10px;
  }
}
#our-process .image-container{
  padding: 0px;
}

  .trapezium p {
    margin: 0 0 20px;
    font-size: 14px;
    color: var(--brand-light);
    line-height: 1.5;
    word-wrap: break-word; /* Ensure text breaks properly */
  }

  .download-btn {
    background: var(--gold);
    padding: 10px 20px;
    border-radius: 30px;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
    border: 2px solid var(--gold);
  }

  .download-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--gold);
  }


/* Projects grid: each card is image-only and larger height */
.project-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #f8f8f8;
  height: 360px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.project-wrapper:hover {
  transform: translateY(-5px);
}

/* Image fills the card */
.project-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Tabs – professional look */
#projectTabs .nav-link {
  color: var(--black);
  background: transparent;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 8px 14px;
  margin-left: 6px;
}
#projectTabs .nav-link.active {
  color: var(--black);
  background: linear-gradient(90deg, rgba(255,215,0,0.14), rgba(255,215,0,0.06));
  box-shadow: 0 4px 18px rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.22);
}

/* Pagination styling with gold accents */
.pagination .page-link {
  color: var(--black);
  border: 1px solid rgba(0,0,0,0.06);
  background: transparent;
}
.pagination .page-item.active .page-link {
  background: var(--gold);
  color: black;
  border-color: var(--gold);
}

/* Modal adjustments */
.modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Small screens tweaks */
@media (max-width: 767px) {
  .project-wrapper { height: 260px; }
  .service-card { height: auto; }
  .our-process .process-step { height: 160px; }
  #projectTabs .nav-link {
    padding: 6px 10px;
    font-size: 0.8rem;
    margin-left: 4px;
  }
}


/* project layout css starts here  */
/* === Project Screenshot Cards (Unique) === */

    .project-box {
        position: relative;
        width: 100%;
        height: 340px;
        overflow: hidden;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .project-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .project-link {
        display: block;
        text-decoration: none;
    }
    
    /* .project-box:hover .project-image {
        transform: scale(1.1);
    } */
    
    .nav-pills .nav-link {
        color: #000;
        border: 1px solid #ffd700;
        margin: 0 5px;
    }
    
    .nav-pills .nav-link.active {
        background-color: #ffd700;
        color: #000;
    }


.screenshot-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.screenshot-img {
  width: 100%;
  height: 500px; /* Mobile screen-like height */
  object-fit: cover;
}

/* === Pagination Styling (Unique) === */
#pagination .page-link {
  border-radius: 50%;
  margin: 0 3px;
  color: #333;
}

#pagination .active .page-link {
  background-color: #ffcc00;
  border-color: #ffcc00;
  color: #000;
}

/* === Unique Image Container with Button === */
.unique-image-container {
  position: relative;
}

.unique-visit-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background-color: #ffcc00;
  color: #000;
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.unique-visit-btn:hover {
  background-color: #e6b800;
}
