/* global elements */
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Anton&family=Changa:wght@200..800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Oswald:wght@200..700&family=Paytone+One&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Paytone One", serif;
}

body {
    font-family: 'Lexend Deca';
}

.kh_wrapper {
    overflow: hidden;
}

small,
.small {
    font-size: 70%;
    font-weight: 400;
    text-align: left;
    display: inline-block;

}

:root {

    --thm-font: 'Lexend Deca', sans-serif;
    --thm-font-two: 'Quantico', sans-serif;
    --thm-gray: #666666;
    --thm-gray-rgb: 102, 102, 102;
    --thm-white: #ffffff;
    --thm-white-rgb: 255, 255, 255;
    --thm-black: #000000;
    --thm-black-rgb: 34, 34, 34;
    --thm-base: red;
    --fontGreen: #0F72AC;
    --fontredorange: #fb4e03;
    --fontOrange: #ff5e14;
    --fontWhite: #fff;
    --fontBlue: #064259;

}

.sec_bg_grey {
    background-color: #f5f5f5;
}

section {
    padding: 100px 0;
    background-color: #009ae059;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 20%);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 20%);
}

.sectionbgwhite {
    background-color: #fff;
}

h2 {

    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--fontBlue);
}

h3 {
    color: var(--fontGreen);
    font-size: 26px;
    line-height: 30px;
}

p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 2rem;
    text-align: left;
    font-family: "Roboto", sans-serif;

}

ul ,ol{
    font-size: 1rem;
    color: #666;
    font-family: "Roboto", sans-serif;
}
/* Style for the unordered list */
ul {
    list-style-type: none; /* Removes default bullets */
    padding: 0; /* Removes padding */
    margin: 0; /* Removes margin */
    font-family: 'Arial', sans-serif; /* Clean, modern font */
    line-height: 1.6; /* Increases line height for readability */
}

/* Style for each list item */
section ul li {
    background-color: #f8f8f8; /* Light gray background for each item */
    border-left: 4px solid #4CAF50; /* Green border for a sleek, modern look */
    padding: 10px 20px; /* Padding inside each list item */
    margin-bottom: 10px; /* Space between list items */
    transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth transitions for hover effects */
}

/* Hover effect on list items */
section  ul li:hover {
    background-color: #e0f7fa; /* Light blue background on hover */
    transform: translateX(5px); /* Subtle shift to the right on hover */
}

/* Optional: Add icons or custom bullet points */
section  ul li::before {
    content: '✔'; /* Custom bullet (check mark) */
    color: #4CAF50; /* Green color for the bullet */
    margin-right: 10px; /* Space between bullet and text */
    font-size: 18px; /* Size of the bullet */
}

.banner-sec span {
    color: var(--fontGreen)
}

.banner-sec img {
    -webkit-box-shadow: 0 0 15px 1px rgba(0, 0, 0, 15%);
    box-shadow: 0 0 3px 1px rgb(39 27 27 / 51%);
}
/* Styling for homesec1-img and homesec2-img */
.homesec1-img, .homesec2-img {
    border-radius: 0; /* No rounded corners */
    object-fit: cover; /* Ensures the image covers the box without distortion */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow around the image */
    border: 3px solid #fff; /* Adds a white border for emphasis */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
}

/* Hover effect for both images */
.homesec1-img:hover, .homesec2-img:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Larger shadow when hovered */
}

/* Additional styling (if needed for layout) */
.homesec1-img, .homesec2-img {
    max-width: 100%; /* Ensure the image scales with the container */
    height: auto; /* Maintain aspect ratio */
    display: block; /* Removes extra space below images */
    margin: 0 auto; /* Centers the images horizontally */
    border-radius: 10px; /* Optional: You can add slight rounded corners if you like */
}

/* Optional: If you want to add a specific padding or background */
.homesec1-img, .homesec2-img {
    padding: 10px; /* Optional padding for a more neat appearance */
    background-color: #f5f5f5; /* Optional light background if the image has empty space */
}


.homesec2 {
    background-color: #f2662c59;
}

.banner-sec .btn-elipse img {
    box-shadow: none;
}

.btn-elipse {
    display: none !important;
}

.banner-sec .colortextorange {
    color: var(--fontGreen);
}

.colortextorange {
    color: var(--fontGreen);
}

/* btn css */
.kh-btn {
    background: linear-gradient(135deg, #18ABE3, #18ABE3); /* Updated gradient (green shades) */
    padding: 18px 35px; /* Adjusted padding for larger button */
    display: inline-block;
    border-radius: 25px; /* More rounded corners */
    transform: translate(0%, 0%);
    overflow: hidden;
    color: #fff; /* White text */
    font-size: 16px; /* Larger text size */
    font-weight: 700; /* Bolder text */
    letter-spacing: 1.2px; /* Slightly wider letter spacing */
    text-align: center; /* Center text */
    text-transform: uppercase; /* Uppercase text */
    text-decoration: none; /* No underline */
    cursor: pointer; /* Pointer cursor */
    z-index: 22;
    transition: all 0.4s ease-in-out; /* Smooth transition */
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Slightly stronger shadow */
    outline: none; /* Remove default focus outline */
}

/* Hover state */
.kh-btn:hover {
    background: linear-gradient(135deg, #18ABE3, #18ABE3); /* Reverse gradient on hover */
    color: #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); /* Stronger shadow on hover */
    transform: scale(1.1); /* Larger grow effect on hover */
    text-decoration: none; /* No underline on hover */
}

/* Active state (button pressed) */
.kh-btn:active {
    transform: scale(0.95); /* Shrink on click */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Slightly less intense shadow on click */
    transition: transform 0.1s; /* Quick response */
}

/* Focus state (for accessibility when tabbing through elements) */
.kh-btn:focus {
    outline: 3px solid #fff; /* White outline on focus */
    outline-offset: 2px; /* Slightly offset outline */
}

/* Hover effect using pseudo-element */
.kh-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2); /* Light overlay */
    transition: all 0.6s ease-in-out;
    border-radius: 5px; /* Smooth rounded corners */
    transform: translate(-50%, -50%) scale(0); /* Initially invisible */
}

/* Expand the overlay on hover */
.kh-btn:hover::before {
    transform: translate(-50%, -50%) scale(1); /* Reveal overlay */
}

/* Media query for responsive design */
@media (max-width: 768px) {
    .kh-btn {
        padding: 14px 30px; /* Adjust padding for smaller screens */
        font-size: 14px; /* Slightly smaller text */
    }
}

/* header */
.kh_header {
    position: absolute;
    width: 100%;
    margin: 0 auto;
    left: 0;
    right: 0;
    color: #fff;
    position: fixed;
    z-index: 9999;
    background: #fff;
    padding: 15px;
    -webkit-box-shadow: 0 0 15px 2px rgba(0, 0, 0, 60%);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 30%);
}

.kh_header .navbar {}

.kh_header .navbar-brand {
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
}

/* .kh_header .navbar-brand img {
    padding: 10px;
    border-radius: 10px;
    background-color: #fff;

} */

.btn-elipse {
    background-color: white;
    display: inline;
    border-radius: 100%;
    padding: 8px;

}

.btn-elipse img {
    -moz-transform: rotate(-40deg);
    -webkit-transform: rotate(-40deg);
    -o-transform: rotate(-40deg);
    -ms-transform: rotate(-40deg);
    transform: rotate(-40deg);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.kh-btn:hover img {
    -moz-transform: rotate(-0deg);
    -webkit-transform: rotate(-0deg);
    -o-transform: rotate(-0deg);
    -ms-transform: rotate(-0deg);
    transform: rotate(-0deg);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.kh_header .nav-section {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0 !important;
    align-items: center;
}

.kh_header .nav-number {
    position: absolute;
    top: 7px;
    font-weight: bold;
    font-size: 16px;
}

.navbar-main li a {
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

.navbar-main li a:hover {
    color: var(--fontGreen)
}

.kh_header .navbar-nav .nav-link {
    color: var(--thm-black);
}

.kh_header .navbar-nav .nav-link.active,
.kh_header .navbar-nav .nav-link.show.active {
    color: var(--fontWhite);
    background: var(--fontGreen);
    padding: 10px;
}

.kh_header .head-call {
    text-decoration: none;

}

.kh_header .head-call span {
    color: #000;
}

/* banner */
/* section.internet-bannersec .kh-banner-resposive-img {
    background: url(./assets/images/internetbannersec.jpg);
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;

} */
.tile {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 30%);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 30%);
}

.Ttvfeaturetile {
    background-color: #fff;
    padding: 30px;

}

section.banner-sec {
    background-color: #18abe38f;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url(./assets/images/waistup-shot-excited-thrilled-happy-expressive-european-woman-blouse-tshirt-gasping-f_1258-142504-removebg-preview.png);
    background-repeat: no-repeat;
    background-size: cover;
}
section.banner-sec-internet{
    background-color: #18abe38f;
    background-size: cover;
    background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: center;
    background: url(./assets/images/excited-thrilled-young-emotional-enthusiasitc-ginger-girl-teenage-college-student-yelling-amused-smiling-broadly-receive-positive-good-news-look-surprised-camera-touch-face-astonish.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}


section.banner-sec-mobile{
    background-color: #18abe38f;
    background-size: cover;
    background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: center;
    background: url(./assets/images/portrait-amused-excited-talkative-lively-cute-woman-glamourous-outfit-gesturing-with-rased_1258-152399.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

section.banner-sec-homephone{
    background-color: #18abe38f;
    background-size: cover;
    background-repeat: no-repeat;
height: 100vh;
display: flex;
align-items: center;
    background: url(./assets/images/amused-talented-creative-young-blond-female-tell-excellent-idea-show-okay-no-problem-gesture-persuad_1258-137426.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}



.kh-banner-text h1 {
    font-size: 40px;
    color: #e9e9e9;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: -5.12px;
    letter-spacing: 2px;
}

.kh-banner-text h1,
.kh-banner-text p {
    color: #151515;
}

.kh-banner-text p {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
}

.kh-banner-text .bannerprice {
    font-weight: 800;
    color: var(--fontGreen);
    font-size: 65px;
    margin: 0;
    line-height: 60px;
}

.kh-banner-text .bannertag {
    color: var(--fontGreen);
    font-size: 22px;
}

section .bannertag {
    color: var(--fontGreen);
    font-size: 22px;
}

.kh-banner-text .bannerprice small {
    font-weight: 500;
    font-size: 16px;
    color: #4c4c4c;
}

.kh-banner-text .bannerprice span {
    font-weight: 600;
    font-size: 16px;
}


/* section  */
.kh_section_title h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--fontGreen);
}


/* Updated Pricing Tile */
.price-table {
    padding: 20px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: 20px;
    border: 2px solid #16d2ff;
}

.price-table:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.price-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.price-header h1 {
    font-size: 1.8em;
    color: #1c1d3e;
    margin: 0;
    font-weight: 700;
}

.price-header p {
    font-size: 0.9em;
    color: #6a6f85;
    margin: 5px 0 0;
}

.price-value {
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #1c1d3e;
}

.price-value h2 {
    font-size: 2.5em;
    line-height: 1.2;
    color: #0b74de;
    margin: 10px 0;
    font-weight: 800;
}

.price-value h3 {
    font-size: 1.2em;
    color: #6a6f85;
    margin: 5px 0;
}

.price-value p {
    font-size: 0.95em;
    color: #4a4f60;
    text-align: center;
    margin: 10px 0;
}

.price-value span {
    display: block;
    margin: 10px 0;
    font-size: 1.1em;
    color: #0b74de;
    font-weight: 600;
}

.price-list {
    margin-top: 15px;
    width: 100%;
}

.price-list ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.price-list ul li {
    font-size: 0.95em;
    color: #4a4f60;
    padding: 10px 15px;
    border-bottom: 1px solid #e6e6e6;
}

.price-list ul li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .price-table {
        padding: 15px;
    }

    .price-header h1 {
        font-size: 1.5em;
    }

    .price-value h2 {
        font-size: 2em;
    }

    .price-value p {
        font-size: 0.9em;
    }

    .kh-btn {
        padding: 10px 20px;
        font-size: 0.85em;
    }
}



/* featuretv */
.featuretv {}








/* internet */
/* .internetoffersec .offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}


.internetoffersec .offer img {
    max-width: 150px;
    height: auto;
    border-radius: 10px;
} */
.internetoffersec .offer {
    margin-bottom: 20px;
}

.internetoffersec .offer .text {
    margin-top: 10px;
}

.internetoffersec .offer .text h2 {
    margin: 0;
    color: #333;
    font-size: 1.3rem;
}

.internetoffersec .offer .text p {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #666;
}

.internetoffersec .offer .offerimg {
    height: 300px;
    width: 100%;
}


/* faq */
.faq-section {
    background-color: #f9f9f9;

}

.faq-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Accordion Styles */
.accordion .card {
    border: none;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.accordion .card-header {
    background-color: #f7f7f7;
    padding: 0;
    border: none;
    border-radius: 0;
}

.accordion .card-header h5 {
    margin: 0;
}

.accordion .btn {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    display: block;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background-color: var(--fontGreen);
    border: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.accordion .btn:hover,
.accordion .btn:focus {
    background-color: var(--fontGreen);
    outline: none;
}

.accordion .btn.collapsed {
    color: var(--fontWhite);
}

.accordion .btn i {
    float: right;
    transition: transform 0.3s ease;
}

.accordion .btn.collapsed i {
    transform: rotate(180deg);
}

.accordion .card-body {
    background-color: #fff;
    padding: 20px;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #555;
}

/* package section */

.package-card {
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #fff;
    text-align: center;
    transition: all 0.5s ease-in-out 0s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.3);
    flex-grow: 1;
}

.package-card:hover {
    transform: translateY(-10px);
}

.package-card h4 {
    font-size: 1.5rem;
    color: var(--fontGreen);
    margin-bottom: 15px;
}

.package-card img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.package-card p {
    color: #555;
    font-size: 1rem;
}

.packagecontent {
    padding: 10px;
}

.package-card .channels {
    font-size: 1.1rem;
    color: #333;
    font-weight: bold;
    margin-top: 10px;
}

/* feature section */
.features-section {
    padding: 60px 0;
    text-align: center;
}

.feature-card {
    background-color: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 0 10px 1px rgba(0, 0, 0, 32%);
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 32%);
    padding: 20px;
    margin: 20px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h4 {
    font-size: 1.2rem;
    color: var(--fontGreen);
    margin-bottom: 15px;
}

.feature-card img {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #555;
    font-size: 1rem;
}


/* footer */

.main-footer {
    position: relative;
    background: f2f2f2;
}

.main-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-content {
    position: relative;
    padding: 85px 0px 80px 0px;
}

.footer-content:before {
    position: absolute;
    content: '';
    width: 744px;
    height: 365px;
    top: 50px;
    right: 0px;
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-content .logo-widget {
    position: relative;
    margin-top: -5px;
}

.footer-content .logo-widget .footer-social li {
    position: relative;
    display: inline-block;
    margin-right: 9px;
}

.footer-content .logo-widget .footer-social li:last-child {
    margin-right: 0px;
}

.footer-content .logo-widget .footer-social li a {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    line-height: 42px;
    background: #2e3138;
    color: #9ea0a9;
    text-align: center;
    border-radius: 50%;
}

.footer-content .logo-widget .footer-social li a:hover {
    color: #ffffff;
    background: #ff5e14;
}

.footer-content .logo-widget .logo-box {
    margin-bottom: 25px;
}

.footer-content .logo-widget .text p {
    color: #9ea0a9;
    margin-bottom: 32px;
}

.footer-content .footer-title {
    position: relative;
    font-size: 24px;
    z-index: 99999;
    line-height: 35px;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 27px;
}

.footer-content .service-widget .list li {
    display: block;
    margin-bottom: 12px;
}

.footer-content .service-widget .list li a {
    position: relative;
    display: inline-block;
    color: #9ea0a9;
}

.footer-content .service-widget .list li a:hover {
    color: #ff5e14;
}

.footer-content .contact-widget p {
    color: #9ea0a9;
    margin-bottom: 15px;
    position: relative;
}

.footer-content .contact-widget {
    margin-left: 90px;
}

.footer-content .contact-widget .footer-title {
    margin-bottom: 29px;
}

/** footer-bottom **/

.footer-bottom {
    position: relative;
    background: var(--fontGreen);
    padding: 25px 0px 22px 0px;
}

.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .footer-nav li a {
    position: relative;
    color: #fff;
}

.footer-bottom .copyright a:hover,
.footer-bottom .footer-nav li a:hover {
    color: #ff5e14;
}

.footer-bottom .footer-nav {
    position: relative;
    text-align: right;
}
.footer-bottom a{color:#fff;}
.footer-bottom .footer-nav li {
    position: relative;
    display: inline-block;
    margin-left: 29px;
}

.footer-bottom .footer-nav li:first-child {
    margin-left: 0px;
}

.footer-bottom .footer-nav li:before {
    position: absolute;
    content: '';
    background: #9ea0a9;
    width: 1px;
    height: 14px;
    top: 7px;
    left: -18px;
}

.footer-bottom .footer-nav li:first-child:before {
    display: none;
}

.logo-box img {
    max-width: 220px;
}

.tfn-bar {
    background: var(--fontGreen);
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1000;
    display: none;
    /* Hide by default */
}

.tfn-bar button {
    background-color: #fff;
    color: #4CAF50;
    border: none;
    padding: 10px 20px;
    margin-left: 20px;
    cursor: pointer;
}

/* Popup styles */
.popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
    background-color: white;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* popup */

/* Modal Styles */
#popupModal {
    display: none;
    /* Hidden by default */
    position: fixed;
    z-index: 999;
    left: 0;
    padding: 200px 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.5s ease-in-out;
}

#popupModal h2 {
    font-size: 22px;
    margin-bottom: 10px;
}

#popupModal .modal-content {
    position: relative;
    margin: 15% auto;
    padding: 61px 20px;
    gap: 10px;
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 300px;
    background-color: #fff;
    border-radius: 10px;
    text-align: center;
    animation: slideIn 0.5s ease-in-out;
}

/* Close Button */
#popupModal .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #aaa;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

#popupModal .close-btn:hover,
#popupModal .close-btn:focus {
    color: black;
}

.triple-img {
    border-radius: 20px 50px;
}

/* chart */


/* Animation Keyframes */
@keyframes slideIn {
    from {
        transform: translateY(-50%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* speed test animate */

.wrapper {
    width: 600px;
    margin: 0 auto;
}

.rang {
    text-align: center;
}

.rang-title {
    display: inline-block;
    width: 200px;
}

.rang-number {
    width: 100%;
    margin-top: 40px;
    text-align: center;
    border-width: 0;
    font-size: 50px;
    font-weight: 900;
    background-color: #fff;
    color: #0093d7;
}

.rang-slider[type=range] {
    width: 400px;
    margin-top: 40px;
    -webkit-appearance: none;
}

.rang-slider[type=range]:focus {
    outline: none;
}

.rang-slider[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 20px;
    border-radius: 25px;
    background: #0093d7;
    cursor: pointer;
}

.rang-slider[type=range]::-webkit-slider-thumb {
    width: 50px;
    height: 20px;
    margin-top: 0;
    border-radius: 25px;
    background: #ffc815;
    -webkit-appearance: none;
    cursor: pointer;
}

.rang-slider[type=range]:focus::-webkit-slider-runnable-track {
    background: #a3cd3b;
}

.meter {
    display: block;
    width: 273px;
    height: 155px;
    margin: 0 auto;
    margin-bottom: 15px;
}

.meter-left {
    transform: skewX(-2deg) skewY(1deg);
    stroke-width: 10;
    stroke-dashoffset: 253;
    stroke-dasharray: 120 400;
    stroke: var(--fontGreen);
    fill: none;
}

.meter-center {
    stroke-width: 10;
    stroke-dashoffset: 128;
    stroke-dasharray: 120 400;
    stroke: #4ccbbe;
    fill: none;
}

.meter-right {
    transform: skewX(2deg) skewY(1deg);
    stroke-width: 10;
    stroke-dashoffset: 5;
    stroke-dasharray: 120 400;
    stroke: var(--fontBlue);
    fill: none;
}

.meter-clock {
    transform: rotate(-54deg);
    transform-origin: 137px 146px;
    fill: black;
}

.meter-circle {
    fill: black;
}

/* Media query for mobile devices */
@media (max-width: 767px) {
    .tfn-bar {
        display: block;
        /* Show TFN bar on mobile */
    }

}

@media (max-width:991px) {
    .kh_section_title h2 {
        font-size: 1.8rem;
    }

    .internetoffersec .offer .text h2 {
        font-size: 1.4rem;
    }

    .internetoffersec .offer .text p {
        font-size: 1rem;
    }

    .banner-sec img {
        border-radius: 137px 20px 20px 20px;
    }
}

@media (max-width: 767px) {
    section.banner-sec{
        height: 100%;
        align-items: start;
    }
    .banner-sec img {
        border-radius: 0;
    }

    .kh-btn {
        padding: 10px 20px;
    }

    .kh_header .container {
        padding: 0;
        border-radius: 0;
    }

    .kh_header .nav-section {
        flex-direction: column;
    }

    section.banner-sec {
        background: #F29F37;
    }

    .accordion .btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }

    .accordion .card-body {
        padding: 15px;
    }

    .kh-banner-text h1 {
        margin-top: 10px;
        font-size: 27px;
        line-height: 34px;

    }

    .kh-banner-text {
        margin: 10px 0;
    }

    .kh-banner-text p {
        font-size: 14px;
    }

    section.banner-sec {
        padding: 150px 0 70px;
    }

    p {
        font-size: 1rem;

    }

    .kh_section_title h2 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .internetoffersec .offer .offerimg {
        height: 300px;
        width: 100%;
    }

    .internetoffersec .offer .text {
        margin: 10px 0;
    }

    .internetoffersec .offer .text h2 {
        font-size: 1.4rem;
        margin-top: 10px;
    }

    .features-section h2 {
        text-align: left;
    }


}