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

:root {
    /* primary brand color changed to gold */
    /* Primary gold palette for premium look */
    --primary-color: #FFD700; /* bright gold */
    --primary-color-dark: #B8860B; /* darker gold for gradients/accents */
    --primary-color-light: #FFE082; /* lighter gold highlight */
    --link-color: #FFD700; /* gold color for links */
    --secondary-color: #0d0c17;
    --text-color: #ffffff;
    --text-secondary: #a0a0a0;
    --bg-dark: #0d0c17;
    --bg-light: #1a1a2e;
    --card-bg: #16213e;
    --accent-orange: #FF6B35;
    --spacing: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Universe Background Animation */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, #1a0b2e 0%, #0d0c17 40%, #000000 100%);
    z-index: -2;
}

/* Animated Stars Background */
.stars-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* CSS Stars fallback - multiple layers for depth */
.stars, .stars2, .stars3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.stars {
    background: transparent;
    box-shadow: 
        1520px 350px #fff, 302px 1484px #fff, 1669px 600px #fff, 
        1531px 1071px #fff, 1404px 900px #fff, 659px 1305px #fff,
        1669px 1654px #fff, 255px 558px #fff, 1149px 962px #fff,
        1554px 1887px #fff, 1289px 1531px #fff, 918px 1478px #fff,
        1205px 544px #fff, 1105px 1609px #fff, 340px 1167px #fff,
        1194px 1814px #fff, 1773px 730px #fff, 1575px 1484px #fff,
        1553px 1413px #fff, 1167px 1209px #fff, 1697px 250px #fff,
        1491px 1819px #fff, 1996px 705px #fff, 1418px 1378px #fff,
        1000px 100px #fff, 500px 1500px #fff, 1800px 300px #fff;
    width: 1px;
    height: 1px;
    animation: animStar 100s linear infinite;
}

.stars2 {
    background: transparent;
    box-shadow: 
        779px 1331px #fff, 324px 42px #fff, 303px 586px #fff,
        1582px 1725px #fff, 1339px 1137px #fff, 1531px 1572px #fff,
        142px 1512px #fff, 1747px 1020px #fff, 394px 1529px #fff,
        1446px 1289px #fff, 786px 1794px #fff, 1805px 1684px #fff,
        444px 1109px #fff, 1467px 1355px #fff, 1495px 783px #fff,
        1172px 1766px #fff, 1869px 1031px #fff, 1441px 1490px #fff,
        1305px 1621px #fff, 1354px 897px #fff, 1745px 1115px #fff;
    width: 2px;
    height: 2px;
    animation: animStar 150s linear infinite;
}

.stars3 {
    background: transparent;
    box-shadow: 
        1223px 1073px #fff, 1785px 1747px #fff, 371px 1433px #fff,
        1534px 1578px #fff, 1613px 512px #fff, 1385px 1359px #fff,
        1725px 1339px #fff, 1049px 1633px #fff, 1486px 1597px #fff,
        1777px 1002px #fff, 1280px 1776px #fff, 1520px 1093px #fff,
        1344px 1768px #fff, 635px 1394px #fff, 1605px 1634px #fff;
    width: 3px;
    height: 3px;
    animation: animStar 200s linear infinite;
}

@keyframes animStar {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-2000px);
    }
}

/* Shooting stars */
.shooting-star {
    position: fixed;
    top: 0;
    left: 0;
    width: 2px;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    animation: shootingStar 3s ease-out infinite;
}

@keyframes shootingStar {
    0% {
        opacity: 0;
        transform: translate(0, 0) rotate(45deg);
    }
    10% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(500px, 500px) rotate(45deg);
    }
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(255,215,0,0.08);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    color: var(--text-color);
}

/* Keep the layout footprint small but visually scale the image so the navbar height doesn't grow */
.logo-img {
    /* footprint height (keeps navbar size stable) */
    height: 32px;
    width: auto;
    display: block;
    /* visually enlarge without changing layout. Increase scale and nudge vertically */
    transform-origin: left center;
    /* larger visual size while keeping footprint the same */
    transform: translateY(0px) scale(1.7);
}

/* Responsive logo sizing */
@media (max-width: 600px) {
    .logo-img {
        height: 28px;
        transform-origin: left center;
        /* mobile: slightly smaller scale than desktop but still larger */
        transform: translateY(0px) scale(1.5);
    }
}

/* Allow the enlarged logo to overflow vertically without pushing the navbar layout */
.navbar {
    overflow: visible;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    text-decoration: none;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color-light), var(--primary-color));
    background-clip: padding-box;
    color: #0d0c17; /* dark text on gold */
    text-shadow: 0 1px 0 rgba(255,255,255,0.15);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.12), inset 0 -2px 6px rgba(0,0,0,0.08);
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.18), inset 0 -2px 8px rgba(0,0,0,0.08);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

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

.hero-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 50px !important;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-image {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateX(2deg);
    transition: transform 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-10px);
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

/* Responsive Video Container */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    background: #000;
    border-radius: 12px;
    cursor: pointer;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 12px;
    z-index: 1;
    transition: background 0.3s;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    z-index: 2;
}

.video-container:hover::before {
    background: rgba(255, 0, 0, 1);
}

.video-container.loaded::before,
.video-container.loaded::after {
    display: none;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* Mobile Optimization for Hero Image */
@media (max-width: 768px) {
    .hero-image {
        max-width: 100%;
        margin: 0 15px;
        border-radius: 12px;
        transform: none;
    }
    
    .hero-image:hover {
        transform: none;
    }
    
    .video-container {
        border-radius: 8px;
    }
    
    .video-container iframe {
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    .hero-image {
        margin: 0 10px;
        border-radius: 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
    
    .video-container {
        border-radius: 6px;
    }
    
    .video-container iframe {
        border-radius: 6px;
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.fade-in:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in:nth-child(4) {
    animation-delay: 0.4s;
}

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

section {
    padding: 80px 0;
}

.page-header {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.page-header .section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}


/* features section */
.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.features {
    background: transparent;
    padding-top: 120px;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 100px;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  backdrop-filter: blur(8px);
  padding: 40px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  
  /* NEW FLEX SETTINGS */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* makes all cards equal height */
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.feature-icon {
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1; /* pushes link to bottom if needed */
}


.feature-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
  margin-top: auto; /* ensures it stays at bottom */
}
.feature-link:hover {
    gap: 8px;
}

.features-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-detail-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-detail-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.industry-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.industry-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    line-height: 1.3;
}

.industry-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
}

.industry-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* products section */

.products {
    background: transparent;
    padding-top: 120px;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;

     align-items: stretch; /* make all cards equal height */


}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;

     /* ADD THESE LINES */
    display: flex;
    flex-direction: column;
    height: 100%;

    
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

.product-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 100%);
    border-color: rgba(255, 215, 0, 0.3);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-icon {
    margin-bottom: 30px;
}

.product-card h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.product-features {
    list-style: none;
    margin-bottom: 35px;

    /* ADD THIS LINE */
    flex-grow: 1;
}

.product-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    font-size: 15px;
}

.product-features li:last-child {
    border-bottom: none;
}

/* pricing highlights section on home page */

.pricing-highlights {
    background: transparent;
    padding: 120px 0;
    position: relative;
}

.pricing-highlights::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.pricing-highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-highlight-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    text-align: center;
}

.pricing-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-highlight-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 100%);
    border-color: rgba(255, 215, 0, 0.3);
    transform: scale(1.05);
}

.pricing-highlight-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-highlight-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
}

.pricing-highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-highlight-price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 15px;
}

.pricing-highlight-price .currency {
    font-size: 18px;
    font-weight: 600;
    margin-top: 5px;
}

.pricing-highlight-price .amount {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.pricing-highlight-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.pricing-highlight-includes {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-style: italic;
}

.pricing-highlight-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-highlight-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-cta {
    text-align: center;
    margin-top: 50px;
    font-size: 16px;
}

.pricing-cta .cta-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.pricing-cta .cta-link:hover {
    color: #FFA500;
}

/* pricing section*/

.pricing {
    background: transparent;
    padding-top: 120px;
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.pricing-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-grid-2 .pricing-card-2 {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    min-height: 100px;
    transition: all 0.3s ease;
}

.pricing-grid-2 .pricing-card-2.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pricing-grid-2 .pricing-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns for features */
    gap: 15px;
    margin: 20px 0;
}

.pricing-grid-2 .pricing-card-2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(10px);
  padding: 36px 28px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: all 0.4s ease;
  position: relative;

  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between; /* Pushes button to bottom */
}


.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    backdrop-filter: blur(12px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
}

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

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    margin-top: 6px;
}

.amount {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.1;
}

.period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 10px;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 6px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-style: italic;
}

.pricing-best-for {
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 10px 14px;
    margin: 12px 0;
    font-size: 13px;
    color: var(--text-primary);
    border-radius: 4px;
}

.product-best-for {
    background: rgba(255, 215, 0, 0.1);
    border-left: 3px solid var(--primary-color);
    padding: 12px 15px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-primary);
    border-radius: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 24px;
  flex-grow: 1; /* Let this section grow to fill space */
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-card .btn {
  margin-top: auto; /* Sticks to bottom of flex container */
  align-self: center; /* Center horizontally */
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px auto;
     max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.screenshot-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.screenshot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
}

.screenshot-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.screenshot-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.screenshot-card:hover .screenshot-image img {
    transform: scale(1.03);
}

.screenshot-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.screenshot-content h4 {
    font-size: 18px;
    margin: 0 0 8px;
    color: var(--primary-color);
}

.screenshot-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}


/* testimonials */
.testimonials {
    background: transparent;
    padding-top: 120px;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.testimonials-carousel {
    margin-bottom: 0;
}

.testimonial-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

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

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-rating {
    font-size: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

.partners {
    text-align: center;
    margin-bottom: 80px;
}

.partners-title {
    color: var(--text-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    color: var(--text-secondary);
    font-size: 18px;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

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

.cta-banner {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12) 0%, rgba(255, 215, 0, 0.04) 100%);
    border: 1px solid rgba(255, 215, 0, 0.18);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-banner h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-banner p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.faq {
    background: transparent;
    padding-top: 120px;
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 20px;
     align-items: start; /* Align items to the top */
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;

    /*update for close empty space of othe card */
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    height: fit-content;


}



.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 15px;
}


/* contact section */

.contact {
    background: transparent;
    padding-top: 120px;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-color);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
}

.contact-info-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}
.contact-action {
    text-align: center;
}

.social-links h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer {
    position: relative;
    z-index: 10;
    background-color: #0a0a12;
    padding: 50px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    margin-bottom: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text-color);
    font-size: 14px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-cities-section {
    width: 100%;
    padding: 30px 0;
    margin-bottom: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-cities-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-cities {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.8;
    word-wrap: break-word;
}

.footer-cities a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-cities a:hover {
    color: var(--primary-color);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    z-index: 999;
}

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

.scroll-to-top:hover {
    background-color: var(--primary-color-dark);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #20BA5A;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 150px;
        left: 20px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
}

/* Mobile Call Button - Only visible on mobile */
.mobile-call-button {
    display: none;
}

@media (max-width: 768px) {
    .mobile-call-button {
        position: fixed;
        bottom: 90px;
        left: 20px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #10b981, #059669);
        border-radius: 50%;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.45);
        z-index: 9999;
        transition: all 0.3s ease;
        text-decoration: none;
        animation: callPulse 2s infinite;
    }

    .mobile-call-button:hover,
    .mobile-call-button:active {
        background: linear-gradient(135deg, #059669, #047857);
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 22px rgba(16, 185, 129, 0.6);
        text-decoration: none;
        color: white;
    }

    .mobile-call-button svg {
        width: 24px;
        height: 24px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

    @keyframes callPulse {
        0% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.45); }
        50% { box-shadow: 0 4px 25px rgba(16, 185, 129, 0.7); }
        100% { box-shadow: 0 4px 15px rgba(16, 185, 129, 0.45); }
    }
}

/* Anchor link styling */
a {
    color: var(--link-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

/* Sinhala hero subtitle styling */
.hero-subtitle-sinhala {
    color: var(--primary-color);
    font-family: 'Noto Sans Sinhala', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-top: 8px;
    display: block;
    letter-spacing: 0.35px;
    line-height: 1.12;
    text-shadow: 0 4px 14px rgba(184, 134, 11, 0.07);
}

@media (max-width: 768px) {
    .hero-subtitle-sinhala {
        font-size: 18px;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        gap: 20px;
    }

    .hero-title {
        font-size: 44px;
    }

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

    .features-detail,
    .industry-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-track {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: rgba(13, 12, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 10px;
        font-size: 16px;
    }

    .nav-link.active::after {
        bottom: 5px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

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

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

    .page-header h1 {
        font-size: 36px;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .features-grid,
    .products-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .cta-banner {
        padding: 40px 24px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }

    .cta-banner p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

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

    .industry-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid-2 .pricing-card-2 {
        min-height: auto;
    }

}

/* Scroll reveal animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure the table is visible */
.req-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.req-table th, .req-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.req-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.req-table tr:last-child td {
    border-bottom: none;
}

/* System Requirements Section */
.system-req {
    background: transparent;
    padding: 80px 0;
    position: relative;
    display: block !important;
}

.system-req::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* How It Works Section */
.how-it-works {
    background: transparent;
    padding: 80px 0;
    position: relative;
    display: block !important;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Step Cards */
.step-card.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.step-card.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}












.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.benefits-section {
    background: transparent;
    padding: 80px 0;
    position: relative;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.benefit-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.stats-section {
    padding: 70px 50px;
    position: relative;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.05) 0%, rgba(13, 12, 23, 0.9) 65%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: -20% 0 auto 0;
    height: 65%;
    background: radial-gradient(circle at 50% 0%, rgba(255, 215, 0, 0.45), transparent 60%);
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

.stats-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(13, 12, 23, 0.35));
    mix-blend-mode: screen;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

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

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

.stat-card {
    position: relative;
    text-align: center;
    padding: 30px 24px;
    border-radius: 20px;
    background: rgba(6, 7, 16, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.2), transparent 55%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.55);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 50px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.35px;
}

.how-it-works {
    background: transparent;
    padding: 100px 0;
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

/* Blog Detail Styles */
.blog-detail {
    position: relative;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
}

.blog-detail::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, #1a0b2e 0%, #0d0c17 40%, #000000 100%);
    z-index: -2;
}

.blog-detail::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 12, 23, 0.7);
    z-index: -1;
    backdrop-filter: blur(8px);
}

.blog-detail-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--primary-color-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.step-image {
    margin-bottom: 30px;
    padding-top: 40px;
    display: flex;
    justify-content: center;
}

.step-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.blog-section {
    background: transparent;
    padding: 120px 0 100px 0;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;

      align-items: stretch; /* Changed from 'start' to 'stretch' */
}

.blog-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex; /* Changed to flex */
    flex-direction: column; /* Stack children vertically */
    height: 100%; /* Take full height */

}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.blog-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;

     flex-shrink: 0; /* Prevent image from shrinking */
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    
    padding: 30px;
    display: flex; /* Make content a flex container */
    flex-direction: column; /* Stack children vertically */
    flex-grow: 1; /* Allow content to grow and fill space */


}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-secondary);
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-read-time {
    display: flex;
    align-items: center;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;

     flex-grow: 1; /* Allow excerpt to take up remaining space */
}

.blog-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;

       margin-top: auto; /* Push button to bottom */
}

.blog-toggle:hover {
    gap: 12px;
}

.blog-arrow {
    transition: transform 0.3s ease;
}

.blog-card.expanded .blog-arrow {
    transform: rotate(180deg);
}

.blog-full-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

.blog-card.expanded .blog-full-content {
    max-height: 5000px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-full-content h4 {
    color: var(--text-color);
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 16px;
}

.blog-full-content ul,
.blog-full-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.blog-full-content li {
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.blog-full-content p {
    margin-bottom: 16px;
}

.blog-full-content strong {
    color: var(--text-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .benefits-grid,
    .steps-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .stat-number {
        font-size: 36px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .steps-grid {
        gap: 40px;
    }

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


/* Blog detail pages and readmore button */
.btn-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Center the text inside button */
    gap: 8px;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid rgba(16,185,129,0.4);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    margin: auto auto 0 auto; /* Center button horizontally and push to bottom */
    width: fit-content; /* Prevent button from stretching */
}
.btn-readmore:hover {
    background: rgba(16,185,129,0.12);
    transform: translateY(-1px);
    text-decoration: none;
}

.blog-detail {
    padding-top: 120px;
    padding-bottom: 80px;
}
.blog-detail .breadcrumb {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}
.blog-detail .breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}
.blog-detail .breadcrumb a:hover {
    color: var(--primary-color);
}
.blog-detail-hero {
    text-align: center;
    margin-bottom: 30px;
    position: relative; /* enable overlay positioning */
}
/* badge over hero image on detail pages */
.blog-detail-hero-inner { position: relative; display: inline-block; }
.blog-detail-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.2px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    z-index: 2;
}
@media (max-width: 768px) {
    .blog-detail-badge { top: 8px; left: 8px; padding: 5px 12px; font-size: 11px; }
}
.blog-detail-hero img {
    width: 100%;
    max-width: 640px; /* reduced size for better balance */
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    margin: 0 auto 20px; /* vertical spacing under image */
}

/* New: fine-grained spacing under image and among meta lines */
.blog-detail-hero { margin-bottom: 20px; }
.blog-detail-meta { margin-top: 16px; gap: 12px; }

/* New: explicit classes requested by issue for spacing */
.blog-detail-image img, /* alias if used */
.blog-detail-hero img {
    display: block;
}
.blog-category, /* listing card pill */
.blog-detail-category { margin-top: 8px; }
.blog-date { margin-top: 6px; }
.blog-read-time { margin-top: 6px; }
.blog-detail-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}
.blog-detail-category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 600;
}
.blog-detail-title {
    font-size: 34px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
    margin: 24px auto 10px;
}
.blog-detail-content {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.9;
}
.blog-detail-content h2,
.blog-detail-content h3,
.blog-detail-content h4 {
    color: var(--text-color);
    margin: 28px 0 12px;
}
.blog-detail-content p { margin: 14px 0; }
.blog-detail-content ul, .blog-detail-content ol { margin: 12px 0 16px 20px; }
.blog-detail-content li { margin: 8px 0; }


/* Beautiful table styles for blog content */
.blog-detail-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-detail-content table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(16, 185, 129, 0.8) 100%);
}

.blog-detail-content table thead tr th {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 18px 20px;
    text-align: left;
    border: none;
}

.blog-detail-content table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.blog-detail-content table tbody tr:last-child {
    border-bottom: none;
}

.blog-detail-content table tbody tr:hover {
    background: rgba(16, 185, 129, 0.08);
    transform: scale(1.01);
}

.blog-detail-content table tbody tr td {
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08); /* Vertical line between columns */
}

.blog-detail-content table tbody tr td:first-child {
    color: var(--text-color);
    font-weight: 600;
}

.blog-detail-content table tbody tr td:last-child {
    color: var(--text-secondary);
    font-weight: 600;
    border-right: none; /* Remove border from last column */
}

/* Highlight specific important columns with green - use nth-child */
/* For 3rd column (price column) */
.blog-detail-content table tbody tr td:nth-child(3) {
    color: var(--primary-color);
    font-weight: 600;
}

/* Alternative: uncomment to highlight 2nd column instead */
/* .blog-detail-content table tbody tr td:nth-child(2) {
    color: var(--primary-color);
    font-weight: 600;
} */

/* Highlight an entire row - add class to <tr> */
.blog-detail-content table tbody tr.highlight-row {
    background: rgba(16, 185, 129, 0.15);
}

.blog-detail-content table tbody tr.highlight-row td {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-detail-content table thead tr th {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 18px 20px;
    text-align: left;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.2); /* Vertical line between header columns */
}

.blog-detail-content table thead tr th:last-child {
    border-right: none; /* Remove border from last header column */
}

/* Responsive table */
@media (max-width: 768px) {
    .blog-detail-content table {
        font-size: 14px;
    }
    
    .blog-detail-content table thead tr th,
    .blog-detail-content table tbody tr td {
        padding: 12px 14px;
    }
    
    .blog-detail-content table thead tr th {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .blog-detail { padding-top: 100px; padding-bottom: 60px; }
    .blog-detail-title { font-size: 26px; }
    .blog-detail-hero img { max-width: 90%; }
}


/* EmailJS Status Messages */
.status-message {
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  display: none;
  animation: slideDown 0.3s ease;
  text-align: center;
  font-weight: 500;
}

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

.status-message.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.status-message.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Welcome Banner with Transparent Gold Boxes */
.welcome-banner {
  background: transparent;
  padding: 30px 0;
  position: relative;
  z-index: 10;
}

.banner-boxes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 20px auto;
}

.banner-box {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 215, 0, 0) 100%);
  pointer-events: none;
}

.banner-box:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
}

.box-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  color: #FFD700;
  transition: all 0.3s ease;
}

.banner-box:hover .box-icon {
  background: rgba(255, 215, 0, 0.25);
  transform: scale(1.1);
}

.box-icon svg {
  width: 24px;
  height: 24px;
  stroke: #FFD700;
}

.banner-box h3 {
  font-size: 14px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 4px;
  position: relative;
  z-index: 1;
}

.banner-box p {
  font-size: 12px;
  color: #a0a0a0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Responsive Design for Welcome Banner */
@media (max-width: 1024px) {
  .banner-boxes-grid {
    gap: 16px;
  }

  .banner-box {
    padding: 14px;
  }

  .banner-box h3 {
    font-size: 13px;
  }

  .banner-box p {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .banner-boxes-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 16px auto;
  }

  .banner-box {
    padding: 12px;
  }

  .banner-box h3 {
    font-size: 12px;
  }

  .banner-box p {
    font-size: 11px;
  }

  .box-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 6px;
  }
}

/* Warranty Banner - Right Side, Aligned with WhatsApp Button */
.warranty-banner {
  position: fixed;
  bottom: 30px;
  right: 90px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid #FFD700;
  border-radius: 8px;
  padding: 12px 16px;
  max-width: 280px;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transform: translateX(400px);
  transition: all 0.4s ease-in-out;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.warranty-banner.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.warranty-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.warranty-icon {
  color: #FFD700;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
}

.warranty-text {
  flex: 1;
  min-width: 150px;
}

.warranty-title {
  font-size: 13px;
  font-weight: 700;
  color: #FFD700;
  margin: 0;
  line-height: 1.2;
}

.warranty-desc {
  font-size: 11px;
  color: #a0a0a0;
  margin: 2px 0 0 0;
  line-height: 1.2;
}

.warranty-close {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.warranty-close:hover {
  transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .warranty-banner {
    right: 80px;
  }
}

@media (max-width: 768px) {
  .warranty-banner {
    bottom: 90px;
    right: 20px;
    max-width: 260px;
    padding: 10px 14px;
  }

  .warranty-icon {
    width: 28px;
    height: 28px;
  }

  .warranty-icon svg {
    width: 20px;
    height: 20px;
  }

  .warranty-title {
    font-size: 12px;
  }

  .warranty-desc {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .warranty-banner {
    bottom: 100px;
    right: 15px;
    max-width: 220px;
    padding: 8px 12px;
  }

  .warranty-text {
    min-width: 100px;
  }

  .warranty-title {
    font-size: 11px;
  }

  .warranty-desc {
    font-size: 9px;
  }
}

/* Content Section Styling */
.content-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    z-index: 1;
}

.content-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.content-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.content-card-icon {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.content-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    color: #FFE082;
}

.content-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
}

/* Responsive Content Cards */
@media (max-width: 1024px) {
    .content-section {
        padding: 80px 0;
    }

    .content-cards-grid {
        gap: 28px;
    }

    .content-card {
        padding: 32px 24px;
    }

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

    .content-card p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }

    .content-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content-card {
        padding: 28px 20px;
    }

    .content-card h3 {
        font-size: 16px;
    }

    .content-card p {
        font-size: 14px;
    }

    .content-card-icon {
        width: 50px;
        height: 50px;
    }

    .content-card-icon svg {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 480px) {
    .content-section {
        padding: 40px 0;
    }

    .content-card {
        padding: 20px 16px;
    }

    .content-card-icon {
        margin-bottom: 16px;
    }

    .content-card h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .content-card p {
        font-size: 13px;
    }
}

/* Mobile Responsive Styles for Pricing Highlights Section */
/* Tablet and below (max-width: 992px) */
@media screen and (max-width: 992px) {
    .pricing-highlights-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .pricing-highlight-card {
        text-align: center;
    }
    
    .pricing-highlight-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .pricing-highlights {
        padding: 60px 0 !important;
    }
    
    .pricing-highlights .section-header {
        text-align: center;
        padding: 0 15px;
    }
    
    .pricing-highlights .section-title {
        font-size: 24px !important;
        line-height: 1.3;
    }
    
    .pricing-highlights-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .pricing-highlight-card {
        width: 100%;
        max-width: 350px;
        text-align: center;
        margin: 0 auto;
    }
    
    .pricing-highlight-card:last-child {
        grid-column: auto;
        max-width: 350px;
    }
    
    .pricing-highlight-card h3 {
        text-align: center;
    }
    
    .pricing-highlight-card .pricing-highlight-price {
        justify-content: center;
    }
    
    .pricing-highlight-card .pricing-highlight-desc,
    .pricing-highlight-card .pricing-highlight-includes {
        text-align: center;
    }
    
    .pricing-highlight-card .pricing-highlight-features {
        display: inline-block;
        text-align: left;
        padding: 0;
        margin: 15px auto;
    }
    
    .pricing-highlight-card .pricing-highlight-features li {
        padding: 6px 0;
    }
    
    .pricing-highlight-card .btn {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 15px auto 0 auto;
    }
    
    .pricing-cta {
        text-align: center;
        padding: 0 15px;
    }
}

/* Small mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
    .pricing-highlights {
        padding: 40px 0 !important;
    }
    
    .pricing-highlights .section-title {
        font-size: 20px !important;
    }
    
    .pricing-highlights .section-header p {
        font-size: 14px !important;
    }
    
    .pricing-highlights-grid {
        padding: 0 10px;
    }
    
    .pricing-highlight-card {
        max-width: 100%;
        padding: 20px 15px !important;
    }
    
    .pricing-highlight-card h3 {
        font-size: 18px;
    }
    
    .pricing-highlight-price .amount {
        font-size: 32px !important;
    }
    
    .pricing-highlight-card .pricing-highlight-desc {
        font-size: 14px;
    }
    
    .pricing-highlight-card .pricing-highlight-includes {
        font-size: 12px;
    }
    
    .pricing-highlight-card .pricing-highlight-features li {
        font-size: 14px;
    }
}
