/* Inner Headline Section */
#product-inner-headline,
#inner-headline {
    background: linear-gradient(-45deg, #5a8db8, #4a7ba7, #36799d, #2d6b8f);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#product-inner-headline .container,
#inner-headline .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

#product-inner-headline .pageTitle,
#inner-headline .pageTitle {
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
    animation: slideUpFade 1.2s ease-out;
}

.heading-underline {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00bfff);
    margin: 0 auto 35px;
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.4);
    animation: growWidth 1.5s ease-out 0.4s both;
}

@keyframes growWidth {
    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 120px;
    }
}

#product-inner-headline p,
#inner-headline p {
    font-size: 19px;
    color: #f8f9fa !important;
    line-height: 1.8;
    max-width: 750px;
    margin: 0 auto;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Floating Circles */
.float-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 2;
}



/* Keyframes */
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes floatMedium {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(-180deg);
    }
}

@keyframes floatFast {

    0%,
    100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

/* Circle Elements */
.circle-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 8%;
    animation: floatSlow 8s ease-in-out infinite;
}

.circle-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 10%;
    animation: floatMedium 6s ease-in-out infinite 2s;
}

.circle-3 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 15%;
    animation: floatFast 4s ease-in-out infinite 1s;
}

.circle-4 {
    width: 60px;
    height: 60px;
    top: 30%;
    left: 5%;
    animation: floatSlow 7s ease-in-out infinite 3s;
}

.circle-5 {
    width: 90px;
    height: 90px;
    bottom: 10%;
    left: 20%;
    animation: floatMedium 5s ease-in-out infinite 1.5s;
}

/* Product Section */
.product-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.product-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(circle, #00d4ff 1px, transparent 1px);
    background-size: 30px 30px;
}

.section-badge {
    display: inline-block;
    color: #000;
    padding: 0;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    position: relative;
    padding-bottom: 15px;
}

.section-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    animation: lineExpand 2s ease-in-out infinite;
}

@keyframes lineExpand {

    0%,
    100% {
        width: 100px;
    }

    50% {
        width: 150px;
    }
}

.section-title {
    font-size: 42px;
    color: #000;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-subtitle {
    color: #555;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 50px;
}

/* Product Cards */
.product-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.product-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    opacity: 0.08;
    transition: all 0.4s;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.4s;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.3);
}

.product-card:hover::before {
    opacity: 0.15;
    transform: scale(1.2);
}

.product-card:hover::after {
    width: 100%;
}

.product-card img {
    width: 90px;
    margin-bottom: 25px;
    transition: transform 0.4s;
}

.product-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.product-card h3 {
    color: #1a1a2e;
    margin-bottom: 15px;
    font-size: 26px;
    font-weight: 700;
}

.product-card p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.product-card a span {
    transition: transform 0.3s;
    display: inline-block;
}

.product-card a:hover {
    gap: 12px;
    color: #0099cc;
}

.product-card a:hover span {
    transform: translateX(5px);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.features-section .section-title {
    font-size: 42px;
    position: relative;
    padding-bottom: 20px;
}

.features-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    animation: lineExpand 2s ease-in-out infinite;
}

.features-section .section-subtitle {
    font-size: 18px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    transition: all 0.3s;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.feature-box:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: transform 0.3s;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-box h5 {
    color: #1a1a2e;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
}

.feature-box p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    flex-grow: 1;
}

/* Technology Stack Section */
.tech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.tech-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M0 0h60v60H0z" fill="none"/><path d="M30 0v60M0 30h60" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.tech-item:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
    border-color: #00d4ff;
}

.tech-item h6 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.tech-icon {
    font-size: 48px;
    margin-bottom: 15px;
    line-height: 1;
}

.cta-button {
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    color: #fff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: linear-gradient(90deg, #26c6da, #00acc1, #0097a7);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.tech-cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

.tech-cta-title {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}

#content img {
    border: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {

    #product-inner-headline .pageTitle,
    #inner-headline .pageTitle {
        font-size: 56px;
    }
}

@media (max-width: 992px) {

    #product-inner-headline .pageTitle,
    #inner-headline .pageTitle {
        font-size: 48px;
    }

    #product-inner-headline p,
    #inner-headline p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    #product-inner-headline .pageTitle,
    #inner-headline .pageTitle {
        font-size: 36px;
    }

    #product-inner-headline p,
    #inner-headline p {
        font-size: 16px;
    }

    .circle-1,
    .circle-2,
    .circle-3,
    .circle-4,
    .circle-5 {
        display: none;
    }
}

@media (max-width: 576px) {

    #product-inner-headline,
    #inner-headline {
        min-height: 55vh;
    }

    #product-inner-headline .pageTitle,
    #inner-headline .pageTitle {
        font-size: 28px;
    }

    #product-inner-headline p,
    #inner-headline p {
        font-size: 14px;
        padding: 0 10px;
    }

    .heading-underline {
        width: 60px;
    }
}

@media (max-width: 480px) {

    #product-inner-headline .pageTitle,
    #inner-headline .pageTitle {
        font-size: 24px;
    }

    #product-inner-headline p,
    #inner-headline p {
        font-size: 13px;
    }
}

@media (max-width: 991px) {

    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .section-badge {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .features-section .section-title {
        font-size: 36px;
    }

    .features-section .section-subtitle {
        font-size: 17px;
    }

    .product-section,
    .features-section,
    .tech-section {
        padding: 60px 0;
    }

    .tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
    }

    .tech-item {
        padding: 20px 12px;
    }

    .tech-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }

    .tech-item h6 {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 30px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-badge {
        font-size: 24px;
        letter-spacing: 1.5px;
    }

    .features-section .section-title {
        font-size: 30px;
    }

    .features-section .section-subtitle {
        font-size: 16px;
    }

    .product-card {
        padding: 30px;
    }

    .product-card h3 {
        font-size: 22px;
    }

    .tech-item {
        padding: 18px 10px;
    }

    .tech-icon {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .tech-item h6 {
        font-size: 13px;
    }
}

@media (max-width: 576px) {

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 15px;
    }

    .section-badge {
        font-size: 20px;
        letter-spacing: 1.5px;
    }

    .product-card {
        padding: 25px;
    }

    .features-section .section-title {
        font-size: 24px;
    }

    .features-section .section-subtitle {
        font-size: 15px;
    }

    .product-card img {
        width: 70px;
    }

    .product-card h3 {
        font-size: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .feature-box {
        min-height: 200px;
        padding: 20px 15px;
    }

    .feature-box h5 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .feature-box p {
        font-size: 13px;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 13px;
    }

    .tech-cta-wrapper {
        margin-top: 40px;
    }

    .tech-cta-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .tech-item {
        padding: 15px 8px;
    }

    .tech-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .tech-item h6 {
        font-size: 12px;
    }
}

@media (min-width: 992px) {
    .custom-margin {
        margin-top: 60px;
    }
}

@media (min-width: 786px) and (max-width: 991px) {
    .custom-margin {
        margin-top: 60px;
    }
}

@media (max-width: 785px) {
    .custom-margin {
        margin-top: 40px;
    }
}