/* =================core css starts here================= */
:root { --primary-color: #080527; --secondary-color: #4361ee; --accent-color: #3a0ca3; --light-color: #ffffff; --dark-color: #1a1a2e; --gray-color: #f8f9fa; --text-color: #333333; --border-radius: 8px; --border-radius-sm: 4px; --border-radius-md: 12px; --border-radius-lg: 16px; --transition: all 0.3s ease; --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); --gradient-1:linear-gradient(135deg, #4361ee, #7209b7); --gradient-2:linear-gradient(135deg, #7209b7, #3a0ca3); --font-heading: 'Syne', sans-serif; --font-body: 'Plus Jakarta Sans', sans-serif; }
html, body { font-family: var(--font-body); color: #000; background: #efefef; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; width: 100%; max-width: 100%; }
body { font-size: 16px; line-height: 24px; font-weight: 400; }
.container { width: 100%; max-width: 1200px; }
a, input, button { display: inline-block; text-decoration: none; color: inherit; outline: none; transition: all 0.2s ease-in; }
a:hover { color: var(--secondary-color); text-decoration: none; }
a:active, a:focus { outline: none; text-decoration: none; color: inherit; }
img { max-width: 100%; border: 0; height: auto; }
h1, h2, h3, h4, h5, h6 { margin: 0 0 24px; line-height: 1.2; font-weight: 700; font-family: var(--font-heading); }
h1 { font-size: 58px; }
h2 { font-size: 48px; }
h3 { font-size: 40px; }
h4 { font-size: 30px; }
h5 { font-size: 26px; }
h6 { font-size: 22px; }
p { margin: 0 0 24px; font-size: 15px; line-height: 24px; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 700; }
b { font-weight: 400; }
.os-animation { opacity: 0; }
.os-animation.animated { opacity: 1; }
.grey-bg { background: #f5f5f5; }

/* Button styles */
.btn { border-radius: 5px; font-weight: 700; padding: 12px 15px; min-width: 140px; font-size: 16px; line-height: 18px; box-shadow: none; transition: all 0.2s ease-in; }
.btn-default, .btn-default:focus { color: var(--primary-color); background-color: #fff; border: solid 1px var(--primary-color); }
.btn-default:hover, .btn-default:active { color: var(--primary-color); background-color: #fff; border-color: var(--primary-color); }
.btn-primary, .btn-primary:focus { color: #fff; background-color: var(--primary-color); border: solid 1px var(--primary-color); }
.btn-primary:hover, .btn-primary:active { color: #fff; background-color: var(--accent-color); border-color: var(--accent-color); }
.btn.btn-block { min-width: 100%; }
.btn+.btn { margin-left: 25px; }
ul:not([class]) { list-style: none; margin-bottom: 15px; text-align: left; line-height: 22px; }

/* Header styles */
#header { position: fixed; width: 100%; top: 0; left: 0; z-index: 1000; transition: var(--transition); background: rgba(8, 5, 39, 0.9); backdrop-filter: blur(10px); }
.navbar { padding: 0.75rem 0; transition: var(--transition); }
.navbar-scrolled { background: var(--primary-color); box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
.navbar-brand { padding: 0; margin: 0; position: relative; z-index: 999; }
.navbar-brand h4 { font-size: 24px; color: #fff; margin: 0; border: 1.5px solid #fff; padding: 8px 12px; border-radius: 6px; }
.navbar-brand img { filter: brightness(0) invert(1); }

/* Navigation styles */
.navbar-nav .nav-link { display: block; color: #fff; font-weight: 500; font-family: var(--font-heading); }
.navbar-expand-xl .navbar-nav .nav-item { margin: 0 15px; }
.navbar-expand-xl .navbar-nav .nav-link { font-size: 16px; line-height: 43px; padding: 0; margin: 0; }
.navbar-nav .nav-link.active, .navbar-nav .nav-link.show { color: rgb(0 162 190); }
.navbar-expand-xl .navbar-nav .nav-item:hover .nav-link, .navbar-expand-xl .navbar-nav .nav-item.active .nav-link { color: var(--secondary-color); }
.navbar-toggler { border: none; background: transparent; width: 30px; height: 30px; position: relative; margin-left: auto; cursor: pointer; z-index: 1000; }
.navbar-toggler span { display: block; width: 24px; height: 2px; background: #fff; position: absolute; left: 8px; transition: var(--transition); }
.navbar-toggler span:nth-child(1) { top: 12px; }
.navbar-toggler span:nth-child(2) { top: 19px; }
.navbar-toggler span:nth-child(3) { top: 26px; }
.navbar-toggler.active span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.navbar-toggler.active span:nth-child(2) { opacity: 0; }
.navbar-toggler.active span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* Responsive styles */
@media only screen and (min-width:1200px) {
    .navbar-collapse { position: static; width: auto; height: auto; background: transparent; padding: 0; overflow: visible; box-shadow: none; left: auto; }
    .navbar-nav { margin-top: 0; display: flex; flex-direction: row; }
    .navbar-nav .nav-item { padding: 0; border-bottom: none; }
    .navbar-nav .nav-link { padding: 0; }
    .navbar-nav>li>.dropdown-menu { display: block !important; top: 100% !important; margin-top: 10px !important; opacity: 0; visibility: hidden; background: var(--primary-color); color: #fff; min-width: 180px; box-shadow: 0 5px 8px rgba(0, 0, 0, 0.2); border: 0; border-radius: var(--border-radius); transition: all 0.1s ease-in; }
    .dropdown-item { color: #fff; padding: 5px 15px; font-weight: 400; }
    .dropdown-item:focus, .dropdown-item:hover { color: var(--secondary-color); background: transparent; }
}
@media only screen and (max-width:1199px) {
    .navbar-collapse { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--dark-color); z-index: 999; padding: 100px 30px 30px; transition: var(--transition); overflow-y: auto; box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15); }
    .navbar-collapse.show { right: 0; }
    .navbar-nav { width: 100%; }
    .navbar-nav .nav-item { margin: 0; padding: 8px 0; width: 100%; }
    .navbar-nav .nav-link { font-size: 16px; padding: 8px 0; width: 100%; }
    .navbar-nav .nav-link:hover { color: var(--primary-color); }
}
body.menu-open { overflow: hidden; }

/* Smartmenus CSS */
.navbar-nav .sub-arrow { position: absolute; top: 50%; right: 0; margin: -0.7em 0.5em 0 0; border: 1px solid rgba(0, 0, 0, .1); border-radius: .25rem; padding: 0; width: 2em; height: 1.4em; font-size: 1.25rem; line-height: 1.2em; text-align: center; }
.navbar-nav .sub-arrow::before { content: '+'; }
.navbar-nav .show>a>.sub-arrow::before { content: '-'; }
.navbar-dark .navbar-nav .nav-link .sub-arrow { border-color: rgba(255, 255, 255, .1); }
.navbar-nav .has-submenu { padding-right: 3em; }
.navbar-nav .nav-link .sub-arrow { display: inline-block; width: 0; height: 0; margin-left: .255em; vertical-align: .255em; border-top: .3em solid; border-right: .3em solid transparent; border-left: .3em solid transparent; }
.fixed-bottom .navbar-nav .nav-link .sub-arrow, .fixed-bottom .navbar-nav .dropdown-toggle::after { border-top: 0; border-bottom: .3em solid; }
.navbar-nav .dropdown-item .sub-arrow, .navbar-nav .dropdown-menu .dropdown-toggle::after { position: absolute; top: 50%; right: 0; width: 0; height: 0; margin-top: -.3em; margin-right: 1em; border-top: .3em solid transparent; border-bottom: .3em solid transparent; border-left: .3em solid; }
.navbar-nav .dropdown-item.has-submenu { padding-right: 2em; }
.navbar-nav .scroll-up, .navbar-nav .scroll-down { position: absolute; display: none; visibility: hidden; height: 20px; overflow: hidden; text-align: center; }
.navbar-nav .scroll-up-arrow, .navbar-nav .scroll-down-arrow { position: absolute; top: -2px; left: 50%; margin-left: -8px; width: 0; height: 0; overflow: hidden; border-top: 7px solid transparent; border-right: 7px solid transparent; border-bottom: 7px solid; border-left: 7px solid transparent; }
.navbar-nav .scroll-down-arrow { top: 6px; border-top: 7px solid; border-right: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 7px solid transparent; }
.navbar-nav .dropdown-menu .dropdown-menu { margin: .5em; }
.navbar-nav .dropdown-item { white-space: normal; }
.navbar-nav .sm-nowrap>li>.dropdown-item { white-space: nowrap; }

/* =================reset css starts here=================  */
* { margin: 0; padding: 0; }
a { text-decoration: none; border: 0; outline: 0; }
ul { list-style: none; }
a:focus, input:focus, textarea:focus, *:focus { outline: 0 !important; }

/* Heading styles */
.heading { margin-bottom: 30px; }
.heading h3 { font-size: 44px; margin-bottom: 0; color: #080527; }
.heading h3 span { margin-bottom: 15px; display: inline-block; padding-bottom: 15px; position: relative; }
.heading h3 span::before, .heading h3 span::after { position: absolute; content: ''; background: #080527; bottom: 0; }
.heading h3 span::before { width: 100px; height: 1.5px; }
.heading h3 span::after { width: 26px; height: 4px; left: 0; bottom: -1px; }
.heading p { margin-bottom: 0; }
.heading p+p { margin-top: 14px; }
.type2 h3 span::before, .type2 h3 span::after { left: 50%; transform: translateX(-50%); }
.about-cta { margin-top: 30px; }

/* Hero section */
.hero-section { position: relative; padding: 7rem 0 5rem; background: var(--dark-color); color: var(--light-color); overflow: hidden; margin-top: 0; }
.hero-subtitle { display: inline-block; background: rgba(255, 255, 255, 0.1); padding: 0.5rem 1rem; border-radius: 50px; font-size: 0.9rem; font-weight: 500; margin-bottom: 1.5rem; color: var(--secondary-color); border: 1px solid rgba(67, 97, 238, 0.3); }
.hero-content, .hero-form { position: relative; z-index: 2; }
.hero-content { padding-right: 2rem; }
.hero-content h1 { font-family: var(--font-heading); font-size: 3.5rem; font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; }
.hero-content .lead { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.gradient-text { background: linear-gradient(to left, #00f, #0ff) !important; -webkit-background-clip: text !important; -webkit-text-fill-color: transparent !important; background-clip: text !important; color: transparent !important; display: inline-block !important; font-size: 5rem !important; font-weight: bold !important; }
.hero-cta { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
.hero-clients { margin-top: 2rem; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 1.5rem; }
.hero-clients>span { display: block; font-size: 0.9rem; opacity: 0.7; margin-bottom: 1rem; }
.client-logos { display: flex; gap: 1.5rem; align-items: center; }
.client-logo { opacity: 0.6; transition: var(--transition); }
.client-logo:hover { opacity: 1; }
.client-logo i { font-size: 1.5rem; }

/* Shapes */
.shape-blob, .shape-blob-2 { position: absolute; border-radius: 50%; z-index: 0; background: radial-gradient(circle, rgba(67, 97, 238, 0.2) 0%, transparent 70%); animation: pulse ease-in-out infinite; }
.shape-blob { width: 600px; height: 600px; top: -300px; right: -200px; animation-duration: 15s; }
.shape-blob-2 { width: 400px; height: 400px; bottom: -200px; left: -100px; background: radial-gradient(circle, rgba(67, 97, 238, 0.15) 0%, transparent 70%); animation-duration: 12s; animation-direction: reverse; }
.shape-cube, .shape-sphere { position: absolute; border: 2px solid rgba(255, 255, 255, 0.1); z-index: 1; }
.shape-cube { width: 80px; height: 80px; top: 20%; left: 15%; animation: float 10s ease-in-out infinite; }
.shape-sphere { width: 120px; height: 120px; border-radius: 50%; bottom: 15%; right: 10%; animation: floatSphere 8s ease-in-out infinite; }

/* Banner Image */
.banner-image { position: relative; border-radius: 12px; border: 2px dashed var(--secondary-color); padding: 10px; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); max-height: 300px; object-fit: cover; width: 100%; }
.banner-image:hover { transform: translateY(-5px); border-color: var(--primary-color); box-shadow: 0 15px 35px rgba(67, 97, 238, 0.3); }
.banner-upload-container { position: relative; display: block; cursor: pointer; overflow: hidden; border-radius: 12px; margin-bottom: 10px; z-index: 5; height: 599px; }
.upload-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; border-radius: 12px; color: #fff; pointer-events: none; }
.upload-overlay i { font-size: 3rem; margin-bottom: 15px; color: var(--secondary-color); }
.upload-overlay span { font-size: 1.2rem; font-weight: 600; padding: 8px 20px; border-radius: 50px; }
.banner-upload-container:hover .upload-overlay { opacity: 1; }
.banner-upload-container:hover .banner-image { transform: scale(1.02); filter: blur(2px); }

/* File selected states */
.banner-image.file-selected { border: 2px solid #28a745; box-shadow: 0 15px 35px rgba(40, 167, 69, 0.3); }
.file-selected+.upload-overlay { background: rgba(40, 167, 69, 0.7); }
.file-selected+.upload-overlay i { color: #fff; }
.file-selected+.upload-overlay span { background: #fff; color: #28a745; }
.upload-success-message { position: absolute; bottom: -50px; left: 0; width: 100%; background: #28a745; color: white; padding: 10px; border-radius: 0 0 12px 12px; text-align: center; font-weight: 600; animation: slideUp 0.5s forwards; z-index: 10; pointer-events: none; }
.upload-success-message i { margin-right: 8px; font-size: 1.2rem; }
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Form styles */
.hero-form { margin-top: 1rem; }
.content-container { padding: 5rem 0; }
.content-container.pb-0 { padding-bottom: 0; }
.form-card { background: rgba(255, 255, 255, 0.05); backdrop-filter: blur(10px); border-radius: var(--border-radius-lg); padding: 2.5rem; border: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); position: relative; z-index: 5; }
.form-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.form-icon { width: 80px; height: 50px; background: var(--gradient-1); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.form-header h3 { margin: 0; font-family: var(--font-heading); font-weight: 700; }
.form-header p { margin: 0; opacity: 0.8; font-size: 0.9rem; }
.design-upload-form .form-group { margin-bottom: 1.25rem; }
.design-upload-form .form-control::placeholder { color: white; }
.design-upload-form label { display: block; margin-bottom: 0.5rem; font-weight: 500; font-size: 0.9rem; }
.custom-file-upload { border: 1px dashed rgba(255, 255, 255, 0.3); border-radius: var(--border-radius); padding: 1.5rem; text-align: center; cursor: pointer; transition: var(--transition); }
.custom-file-upload:hover { border-color: var(--secondary-color); background: rgba(255, 255, 255, 0.05); }
.btn-header { color: #fff; background-color: var(--accent-color); border-color: var(--accent-color); }
.btn-header:hover { background-color: var(--secondary-color); border-color: var(--secondary-color); }
@media (max-width:768px) {
    .gradient-text { font-size: 2.5rem !important; }
}

/* Common Sections Styling */
.features-section, .rewards-section { padding: 5rem 0; background: var(--gray-color); position: relative; }
.about-section, .featured-works { padding: 5rem 0; background: var(--light-color); position: relative; }
.services-section { padding: 5rem 0; background: var(--primary-color); color: var(--light-color); position: relative; overflow: hidden; }

/* Card Styling */
.feature-card, .reward-card, .project-card { background: var(--light-color); border-radius: var(--border-radius-lg); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); transition: var(--transition); height: 100%; overflow: hidden; }
.feature-card, .reward-card { padding: 2rem 2.5rem; border: 1px solid rgba(0, 0, 0, 0.05); }
.reward-card { padding: 2rem; }
.feature-card:hover, .reward-card:hover, .project-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }
.feature-card.featured, .reward-card.featured { background: var(--gradient-1); color: var(--light-color); border: none; }
.feature-metrics { display: flex; gap: 1.5rem; }
.metric span { font-size: 1.5rem; font-weight: 700; }
.metric span + span { font-size: 16px; display: block; font-weight: 400; }

/* Badge Styling */
.feature-badge, .featured-label, .project-category { position: absolute; border-radius: 50px; font-size: 0.75rem; font-weight: 600; }
.feature-badge, .featured-label { top: 1rem; right: 1rem; background: rgba(255, 255, 255, 0.2); color: var(--light-color); padding: 0.25rem 0.75rem; }
.project-category { top: 1rem; left: 1rem; background: var(--primary-color); color: var(--light-color); padding: 0.25rem 0.75rem; z-index: 1; }

/* Icon Styling */
.feature-icon, .reward-icon, .mvo-icon { background: rgba(67, 97, 238, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); margin-bottom: 1.5rem; }
.feature-icon, .reward-icon { width: 70px; height: 70px; font-size: 1.75rem; }
.reward-icon { width: 60px; height: 60px; }
.mvo-icon { width: 80px; height: 80px; background: rgba(255, 255, 255, 0.1); margin: 0 auto 1.5rem; color: var(--secondary-color); }
.feature-card.featured .feature-icon, .reward-card.featured .reward-icon { background: rgba(255, 255, 255, 0.2); color: var(--light-color); }

/* Content Styling */
.feature-content h3, .reward-content h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; font-size: 1.5rem; }
.feature-content p, .reward-content p, .project-content p, .mvo-box p { margin-bottom: 1.5rem; opacity: 0.9; }
.project-content p { font-size: 0.9rem; }

/* About Section Styling */
.about-content { padding-right: 2rem; }
.about-title { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--primary-color); }
.about-stats { background: var(--gray-color); border-radius: var(--border-radius); padding: 1.5rem; margin: 2rem 0; }
.stat-item { text-align: center; margin-bottom: 1rem; }
.stat-number { font-size: 2.5rem; font-weight: 700; color: var(--primary-color); margin-bottom: 0.5rem; font-family: var(--font-heading); }
.stat-label { font-size: 0.9rem; color: var(--text-color); opacity: 0.8; }

/* Feature List Styling */
.feature-item, .reward-features li { display: flex; align-items: center; margin-bottom: 0.75rem; }
.feature-item i, .reward-features li i { color: var(--secondary-color); margin-right: 0.75rem; }
.feature-item i { margin-right: 0.5rem; }
.reward-card.featured .reward-features li i { color: var(--light-color); }

/* About Image Styling */
.about-image-grid { position: relative; height: 100%; min-height: 400px; }
.main-image { position: relative; border-radius: var(--border-radius-lg); overflow: hidden; box-shadow: var(--box-shadow); height: 100%; }
.main-image img, .project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-image img { transition: var(--transition); }
.project-card:hover .project-image img { transform: scale(1.05); }
.image-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5)); }
.experience-badge { position: absolute; bottom: 2rem; right: 2rem; background: var(--primary-color); color: var(--light-color); padding: 1rem; border-radius: 50%; width: 100px; height: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; box-shadow: var(--box-shadow); }
.experience-badge .years { font-size: 2rem; font-weight: 700; line-height: 1; font-family: var(--font-heading); }
.experience-badge .text { font-size: 0.8rem; opacity: 0.9; }

/* Shape Elements */
.shape-element { position: absolute; z-index: -1; }
.shape-1 { width: 100px; height: 100px; border: 3px solid var(--secondary-color); border-radius: var(--border-radius); top: -20px; left: -20px; opacity: 0.3; }
.shape-2 { width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(67, 97, 238, 0.1) 0%, transparent 70%); bottom: -30px; right: -30px; }

/* Reward Amount Styling */
.reward-amount { display: flex; align-items: baseline; margin-bottom: 1rem; }
.reward-amount .amount { font-size: 2.5rem; font-weight: 700; color: var(--secondary-color); line-height: 1; font-family: var(--font-heading); }
.reward-card.featured .reward-amount .amount { color: var(--light-color); }
.reward-amount .label { font-size: 1rem; margin-left: 0.5rem; opacity: 0.7; }
.rewards-footer { margin-top: 3rem; }

/* Project Card Styling */
.project-image { position: relative; overflow: hidden; height: 240px; }
.project-content { padding: 1.5rem; }
.project-content h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; font-size: 1.25rem; }
.project-meta { display: flex; gap: 1rem; margin-bottom: 1rem; }
.project-meta span { display: flex; align-items: center; font-size: 0.8rem; color: var(--text-color); opacity: 0.7; }
.project-meta span i { margin-right: 0.5rem; color: var(--secondary-color); }

/* Button Styling */
.btn-custom { background: transparent; color: var(--primary-color); border: 1px solid var(--primary-color); padding: 0.5rem 1rem; border-radius: var(--border-radius); font-size: 0.9rem; font-weight: 600; transition: var(--transition); }
.btn-custom:hover { background: var(--primary-color); color: var(--light-color); }
.our-work-cta .btn-default { background: transparent; border-color: rgba(255, 255, 255, 0.3); color: var(--light-color); }
.our-work-cta .btn-default:hover { background: var(--light-color); color: var(--primary-color); border-color: var(--light-color); }

/* Services Section Styling */
.services-section .heading h3 { color: var(--light-color); }
.services-section .heading h3 span::before, .services-section .heading h3 span::after { background: var(--light-color); }
.services-section .heading p { color: rgba(255, 255, 255, 0.8); }
.mvo-list { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 3rem; }
.mvo-item { flex: 1 1 calc(33.333% - 1.5rem); min-width: 280px; }
.mvo-box { background: rgba(255, 255, 255, 0.05); border-radius: var(--border-radius-lg); padding: 2.5rem; height: 100%; transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.1); text-align: center; }
.mvo-box:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); }
.mvo-box h5 { font-size: 1.5rem; margin-bottom: 1rem; font-family: var(--font-heading); }
.our-work-cta { margin-top: auto; }

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(45deg); }
    50% { transform: translateY(-20px) rotate(45deg); }
}
@keyframes floatSphere {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* Responsive Styles */
@media (max-width:991px) {
    .hero-section { padding: 6rem 0 4rem; }
    .hero-section .container { margin-top: 20px; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-cta { flex-direction: column; gap: 0.75rem; }
    .form-icon { width: 110px; }
    .hero-cta .btn { width: 100%; }
    .btn+.btn { margin-left: 0; }
    .about-content { padding-right: 0; margin-bottom: 3rem; }
    .about-image-grid { min-height: 350px; }
}
@media (max-width:767px) {
    .hero-section { padding: 5rem 0 3rem; }
    .hero-content h1 { font-size: 2rem; }
    .hero-subtitle { font-size: 0.8rem; }
    .form-card { padding: 1.5rem; }
    .stat-number { font-size: 2rem; }
    .experience-badge { width: 80px; height: 80px; padding: 0.75rem; }
    .experience-badge .years { font-size: 1.5rem; }
    .hero-cta { flex-direction: column; gap: 0.5rem; }
    .hero-cta .btn { width: 100%; margin-left: 0 !important; }
    .client-logos { flex-wrap: wrap; justify-content: center; }
}

/* Common Section Styles */
.pricing-section, .process-section { padding: 5rem 0; background: var(--light-color); position: relative; }
.technologies-section, .technologies-section { padding-bottom: 7rem; }
.cta-section { padding: 5rem 0; background: var(--gradient-1); color: var(--light-color); position: relative; overflow: hidden; }

/* Pricing Toggle */
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.toggle-label { font-weight: 500; opacity: 0.6; transition: var(--transition); }
.toggle-label.active { opacity: 1; color: var(--primary-color); font-weight: 600; }

/* Switch Styles */
.switch { position: relative; display: inline-block; width: 60px; height: 30px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; }
.slider:before { position: absolute; content: ""; height: 22px; width: 22px; left: 4px; bottom: 4px; background-color: white; transition: .4s; }
input:checked+.slider { background-color: var(--secondary-color); }
input:focus+.slider { box-shadow: 0 0 1px var(--secondary-color); }
input:checked+.slider:before { transform: translateX(30px); }
.slider.round { border-radius: 34px; }
.slider.round:before { border-radius: 50%; }

/* Common Card Styles */
.pricing-card, .tech-card, .process-step, .pricing-feature-item { background: var(--light-color); border-radius: var(--border-radius-lg); padding: 2.5rem; height: 100%; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); transition: var(--transition); text-align: center; }
.pricing-card { border: 1px solid rgba(0, 0, 0, 0.05); }
.pricing-feature-item { padding: 1.5rem; border-radius: var(--border-radius); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }
.pricing-card:hover, .tech-card:hover, .process-step:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); }

/* Common Icon Styles */
.pricing-icon, .tech-icon, .step-icon, .social-link { background: rgba(67, 97, 238, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-color); }
.pricing-icon, .tech-icon, .step-icon { width: 70px; height: 70px; margin: 0 auto 1.5rem; }
.pricing-icon, .step-icon { font-size: 1.75rem; }
.tech-icon { font-size: 1.5rem; }

/* Common Header Styles */
.pricing-header h4, .tech-content h4, .step-content h4 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 1rem; font-size: 1.5rem; }
.pricing-header { margin-bottom: 2rem; }

/* Price Display */
.price { display: flex; align-items: baseline; justify-content: center; margin-top: 1rem; }
.price .currency { font-size: 1.5rem; font-weight: 600; color: var(--primary-color); }
.price .amount { font-size: 3rem; font-weight: 700; color: var(--primary-color); line-height: 1; font-family: var(--font-heading); margin: 0 0.25rem; }
.price .period { font-size: 1rem; color: var(--text-color); opacity: 0.7; }

/* Common Feature Lists */
.pricing-features, .step-features { margin: 2rem 0; list-style: none; padding: 0; text-align: left; }
.pricing-features li, .step-features li { display: flex; align-items: center; margin-bottom: 0.75rem; }
.pricing-features li { font-size: 0.95rem; }
.step-features li { font-size: 0.9rem; }
.pricing-features li i, .step-features li i { margin-right: 0.75rem; color: var(--secondary-color); }
.pricing-features li i { font-size: 1rem; }
.step-features li i { font-size: 0.9rem; }
.pricing-footer { margin-top: auto; }

/* Feature Item Specific */
.pricing-feature-item i { font-size: 2rem; color: var(--secondary-color); margin-bottom: 1rem; }
.pricing-feature-item h5 { font-family: var(--font-heading); font-weight: 700; margin-bottom: 0.75rem; font-size: 1.25rem; }
.pricing-feature-item p { margin-bottom: 0; opacity: 0.8; font-size: 0.95rem; }

/* Tech Card Specific */
.tech-card { background: var(--card-bg); border-radius: var(--border-radius); box-shadow: var(--card-shadow); margin-bottom: 3rem; height: calc(100% - 3rem); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.tech-content, .tech-content p, .process-step p { flex: 1; padding: 1.5rem; margin-bottom: 1.5rem; opacity: 0.9; }
.tech-content { padding: 1.5rem; }
.tech-specs { margin-top: 1.5rem; }
.spec-item { display: flex; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
.spec-item:last-child { border-bottom: none; }
.spec-label { font-weight: 500; color: var(--text-color); }
.spec-value { font-weight: 600; color: var(--primary-color); }
.tech-image { flex: 0 0 40%; position: relative; overflow: hidden; height: 100px; }
.tech-image img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.tech-card:hover .tech-image img { transform: scale(1.05); }

/* Process Section */
.process-timeline { position: relative; margin-top: 3rem; }
.process-timeline::before { content: ''; position: absolute; top: 60px; left: 50%; width: 80%; height: 2px; background: rgba(0, 0, 0, 0.1); transform: translateX(-50%); z-index: 0; }
.process-step { position: relative; z-index: 1; }
.step-number { width: 40px; height: 40px; background: var(--primary-color); color: var(--light-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.25rem; position: absolute; top: -20px; left: 50%; transform: translateX(-50%); z-index: 2; }

/* CTA Section */
.cta-wrapper { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.cta-content h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; font-family: var(--font-heading); }
.cta-content p { font-size: 1.1rem; margin-bottom: 2rem; opacity: 0.9; }
.cta-buttons { display: flex; gap: 1rem; margin-top: 2rem; justify-content: center; position: relative; z-index: 10; }

/* Button Styles */
.btn-light, .btn-outline-light { position: relative; z-index: 5; padding: 0.75rem 1.5rem; border-radius: var(--border-radius); font-weight: 600; transition: var(--transition); }
.btn-light { background: var(--light-color); color: var(--primary-color); border: 1px solid var(--light-color); }
.btn-light:hover { background: transparent; color: var(--light-color); }
.btn-outline-light { background: transparent; color: var(--light-color); border: 1px solid var(--light-color); }
.btn-outline-light:hover { background: var(--light-color); color: var(--primary-color); }

/* Decorative Elements */
.cta-decoration { position: absolute; top: 0; right: 0; bottom: 0; left: 0; overflow: hidden; pointer-events: none; }
.floating-shape { pointer-events: none; }
.shape-1 { width: 100px; height: 100px; background: rgba(255, 255, 255, 0.3); top: 20%; left: 10%; animation: float 10s ease-in-out infinite; }
.shape-2 { width: 150px; height: 150px; border: 2px solid rgba(255, 255, 255, 0.3); bottom: 20%; right: 10%; animation: floatSphere 12s ease-in-out infinite; }
.shape-3 { width: 70px; height: 70px; background: rgba(255, 255, 255, 0.3); top: 60%; left: 20%; animation: float 8s ease-in-out infinite reverse; }
form { flex: 1 1 60%; padding: 3rem; }
.form-group { margin-bottom: 1.5rem; }
.form-control { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; padding: 0.8rem 1rem; border-radius: var(--border-radius); font-size: 0.9rem; position: relative; z-index: 2; }
.form-control:focus { box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.25); border-color: var(--primary-color); }
textarea.form-control { height: auto; resize: none; }

/* Social Links */
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { color: var(--light-color); transition: var(--transition); }
.social-link:hover { background: var(--light-color); color: var(--primary-color); }

/* Base Footer Styles */
#footer { background: var(--primary-color); color: var(--light-color); position: relative; }
.footer-main { padding: 5rem 0 3rem; }
.footer-brand h2 { font-size: 2rem; font-weight: 800; margin-bottom: 1rem; font-family: var(--font-heading); }
.footer-brand p { opacity: 0.8; max-width: 300px; }

/* Footer Social Icons */
.footer-social { display: flex; gap: 1rem; }
.footer-social .social-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--light-color); transition: var(--transition); }
.footer-social .social-icon:hover { background: var(--light-color); color: var(--primary-color); transform: translateY(-5px); }

/* Footer Widgets */
.footer-widget { margin-bottom: 2rem; }
.footer-widget h5 { font-size: 1.25rem; margin-bottom: 1.5rem; font-family: var(--font-heading); position: relative; padding-bottom: 0.75rem; }
.footer-widget h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--secondary-color); }

/* Footer Links */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a { color: rgba(255, 255, 255, 0.8); transition: var(--transition); display: inline-block; position: relative; }
.footer-links a:hover { color: var(--light-color); transform: translateX(5px); }

/* Footer Newsletter */
.footer-newsletter .input-group { display: flex; flex-wrap: nowrap; }
.footer-newsletter .form-control { border-top-right-radius: 0; border-bottom-right-radius: 0; background: rgba(255, 255, 255, 0.1); border: none; color: var(--light-color); }
.footer-newsletter .form-control::placeholder { color: rgba(255, 255, 255, 0.6); }
.footer-newsletter .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; background: var(--secondary-color); border-color: var(--secondary-color); }

/* Footer Contact */
.footer-contact { margin-top: 2rem; }
.footer-contact .contact-item { display: flex; align-items: flex-start; margin-bottom: 1rem; }
.footer-contact .contact-item i { margin-right: 1rem; color: var(--secondary-color); }

/* Footer Bottom */
.footer-bottom { background: rgba(0, 0, 0, 0.2); padding: 1.5rem 0; }
.footer-bottom p { margin: 0; opacity: 0.8; font-size: 0.9rem; }
.footer-bottom-links { display: flex; justify-content: flex-end; gap: 1.5rem; margin: 0; padding: 0; list-style: none; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }
.footer-bottom-links a:hover { color: var(--light-color); }

/* Button & Navigation Enhancements */
form .btn { position: relative; z-index: 2; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; }
.nav-link:hover { opacity: 1; transform: translateY(-1px); transition: all 0.2s ease; }

/* Rewards Modal Styles */
#rewardsModal .modal-content { border-radius: 15px; border: none; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); overflow: hidden; }
#rewardsModal .modal-header { background: linear-gradient(135deg, #4361ee, #7209b7); color: white; border-bottom: none; padding: 1.5rem; }
#rewardsModal .modal-title { font-weight: 700; font-family: 'Syne', sans-serif; }
#rewardsModal .modal-body { padding: 2rem; }

/* Rewards Components */
.rewards-benefits { list-style: none; padding: 0; margin: 1.5rem 0; }
.rewards-benefits li { margin-bottom: 0.8rem; display: flex; align-items: center; }
.rewards-benefits li i { color: #4361ee; margin-right: 10px; font-size: 1.1rem; }
.tier-item { display: flex; align-items: center; margin-bottom: 1rem; padding: 0.5rem; border-radius: 8px; background-color: #f8f9fa; }
.tier-badge { padding: 0.3rem 0.8rem; border-radius: 5px; font-weight: 600; font-size: 0.9rem; margin-right: 1rem; color: white; }
.tier-badge.bronze { background-color: #cd7f32; }
.tier-badge.silver { background-color: #c0c0c0; }
.tier-badge.gold { background-color: #ffd700; color: #333; }
.tier-details { flex: 1; }
.tier-details p { margin: 0; font-size: 0.9rem; }

/* Rewards Signup */
.rewards-signup { background-color: #f8f9fa; padding: 1.5rem; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.rewards-signup .form-group { margin-bottom: 1.5rem; padding: 0.5rem; border-radius: 8px; background-color: #f8f9fa; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.rewards-signup input[type="text"], .rewards-signup input[type="email"], .rewards-signup input[type="password"] { padding: 0.5rem; border: none; border-radius: 8px; background-color: #fff; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); }
.signup-success { transition: all 0.3s ease; }

/* Technologies Section */
.technologies-section { background-color: #f8f9fa; position: relative; overflow: hidden; padding: 100px 0; }
.technologies-section::before, .technologies-section::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; z-index: 0; }
.technologies-section::before { top: -100px; right: -100px; background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1)); }
.technologies-section::after { bottom: -100px; left: -100px; background: linear-gradient(135deg, rgba(114, 9, 183, 0.1), rgba(67, 97, 238, 0.1)); }
.tech-container { position: relative; z-index: 1; }

/* Tech Cards */
.tech-card { background-color: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08); margin-bottom: 30px; height: 100%; transition: all 0.4s ease; position: relative; display: flex; flex-direction: column; }
.tech-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.tech-image { height: 240px; position: relative; overflow: hidden; }
.tech-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tech-card:hover .tech-image img { transform: scale(1.1); }
.tech-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)); display: flex; align-items: flex-start; justify-content: flex-end; padding: 20px; transition: all 0.4s ease; }
.tech-card:hover .tech-overlay { background: linear-gradient(to bottom, rgba(67, 97, 238, 0.4), rgba(114, 9, 183, 0.7)); }

/* Tech Components */
.tech-icon { width: 60px; height: 60px; border-radius: 50%; background: #ffffff; display: flex; align-items: center; justify-content: center; color: #4361ee; font-size: 24px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); transition: all 0.4s ease; }
.tech-card:hover .tech-icon { transform: scale(1.1); color: #7209b7; }
.tech-content { padding: 35px 30px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 1; background: linear-gradient(135deg, #ffffff, #f8f9fa); border-top: 4px solid #4361ee; }
.tech-content::before { content: ''; position: absolute; top: -4px; right: 0; width: 50%; height: 4px; background: linear-gradient(90deg, #4361ee, #7209b7); }
.tech-content h4 { color: #080527; font-size: 26px; margin-bottom: 18px; font-weight: 700; font-family: 'Syne', sans-serif; position: relative; padding-bottom: 15px; display: inline-block; }
.tech-content h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, #4361ee, #7209b7); border-radius: 3px; }
.tech-content p { color: #555; margin-bottom: 28px; font-size: 16px; line-height: 1.7; position: relative; padding-left: 15px; border-left: 2px solid rgba(67, 97, 238, 0.3); }

/* Tech Specs */
.tech-specs { margin-top: auto; margin-bottom: 25px; background: rgba(248, 249, 250, 0.7); padding: 20px; border-radius: 12px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03); backdrop-filter: blur(5px); }
.spec-item { display: flex; align-items: center; margin-bottom: 18px; transition: all 0.3s ease; }
.spec-item:last-child { margin-bottom: 0; }
.spec-item:hover { transform: translateX(5px); }
.spec-icon { width: 42px; height: 42px; border-radius: 12px; background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1)); display: flex; align-items: center; justify-content: center; margin-right: 15px; color: #4361ee; flex-shrink: 0; box-shadow: 0 4px 10px rgba(67, 97, 238, 0.1); transition: all 0.3s ease; }
.spec-item:hover .spec-icon { background: linear-gradient(135deg, #4361ee, #7209b7); color: white; transform: rotate(5deg); }
.spec-info { display: flex; flex-direction: column; }
.spec-label { font-weight: 600; color: #080527; font-size: 14px; margin-bottom: 4px; letter-spacing: 0.5px; text-transform: uppercase; }
.spec-value { color: #4361ee; font-weight: 500; font-size: 16px; position: relative; display: inline-block; }
.spec-value::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: linear-gradient(90deg, #4361ee, #7209b7); transition: width 0.3s ease; }
.spec-item:hover .spec-value::after { width: 100%; }

/* Tech Button */
.tech-btn { display: inline-flex; align-items: center; background: linear-gradient(135deg, #4361ee, #7209b7); color: white; padding: 12px 25px; border-radius: 30px; font-weight: 600; font-size: 15px; transition: all 0.3s ease; text-decoration: none; align-self: flex-start; box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3); }
.tech-btn i { margin-left: 8px; transition: transform 0.3s ease; }
.tech-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4); color: white; }
.tech-btn:hover i { transform: translateX(5px); }

/* Media Queries - Combined and Optimized */
@media (max-width:991px) {
    .process-timeline::before { display: none; }
    .process-step, .tech-card { margin-bottom: 2rem; }
    .tech-card, .cta-buttons { flex-direction: column; }
    .tech-image { height: 220px; flex: 0 0 200px; }
    .footer-bottom-links { justify-content: flex-start; margin-top: 1rem; }
}
@media (max-width:767px) {
    .mvo-list { flex-direction: column; }
    .mvo-item { width: 100%; }
    .pricing-card, .rewards-info, .rewards-signup { margin-bottom: 1.5rem; }
    .footer-widget { text-align: center; }
    .footer-widget h5::after { left: 50%; transform: translateX(-50%); }
    .footer-social, .footer-brand p { justify-content: center; max-width: 100%; }
    .technologies-section { padding: 60px 0; }
    .tech-image { height: 200px; }
    .tech-content { padding: 25px 20px; }
    .tech-content h4 { font-size: 22px; }
    .tech-btn { padding: 10px 20px; font-size: 14px; }
    #rewardsModal .modal-body { padding: 1rem; }
}
@media (max-width:576px) {
    .container { padding-left: 15px; padding-right: 15px; }
    .hero-section { padding: 5rem 0 3rem; }
    .banner-image { max-height: 200px; }
    .upload-overlay i { font-size: 2rem; }
    .upload-overlay span { font-size: 1rem; padding: 6px 15px; }
}

/* Banner and Hero Styles */
.banner-upload-container { position: relative; overflow: hidden; display: block; border-radius: 15px; box-shadow: var(--box-shadow-md); margin-top: 20px; }
.enlarged-banner { height: auto; max-height: none; transform: scale(1.1); transition: var(--transition-slow); object-fit: cover; }
.banner-upload-container:hover .enlarged-banner { transform: scale(1.15); }
.hero-title-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; z-index: 5; background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)); padding: 2rem; }
.hero-title { color: white; font-size: 2.5rem; font-weight: 800; text-align: center; font-family: 'Syne', sans-serif; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); transform: translateY(0); transition: var(--transition-slow); }
.banner-upload-container:hover .hero-title { transform: translateY(-10px); }
.gradient-text { background: var(--primary-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; position: relative; display: inline-block; }
.gradient-text::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 100%; height: 2px; background: var(--primary-gradient); transform: scaleX(0); transition: var(--transition-slow); transform-origin: left; }
.banner-upload-container:hover .gradient-text::after, .hero-content:hover .gradient-text::after { transform: scaleX(1); }

/* Button Styles */
.btn.btn-block { min-width: 100%; background: var(--primary-color); }

/* Hero Section  */
.hero-section { position: relative; padding: 120px 0; overflow: hidden; background-color: #f5f7fa; min-height: 100vh; display: flex; align-items: center; }
.hero-background1 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(/assets/images/home_image1.webp); background-size: contain; background-position: center; filter: brightness(1.5); z-index: 0; }
.hero-background2 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(/assets/images/home_image2.webp); background-size: contain; background-position: center; filter: brightness(1.5); z-index: 0; }
.hero-background3 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(/assets/images/home_image3.webp); background-size: contain; background-position: center; filter: brightness(1.5); z-index: 0; }
.hero-background4 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(/assets/images/home_image4.webp); background-size: contain; background-position: center; filter: brightness(1.5); z-index: 0; }
.hero-background5 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(/assets/images/home_image5.webp); background-size: contain; background-position: center; filter: brightness(1.5); z-index: 0; }
.hero-background6 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: url(/assets/images/home_image6.webp); background-size: contain; background-position: center; filter: brightness(1.5); z-index: 0; }
.hero-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%); z-index: 1; }
.hero-section .container { position: relative; z-index: 2; }
.hero-content { color: #fff; padding-right: 30px; }
.hero-subtitle { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 15px; letter-spacing: 1px; text-transform: uppercase; opacity: 0.9; }

/* CNC Editor Section */
.cnc-editor-section { position: relative; background: #ffffff; overflow: hidden; padding: 7rem 0; }
.cnc-editor-section::before, .cnc-editor-section::after { content: ''; position: absolute; border-radius: 50%; z-index: 0; }
.cnc-editor-section::before { top: -100px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(67, 97, 238, 0.05) 0%, transparent 70%); }
.cnc-editor-section::after { bottom: -200px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(114, 9, 183, 0.05) 0%, transparent 70%); }
.cnc-section-header { position: relative; z-index: 2; margin-bottom: 4rem; }

/* Editor Badge */
.editor-badge { display: inline-flex; align-items: center; background: rgba(67, 97, 238, 0.08); border-radius: 50px; padding: 8px 20px; margin-bottom: 1.5rem; transition: all .3s ease-in; }
.editor-badge i { font-size: 1rem; color: var(--secondary-color); margin-right: 8px; }
.editor-badge span { color: var(--secondary-color); font-weight: 600; font-size: 0.9rem; }
.editor-title { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; margin-bottom: 1rem; background: var(--secondary-gradient); background-size: 200% auto; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradientText 8s ease infinite; }
@keyframes gradientText {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
.editor-subtitle { font-size: 1.2rem; color: #555; max-width: 700px; margin: 0 auto; }

/* Floating Elements */
.floating-elements { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 3; }
.floating-element { position: absolute; border-radius: 12px; opacity: 0.5; z-index: 3; }
.element-1 { width: 60px; height: 60px; background: rgba(67, 97, 238, 0.2); top: -20px; right: 30%; animation: float 15s ease-in-out infinite; }
.element-2 { width: 40px; height: 40px; background: rgba(114, 9, 183, 0.2); bottom: 10%; left: -15px; animation: float 12s ease-in-out infinite reverse; }
.element-3 { width: 30px; height: 30px; background: rgba(67, 97, 238, 0.15); top: 20%; right: -15px; animation: float 10s ease-in-out infinite 2s; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}
.image-glow { position: absolute; inset: -5%; background: linear-gradient(135deg, rgba(67, 97, 238, 0.2), rgba(114, 9, 183, 0.2)); border-radius: 20px; filter: blur(40px); opacity: 0.6; z-index: 0; }

/* Feature Cards */
.feature-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card { position: relative; background: #fff; border-radius: 16px; padding: 24px; box-shadow: var(--box-shadow-sm); overflow: hidden; transition: all .3s ease-in; display: flex; flex-direction: column; height: 100%; z-index: 1; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1); }
.feature-icon { width: 54px; height: 54px; background: linear-gradient(135deg, #4361ee, #3a0ca3); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 22px; margin-bottom: 16px; transition: all .3s ease-in; }
.feature-card:hover .feature-icon { transform: rotate(10deg) scale(1.1); }
.feature-content { z-index: 1; }
.feature-card h4 { color: var(--text-dark); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { color: var(--text-medium); font-size: 14px; margin: 0; }
.card-decoration { position: absolute; top: 0; right: 0; width: 80px; height: 80px; background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1)); border-radius: 0 16px 0 50%; z-index: 0; transition: all .3s ease-in; }
.feature-card:hover .card-decoration { width: 100px; height: 100px; }

/* CTA Button */
.editor-cta { margin-top: 30px; position: relative; display: flex; align-items: center; }
.cta-button { position: relative; display: inline-flex; flex-direction: column; padding: 14px 30px; background: linear-gradient(135deg, #4361ee, #3a0ca3); border-radius: 50px; color: #fff; font-weight: 600; overflow: hidden; transition: all .3s ease-in; border: none; text-decoration: none; z-index: 1; }
.cta-button:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(67, 97, 238, 0.3); color: #fff; }
.button-text { font-size: 18px; font-weight: 700; z-index: 2; }
.button-subtext { font-size: 12px; opacity: 0.8; z-index: 2; }
.button-icon { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); width: 32px; height: 32px; background: rgba(255, 255, 255, 0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .3s ease-in; z-index: 2; }
.cta-button:hover .button-icon { right: 15px; background: rgba(255, 255, 255, 0.3); }
.button-highlight { position: absolute; inset: 0; background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.2), transparent 60%); z-index: 1; opacity: 0; transition: opacity 0.3s ease; }
.cta-button:hover .button-highlight { opacity: 1; }

/* Bonus Badge */
.bonus-badge { position: relative; margin-left: -15px; z-index: 0; }
.badge-inner { display: flex; align-items: center; background: #fff; border: 2px solid #4361ee; border-radius: 50px; padding: 8px 16px 8px 25px; box-shadow: var(--box-shadow-sm); transition: all .3s ease-in; }
.badge-inner i { font-size: 16px; color: #4361ee; margin-right: 8px; }
.badge-inner span { font-size: 12px; font-weight: 700; color: #080527; line-height: 1.2; }
.bonus-badge:hover .badge-inner { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15); }

/* Media Queries */
@media (max-width:1199px) {
    .feature-cards { grid-template-columns: 1fr; }
}
@media (max-width:991px) {
    .cnc-editor-section { padding: 5rem 0; }
    .editor-title { font-size: 2.5rem; }
    .cnc-editor-preview { margin-bottom: 60px; }
}
@media (max-width:767px) {
    .cnc-editor-section { padding: 4rem 0; }
    .editor-title { font-size: 2rem; }
    .tool-badges { display: none; }
    .editor-cta { flex-direction: column; align-items: flex-start; }
    .bonus-badge { margin-left: 0; margin-top: 20px; }
    .badge-inner { padding: 8px 16px; }
    .hero-section { padding: 60px 0; text-align: center; }
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 16px; }
    .hero-clients { justify-content: center; }
}
.cnc-slider { position: relative; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); width: 100%; margin: 0 auto; }
.cnc-slides { position: relative; width: 100%; height: 100%; }
.cnc-slide { position: absolute; top: 0; left: 0; width: 100%; padding-bottom: 60%; opacity: 0; transition: opacity 0.5s ease; display: none; }
.cnc-slide.active { opacity: 1; position: relative; display: block; }
.cnc-slide img { width: 100%; height: 100%; display: block; border-radius: 8px; position: absolute; }
.cnc-slider-controls { position: absolute; bottom: -55px; left: 0; right: 0; display: flex; justify-content: center; align-items: center; gap: 10px; z-index: 10; }
.slider-prev, .slider-next { background: linear-gradient(135deg, #4361ee, #3a0ca3); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; color: #fff; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; z-index: 20; }
.slider-prev:hover, .slider-next:hover { background: linear-gradient(135deg, #4361ee, #3a0ca3); transform: scale(1.1); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: linear-gradient(135deg, #4361ee, #3a0ca3); cursor: pointer; transition: all 0.3s ease; }
.slider-dot.active { background: white; transform: scale(1.2); }
