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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header */
.header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #FF6B35;
}

.logo::before {
    content: "⚡";
    margin-right: 10px;
    font-size: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FF6B35;
}

.buy-now-btn {
    background: linear-gradient(135deg, #FF6B35, #FF8A5B);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.buy-now-btn:hover {
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: #FF6B35;
    color: white;
    border: none;
    font-size: 28px;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1002;
    padding: 20px;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.sidebar-logo {
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.sidebar-close {
    background: #FF6B35;
    color: white;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.mobile-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 18px;
    display: block;
    padding: 15px 10px;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    color: #FF6B35;
    padding-left: 20px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    /* background: linear-gradient(135deg, #2f828e, #11bedd); */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 20px;
    gap: 50px;
}

.hero-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.explore-btn {
    background: white;
    color: #FF6B35;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.explore-btn:hover {
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-illustration {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    backdrop-filter: blur(10px);
}

/* Subscribe button */
.subscribe-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: #FFA726;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-weight: 600;
    cursor: pointer;
    writing-mode: vertical-lr;
    text-orientation: mixed;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.demo-section-new {
    padding: 50px 0;
    background: #f8f9fa;
}

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

.demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.demo-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.demo-header .version {
    background: #FF6B84;
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
    margin-left: 10px;
}

.demo-notice {
    color: #666;
    margin-top: 20px;
    font-size: 16px;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.demo-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

.demo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
}

.admin-icon {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
}

.restaurant-icon {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.customer-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.flutter-icon {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.demo-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.demo-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.no-underline {
    text-decoration: none;
    /* color: #fff; */
}

.demo-btn {
    padding: 12px 25px;
    border: 2px solid #FF6B35;
    background: transparent;
    color: #FF6B35;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.demo-btn:hover {
    background: #FF6B35;
    color: white;
}

.download-btn {
    background: #FF6B35;
    color: white;
}

.download-btn:hover {
    background: transparent;
    color: #FF6B35;
}

.explore-primary {
    background: #FF6B35;
    color: white;
    border-color: #FF6B35;
}

.explore-primary:hover {
    background: transparent;
    color: #FF6B35;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-section-new {
    padding: 50px 0;
    background: white;
}

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

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    position: relative;
}

.development-icon {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
}

.support-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.deployment-icon {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
}

.training-icon {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.maintenance-icon {
    background: linear-gradient(135deg, #607D8B, #90A4AE);
}

.integration-icon {
    background: linear-gradient(135deg, #FF9800, #FFC107);
}

.service-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 600;
}

.service-card>p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
    text-align: center;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.service-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 2px solid #FF6B35;
    color: #FF6B35;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

.service-btn:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

.services-cta {
    text-align: center;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    padding: 50px 40px;
    border-radius: 20px;
    color: white;
    margin-top: 40px;
}

.services-cta h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-btn {
    background: white;
    color: #FF6B35;
    padding: 15px 35px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: white;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FF6B35;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-icon:hover {
    background: #FF6B35;
}

.contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #ccc;
}

.contact-info::before {
    margin-right: 10px;
    font-size: 18px;
}

.phone::before {
    content: "📞";
}

.email::before {
    content: "✉️";
}

.support-ticket {
    background: #FF6B35;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
}

.codecanyon {
    background: #333;
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    color: white;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #ccc;
    margin: 0;
}

.developed-by {
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

/* contact  */

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

.contact-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Header */
.contact-page .ct-header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.contact-page .ct-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.contact-page .ct-logo {
    display: flex;
    align-items: center;
    font-size: 28px;
    font-weight: bold;
    color: #FF6B35;
    text-decoration: none;
}

.contact-page .ct-logo::before {
    content: "⚡";
    margin-right: 10px;
    font-size: 32px;
}

.contact-page .ct-nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.contact-page .ct-nav-menu a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-page .ct-nav-menu a:hover {
    color: #FF6B35;
}

.contact-page .ct-get-quote-btn {
    background: linear-gradient(135deg, #FF6B35, #FF8A5B);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.contact-page .ct-get-quote-btn:hover {
    transform: translateY(-2px);
}

/* Hero Banner */
.contact-page .ct-hero-banner {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-page .ct-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-page .ct-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.contact-page .ct-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-page .ct-hero-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-page .ct-hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 10px;
}

.contact-page .ct-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.contact-page .ct-breadcrumb a {
    color: white;
    text-decoration: none;
}

.contact-page .ct-breadcrumb a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact-page .ct-contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.contact-page .ct-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

/* Contact Info Cards */
.contact-page .ct-contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.contact-page .ct-info-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-page .ct-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.contact-page .ct-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.contact-page .ct-phone-icon {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    color: white;
}

.contact-page .ct-email-icon {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
    color: white;
}

.contact-page .ct-location-icon {
    background: linear-gradient(135deg, #2196F3, #03A9F4);
    color: white;
}

.contact-page .ct-time-icon {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
    color: white;
}

.contact-page .ct-info-content h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-page .ct-info-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

.contact-page .ct-info-content a {
    color: #FF6B35;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-page .ct-info-content a:hover {
    color: #ff8a5b;
}

/* Map Container */
.contact-page .ct-map-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 25px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.contact-page .ct-map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #999;
}

/* Contact Form */
.contact-page .ct-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-page .ct-form-header {
    margin-bottom: 30px;
}

.contact-page .ct-form-header h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.contact-page .ct-form-header p {
    color: #666;
    font-size: 16px;
}

.contact-page .ct-form-group {
    margin-bottom: 25px;
}

.contact-page .ct-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-page .ct-form-label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-page .ct-form-input,
.contact-page .ct-form-textarea,
.contact-page .ct-form-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-page .ct-form-input:focus,
.contact-page .ct-form-textarea:focus,
.contact-page .ct-form-select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-page .ct-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-page .ct-form-submit {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
}

.contact-page .ct-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Social Section */
.contact-page .ct-social-section {
    background: white;
    padding: 60px 0;
}

.contact-page .ct-social-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-page .ct-social-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-page .ct-social-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-page .ct-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-page .ct-social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-page .ct-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-page .ct-facebook {
    background: linear-gradient(135deg, #1877F2, #4267B2);
}

.contact-page .ct-linkedin {
    background: linear-gradient(135deg, #0A66C2, #0077B5);
}

.contact-page .ct-twitter {
    background: linear-gradient(135deg, #1DA1F2, #0C85D0);
}

.contact-page .ct-youtube {
    background: linear-gradient(135deg, #FF0000, #CC0000);
}

.contact-page .ct-instagram {
    background: linear-gradient(135deg, #E4405F, #F77737);
}

.contact-page .ct-github {
    background: linear-gradient(135deg, #333, #24292E);
}

/* Footer */
.contact-page .ct-footer {
    background: #2c2c2c;
    color: white;
    padding: 40px 0 20px;
}

.contact-page .ct-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.contact-page .ct-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #444;
}

.contact-page .ct-footer-logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    color: #FF6B35;
}

.contact-page .ct-footer-logo::before {
    content: "⚡";
    margin-right: 8px;
    font-size: 28px;
}

.contact-page .ct-footer-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.contact-page .ct-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-page .ct-footer-links a:hover {
    color: #FF6B35;
}

.contact-page .ct-footer-bottom {
    padding-top: 20px;
    color: #ccc;
    font-size: 14px;
}

/* WhatsApp Float */
.contact-page .ct-whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform 0.3s;
}

.contact-page .ct-whatsapp-float:hover {
    transform: scale(1.1);
}

/* Project Details  */

.product-details-page * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.product-details-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f8f9fa;
}

/* Breadcrumb */
.pdp-breadcrumb {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #e0e0e0;
}

.pdp-breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.pdp-breadcrumb-container a {
    color: #FF6B35;
    text-decoration: none;
    transition: opacity 0.3s;
}

.pdp-breadcrumb-container a:hover {
    opacity: 0.7;
}

/* Hero Section */
.pdp-hero {
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    padding: 60px 0;
    color: white;
}

.pdp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pdp-hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pdp-hero-content .pdp-tagline {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.pdp-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.pdp-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pdp-hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.pdp-btn-primary {
    background: white;
    color: #FF6B35;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.pdp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.pdp-btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.pdp-btn-secondary:hover {
    background: white;
    color: #FF6B35;
}

.pdp-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pdp-mockup {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: pdp-float 3s ease-in-out infinite;
}

@keyframes pdp-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Stats Bar */
.pdp-stats {
    background: white;
    padding: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.pdp-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.pdp-stat-item h3 {
    font-size: 36px;
    color: #FF6B35;
    margin-bottom: 10px;
    font-weight: 700;
}

.pdp-stat-item p {
    color: #666;
    font-size: 16px;
}

/* Overview Section */
.pdp-overview {
    padding: 80px 0;
}

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

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

.pdp-section-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.pdp-section-header p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.pdp-overview-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdp-overview-content p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* Features Grid */
.pdp-features {
    padding: 80px 0;
    background: white;
}

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

.pdp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pdp-feature-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.pdp-feature-card:hover {
    transform: translateY(-5px);
    border-color: #FF6B35;
    background: white;
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.1);
}

.pdp-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    margin-bottom: 20px;
    color: white;
}

.pdp-feature-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.pdp-feature-card p {
    color: #666;
    line-height: 1.7;
}

/* Technology Stack */
.pdp-tech-stack {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.pdp-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.pdp-tech-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.pdp-tech-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.pdp-tech-item-icon {
    font-size: 50px;
    margin-bottom: 15px;
}

.pdp-tech-item h4 {
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

/* Pricing Section */
.pdp-pricing {
    padding: 80px 0;
    background: white;
}

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

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

.pdp-pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s;
    text-align: center;
}

.pdp-pricing-card.pdp-featured {
    border-color: #FF6B35;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.pdp-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pdp-pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.pdp-pricing-card h3 {
    font-size: 26px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.pdp-pricing-price {
    font-size: 48px;
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 10px;
}

.pdp-pricing-period {
    color: #666;
    margin-bottom: 30px;
    font-size: 14px;
}

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

.pdp-pricing-features li {
    color: #666;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    padding-left: 30px;
    position: relative;
}

.pdp-pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.pdp-pricing-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.pdp-pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Screenshots */
.pdp-screenshots {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

.pdp-screenshot-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.pdp-screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pdp-screenshot-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin-bottom: 15px;
}

.pdp-screenshot-item h4 {
    font-size: 16px;
    color: #333;
    text-align: center;
}

/* CTA Section */
.pdp-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    color: white;
    text-align: center;
}

.pdp-cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.pdp-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.pdp-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

/* Support Section */
.pdp-support {
    padding: 80px 0;
    background: white;
}

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

.pdp-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pdp-support-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.pdp-support-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pdp-support-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF6B35, #FFA726);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
    color: white;
}

.pdp-support-card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.pdp-support-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.pdp-support-btn {
    padding: 12px 25px;
    background: transparent;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.pdp-support-btn:hover {
    background: #FF6B35;
    color: white;
}

.no-underline {
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .buy-now-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

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

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

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

    .services-cta {
        padding: 40px 20px;
    }

    .services-cta h3 {
        font-size: 24px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

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

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

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

    .subscribe-btn {
        display: none;
    }

    /* contect  */

    .contact-page .ct-nav-menu {
        display: none;
    }

    .contact-page .ct-hero-content h1 {
        font-size: 32px;
    }

    .contact-page .ct-contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-page .ct-form-container {
        padding: 30px 20px;
    }

    .contact-page .ct-form-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-page .ct-footer-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-page .ct-footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Project Details  */

    .pdp-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pdp-hero-content h1 {
        font-size: 36px;
    }

    .pdp-hero-buttons {
        justify-content: center;
    }

    .pdp-stats-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .pdp-overview-content {
        padding: 30px 20px;
    }

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

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

    .pdp-cta h2 {
        font-size: 32px;
    }

    .pdp-cta-buttons {
        flex-direction: column;
    }
}