/* Reset & Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: #ffffff; /* Changed to white */
    line-height: 1.6;
    scroll-behavior: smooth;
}
/* Popup Overlay */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.5s ease-in-out;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Main Box */
.popup-box {
    background: #ffffff;
    color: #333;
    width: 480px;
    max-width: 90%;
    padding: 36px 32px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: slideUp 0.6s ease-out;
    font-family: 'Segoe UI', sans-serif;
}

/* Slide-up animation */
@keyframes slideUp {
    from {
        transform: translateY(60px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 26px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

    .popup-close:hover {
        color: #000;
    }

/* Header */
.popup-header {
    text-align: center;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

    .badges img {
        height: 32px;
        filter: contrast(1.2);
    }

h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

    h2 .highlight {
        color: #DAA520;
    }

.subheading {
    font-size: 16px;
    color: #555;
}

.accent {
    color: #DAA520;
    font-weight: 600;
}

/* Feature List */
.features {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    font-size: 15px;
}

    .features li {
        margin-bottom: 10px;
        color: black;
    }

        .features li::before {
            content: "✔";
            color: #28a745;
            margin-right: 10px;
            font-weight: bold;
        }

/* Pricing */
.price-tag {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 16px;
}

/* Side Benefits */
.side-benefits {
    display: flex;
    justify-content: space-between;
    background: #f8f8f8;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #333;
    margin-bottom: 20px;
}

    .side-benefits p::before {
        content: "➤ ";
        color: #DAA520;
        font-weight: bold;
    }

/* Form Styling */
.lead-form input {
    width: 100%;
    margin-bottom: 14px;
    padding: 12px;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #ccc;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

    .lead-form input:focus {
        outline: none;
        border-color: #DAA520;
        background-color: #fff;
    }

.lead-form button {
    width: 100%;
    padding: 12px;
    background: #DAA520;
    color: #000;
    border: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

    .lead-form button:hover {
        background: linear-gradient(135deg, #DAA520, #f8cc45);
    }

/* Mockup Image */
.product-mockup {
    margin-top: 24px;
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

    .product-mockup img {
        max-width: 100%;
        border-radius: 10px;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Responsive */
@media (max-width: 500px) {
    .popup-box {
        padding: 24px 20px;
    }

        .popup-box h2 {
            font-size: 20px;
        }

    .lead-form input, .lead-form button {
        font-size: 14px;
    }
}
:root {
    --primary-purple: #DAA520;
    --purple-hover: #DAA520;
    --dropdown-bg: rgba(50, 20, 60, 0.95); /* Dark semi-transparent purple */
    --dropdown-item-color: #f4edfa;
    --dropdown-hover-bg: rgba(255, 255, 255, 0.05);
}


/* Container */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: transparent;
    padding: 10px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 130px;
    width: 160px;
}
.services-display {
    display: none;
}

.services-display.active {
    display: block;
}

.platform-card.active {
    background-color: var(--yellow);
    color: #ffffff; /* Changed to white */
}

.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: 'Segoe UI', sans-serif;
    position: relative;
    z-index: 1002;
}

.nav a i {
    margin-right: 8px;
    font-size: 18px;
    vertical-align: middle;
    color: #ffffff; /* Changed to white */
    transition: transform 0.3s ease;
}

.nav a:hover i {
    transform: scale(1.1);
}

.nav a {
    position: relative;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 12px;
    color: #ffffff; /* Changed to white */
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav a:hover {
    color: #ffffff; /* Changed to white */
    transform: translateY(-2px);
}

.nav a.active {
    font-weight: 600;
    color: #ffffff; /* Changed to white */
}

    .nav a.active::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 100%;
        left: 0;
        bottom: -4px;
        background-color: #DAA520;
        transition: width 0.3s;
    }

.nav-dropdown {
    position: relative;
}
.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    border-radius: 14px;
    padding: 10px 0;
    margin-top: 14px;
    backdrop-filter: blur(14px);
    background: rgba(39, 36, 40, 0.95);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.35s ease;
    border: 1px solid rgba(181, 126, 220, 0.3);
}

.dropdown-content li {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    color: black; /* Changed to white */
    list-style: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

    .dropdown-content li {
        font-size: 16px;
        font-weight: 500;
        padding: 12px 20px;
        color: var(--dropdown-item-color);
        list-style: none;
        white-space: nowrap;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        position: relative;
        cursor: pointer;
    }

        .dropdown-content li:hover {
            background-color: var(--dropdown-hover-bg);
            color: #fff;
            border-left: 3px solid var(--primary-purple);
            padding-left: 24px;
        }

.nav-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown > a::after {
    content: " ▼";
    font-size: 12px;
    color: #ffffff;
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button,
button *,
a,
a *,
span,
span *,
.nav a,
.explore-btn,
.subscribe-form button,
.sidebar-nav a,
.footer-block ul li a {
    text-decoration: none !important;
}

.nav a:hover {
    color: #ffffff; /* Changed to white */
}

.header-actions {
    background: transparent;
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-display {
    color: #ffffff; /* Changed to white */
    font-size: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 6px 12px;
    transition: color 0.3s ease;
}

.phone-display i {
    color: #ffffff; /* Changed to white */
    font-size: 25px;
    transition: transform 0.3s ease;
}

.phone-display:hover {
    color: #ffffff; /* Changed to white */
}

.phone-display:hover i {
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.header .social-icons img {
    height: 30px;
    width: 30px;
    transition: transform 0.3s ease;
}

.header .social-icons img:hover {
    transform: scale(1.15);
}




.hidden-content {
    display: none;
    margin-top: 20px;
}
/* Hero Section - Text colors remain as original */

.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    pointer-events: none;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 24px;
    margin-top: 40px;
    background: linear-gradient(135deg, #b57edc, #ffdd57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    font-weight: 400;
    color: #d1d1d1;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto 35px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.explore-btn {
    background: #DAA520;
    color: #fff;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 4px 20px rgba(181, 126, 220, 0.4);
    text-decoration: none;
}

    .explore-btn:hover {
        background: #DAA525;
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(220, 204, 126, 0.5);
    }

.floating {
    animation: float 2s ease-in-out infinite;
    max-height: 360px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .explore-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .brand-logo {
        height: 40px;
    }
}
/* === ENHANCED ABOUT SECTION === */
:root {
    --primary: #ffcc00; /* Light Purple */
    --text-dark: #222;
    --text-muted: #555;
    --bg-light: #f9f9f9;
    --highlight-bg: rgba(157, 78, 221, 0.1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* === ABOUT SECTION === */
.about-section {
    position: relative;
    padding: 100px 0;
    background-color: white;
}

/* === TITLE === */
.section-title {
    position: relative;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--primary);
}

    .section-title:after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary);
        border-radius: 4px;
    }

/* === TEXT CONTENT === */
.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
}

    .about-content p.lead {
        font-size: 1.25rem;
        font-weight: 500;
        color: var(--text-dark);
    }

.about-content .text-primary {
    color: var(--primary);
}

.highlight {
    background: var(--highlight-bg);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--text-dark);
}

/* === BUTTONS === */
.btn-primary {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-primary:hover {
        background-color: #DAA520;
        transform: translateY(-2px);
    }

.btn-outline-primary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

    .btn-outline-primary:hover {
        background-color: var(--primary);
        color: white;
        transform: translateY(-2px);
    }

/* === STAT BOXES === */
.stat-box {
    background-color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    padding: 25px 20px;
    height: 100%;
    border: 1px solid #eee;
}

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
    }

    .stat-box i {
        color: var(--primary);
        font-size: 2.3rem;
        margin-bottom: 15px;
    }

    .stat-box h4 {
        font-size: 2rem;
        color: #DAA520;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .stat-box p {
        font-size: 1rem;
        color: var(--text-muted);
        margin-bottom: 0;
    }

/* Companies Section */
.companies {
    padding: 70px 20px;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 34px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
    color: #ffffff; /* Changed to white */
}

.section-subtitle {
    font-size: 16px;
    color: #ffffff; /* Changed to white */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Logo Grid */
.logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
}

.logo-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 24px;
    width: 100%;
    max-width: 200px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeUp 0.7s ease forwards;
}

.logo-card:nth-child(1) {
    animation-delay: 0s;
}

.logo-card:nth-child(2) {
    animation-delay: 0.1s;
}

.logo-card:nth-child(3) {
    animation-delay: 0.2s;
}

.logo-card:nth-child(4) {
    animation-delay: 0.3s;
}

.logo-card:nth-child(5) {
    animation-delay: 0.4s;
}

.logo-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.logo-card img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }
    .logo-card {
        height: 120px;
        padding: 20px;
        max-width: 160px;
    }
    .logo-card img {
        max-height: 60px;
    }
}

/* Brand Strip */
.brand-strip {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
}

.brand-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff; /* Changed to white */
    margin-bottom: 12px;
}

.brand-subtitle {
    font-size: 16px;
    color: #ffffff; /* Changed to white */
    max-width: 720px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.brand-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.brand-logos img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    filter: grayscale(50%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.brand-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .brand-logos {
        gap: 24px;
    }
    .brand-logos img {
        max-height: 110px;
    }
}

/* Services Section */
.services-section {
    position: relative;
    background-color: #DAA520;
    color: #ffffff; /* Changed to white */
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    z-index: 1;
}

.services-section > * {
    position: relative;
    z-index: 2;
}

.services-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.services-header h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff; /* Changed to white */
  margin-bottom: 15px;
}

.services-header .tagline {
  font-size: 1.1rem;
  color: #ffffff; /* Changed to white */
  line-height: 1.6;
  margin-bottom: 25px;
}

.services-header .cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: #DAA520;
  color: #000;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.services-header .cta-button:hover {
  background: #fff;
  color: #000;
}

.divider {
  height: 4px;
  width: 60px;
  background-color: #DAA520;
  border-radius: 2px;
  margin: 0 auto 40px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  color: #ffffff; /* Changed to white */
  margin-bottom: 25px;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding-bottom: 20px;
}

.platform-card {
  background: #111;
  border: 2px solid #333;
  border-radius: 15px;
  padding: 20px;
  width: 160px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  color: #ffffff; /* Changed to white */
}

.platform-card:hover,
.platform-card.active {
  transform: translateY(-6px);
  border-color: #DAA520;
  color: #ffffff; /* Changed to white */
  background: #1a1a1a;
}

.platform-card i {
  font-size: 2.8rem;
  margin-bottom: 10px;
  color: inherit;
}

.platform-card h3 {
  font-size: 1.2rem;
  margin: 0;
}

.services-display {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  display: none;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #222;
}

.services-display.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.services-header i {
  font-size: 2rem;
  color: #DAA520;
}

.services-header h2 {
  font-size: 1.8rem;
  color: #ffffff; /* Changed to white */
  margin-bottom: 5px;
}

.services-header p {
  font-size: 1rem;
  color: #ffffff; /* Changed to white */
}

.service-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.service-card {
  background: #1a1a1a;
  border-left: 4px solid #DAA520;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #ffffff; /* Changed to white */
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
  color: #ffffff; /* Changed to white */
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 10px 0;
  border-bottom: 1px dashed #333;
  color: #ffffff; /* Changed to white */
  font-size: 0.98rem;
  display: flex;
  align-items: flex-start;
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li::before {
  content: '•';
  color: #DAA520;
  margin-right: 10px;
  font-size: 1.2rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .platforms {
    overflow-x: auto;
    padding: 0 10px 15px;
    flex-wrap: nowrap;
  }
  .platform-card {
    flex: 0 0 auto;
    width: 130px;
  }
  .services-header h1 {
    font-size: 2rem;
  }
  .service-content {
    grid-template-columns: 1fr;
  }
}

/* Client Reviews */
:root {
    --yellow: #DAA520;
    --black: #111111;
    --white: #ffffff;
    --gray: #dddddd;
}

.client-reviews-section {
    background-color: white;
    padding: 80px 0;
    overflow: hidden;
}

.review-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--black);
    position: relative;
    text-align: center;
}

.review-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--black);
    margin: 15px auto 0;
    border-radius: 5px;
}

/* Filter Buttons */
.text-center.mb-5 {
    margin-bottom: 3rem !important;
}

.btn-review {
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    margin: 0 5px 10px;
}

.btn-review i {
    font-size: 1.1rem;
}

.btn-review:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-review:active {
    transform: translateY(1px);
}

.btn-review.all {
    background: linear-gradient(45deg, #6a11cb 0%, #2575fc 100%);
}

.btn-review.helium {
    background: linear-gradient(45deg, #11998e 0%, #38ef7d 100%);
}

.btn-review.google {
    background: linear-gradient(45deg, #FF4B2B 0%, #FF416C 100%);
}

.btn-review.clutch {
    background: linear-gradient(45deg, #8E2DE2 0%, #4A00E0 100%);
}

.btn-review.active {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5), 0 0 20px 5px rgba(255, 255, 255, 0.3);
}

/* Review Cards */
.review-card {
    background-color: var(--black);
    padding: 30px;
    padding-bottom: 80px;
    border-radius: 18px;
    color: var(--white);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: fadeInUpCustom 1s ease forwards;
    opacity: 0; /* For scroll animation */
}

.review-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.review-stars {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-stars strong {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.review-card p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.review-user {
    display: flex;
    align-items: center;
    gap: 15px;
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--yellow);
}

.review-author {
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.3;
}

.review-author strong {
    display: block;
    font-weight: 600;
}

.review-author small {
    font-size: 0.85rem;
    color: var(--gray);
    display: block;
}

/* Animations */
@keyframes fadeInUpCustom {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .review-title {
        font-size: 2.2rem;
    }
    
    .btn-review {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .review-card {
        padding: 25px;
        padding-bottom: 70px;
    }
    
    .review-user {
        bottom: 25px;
        left: 25px;
    }
}

@media (max-width: 576px) {
    .client-reviews-section {
        padding: 60px 0;
    }
    
    .review-title {
        font-size: 1.8rem;
    }
    
    .review-title::after {
        width: 60px;
        height: 3px;
    }
    
    .btn-review {
        width: 100%;
        margin-bottom: 8px;
    }
}
/* Partners Section */
.partners-section {
    background-color: #ffffff; /* White background */
    color: #000000; /* Black text */
    overflow: hidden;
    position: relative;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

    .partners-section h2 {
        font-size: 2.6rem;
        font-weight: 800;
        margin-bottom: 0.5rem;
        color: #000000; /* Black heading */
    }

        .partners-section h2 span {
            color: #DAA520; /* Purple highlight */
            text-shadow: 0 0 4px rgba(181, 126, 220, 0.2);
        }

    .partners-section p {
        color: #333333; /* Darker black for readability */
        font-size: 1.1rem;
        max-width: 720px;
        margin: 0 auto 1.5rem;
    }

.partner-slider-container {
    position: relative;
    width: 100%;
    height: 130px;
    z-index: 2;
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: max-content;
    will-change: transform;
}

.animate-slide {
    animation: slide 45s linear infinite;
}

.animate-slide-reverse {
    animation: slide 45s linear infinite reverse;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card {
    display: flex;
    align-items: center;
    margin: 10px;
    padding: 0.7rem 1.25rem;
    min-width: 230px;
    min-height: 85px;
    border-radius: 16px;
    background: rgba(181, 126, 220, 0.07);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(181, 126, 220, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

    .partner-card:hover {
        transform: translateY(-6px) scale(1.05);
        background: rgba(181, 126, 220, 0.1);
        border-color: rgba(181, 126, 220, 0.35);
        box-shadow: 0 10px 24px rgba(181, 126, 220, 0.25);
    }

    .partner-card img {
        height: 40px;
        width: auto;
        margin-right: 14px;
        object-fit: contain;
        filter: brightness(1) drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
    }

    .partner-card span {
        font-size: 1.05rem;
        font-weight: 600;
        color: #DAA520;
        letter-spacing: 0.4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

/* Pricing Section */
/* Pricing Section */
.pricing-section-pro {
    position: relative;
    background: #DAA520;
    padding: 5rem 0;
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

    .pricing-section-pro > * {
        position: relative;
        z-index: 2;
    }

.section-heading {
    text-align: center;
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #ffffff;
}

    .section-heading span {
        color: #ffffff;
        background: #DAA520;
        padding: 0 8px;
        border-radius: 4px;
    }

.section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.pricing-card-pro {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(12px);
    position: relative;
    transition: all 0.4s ease-in-out;
    color: #ffffff;
}

    .pricing-card-pro:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(181, 126, 220, 0.4);
        border-color: rgba(181, 126, 220, 0.5);
    }

    .pricing-card-pro.popular {
        border: 2px solid #ffffff;
        background: rgba(255, 255, 255, 0.08);
    }

.badge-popular {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #8f762f;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.plan-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

    .price small {
        font-size: 0.9rem;
        color: #e0d0ec;
    }

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: #ffffff;
}

    .features li {
        padding: 0.5rem 0;
        border-bottom: 1px dashed #c6b37e;
    }

.btn-yellow {
    background-color: #ffffff;
    color: #DAA520;
    font-weight: 600;
    border: none;
    transition: background 0.3s ease;
}

    .btn-yellow:hover {
        background-color: #f0e6fc;
        color: #DAA520;
    }

.btn-dark {
    background-color: #DAA520;
    color: #ffffff;
    font-weight: 600;
    border: none;
}

    .btn-dark:hover {
        background-color: #DAA520;
    }

.text-yellow {
    color: #ffffff !important;
}
.footer {
    background-color: #DAA520; /* Purple */
    color: #ffffff;
    padding: 60px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-left {
    flex: 1 1 300px;
}

    .footer-left h3,
    .footer-block h4 {
        color: #ffffff;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .footer-left p {
        font-size: 14px;
        color: #ffffff;
        margin-bottom: 15px;
    }

.subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .subscribe-form input[type="email"] {
        flex: 1;
        padding: 10px 14px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        color: #000;
    }

    .subscribe-form button {
        padding: 10px 20px;
        background-color: #ffffff;
        color: #000000;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .subscribe-form button:hover {
            background-color: #f0f0f0;
        }

.footer-block {
    flex: 1 1 200px;
}

    .footer-block ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer-block ul li {
            font-size: 16px;
            margin-bottom: 10px;
        }

            .footer-block ul li a {
                color: #ffffff;
                text-decoration: none;
                transition: color 0.3s;
            }

                .footer-block ul li a:hover {
                    color: #000000;
                }

    .footer-block i {
        margin-right: 8px;
        color: #ffffff;
    }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    font-size: 13px;
    color: #ffffff;
}

.footer-links-inline {
    margin-top: 10px;
}

    .footer-links-inline a {
        color: #ffffff;
        margin: 0 10px;
        font-size: 13px;
        text-decoration: none;
    }

        .footer-links-inline a:hover {
            color: #000000;
        }


/* Responsive Adjustments */
@media (max-width: 992px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .nav {
        flex-direction: column;
        width: 100%;
    }
    .header-actions {
        width: 100%;
        justify-content: flex-start;
        gap: 12px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .explore-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    .about-section {
        height: auto;
        padding: 60px 20px;
    }
    .about-section h2 {
        font-size: 32px;
    }
    .about-section p {
        font-size: 16px;
    }
    .brand-logos img {
        max-height: 80px;
    }
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }
    .footer-right {
        flex-direction: column;
        gap: 20px;
    }
    .footer-block h4 {
        font-size: 24px;
    }
    .footer-block ul li {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .logo img {
        height: 50px;
        width: 70px;
    }
    .nav a {
        font-size: 15px;
        padding: 6px 8px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero p {
        font-size: 16px;
    }
    .about-section h2 {
        font-size: 28px;
    }
    .about-section p {
        font-size: 15px;
    }
    .brand-title {
        font-size: 28px;
    }
    .brand-subtitle {
        font-size: 14px;
    }
    .footer-left h3 {
        font-size: 18px;
    }
    .footer-left p {
        font-size: 13px;
    }
    .subscribe-form input[type="email"],
    .subscribe-form button {
        width: 100%;
        margin-bottom: 10px;
    }
    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    .hero p {
        font-size: 14px;
    }
    .about-section h2 {
        font-size: 24px;
    }
    .about-section p {
        font-size: 14px;
    }
    .brand-title {
        font-size: 24px;
    }
    .footer-block h4 {
        font-size: 20px;
    }
    .footer-block ul li {
        font-size: 15px;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: #ffffff; /* White hamburger icon */
    z-index: 1100;
}

.sidebar {
    position: fixed;
    top: 0;
    left: -260px;
    height: 100%;
    width: 260px;
    background: #333333; /* Light black background */
    z-index: 1060;
    transition: left 0.3s ease;
    padding: 30px 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.3);
    color: #ffffff; /* White text */
}

.sidebar.open {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar-logo {
    height: 40px;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
    color: #ffffff; /* White close button */
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #cccccc; /* Lighter white on hover for feedback */
}

.sidebar-nav a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    color: #ffffff; /* White text for navigation links */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* Subtle white border */
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.sidebar-nav a:hover {
    color: #cccccc; /* Lighter white on hover */
    padding-left: 8px; /* Slight indent for hover effect */
}

.sidebar-nav .apply-now {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff; /* White background for button */
    padding: 10px 20px;
    border-radius: 6px;
    color: #333333; /* Light black text for contrast */
    font-weight: 600;
    transition: background 0.3s ease, color 0.3s ease;
}

.sidebar-nav .apply-now:hover {
    background: #cccccc; /* Lighter gray on hover */
    color: #333333; /* Maintain light black text */
}

/* Show hamburger on smaller screens */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .hamburger {
        display: block;
    }
} 