/* ========================================
   General Styles
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #444444;
    background: #fff;
    overflow-x: hidden;
}

a {
    color: #47b2e4;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: #73c5eb;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
}

/* ========================================
   Back to Top Button
   ======================================== */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #47b2e4;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.back-to-top:hover {
    background: #6ec1e4;
    color: #fff;
}

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

/* ========================================
   Header
   ======================================== */
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
    background: #FAFAFA;
}

#header.header-scrolled {
    background: rgba(40, 58, 90, 0.95);
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

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

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#header .logo a {
    color: #45474D;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

/* ========================================
   Navigation Menu
   ======================================== */
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 500;
    color: #2F3034;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a:hover,
.navbar .active,
.navbar li:hover > a {
    color: #2F3034;
}

.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

/* ========================================
   Hero Section
   ======================================== */
#hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(45deg, #283a5a, #1a2942, #0f1829, #283a5a);
    background-size: 400% 400%;
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
}

#hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 300;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
}

#hero p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 400;
}

#hero .btn-get-started {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 35px 11px 35px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #47b2e4;
    color: #fff;
    background: #47b2e4;
	margin-left:-350px;
}

#hero .btn-get-started:hover {
    background: transparent;
    border-color: #fff;
}

/* ========================================
   Sections General
   ======================================== */
section {
    padding: 60px 0;
    overflow: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}



.section-header {
    text-align: center;
    padding-bottom: 40px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #121317;
	padding-top: 30px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-header h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #47b2e4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-header p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 16px;
}

/* ========================================
   About Section
   ======================================== */
.about .content {
    padding-top: 30px;
}

.about .content h3 {
    font-weight: 500;
    font-size: 26px;
    color: #121317;
    margin-bottom: 20px;
}

.about .content p {
    margin-bottom: 0;
    line-height: 1.8;
    color: #45474D;
}

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

.about .content ul i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 20px;
    color: #47b2e4;
    line-height: 1;
}

/* ========================================
   Row Layout
   ======================================== */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6,
.col-lg-4,
.col-md-6 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* ========================================
   Services Section
   ======================================== */
.services .service-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    padding: 50px 30px;
    transition: all ease-in-out 0.4s;
    background: #fff;
    height: 100%;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.services .service-box .icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
}

.services .service-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #37517e;
}

.services .service-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
    color: #666;
}

/* ========================================
   Products Section
   ======================================== */
.products .product-item {
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.products .product-item:hover {
    box-shadow: 0px 0 35px 0 rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.products .product-img {
    margin-bottom: 20px;
}

.products .product-icon {
    font-size: 64px;
    display: inline-block;
    padding: 20px;
}

.products .product-item h3 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 24px;
    color: #37517e;
}

.products .product-item p {
    line-height: 1.8;
    margin-bottom: 0;
    color: #666;
    text-align: left;
}

/* ========================================
   Call to Action Section
   ======================================== */
.cta {
    background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), 
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23283a5a" fill-opacity="0.3" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') center center;
    background-size: cover;
    padding: 120px 0;
}

.cta .cta-content {
    text-align: center;
}

.cta h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

.cta .cta-btn {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.cta .cta-btn:hover {
    background: #47b2e4;
    border: 2px solid #47b2e4;
}

/* ========================================
   Contact Section
   ======================================== */
.contact .info-box {
    color: #444444;
    padding: 30px;
    background: #fff;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    height: 100%;
}

.contact .info-box h3 {
    font-size: 24px;
    color: #45474D;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact .info-box p {
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.contact .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact .info-item i {
    font-size: 24px;
    color: #47b2e4;
    margin-right: 15px;
    line-height: 0;
    margin-top: 5px;
}

.contact .info-item h4 {
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #37517e;
}

.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}

.contact .contact-form {
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.contact .contact-form .form-group {
    padding-bottom: 15px;
}

.contact .contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border-radius: 5px;
    border: 1px solid #dce2ea;
    font-size: 14px;
    transition: 0.3s;
}

.contact .contact-form .form-control:focus {
    border-color: #47b2e4;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(71, 178, 228, 0.25);
}

.contact .contact-form textarea.form-control {
    resize: vertical;
}

.contact .contact-form button[type="submit"] {
    background: #47b2e4;
    border: 0;
    padding: 12px 40px;
    color: #fff;
    transition: 0.4s;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

.contact .contact-form button[type="submit"]:hover {
    background: #209dd8;
}

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

/* ========================================
   Footer
   ======================================== */
#footer {
    font-size: 14px;
    background: #37517e;
    padding: 30px 0;
    color: #fff;
    text-align: center;
}

#footer .copyright {
    text-align: center;
}

#footer .copyright span {
    color: #47b2e4;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #hero h1 {
        font-size: 32px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }

    #hero p {
        font-size: 18px;
    }

    .col-lg-6,
    .col-lg-4,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .about .content {
        padding-top: 20px;
    }

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

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 32px;
    }

    #hero h2 {
        font-size: 16px;
        line-height: 22px;
    }

    #hero p {
        font-size: 16px;
    }

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

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

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

@media (max-width: 575px) {
    #hero h1 {
        font-size: 24px;
        line-height: 28px;
    }
}
/* ========================================
   Hero Section - Updated with Animation
   ======================================== */
#hero .hero-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

#hero .hero-container .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#hero .hero-container .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

#hero h2 {
    text-align: left;
}

#hero h1 {
    text-align: left;
}

#hero p {
    text-align: left;
}

/* Hero Image Animation */
.hero-img {
    text-align: right;
	animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
}

.hero-img img {
    max-width: 100%;
    height: auto;
}

.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@keyframes up-down {
    0% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(-10px);
    }
}

/* Additional helper classes */
.align-items-center {
    align-items: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
	mask-image: radial-gradient(circle, black 65%, transparent 100%);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    #hero .hero-container .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }
    
    #hero h2,
    #hero h1,
    #hero p {
        text-align: center;
    }
    
    .hero-img {
        text-align: center;
        margin-top: 40px;
    }
    
    .hero-img img {
        max-width: 80%;
    }
}
/* ========================================
   About Section - Carousel Styles
   ======================================== */
.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 20px;
}

.carousel-track {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    animation: fadeInSlide 0.6s ease-in-out;
}

.carousel-slide.active {
    display: block;
}

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

.advantage-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(71, 178, 228, 0.2);
}

.card-title {
    color: #37517e;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #47b2e4, #73c5eb);
    border-radius: 2px;
}

/* Comparison Table Styles */
.comparison-table {
    width: 100%;
}

.table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #37517e, #47b2e4);
    border-radius: 10px 10px 0 0;
    margin-bottom: 5px;
}

.table-header .feature-col {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
}

.table-header .status-col {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.table-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(71, 178, 228, 0.05);
}

.table-row .feature-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.table-row .feature-col strong {
    color: #37517e;
    font-size: 14px;
    font-weight: 600;
}

.feature-desc {
    color: #666;
    font-size: 12px;
    font-style: italic;
}

.table-row .status-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.status-icon.success {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.status-icon.fail {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: #fff;
}

.status-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
}

/* Why Card Styles */
.why-card {
    background: linear-gradient(135deg, rgba(71, 178, 228, 0.05), rgba(115, 197, 235, 0.05));
}

.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #45474D;
    line-height: 1.6;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #47b2e4, transparent);
    margin: 20px 0;
}



.drawbacks-list p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(71, 178, 228, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #47b2e4;
    width: 30px;
    border-radius: 6px;
}

.indicator:hover {
    background: rgba(71, 178, 228, 0.6);
}

/* ========================================
   Use Cases Section
   ======================================== */
.usecases {
    padding: 80px 0;
}

.usecase-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    border-top: 4px solid #47b2e4;
    position: relative;
    overflow: hidden;
}

.usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 178, 228, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #209dd8;
}

.usecase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #47b2e4, #73c5eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(71, 178, 228, 0.3);
    position: relative;
    z-index: 1;
}

.usecase-card h5 {
    color: #37517e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.usecase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.usecase-list li {
    padding: 12px 0 12px 35px;
    color: #666;
    line-height: 1.7;
    position: relative;
    font-size: 15px;
}

.usecase-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 12px;
    color: #47b2e4;
    font-weight: bold;
    font-size: 18px;
}

/* Responsive adjustments for new sections */
@media (max-width: 991px) {
    .carousel-container {
        margin-top: 40px;
    }
    
    .table-header {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 12px;
        padding: 12px 10px;
    }
    
    .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 15px 10px;
    }
    
    .table-row .feature-col strong {
        font-size: 13px;
    }
    
    .feature-desc {
        font-size: 11px;
    }
    
    .status-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .advantage-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .table-header .status-col,
    .table-row .status-col {
        display: none;
    }
    
    .table-row .feature-col {
        text-align: center;
    }
    
    .usecase-card {
        padding: 25px 20px;
    }
    
    .usecase-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .usecase-card h5 {
        font-size: 20px;
    }
}

/* Additional helper classes */
.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}
/* ========================================
   About Section - Left Content Styling
   ======================================== */
.about-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content-wrapper h3 {
    font-weight: 700;
    font-size: 28px;
    color: #37517e;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.about-content-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #47b2e4, #73c5eb);
    border-radius: 2px;
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.key-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.point-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(71, 178, 228, 0.05);
    border-radius: 10px;
    border-left: 3px solid #47b2e4;
    transition: all 0.3s ease;
}

.point-item:hover {
    background: rgba(71, 178, 228, 0.1);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.point-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #47b2e4, #73c5eb);
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(71, 178, 228, 0.3);
}

.point-content h5 {
    color: #37517e;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.point-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-content-wrapper {
        margin-bottom: 40px;
    }
    
    .point-item {
        padding: 12px;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

/* ========================================
   About Section - Updated Static Layout
   ======================================== */
.about .content {
    padding-top: 30px;
}

.about-content-wrapper {
    height: 100%;
}

.about-content-wrapper h3 {
    font-weight: 700;
    font-size: 28px;
    color: #37517e;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Static Comparison Table */
.comparison-table-static {
    width: 100%;
    margin-top: 20px;
}

.comparison-table-static .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #37517e, #47b2e4);
    border-radius: 10px 10px 0 0;
    margin-bottom: 5px;
}

.comparison-table-static .table-header .feature-col {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
}

.comparison-table-static .table-header .status-col {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.comparison-table-static .table-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table-static .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.comparison-table-static .table-row:last-child {
    border-bottom: none;
}

.comparison-table-static .table-row:hover {
    background: rgba(71, 178, 228, 0.05);
}

.comparison-table-static .table-row .feature-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.feature-desc {
    color: #45474D;
    font-size: 12px;
    font-style: italic;
}

.comparison-table-static .table-row .status-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.status-icon.success {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.status-icon.fail {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: #fff;
}

.status-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
}

/* Why Ennapu Card */
.why-ennapu-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(71, 178, 228, 0.2);
    height: 100%;
}

.card-title {
    color: #121317;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #47b2e4, #73c5eb);
    border-radius: 2px;
}

.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #444;
    line-height: 1.6;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #47b2e4, transparent);
    margin: 20px 0;
}



.drawbacks-list p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 8px;
    font-size: 14px;
}

/* ========================================
   Key Features Section (Merged Services + Products)
   ======================================== */
.features {
    padding: 80px 0;
}

.feature-box {
    position: relative;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 280px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #47b2e4, #73c5eb);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.feature-box .icon {
    font-size: 56px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box h4 {
    font-size: 22px;
    font-weight: 700;
    color: #37517e;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

.feature-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-content p {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(71, 178, 228, 0.2);
    background: linear-gradient(135deg, rgba(71, 178, 228, 0.03), rgba(255, 255, 255, 0.98));
}

.feature-box:hover .icon-wrapper {
    transform: translateY(-30px);
}

.feature-box:hover .icon {
    transform: scale(0.8);
}

.feature-box:hover h4 {
    transform: translateY(-10px);
    color: #47b2e4;
}

.feature-box:hover .feature-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 10px;
}

/* ========================================
   Use Cases Section
   ======================================== */
.usecases {
    padding: 80px 0;
}

.usecase-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    margin-bottom: 30px;
    border-top: 4px solid #47b2e4;
    position: relative;
    overflow: hidden;
}

.usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(71, 178, 228, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

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

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-top-color: #209dd8;
}

.usecase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #47b2e4, #73c5eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(71, 178, 228, 0.3);
    position: relative;
    z-index: 1;
}

.usecase-card h5 {
    color: #37517e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.usecase-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.usecase-list li {
    padding: 12px 0 12px 35px;
    color: #666;
    line-height: 1.7;
    position: relative;
    font-size: 15px;
}

.usecase-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 12px;
    color: #47b2e4;
    font-weight: bold;
    font-size: 18px;
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 991px) {
    .why-ennapu-card {
        margin-top: 40px;
    }
    
    .comparison-table-static .table-header {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 12px;
        padding: 12px 10px;
    }
    
    .comparison-table-static .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 15px 10px;
    }
    
    .comparison-table-static .table-row .feature-col strong {
        font-size: 13px;
    }
    
    .feature-desc {
        font-size: 11px;
    }
    
    .status-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .feature-box {
        height: auto;
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .comparison-table-static .table-header,
    .comparison-table-static .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .comparison-table-static .table-header .status-col,
    .comparison-table-static .table-row .status-col {
        display: none;
    }
    
    .comparison-table-static .table-row .feature-col {
        text-align: center;
    }
    
    .why-ennapu-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 22px;
    }
    
    .feature-box {
        height: auto;
        min-height: 240px;
    }
    
    .feature-box:hover .feature-content {
        max-height: 300px;
    }
}
/* ========================================
   Key Features Section - TECH-FORWARD GLASSMORPHISM
   ======================================== */
.features.section-bg {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}



@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glassmorphism Feature Card */
.feature-box-glass {
    position: relative;
    padding: 35px 28px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 320px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    z-index: 1;
}

/* Glow Effect Layer */
.feature-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #47b2e4, 
        #8b5cf6, 
        #ec4899, 
        #10b981,
        #47b2e4
    );
    background-size: 400% 400%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: glowRotate 8s ease infinite;
    filter: blur(8px);
}

@keyframes glowRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Icon Wrapper with Gradient Background */
.icon-wrapper-glass {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animated Gradient Icon Background */
.icon-gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #4facfe 75%, 
        #667eea 100%
    );
    background-size: 400% 400%;
    border-radius: 50%;
    animation: gradientShift 6s ease infinite;
    opacity: 0.9;
    transition: all 0.5s ease;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-box-glass .icon {
    font-size: 48px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box-glass h4 {
    font-size: 22px;
    font-weight: 700;
    color: #37517e;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-content-glass {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-content-glass p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    text-align: center;
}

/* ========================================
   HOVER EFFECTS - ALL COMBINED
   ======================================== */

/* 1. Card Lift & Shadow */
.feature-box-glass:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(71, 178, 228, 0.3);
}

/* 2. Glow Border Highlight */
.feature-box-glass:hover .feature-glow {
    opacity: 1;
}

/* 3. Background Shift - Intensified Glass Effect */
.feature-box-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(71, 178, 228, 0.4);
}

/* 4. Icon Animation - Scale & Rotate */
.feature-box-glass:hover .icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(71, 178, 228, 0.4));
}

/* 5. Icon Background Intensifies */
.feature-box-glass:hover .icon-gradient-bg {
    animation-duration: 3s;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

/* 6. Icon Wrapper Effect */
.feature-box-glass:hover .icon-wrapper-glass {
    transform: translateY(-10px);
}

/* 7. Title Color Change */
.feature-box-glass:hover h4 {
    color: #47b2e4;
    text-shadow: 0 2px 8px rgba(71, 178, 228, 0.3);
}

/* 8. Content Reveal */
.feature-box-glass:hover .feature-content-glass {
    opacity: 1;
    max-height: 200px;
    margin-top: 15px;
}

/* 9. Shimmer/Shine Effect */
.feature-box-glass::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: all 0.6s ease;
}

.feature-box-glass:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* Responsive Adjustments for Glass Features */
@media (max-width: 991px) {
    .feature-box-glass {
        height: auto;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .feature-box-glass {
        height: auto;
        min-height: 260px;
    }
    
    .feature-box-glass:hover .feature-content-glass {
        max-height: 300px;
    }
    
    .icon-wrapper-glass {
        width: 80px;
        height: 80px;
    }
    
    .feature-box-glass .icon {
        font-size: 42px;
    }
}

/* ========================================
   Particle Canvas for Hero Section - UPDATED
   ======================================== */
#hero {
    position: relative;
}

#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;  /* IMPORTANT: Let mouse events pass through to content below */
}

#hero .hero-container {
    z-index: 2;
    position: relative;  /* Ensure it's above canvas */
}

/* ========================================
   Hero Section - Light Theme (Style)
   ======================================== */
#hero {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Particle Canvas */
#particleCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: all;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
    z-index: 2;
}

#hero h1 {
    margin: 0 0 20px 0;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -2px;
    font-family: 'Roboto Condensed', sans-serif;
}

#hero h2 {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

#hero p {
    color: #718096;
    margin-bottom: 40px;
    font-size: 20px;
    font-weight: 400;
    max-width: 700px;
    line-height: 1.6;
}

#hero .btn-get-started {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 10px;
    border: 2px solid #1a1a1a;
    color: #ffffff;
    background: #1a1a1a;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

#hero .btn-get-started:hover {
    background: transparent;
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments for hero */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 48px;
    }
    
    #hero h2 {
        font-size: 24px;
    }
    
    #hero p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    #hero h1 {
        font-size: 36px;
    }
    
    #hero h2 {
        font-size: 20px;
    }
    
    #hero p {
        font-size: 16px;
    }
}

/* ========================================
   Key Features Section - REFINED GLASSMORPHISM
   ======================================== */
.features.section-bg {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.features.section-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;

    animation: rotateGradient 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Glassmorphism Feature Card */
.feature-box-glass {
    position: relative;
    padding: 35px 28px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 32px rgba(71, 178, 228, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 320px;
    overflow: hidden;
    margin-bottom: 30px;
    cursor: pointer;
    z-index: 1;
}

/* Subtle Glow Effect Layer */
.feature-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        #60a5fa, 
        #93c5fd, 
        #bfdbfe, 
        #dbeafe,
        #60a5fa
    );
    background-size: 400% 400%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    animation: glowRotate 10s ease infinite;
    filter: blur(12px);
}

@keyframes glowRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Icon Wrapper with Soft Gradient */
.icon-wrapper-glass {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Soft Gradient Icon Background */
.icon-gradient-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #60a5fa 25%, 
        #93c5fd 50%, 
        #bfdbfe 75%, 
        #3b82f6 100%
    );
    background-size: 300% 300%;
    border-radius: 50%;
    animation: gradientShift 8s ease infinite;
    opacity: 0.85;
    transition: all 0.5s ease;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.feature-box-glass .icon {
    font-size: 48px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(59, 130, 246, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box-glass h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 15px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-content-glass {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.feature-content-glass p {
    color: #475569;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    text-align: center;
}

/* ========================================
   HOVER EFFECTS - REFINED & SUBTLE
   ======================================== */

/* 1. Card Lift & Soft Shadow */
.feature-box-glass:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

/* 2. Subtle Glow Border */
.feature-box-glass:hover .feature-glow {
    opacity: 0.6;
}

/* 3. Enhanced Glass Effect */
.feature-box-glass:hover {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-color: rgba(96, 165, 250, 0.3);
}

/* 4. Icon Animation - Subtle Scale & Rotate */
.feature-box-glass:hover .icon {
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 6px 16px rgba(59, 130, 246, 0.25));
}

/* 5. Icon Background Brightens */
.feature-box-glass:hover .icon-gradient-bg {
    animation-duration: 4s;
    opacity: 1;
    box-shadow: 0 10px 30px rgba(96, 165, 250, 0.25);
    transform: scale(1.08);
    background: linear-gradient(135deg, 
        #2563eb 0%, 
        #3b82f6 25%, 
        #60a5fa 50%, 
        #93c5fd 75%, 
        #2563eb 100%
    );
}

/* 6. Icon Wrapper Lift */
.feature-box-glass:hover .icon-wrapper-glass {
    transform: translateY(-10px);
}

/* 7. Title Color Shift */
.feature-box-glass:hover h4 {
    color: #2563eb;
    text-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
}

/* 8. Content Reveal */
.feature-box-glass:hover .feature-content-glass {
    opacity: 1;
    max-height: 200px;
    margin-top: 15px;
}

/* 9. Subtle Shimmer Effect */
.feature-box-glass::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: all 0.6s ease;
}

.feature-box-glass:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

/* ========================================
   Responsive Adjustments
   ======================================== */
@media (max-width: 991px) {
    .feature-box-glass {
        height: auto;
        min-height: 280px;
    }
}

@media (max-width: 768px) {
    .feature-box-glass {
        height: auto;
        min-height: 260px;
        padding: 30px 24px;
    }
    
    .icon-wrapper-glass {
        width: 75px;
        height: 75px;
    }
    
    .feature-box-glass .icon {
        font-size: 42px;
    }
    
    .feature-box-glass:hover .feature-content-glass {
        max-height: 300px;
    }
}

/* ========================================
   H1 Animation - Typewriter + Gradient + Glitch
   ======================================== */

/* Initial state - hidden for typewriter */
#hero h1 {
    margin: 0 0 20px 0;
    font-size: 72px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -2px;
    font-family: 'Roboto Condensed', sans-serif;
    position: relative;
    display: inline-block;
}

/* Typewriter effect */
#hero h1.typewriter {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #1a1a1a;
    animation: typing 2.5s steps(35, end), blink-caret 0.75s step-end 3;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #1a1a1a; }
}

/* Animated Gradient - activates after typewriter */
#hero h1.gradient-active {
    background: linear-gradient(
        90deg,
        #1a1a1a 0%,
        #47b2e4 25%,
        #1a1a1a 50%,
        #47b2e4 75%,
        #1a1a1a 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s linear infinite;
    border-right: none;
}

@keyframes gradientFlow {
    0% { background-position: 200% center; }
    100% { background-position: 0% center; }
}

/* Glitch Effect */
#hero h1.glitch {
    animation: glitch 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes glitch {
    0% {
        transform: translate(0);
        text-shadow: none;
    }
    20% {
        transform: translate(-2px, 2px);
        text-shadow: 2px 0 #47b2e4, -2px 0 #ec4899;
    }
    40% {
        transform: translate(2px, -2px);
        text-shadow: -2px 0 #47b2e4, 2px 0 #ec4899;
    }
    60% {
        transform: translate(-1px, 1px);
        text-shadow: 1px 0 #47b2e4, -1px 0 #ec4899;
    }
    80% {
        transform: translate(1px, -1px);
        text-shadow: -1px 0 #47b2e4, 1px 0 #ec4899;
    }
    100% {
        transform: translate(0);
        text-shadow: none;
    }
}

/* Micro-glitch (subtle) */
#hero h1.micro-glitch {
    animation: microGlitch 0.2s ease-in-out;
}

@keyframes microGlitch {
    0%, 100% {
        transform: translate(0);
        text-shadow: none;
    }
    33% {
        transform: translate(-1px, 1px);
        text-shadow: 1px 0 rgba(71, 178, 228, 0.5);
    }
    66% {
        transform: translate(1px, -1px);
        text-shadow: -1px 0 rgba(236, 72, 153, 0.5);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 36px;
    }
    
    #hero h1.typewriter {
        animation: typing 2s steps(35, end), blink-caret 0.75s step-end 3;
    }
}

/* ========================================
   Header Logo Updates
   ======================================== */
#header .logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Logo hover effect */
#header .logo a:hover .logo-img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 28px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    #header .logo a {
        gap: 8px;
    }
}

/* ========================================
   About Section - Updated Static Layout
   ======================================== */
.about .content {
    padding-top: 30px;
}

.about-content-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-content-wrapper h3 {
    font-weight: 700;
    font-size: 28px;
    color: #37517e;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Static Comparison Table */
.comparison-table-static {
    width: 100%;
    margin-top: 20px;
}

.comparison-table-static .table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(135deg, #37517e, #47b2e4);
    border-radius: 10px 10px 0 0;
    margin-bottom: 5px;
}

.comparison-table-static .table-header .feature-col {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
}

.comparison-table-static .table-header .status-col {
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.comparison-table-static .table-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table-static .table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 10px;
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

.comparison-table-static .table-row:last-child {
    border-bottom: none;
}

.comparison-table-static .table-row:hover {
    background: rgba(71, 178, 228, 0.05);
}

.comparison-table-static .table-row .feature-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comparison-table-static .table-row .feature-col strong {
    color: #45474D;
    font-size: 14px;
    font-weight: 600;
}

.feature-desc {
    color: #45474D;
    font-size: 12px;
    font-style: italic;
}

.comparison-table-static .table-row .status-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
}

.status-icon.success {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
}

.status-icon.fail {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: #fff;
}

.status-icon.warning {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #fff;
}

/* Why Ennapu Card - Fixed Height Alignment */
.why-ennapu-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.98));
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(71, 178, 228, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-title {
    color: #121317;
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #47b2e4, #73c5eb);
    border-radius: 2px;
}

.benefits-list {
    margin-bottom: 25px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: #444;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}

.divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #47b2e4, transparent);
    margin: 25px 0;
}



.drawbacks-list p {
    color: #444;
    line-height: 1.8;
    letter-spacing: 0.3px;
    margin-bottom: 18px!important;
    padding-left: 0;
    font-size: 14px;
}

/* Ensure equal height columns */
.about .row.content {
    display: flex;
    align-items: stretch;
}

.about .col-lg-6 {
    display: flex;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-ennapu-card {
        margin-top: 40px;
    }
    
    .about .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .comparison-table-static .table-header {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 12px;
        padding: 12px 10px;
    }
    
    .comparison-table-static .table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        padding: 15px 10px;
    }
    
    .comparison-table-static .table-row .feature-col strong {
        font-size: 13px;
    }
    
    .feature-desc {
        font-size: 11px;
    }
    
    .status-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .comparison-table-static .table-header,
    .comparison-table-static .table-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .comparison-table-static .table-header .status-col,
    .comparison-table-static .table-row .status-col {
        display: none;
    }
    
    .comparison-table-static .table-row .feature-col {
        text-align: center;
    }
    
    .why-ennapu-card {
        padding: 25px;
    }
    
    .card-title {
        font-size: 22px;
    }
}
.without-title {
  display: flex;
  align-items: center;
  justify-content: center;  
  gap: 10px;                
  margin-bottom: 28px!important;
  font-family:'Raleway', sans-serif;
  font-size:26px;
  color:#121317;
  
}
.drawback-item {
  display: flex;               
  align-items: flex-start;    
  gap: 16px;
  margin-bottom: 16px;
  line-height: 1.6;
  color: #444;
  letter-spacing: 0.3px;
}

.status-icon.fail-1 {
    background: linear-gradient(135deg, #ef4444, #f87171);
    width: 24px;
    height: 24px;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 2px;
}
/* ========================================
   ERP Copilot Section - NEW
   ======================================== */
.copilot-section {

    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.copilot-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

/* Robot Video merged with background */
.robot-video-bg {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
}

.copilot-section .container {
    position: relative;
    z-index: 3;
}

.copilot-content {
    max-width: 650px;
}

.copilot-header {
    margin-bottom: 30px;
}

.copilot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #47b2e4, #5bc0eb);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(71, 178, 228, 0.3);
}

.copilot-title {
    font-size: 36px;
    font-weight: 700;
    color: #121317;
    line-height: 1.3;
    margin: 0;
}

.copilot-intro {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin: 20px 0 35px;
}

.copilot-examples {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.example-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid #47b2e4;
    backdrop-filter: blur(10px);
}

.example-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 30px rgba(71, 178, 228, 0.15);
}

.example-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.example-card p {
    margin: 0;
    font-size: 16px;
    color: #37517e;
    font-weight: 500;
    font-style: italic;
}

.copilot-highlight {
    background: linear-gradient(135deg, #37517e, #47b2e4);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(55, 81, 126, 0.2);
}

.copilot-highlight p {
    margin: 0;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
    .robot-video-bg {
        right: 50%;
        transform: translate(50%, -50%);
        width: 300px;
        opacity: 0.3;
    }
    
    .copilot-content {
        max-width: 100%;
    }
    
    .copilot-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .copilot-section {
        padding: 60px 0;
    }
    
    .robot-video-bg {
        width: 250px;
        opacity: 0.25;
    }
    
    .copilot-title {
        font-size: 24px;
    }
    
    .copilot-intro {
        font-size: 16px;
    }
    
    .example-card {
        padding: 15px 20px;
    }
    
    .example-card p {
        font-size: 14px;
    }
}

/* ========================================
   Key Features Section - Updated to 3 Columns (Keep Original Glassmorphism Style)
   ======================================== */
.features .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.features .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 15px;
}

/* Remove hover content reveal - show all content by default */
.features .feature-content-glass {
    max-height: none !important;
    opacity: 1 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .features .col-lg-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 768px) {
    .features .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}