/* Global Styles */
.tss-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background: #f8f9fa;
}

p {
    padding: 0 !important;
}

/* Other Products Section */
.other-products-section {
    background: #f8f9fa;
    padding: 60px 0;
    /* margin-top: 50px; */
}

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

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #071b31;
    margin-bottom: 10px;
}

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

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card-image {
    background: linear-gradient(135deg, #071b31 0%, #0a2847 100%);
    padding: 30px;
    text-align: center;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-image img {
    max-width: 100px;
    height: auto;
    filter: brightness(1.1);
}

.product-card-body {
    padding: 25px;
}

.product-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #071b31;
    margin-bottom: 15px;
}

.product-card-text {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-card-link {
    display: inline-block;
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.product-card-link:hover {
    color: #0056b3;
    text-decoration: none;
}

.product-card-link::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.product-card-link:hover::after {
    transform: translateX(4px);
}



/* Responsive Design */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .other-products-section {
        padding: 40px 0;
    }
}




/* Floating Action Buttons */
.floating-action-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 15px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 20px;
    text-decoration: none !important;
}

.floating-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-main {
    background: #25d366;
    width: auto;
    padding: 0 25px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    gap: 10px;
    font-size: 16px;
    position: fixed;
    left: 30px;
    bottom: 30px;
}

.btn-whatsapp-main i {
    font-size: 24px;
}

.btn-phone {
    background: #007bff;
}

.btn-download {
    background: #6c757d;
}

.btn-calendar {
    background: #17a2b8;
}

.btn-renew {
    background: #28a745;
}

@media (max-width: 768px) {
    .floating-action-container {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }

    .btn-whatsapp-main span {
        display: none;
    }

    .btn-whatsapp-main {
        width: 50px;
        height: 50px;
        padding: 0;
        justify-content: center;
        left: 20px;
        bottom: 20px;
    }

    .btn-whatsapp-main i {
        margin: 0;
    }
}

/* WOW Modal Styles */
#wowUpgradeModal {
    text-align: center;
    padding: 0 !important;
}

#wowUpgradeModal:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -4px;
}

#wowUpgradeModal .modal-dialog {
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}

.popup-contact-btn {
    position: absolute !important;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    font-weight: bold !important;
    border-radius: 20px !important;
    padding: 10px 30px !important;
    font-size: 16px !important;
    background-color: #337ab7;
    color: #fff !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.popup-contact-btn:hover {
    background-color: #286090;
    color: #fff !important;
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 4px 15px rgba(51, 122, 183, 0.4);
}

@media (max-width: 768px) {
    .popup-contact-btn {
        padding: 3px 10px !important;
        font-size: 10px !important;
        bottom: 10px;
        font-weight: 400 !important;
    }
}










/* Banner Section */
.banner-section {
    background: #fbf5e5;
    min-height: 90vh;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.banner-content {
    display: flex;
    align-items: center;
    min-height: 50vh;
}

.banner-text {
    padding-right: 40px;
}

.banner-title {
    font-size: 42px;
    font-weight: 800;
    color: #071b31;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-desc {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.banner-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.banner-features li {
    padding: 12px 0;
    font-size: 18px;
    color: #000000;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.banner-features li i {
    color: #28a745;
    font-size: 20px;
    margin-top: 2px;
}

.cta-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.banner-cta {
    background: linear-gradient(135deg, #FFD700, #FFC400);
    color: #071b31;
    padding: 14px 34px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.whatsapp-cta {

    color: #078a09ff;
    padding: 14px 8px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    /* transition: all 0.3s ease; */

}


/* Mobile friendly */
@media (max-width: 576px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .banner-cta,
    .whatsapp-cta {
        text-align: center;
        width: auto;
        min-width: 250px;
    }

    .banner-form-card {
        width: 100% !important;
        max-width: 100% !important;
        padding: 25px 20px !important;
        margin: 0 10px !important;
        /* border-radius: 0 !important; */
        /* box-shadow: none !important; */
    }

    .banner-form-wrapper {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .banner-section .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100% !important;
    }

    .banner-section .row.banner-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .banner-form .btn-form-submit {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        /* prevent full width button inside form if desired, or keep full width if form is full width */
    }
}

/* .banner-cta {
				display: inline-flex;
				align-items: center;
				gap: 10px;
				background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
				color: #fff;
				padding: 15px 35px;
				border-radius: 50px;
				font-size: 18px;
				font-weight: 600;
				text-decoration: none;
				transition: all 0.3s ease;
				box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
			}

			.banner-cta:hover {
				transform: translateY(-3px);
				box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
				color: #fff;
				text-decoration: none;
			}

			.banner-cta i {
				transition: transform 0.3s ease;
			}

			.banner-cta:hover i {
				transform: translateX(5px);
			} */

.banner-form {
    margin-top: 27px;
    margin-bottom: 37px;
}

.banner-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Banner Form Card */
.banner-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 0 35px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 500px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #071b31;
    margin-top: 30px;
    margin-bottom: 8px;
    text-align: center;
}

/* .form-subtitle {
				font-size: 14px;
				color: #666;
				margin-bottom: 25px;
				text-align: center;
			} */

.banner-form .form-group {
    margin-bottom: 15px;
}

.banner-form .form-control {
    height: 48px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.banner-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
    outline: none;
}

.banner-form textarea.form-control {
    height: auto;
    resize: none;
}

.btn-form-submit {
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #3338c5ff 0%, #2b30cdff 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 40, 167, 0.3);
}

/* .btn-form-submit:hover {
				transform: translateY(-2px);
				box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
			} */

.btn-form-submit i {
    font-size: 14px;
}


/* Stats Section */
.stats-row {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.stats-row .col-md-4 {
    display: flex;
}

.stat-card {
    /* background: #fff; */
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    /* box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08); */
    transition: all 0.3s ease;
    /* border: 1px solid rgba(0, 0, 0, 0.05); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #071b31;
    display: block;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-title {
        font-size: 32px;
    }

    .banner-text {
        padding-right: 15px;
        margin-bottom: 40px;
    }

    .banner-content {
        flex-direction: column;
    }

    .banner-image-container {
        transform: none;
    }
}

@media (max-width: 768px) {
    .banner-section {
        padding: 60px 0 40px;
        min-height: auto;
    }

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

    .banner-desc {
        font-size: 16px;
    }

    .banner-features li {
        font-size: 14px;
    }

    .stat-card {
        margin-bottom: 20px;
    }

    .stats-row {
        margin-top: 30px;
        flex-wrap: wrap;
        gap: 0;
    }

    .stats-row .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 0px;
        padding: 0 5px;
    }

    .stat-card {
        margin-bottom: 0;
        padding: 15px 10px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 13px;
    }
}


/* fist sectio after the bann */


.content-info-section {
    padding: 80px 0;
    background: #fff;
}

.content-info-row {
    display: flex;
    align-items: center;
}

.content-text-col {
    padding-right: 50px;
}

.content-info-title {
    font-size: 32px;
    font-weight: 700;
    color: #071b31;
    line-height: 1.3;
    margin-bottom: 20px;
}

.content-info-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.content-info-desc a {
    color: #007bff;
    font-weight: 600;
    text-decoration: none;
}

.content-info-desc a:hover {
    text-decoration: underline;
}

.content-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-info-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .content-info-row {
        flex-direction: column;
    }

    .content-text-col {
        padding-right: 15px;
        margin-bottom: 30px;
    }

    .content-info-title {
        font-size: 26px;
    }

    .content-info-section {
        padding: 30px 0;
        background: #fff;
    }

}


/* TSS Why Section - Simple Card Design */





/* TSS Why Section - Simple Card Design */
.tss-why-section {
    padding: 40px 0;
    background: #fff;
}

.tss-section-title {
    font-size: 30px;
    font-weight: 700;
    color: #071b31;
    text-align: center;
    margin-bottom: 15px;
}

.tss-section-intro {
    font-size: 16px;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.tss-cards-row {
    margin-bottom: 30px;
}

.tss-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    height: 100%;
    transition: box-shadow 0.3s ease;
    background-color: #e9e9eaff;
}

.tss-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.tss-card-icon {
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tss-card-icon i {
    font-size: 24px;
    color: #fff;
}

.tss-card-text {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.tss-section-footer {
    font-size: 16px;
    color: #555;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 768px) {
    .tss-why-section {
        padding: 10px 0;
    }

    .tss-card {
        margin-bottom: 20px;
    }

    .tss-section-title {
        font-size: 24px;
    }
}


/* Features Section */
.features-section {
    padding: 60px 0;
    background-color: #f6f5fcff;
}

.features-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #071b31;
    margin-bottom: 15px;
    text-align: left;
}

.features-section>.container>div>p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
    text-align: left;
    max-width: 720px;
}

/* Feature Card */


.tss-feature-card {
    background-color: #ffffff;
    min-height: 180px;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    margin-bottom: 24px;
}

.tss-feature-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: #071b31;
    margin-bottom: 12px;
}

.tss-feature-card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section {
        padding: 40px 0;
    }

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

    .tss-feature-card {
        padding: 20px;
    }

    .tss-feature-card h4 {
        font-size: 16px;
    }
}



.growth-section {
    padding: 60px 0;
    background-color: #fff;
}

.growth-card {
    background: #0044a8;
    padding: 30px 40px;
    border-radius: 16px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(7, 27, 49, 0.2);
    position: relative;
    overflow: hidden;
}

.growth-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.growth-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.growth-icon i {
    font-size: 28px;
    color: #fff;
}

.growth-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.growth-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

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

    .growth-card {
        padding: 35px 25px;
    }

    .growth-title {
        font-size: 22px;
    }

    .growth-text {
        font-size: 15px;
    }

    .growth-icon {
        width: 60px;
        height: 60px;
    }

    .growth-icon i {
        font-size: 24px;
    }
}





/* tally gold and silver */

.difference-section {
    padding: 40px 0;
    background-color: #f8f9fa;
}

.difference-section .row {
    display: flex;
    flex-wrap: wrap;
}

.difference-section .col-md-6 {
    display: flex;
}

.difference-title {
    font-size: 28px;
    font-weight: 700;
    color: #071b31;
    text-align: center;
    margin-bottom: 40px;
}

.difference-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.difference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.difference-card.gold {
    border-top: 4px solid #FFD700;
}

.difference-card.silver {
    border-top: 4px solid #A8A8A8;
}

.card-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.gold-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
}

.silver-badge {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #333;
}

.difference-card h6 {
    font-size: 18px;
    font-weight: 600;
    color: #071b31;
    margin-bottom: 15px;
    line-height: 1.4;
}

.difference-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.difference-card a {
    color: #0044a8;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.difference-card a:hover {
    color: #002d75;
    text-decoration: underline;
}

.add-margin {
    margin-bottom: 0px;
}

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

    .difference-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .difference-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .difference-card h6 {
        font-size: 16px;
    }

    .add-margin {
        margin-bottom: 20px;
    }
}




/* Services Improve Section */
.services-improve-section {
    padding: 60px 0;
    background-color: #fff;
}

.improve-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 16px;
    border-left: 5px solid #0044a8;
}

.improve-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: #0044a8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.improve-icon i {
    font-size: 32px;
    color: #fff;
}

.improve-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #071b31;
    margin-bottom: 15px;
    line-height: 1.3;
}

.improve-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Worth Section */
.worth-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #071b31 0%, #0044a8 100%);
}

.worth-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.worth-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.worth-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
}

.worth-cta {
    display: inline-block;
    background: #FFD700;
    color: #071b31;
    padding: 14px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.worth-cta:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #071b31;
}

.worth-cta i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.worth-cta:hover i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .services-improve-section {
        padding: 40px 0;
    }

    .improve-card {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
    }

    .improve-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .improve-icon i {
        font-size: 26px;
    }

    .improve-content h3 {
        font-size: 20px;
    }

    .worth-section {
        padding: 40px 0;
    }

    .worth-card h3 {
        font-size: 22px;
    }

    .worth-card p {
        font-size: 15px;
    }

    .worth-cta {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/* Form Validation Styles */
.error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

.input-error {
    border-color: #dc3545 !important;
}

.input-error:focus {
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.25) !important;
}

/* Success Message */
.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    margin-top: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

.success-icon {
    font-size: 24px;
    margin-bottom: 5px;
}