:root {
    --primary: #071426;
    --secondary: #d4af37;
    --secondary-light: #f3d87a;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #64748b;
    --border: #e5e7eb;

    --gradient-dark: linear-gradient(135deg, #071426 0%, #0d2444 60%, #133d70 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37, #f3d87a);

    --shadow-sm: 0 10px 30px rgba(0, 0, 0, .06);
    --shadow-lg: 0 25px 60px rgba(0, 0, 0, .12);
    --radius: 28px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
	color:#d4af37;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f6f9fc;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

.section-space {
    padding: 90px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title span {
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
}

.section-title h2 {
    color: var(--primary);
    font-size: 42px;
    font-weight: 800;
    margin-top: 12px;
    line-height: 1.2;
}

.topbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.topbar-info {
    display: flex;
    gap: 35px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.topbar-info a {
    color: var(--primary);
    font-size: 16px;
}

.topbar-info i {
    color: var(--secondary);
    margin-right: 8px;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .04);
}

.navbar-brand img {
    height: 62px;
}

.navbar-nav .nav-link {
    color: var(--primary);
    font-weight: 600;
    margin: 0 10px;
    transition: .3s;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary);
}

.nav-item.active .nav-link {
    font-weight: 700;
    color: #fff;
    padding: 10px 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, #174c83, #174c83);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.30);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Infinite Shine Effect */
.nav-item.active .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 70%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent);
    transform: skewX(-25deg);
    animation: activeShine 3s infinite;
}

@keyframes activeShine {
    0% {
        left: -120%;
    }

    50% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}


.btn-premium {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 700;
    border: none;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .25);
}

.btn-premium:hover {
    transform: translateY(-2px);
    color: #fff;
}


.hero_section {
    position: relative;
    overflow: hidden;
    padding: 40px 0 120px;
    background: var(--gradient-dark);
}

.hero_section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .12);
    filter: blur(120px);
    top: -250px;
    right: -150px;
}

.hero_section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    filter: blur(100px);
    bottom: -200px;
    left: -100px;
}

.hero-contents {
    position: relative;
    z-index: 5;
}

.hero-contents h1 {
    font-size: 50px;
    line-height: 1.08;
    color: #fff;
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-contents p {
    color: rgba(255, 255, 255, .8);
    font-size: 20px;
    line-height: 1.9;
    max-width: 700px;
}

.hero-lists li {
    color: #fff;
    font-size: 18px;
    margin-bottom: 18px;
}

.hero-lists i {
    color: #d4af37;
}

.booking-cards {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 32px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
}

.booking-cards h3 {
   color: #243647;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
    text-align: center;

}



/* Input Fields */

.form-controls,
.form-select {
    width: 100%;
    height: 55px;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0 18px;
    margin-bottom: 18px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: .3s;
}



.form-controls:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}


/* Button */

.btn-premiums {
    height: 45px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #0f3d91);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}



.btn-premiums:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
}

/* Responsive */

@media(max-width:991px) {
    .hero_section {
        padding: 70px 0;
    }

    .hero-contents h1 {
        font-size: 42px;
    }

    .booking-cards {
        margin-top: 40px;
    }
}

@media(max-width:575px) {
    .hero-contents h1 {
        font-size: 34px;
    }

    .hero-contents p {
        font-size: 16px;
    }

    .booking-cards {
        padding: 25px;
        border-radius: 20px;
    }


    .booking-cards h3 {
        font-size: 26px;
    }
}

.form-controls:focus,
.form-select:focus {
    box-shadow: none;
    border-color: var(--secondary);
}


.service-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    overflow: hidden;
    position: relative;
    border: none;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .06);
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-gold);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .12);
}

.service-card img {
    width: 85px;
}

.service-card h4 {
    margin-top: 20px;
}

.about-box {
    background: #fff;
    padding: 45px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    height: 100%;
}

.stats-card {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 28px;
    padding: 35px;
    margin-bottom: 25px;
}

.stats-card h3 {
    font-size: 42px;
    font-weight: 800;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.feature-list li {
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--primary);
    font-weight: 500;
}

.feature-list i {
    color: var(--secondary);
    margin-right: 12px;
}

.certificate-box {
    background: #fff;
    border-radius: 26px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.certificate-box img {
    max-width: 60%;
    border-radius: 18px;
    transition: .3s;
}

.certificate-box img:hover {
    transform: scale(1.03);
}

.why-box {
    background: #fff;
    border-radius: 28px;
    padding: 55px;
    box-shadow: var(--shadow);
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.why-icon {
    width: 55px;
    height: 55px;
    border-radius: 16px;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 22px;
    flex-shrink: 0;
}

.why-item h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.testimonial-card {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, .15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
    position: relative;
}

.testimonial-card::before {
    content: '★★★★★';
    color: #d4af37;
    font-size: 18px;
    display: block;
    margin-bottom: 15px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #dbeafe;
}

.counter-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 32px;
    padding: 60px 40px;
    color: #fff;
}

.counter-box {
    text-align: center;
}

.counter-box h2 {
    font-size: 52px;
    font-weight: 800;
}

.counter-box p {
    font-size: 17px;
    opacity: .9;
}

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding-top: 80px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-weight: 700;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 14px;
}

.footer ul li a {
    color: #cbd5e1;
    transition: .3s;
}

.footer ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 50px;
    padding: 25px 0;
    font-size: 14px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.8;
    color: #94a3b8;
    margin-top: 18px;
}

@media(max-width:991px) {
    .hero-content h1 {
        font-size: 42px;
    }

    .section-title h2 {
        font-size: 34px;
    }

    .booking-card {
        margin-top: 40px;
    }
}

@media(max-width:767px) {
    .hero {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .why-box,
    .about-box,
    .booking-card {
        padding: 28px;
    }

    .counter-section {
        padding: 40px 20px;
    }

    .topbar-info {
        justify-content: center;
        gap: 10px;
    }
}


/* 20 jun */
.hero {
    padding: 15px 0 20px;
    background: linear-gradient(180deg, #c1c3c5 0%, #f9f9f9 100%);
    position: relative;
}

.hero-content h1 {
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.hero-list {
    list-style: none;
    padding: 0;
}

.hero-list li {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
}

.hero-list i {
    color: var(--secondary);
    margin-right: 12px;
}

.booking-card {
    background: #fff;
    padding: 20px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.booking-card h3 {
    color: var(--primary);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.form-control {
    height: 40px;
    border-radius: 14px;
    border: 1px solid var(--border);
    margin-bottom: 7px;
    font-size: 13px;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

.btn-premium {
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #0f3d91);
    padding: 8px 13px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}



.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, .35);
}

/* Responsive */

@media(max-width:991px) {
    .hero {
        padding: 70px 0;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .booking-card {
        margin-top: 40px;
    }
}

@media(max-width:575px) {
    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .booking-card {
        padding: 25px;
        border-radius: 20px;
    }


    .booking-card h3 {
        font-size: 26px;
    }
}

.form-controls:focus {
    box-shadow: none;
    border-color: var(--secondary);
}

/* about us */
.about {
    padding: 90px 0;
    background: linear-gradient(135deg, #f8fbff, #ffffff);
}

/* HERO SECTION */
.contact-hero {
    height: 160px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('assets/images/about-navi-mumbai.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.about_image {
    position: relative;
}

.about_image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: 0.4s ease;
}

.about_image img:hover {
    transform: translateY(-8px);
}


/* Content */

.about_content {
    padding-left: 35px;
}

.about_tag {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0066ff, #00a8ff);
    color: #fff;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 18px;
}


.about_content h2 {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}


.about_content p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 15px;
}


/* Feature Boxes */

.about_features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
}


.feature_item {
    background: #ffffff;
    padding: 18px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: .3s ease;
}


.feature_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.15);
}


.feature_item i {
    font-size: 22px;
    color: #0066ff;
}


/* Image Side Decorative Effect */

.about_image::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: #0066ff;
    opacity: .08;
    border-radius: 50%;
    top: -30px;
    left: -30px;
    z-index: -1;
}



/* Responsive */

@media(max-width:991px) {

    .about_content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about_content h2 {
        font-size: 34px;
    }

}


@media(max-width:768px) {

    .about {
        padding: 60px 0;
    }

    .about_features {
        grid-template-columns: 1fr;
    }

    .about_content h2 {
        font-size: 30px;
    }

}

.contact-box {
    background: linear-gradient(145deg, #ffffff, #f5f9ff);
    padding: 40px 30px;
    text-align: center;
    border-radius: 20px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 102, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.contact-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 102, 255, 0.18);
}

.contact-box:hover::before {
    width: 180px;
    height: 180px;
}

.contact-box .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066ff, #00bfff);
    color: #fff;
    font-size: 32px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.35);
    transition: all 0.4s ease;
}

.contact-box:hover .icon {
    transform: rotateY(360deg);
}

.contact-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.contact-box p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
    margin: 0;
}

.contact-box a {
    color: #0066ff;
    font-weight: 600;
    text-decoration: none;
}

.contact-box a:hover {
    color: #0047b3;
}

.contact-form-box {
    padding: 35px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-form-box input {
    padding: 14px;
    border-radius: 8px;
}

.contact-form-box textarea {
    height: 100px;
    border-radius: 8px;
}

.contact-details i {
    color: #0066ff;
    margin-right: 10px;
}

.section-space {
    padding: 90px 0;
}


.service-card-new {
    height: 350px;
    border-radius: 25px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .10);
    transition: .4s ease;
}


.service-card-new img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 50px;
    background: #f7faff;
    transition: .5s;
}


.service-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(transparent,
            rgba(0, 0, 0, .85));
    color: #fff;
    transform: translateY(40px);
    transition: .4s;
}


.service-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}


.service-overlay p {
    font-size: 14px;
    opacity: 0;
    transition: .4s;
    margin-bottom: 15px;
}


.service-overlay a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #0066ff;
    border-radius: 50%;
    text-decoration: none;
}


.service-card-new:hover {
    transform: translateY(-10px);
}


.service-card-new:hover img {
    transform: scale(1.08);
}


.service-card-new:hover .service-overlay {
    transform: translateY(0);
}


.service-card-new:hover .service-overlay p {
    opacity: 1;
}

/* tv css */
.service-detail-section {
    padding: 40px 0
}

.feature-section {
    margin-bottom: 30px;
}

.service-detail-section {
    background: linear-gradient(180deg, #fff, #f5f9ff)
}

.service-main-img {
    width: 100%;
    max-width: 460px;
    padding: 25px;
    border-radius: 35px;
    /* background: #fff;
    box-shadow: 0 20px 50px rgba(0, 102, 255, .15), inset 0 0 20px rgba(0, 102, 255, .05); */
    transition: .5s
}

.service-main-img:hover {
    transform: translateY(-15px) scale(1.03)
}

.service-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: #eaf3ff;
    color: #0066ff;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(0, 102, 255, .12)
}

.service-detail-section h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
    margin: 20px 0;
    background: linear-gradient(90deg, #111, #0066ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.service-detail-section p {
    color: #666;
    font-size: 16px;
    line-height: 1.9
}

.feature-section {
    background: #f7faff
}

.feature-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 25px 30px;
    text-align: center;
    border-radius: 30px;
    border: 1px solid rgba(0, 102, 255, .08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    transition: .5s
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(0, 102, 255, .22)
}

.feature-card i {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 25px;
    font-size: 38px;
    color: #fff;
    background: linear-gradient(135deg, #0066ff, #00bfff);
    box-shadow: 0 15px 35px rgba(0, 102, 255, .4);
    transition: .5s
}

.feature-card:hover i {
    transform: rotateY(360deg)
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: #222
}

.feature-card p {
    color: #666;
    line-height: 1.8;
    text-align: justify;
}

.repair-service-section {
    background: #fff
}

.repair-box {
    position: relative;
    background: linear-gradient(145deg, #fff, #f5f9ff);
    padding: 35px;
    border-radius: 25px;
    height: 100%;
    overflow: hidden;
    border: 1px solid #edf2ff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .07);
    transition: .45s
}


.repair-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 102, 255, .18)
}

.repair-box h4 {
    font-size: 22px;
    font-weight: 800;
    color: #222
}

.repair-box h3 {
    display: inline-block;
    margin: 15px 0;
    padding: 8px 18px;
    background: #eaf3ff;
    color: #0066ff;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 800
}

.repair-box p {
    color: #666;
    line-height: 1.8
}

.service-contact {
    background: linear-gradient(135deg, #0066ff, #00bfff);
    text-align: center;
    color: #fff
}

.service-contact h2 {
    font-size: 42px;
    font-weight: 900
}

.service-contact p {
    font-size: 18px
}

.service-contact .btn-premium {
    margin-top: 20px;
    display: inline-flex;
    padding: 15px 40px;
    border-radius: 50px;
    background: #fff;
    color: #0066ff;
    font-weight: 800;
    text-decoration: none;
    transition: .4s
}

.service-contact .btn-premium:hover {
    background: #111;
    color: #fff;
    transform: translateY(-5px)
}

@media(max-width:768px) {
    .service-detail-section h2 {
        font-size: 32px
    }

    .service-contact h2 {
        font-size: 32px
    }
}

.additional-services-three {
    padding: 5px 0;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

/* Section Title */
.additional-services-three .section-title span {
    display: inline-block;
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    background: #e8f1ff;
    padding: 9px 22px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.additional-services-three .section-title h2 {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.additional-services-three .section-title p {
    max-width: 720px;
    margin: auto;
    color: #64748b;
    line-height: 1.8;
    font-size: 16px;
}


/* Main Image */
.additional-services-three__img {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.additional-services-three__img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .6s ease;
}

.additional-services-three__img:hover img {
    transform: scale(1.06);
}


/* Content */
.additional-services-three__content {
    padding-left: 40px;
}

.additional-services-three__content h3 {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
}

.additional-services-three__content p {
    color: #64748b;
    line-height: 1.9;
    font-size: 16px;
}


/* Service Cards */
.additional-services-three__box {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #e5edff;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
    transition: all .4s ease;
    position: relative;
}

.additional-services-three__box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, .18);
}


.additional-services-three__box .additional-services-three__img {
    border-radius: 0;
    box-shadow: none;
}

.additional-services-three__box .additional-services-three__img img {
    height: 240px;
}


/* Card Content */
.additional-services-three__box h4 {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    padding: 25px 20px 5px;
    margin: 0;
}

.additional-services-three__box h5 {
    font-size: 17px;
    font-weight: 800;
    color: #2563eb;
    padding: 0 25px;
    margin: 12px 0;
}

.additional-services-three__box p {
    color: #64748b;
    line-height: 1.8;
    font-size: 14px;
    padding: 0 25px 10px;
}


/* Bottom Line Animation */
.additional-services-three__box:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: #2563eb;
    transition: .4s ease;
}

.additional-services-three__box:hover:after {
    width: 100%;
}


/* Contact Section */
.service-contact {
    padding: 90px 20px;
    background: linear-gradient(135deg, #2563eb, #0891b2);
    text-align: center;
    color: #fff;
}

.service-contact h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.service-contact p {
    font-size: 17px;
    opacity: .9;
}

.service-contact .btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    margin-top: 25px;
    border-radius: 50px;
    background: #fff;
    color: #2563eb;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.service-contact .btn-premium:hover {
    background: #111827;
    color: #fff;
    transform: translateY(-4px);
}


/* Responsive */
@media(max-width:991px) {

    .additional-services-three {
        padding: 70px 0;
    }

    .additional-services-three .section-title h2 {
        font-size: 34px;
    }

    .additional-services-three__content {
        padding-left: 0;
        margin-top: 35px;
    }

    .additional-services-three__content h3 {
        font-size: 30px;
    }
}


@media(max-width:576px) {

    .additional-services-three .section-title h2 {
        font-size: 28px;
    }

    .additional-services-three__img img {
        height: 220px;
    }

    .additional-services-three__box h4 {
        font-size: 20px;
    }

    .service-contact h2 {
        font-size: 30px;
    }
}



.premium-stats {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.premium-stat-box {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.premium-stat-box h3 {
    font-size: 52px;
    font-weight: 800;
    color: #071426;
}

.premium-stat-box p {
    margin: 0;
    color: #64748b;
}


.process-box {
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
}

.process-box span {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 20px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: #071426;
    font-size: 28px;
    font-weight: 800;
}

.emergency-box {
    padding: 80px;
    border-radius: 35px;
    text-align: center;
    background: var(--gradient-dark);
    color: #fff;
}

.emergency-box h2 {
    font-size: 56px;
    font-weight: 800;
}

.emergency-box p {
    color: rgba(255, 255, 255, .8);
    margin: 20px 0 35px;
}

.hero {
    background: linear-gradient(135deg,
            #071426,
            #0d2444,
            #133d70);

    padding: 60px 0;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .08);
    top: -200px;
    right: -100px;
    filter: blur(80px);
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    bottom: -150px;
    left: -100px;
    filter: blur(80px);
}

.hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
}

.hero h1 span {
    display: block;
    color: #d4af37;
}

.hero p {
    color: rgba(255, 255, 255, .85);
    font-size: 20px;
}



.trust-strip {
    margin-top: 0;
    padding: 70px 0;
    background: #f8fafc;
}

.trust-wrapper {
    background: #ffffff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, .12);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-box {
    text-align: center;
    padding: 35px 20px;
    border-right: 1px solid #edf2f7;
    transition: .3s;
    background: #fff;
}

.trust-box:last-child {
    border-right: none;
}

.trust-box:hover {
    transform: translateY(-8px);
    background: #fafcff;
}

.trust-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #d4af37;
    background: rgba(212, 175, 55, .08);
    border: 1px solid rgba(212, 175, 55, .2);
}

.trust-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0d2444;
    margin-bottom: 8px;
}

.trust-box p {
    color: #6b7280;
    margin: 0;
    font-weight: 500;
}

@media(max-width:991px) {
    .trust-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-box:nth-child(2) {
        border-right: none;
    }

    .trust-box {
        border-bottom: 1px solid #edf2f7;
    }
}

@media(max-width:576px) {
    .trust-strip {
        margin-top: 20px;
    }

    .trust-wrapper {
        grid-template-columns: 1fr;
    }

    .trust-box {
        border-right: none;
    }
}



.tv-problems-section {
    padding: 40px 0;
    background: linear-gradient(180deg,
            #f8fbff 0%,
            #ffffff 100%);
    position: relative;
}

.section-header {
    max-width: 850px;
    margin: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .25);
    color: #c9a227;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
    margin-top: 25px;
    margin-bottom: 20px;
}

.section-header p {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.8;
}

.problem-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;
    transition: all .4s ease;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
}

.problem-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #d4af37,
            #f6e27a,
            #d4af37);
    transform: scaleX(0);
    transition: .4s;
}

.problem-card:hover:before {
    transform: scaleX(1);
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 25px 50px rgba(8, 32, 61, .12);
}

.problem-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #d4af37;
    background:
        linear-gradient(135deg,
            rgba(212, 175, 55, .12),
            rgba(212, 175, 55, .04));
    border: 1px solid rgba(212, 175, 55, .20);
}

.problem-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: #08203d;
    margin-bottom: 15px;
}

.problem-card h4:after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #d4af37;
    margin: 12px auto 0;
    border-radius: 10px;
}

.problem-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-top: 18px;
    margin-bottom: 0;
}

@media(max-width:991px) {

    .section-header h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .tv-problems-section {
        padding: 70px 0;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .section-header p {
        font-size: 16px;
    }

}


.brands-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.brands-section .section-title {
    margin-bottom: 50px;
}

.brands-section .section-title h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
}

.brands-section .section-title p {
    color: #6b7280;
    font-size: 18px;
}

.brands-slider {
    position: relative;
    overflow: hidden;
}

.brands-track {
    display: flex;
    width: max-content;
    animation: scrollBrands 30s linear infinite;
}

.brand-item {
    width: 220px;
    height: 120px;
    background: #fff;
    margin: 0 15px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #edf2f7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.brand-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .10);
}

.brand-item img {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: .3s;
}

.brand-item:hover img {
    filter: none;
    opacity: 1;
}

@keyframes scrollBrands {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Edge Fade Effect */
.brands-slider::before,
.brands-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 5;
}

.brands-slider::before {
    left: 0;
    background: linear-gradient(to right,
            #fff,
            transparent);
}

.brands-slider::after {
    right: 0;
    background: linear-gradient(to left,
            #fff,
            transparent);
}


.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg,
            #f7f9fc,
            #ffffff);
    position: relative;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(212, 175, 55, .25);
    color: #d4af37;
    font-weight: 700;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
    margin-top: 25px;
}

.section-header p {
    max-width: 700px;
    margin: auto;
    color: #6b7280;
    font-size: 20px;
    line-height: 1.8;
}

.process-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    height: 100%;
    overflow: visible;
    border: 1px solid #edf2f7;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);

    transition: .4s;
}

.process-card:hover {
    transform: translateY(-12px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, .12);
}

.process-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;

    background: linear-gradient(90deg,
            #d4af37,
            #f6e27a,
            #d4af37);
}

.process-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;
    color: #d4af37;

    background: #08203d;

    border: 6px solid #fff;

    box-shadow:
        0 10px 30px rgba(8, 32, 61, .15);
}

.step-number {
    font-size: 40px;
    font-weight: 800;
    color: #e8d6a0;
    line-height: 1;
    margin-bottom: 15px;
}

.process-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #08203d;
    margin-bottom: 15px;
}

.process-card p {
    color: #6b7280;
    line-height: 1.8;
}

.process-arrow {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;
    background: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .08);

    color: #b88918;
    font-size: 18px;

    z-index: 10;
}

.process-row .col-lg-3:last-child .process-arrow {
    display: none;
}

.process-features {
    margin-top: 70px;

    background: #fff;
    border-radius: 25px;

    padding: 35px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    font-size: 38px;
    color: #d4af37;
}

.feature-item strong {
    display: block;
    color: #08203d;
    font-size: 18px;
}

.feature-item span {
    color: #6b7280;
}

@media(max-width:991px) {

    .process-arrow {
        display: none;
    }

    .process-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header h2 {
        font-size: 42px;
    }
}

@media(max-width:767px) {

    .process-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 34px;
    }

    .section-header p {
        font-size: 16px;
    }
}



.tv-service-portal {
    padding: 100px 0;
    background: #f8fafc;
}

.portal-header {
    max-width: 900px;
    margin: auto;
    margin-bottom: 60px;
}

.portal-badge {
    display: inline-block;
    background: #08203d;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
}

.portal-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #08203d;
    margin-top: 20px;
}

.portal-header p {
    font-size: 20px;
    color: #6b7280;
}

.portal-card,
.coverage-card {
    background: #fff;
    border-radius: 25px;
    padding: 40px;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.portal-card h3,
.coverage-card h3 {
    color: #08203d;
    font-weight: 700;
    margin-bottom: 20px;
}

.portal-card p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}

.portal-card h4 {
    margin-top: 30px;
    color: #08203d;
}

.portal-list {
    padding-left: 20px;
}

.portal-list li {
    margin-bottom: 12px;
    color: #555;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.city-grid span {
    background: #f5f7fb;
    padding: 12px;
    text-align: center;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.city-grid span:hover {
    background: #08203d;
    color: #fff;
}

.portal-bottom {
    margin-top: 50px;
}

.benefit-box {
    background: #fff;
    text-align: center;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .3s;
}

.benefit-box:hover {
    transform: translateY(-8px);
}

.benefit-box i {
    font-size: 42px;
    color: #d4af37;
    margin-bottom: 15px;
}

.benefit-box h4 {
    font-size: 20px;
    color: #08203d;
}


.premium-footer {
    background: #06172d;
    color: #fff;
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.premium-footer:before {
    content: '';
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(212, 175, 55, .06);
    filter: blur(120px);
}

.footer-logo {
    max-width: 220px;
    margin-bottom: 25px;
}

.footer-about p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact i {
    color: #d4af37;
    width: 25px;
}

.premium-footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.premium-footer h4:after {
    content: '';
    width: 40px;
    height: 3px;
    background: #d4af37;
    display: block;
    margin-top: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: #d4af37;
    padding-left: 6px;
}

.footer-cta p {
    color: rgba(255, 255, 255, .75);
}

.footer-btn {
    display: inline-block;
    background: linear-gradient(135deg,
            #d4af37,
            #f2d774);

    color: #08203d;
    font-weight: 700;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    margin-top: 10px;
}

.footer-seo-content {
    margin-top: 60px;
    padding: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

.footer-seo-content h5 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 24px;
}

.footer-seo-content p {
    color: rgba(255, 255, 255, .75);
    line-height: 1.9;
    margin-bottom: 0;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, .65);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: #d4af37;
}


	.services-section{

    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);

    position:relative;

}

.service-subtitle{

    display:inline-block;

    background:#eef4ff;

    color:#0d6efd;

    padding:8px 22px;

    border-radius:50px;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:20px;

}

.service-title{

    font-size:42px;

    font-weight:700;

    color:#1f355e;

    margin-bottom:20px;

}

.service-description{

    max-width:760px;

    margin:auto;

    color:#6b7280;

    font-size:18px;

    line-height:1.8;

}

.service-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    height:100%;

    display:flex;

    flex-direction:column;

    transition:.4s;

    position:relative;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:linear-gradient(90deg,#ffb300,#0d6efd);

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.service-image{

    height:230px;

    overflow:hidden;

}

.service-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover img{

    transform:scale(1.1);

}

.service-content{

    padding:28px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.service-content h4{
    color:#1f355e;
    font-size:20px;
    font-weight:700;
    margin-bottom:15px;
}

.service-content h4 i{

    color:#0d6efd;

}

.service-content p{

    color:#6b7280;

    line-height:1.8;

    flex:1;

    margin-bottom:25px;

}

.service-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:max-content;

    padding:12px 28px;

    background:linear-gradient(90deg,#0d6efd,#0049d6);

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

}

.service-btn:hover{

    background:linear-gradient(90deg,#ffb300,#ff9800);

    color:#fff;

    transform:translateX(6px);

}

.view-all-services{

    display:inline-block;

    padding:16px 40px;

    border-radius:50px;

    text-decoration:none;

    color:#fff;

    background:linear-gradient(90deg,#0d6efd,#0048d9);

    font-size:18px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 10px 25px rgba(13,110,253,.30);

}

.view-all-services:hover{

    color:#fff;

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(13,110,253,.45);

}

@media(max-width:991px){

.service-title{

font-size:34px;

}

.service-image{

height:220px;

}

}

@media(max-width:767px){

.service-title{

font-size:28px;

}

.service-description{

font-size:16px;

}

.service-image{

height:200px;

}

.service-content{

padding:22px;

}

}




/* Premium Hero Core Styles */
.premium-hero {
    min-height: 160px; /* Enhanced height for a grander, spacious feel */
    padding: 10px 0;
}

/* Layered overlay to create rich depth and hide rough spots in background photos */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(16 35 82 / 85%) 0%, rgb(193 200 213 / 70%) 100%);
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

/* Luxury Typography & Spacing details */
.tracking-wide {
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 0.85rem;
    color: #ffc107; /* Matches the golden/yellow branding accent in image_173d39.jpg */
    font-weight: 600;
}

.hero-title {
    font-size: 2.0rem;
    letter-spacing: 1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Sleek minimalist divider line */
.premium-divider {
    width: 60px;
    height: 3px;
    background: #ffc107;
    border-radius: 2px;
}

.hero-lead {
    font-size: 1.2rem;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Ultra-Premium Interactive Button */
.btn-premium-cta {
    background: #ffc107;
    color: #0f172a !important;
    border: 2px solid #ffc107;
    border-radius: 4px; /* Crisp, sophisticated clean edges */
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.25);
}

/* Sleek ghost-inversion on hover */
.btn-premium-cta:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive Scaling for Ultra-Premium feel across devices */
@media (max-width: 768px) {
    .premium-hero {
        min-height: 160px;
        padding: 40px 0;
    }
    .hero-title {
        font-size: 2rem;
    }
    .hero-lead {
        font-size: 1rem;
    }
}





	.container-text {
            max-width: 900px;
            margin: 0 auto;
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            border-top: 5px solid var(--primary-color);
        }

        .header {
            text-align: center;
            margin-bottom: 40px;
            border-bottom: 2px solid var(--light-bg);
            padding-bottom: 20px;
        }

        .company-name {
            font-size: 24px;
            font-weight: bold;
            color: var(--primary-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
        }

        .subtitle {
            font-size: 14px;
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 15px;
        }

        h1 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .effective-date {
            font-style: italic;
            color: #666;
            font-size: 14px;
        }

        .highlight-box {
            background-color: var(--light-bg);
            border: 1px solid #e9ecef;
            padding: 20px;
            border-radius: 6px;
            margin: 20px 0;
        }

        