@font-face {
    font-family: "Untitled Serif Regular";
    src: url("path-to-your-font-file/untitled-serif-regular.woff2") format("woff2"),
        url("path-to-your-font-file/untitled-serif-regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}
#success-alert {
    position: relative;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #cce5ff; /* Light blue background */
    border: 1px solid #b8daff; /* Border to match the background */
    border-radius: 5px; /* Rounded corners */
    font-size: 1rem;
    color: #004085; /* Dark blue text */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#success-alert .alert-primary {
    background-color: #cce5ff; /* Matching background color */
    color: #004085; /* Dark blue text */
    border-color: #b8daff; /* Border to match background */
}

/* Optional: Add a fade-out effect when closing the alert */
#success-alert .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    color: #004085;
    opacity: 0.7;
    cursor: pointer;
}

#success-alert .close:hover {
    opacity: 1;
}

/* General Styles */
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Untitled Serif Regular" !important;
}

/* Navbar Start */
.navbar {
    position: sticky;
    top: 10px;
    z-index: 1000;
    margin: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #DCE4EB;
    color: #160166;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    list-style: none;
    margin: 0 16px;
    font-weight: bold;
}

.nav-links a {
    text-decoration: none;
    color: #160166;
    font-size: 18px;
    transition: color 0.3s;
}

.nav-btn {
    font-family: "Untitled Serif Regular" !important;
    font-weight: bold;
    font-size: 16px;
    padding: 12px 20px;
    border: none;
    background-color: #160166;
    color: white;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}


/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 4px 0;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        padding: 20px;
        flex-direction: column;
        background-color: #DCE4EB;
        position: absolute;
        top: 80px;
        right: 0;
        width: 150px;
        border-radius: 15px;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .menu-toggle {
        display: flex;
    }
}

/* Navbar End*/

/* Content1st Start */
.voip-container {
    margin: 50px;
    display: flex;
    align-items: center;
    background-color: #fff;
}

.background-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: #DCE4EB;
    opacity: 0.6;
}

.voip-content {
    flex: 1.5;
    margin-right: 20px;
    z-index: 1;
}

.voip-content h1 {
    font-size: 35px;
    color: #160166;
    margin-bottom: 20px;
}

.voip-content .highlight {
    color: #160166;
    font-weight: bold;
}

.voip-content p {
    font-size: 23px;
    color: #160166;
    line-height: 1.5;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 15px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: backgroud-color 0.3s ease, transform 0.2s ease;
    width: 120px;
}

.explore-btn {
    background-color: #DCE4EB;
    color: #160166;
}

.pricing-btn {
    background-color: #160166;
    color: #fff;
    border: none;
}

.voip-image {
    flex: 1;
    text-align: center;
    z-index: 1;
}

.voip-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

@media (max-width: 480px) {
    .circle-1 {
        display: none;
    }
    .circle-2 {
        display: none;
    }
    .circle-3 {
        display: none;
    }
}

/* For tablets (max-width: 768px) */
@media (max-width: 768px) {
    .circle-1 {
        display: none;
    }
    .circle-2 {
        display: none;
    }
    .circle-3 {
        display: none;
    }
}

/* For laptops (max-width: 1024px) */
@media (max-width: 1024px) {
    .circle-1 {
        width: 50px;
        height: 50px;
        top: 550px;
        left: 600px;
    }

    .circle-2 {
        width: 350px;
        height: 350px;
        top: 200px;
        right: 70px;
    }

    .circle-3 {
        width: 50px;
        height: 50px;
        top: 180px;
        right: 70px;
    }
}

/* For desktops (max-width: 1440px) */
@media (max-width: 1440px) {
    .circle-1 {
        width: 50px;
        height: 50px;
        top: 560px;
        left: 880px;
    }

    .circle-2 {
        width: 380px;
        height: 380px;
        top: 205px;
        right: 100px;
    }

    .circle-3 {
        width: 50px;
        height: 50px;
        top: 190px;
        right: 100px;
    }
}

/* For large screens (min-width: 1441px) */
@media (min-width: 1441px) {
    .circle-1 {
        width: 50px;
        height: 50px;
        top: 550px;
        left: 1300px;
    }

    .circle-2 {
        width: 380px;
        height: 380px;
        top: 205px;
        right: 200px;
    }

    .circle-3 {
        width: 50px;
        height: 50px;
        top: 185px;
        right: 185px;
    }
}
/* Content1st End* /

/* Content2nd Start */
.phone-row {
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    padding: 20px;
    margin: 15px auto;
}

.image-section {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.image-section img {
    max-width: 60%;
    height: auto;
    border-radius: 5px;
}

.text-section {
    flex: 1;
    padding: 10px;
    text-align: left;
}

.text-section h2 {
    font-size: 35px;
    color: #160166;
    font-weight: bold;
    margin-bottom: 15px;
}

.text-section p {
    font-size: 23px;
    color: #160166;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }

    .voip-content h1 {
        font-size: 1.5rem;
    }

    .voip-content p {
        font-size: 0.9rem;
    }
}

/* Responsive Styling */
@media (max-width: 768px) {
    .phone-row {
        margin: 35px;
        flex-direction: column;
        /* Stacks content vertically */
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0.2, 0.2, 0.2, 0.2);
    }

    .text-section {
        text-align: center;
        /* Centers text on smaller screens */
    }

    .text-section h2 {
        font-size: 25px;
    }

    .text-section p {
        font-size: 15px;
    }

    .voip-container {
        flex-direction: column;
        /* Stack content vertically */
        text-align: center;
    }

    .voip-content {
        margin: 0 0 20px 0;
    }

    .buttons {
        justify-content: center;
        /* Center buttons on smaller screens */
    }

    .voip-image {
        width: 250px;
    }

    .voip-content h1 {
        font-size: 25px;
    }

    .voip-content p {
        font-size: 15px;
    }
}

/* Content 2nd End */

/* Content 3rd Start */
.voice-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.title {
    font-size: 35px;
    font-weight: bold;
    color: #160166;
    margin-bottom: 20px;
}

.card-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.card {
    background-color: #DCE4EB;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.icon {
    margin-bottom: 20px;
}

.circle-icon {
    width: 100px;
    height: 100px;
    background-color: #DCE4EB;
    color: #160166;
    border-radius: 50%;
    display: flex;
    align-items: center;
    margin: 0 auto;
}

.circle-icon img {
    height: 100px;
    width: auto;
}

.card-title {
    font-size: 23px;
    font-weight: bold;
    margin: 10px 0;
    color: #160166;
}

.card-text {
    font-size: 18px;
    color: #160166;
    margin-bottom: 20px;
}

.learn-more {
    color: #160166;
    text-decoration: none;
    font-weight: bold;
}

.learn-more:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .card {
        width: 70%;
    }

    .circle-icon img {
        height: 70px;
    }

    .title {
        font-size: 25px;
    }
}

/* Content 3rd End */

/* Content 4th Start */
.seam-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.seam-container .title {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #160166;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 22px;
    justify-content: center;
}

.seam-card {
    width: 260px;
    background-color: #DCE4EB;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.icon {
    max-width: 100px;
    margin: 0 auto 10px;
}

.seam-card img {
    height: 250px;
    width: 250px;
    border-radius: 10px;
}

.seam-card .label {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
    color: #160166;
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-container {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
        justify-content: center;
    }

    .icon {
        max-width: 80px;
    }

    .label {
        font-size: 0.9rem;
    }

    .seam-container .title {
        font-size: 25px;
    }
}

@media (max-width: 1024px) {
    .grid-container {
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
        gap: 20px;
        justify-content: center;
    }
}

/* Content 4th End */

/* Brand Section */
.slider-container {
    text-align: center;
    padding: 10px;
}

.slider-heading {
    font-size: 35px;
    margin-bottom: 20px;
    color: #160166;
}

.slider {
    margin: 20px 160px 20px 160px;
    height: 150px;
    overflow: hidden;
    position: relative;
}

.slider .slide-track {
    gap: 45px;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slide img {
    height: 100px;
    width: 180px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7));
    }
}

@media (max-width: 1024px) {
    .slider-heading {
        font-size: 28px;
    }

    .slider {
        margin: 10px 30px 10px 30px;
    }

    .slider .slide-track {
        width: calc(200px * 14);
        /* Shrinks total width for smaller screens */
    }

    .slide img {
        height: 80px;
        /* Adjust image size */
        width: 150px;
    }
}

@media (max-width: 768px) {
    .slider-heading {
        font-size: 25px;
    }

    .slider {
        height: 73px;
        /* Reduce height for smaller devices */
        margin: 10px 20px 10px 20px;
    }

    .slider .slide-track {
        gap: 30px;
        /* Reduce spacing between slides */
        width: calc(180px * 14);
        /* Shrinks width further */
    }

    .slide img {
        height: 70px;
        width: 130px;
    }
}

@media (max-width: 480px) {
    .slider-heading {
        font-size: 20px;
    }

    .slider {
        height: 53px;
        margin: 10px 20px 10px 20px;
    }

    .slider .slide-track {
        gap: 20px;
        width: calc(150px * 14);
    }

    .slide img {
        height: 50px;
        width: 100px;
    }
}

/* Brand Section End */

/* Footer Start*/
footer {
    background-color: #DCE4EB;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0px;
    width: 100%;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-logo img {
    width: 150px;
}

.footer-logo p {
    font-size: 18px;
    text-align: left;
    margin-top: 20px;
    color: #160166;
}

.footer-logo a {
    text-decoration: none;
}

.footer-links {
    /* padding-right: 1000px; */
    text-align: left;
    margin-top: -20px;
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #160166;
}

.quick-links-container {
    display: flex;
    /* Flexbox layout for grouping links */
    justify-content: space-between;
    /* Space between the two groups */
    gap: 20px;
    /* Adds space between groups */
}

.links-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-group li {
    margin: 5px 0;
    font-size: 16px;
}

.links-group li a {
    font-size: 18px;
    text-decoration: none;
    color: #160166;
    transition: color 0.3s ease;
}

.links-group li a:hover {
    color: #160166;
}

.footer-apps img {
    width: 150px;
    margin: 10px 0;
}

.footer-apps h4 {
    font-size: 18px;
    color: #160166;
    margin-bottom: 5px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 18px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #160166;
}

.footer-bottom a {
    text-decoration: none;
    color: #160166;
    margin: 0 10px;
    transition: color 0.3s ease;
}

@media (max-width: 480px) {
    .btn {
        width: 100%;
    }

    .circle-1,
    .circle-2,
    .circle-3 {
        display: none;
    }

    .voip-content h1 {
        font-size: 25px;
    }

    .voip-content p {
        font-size: 15px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-links,
    .footer-apps {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links {
        padding-right: 0;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

/* Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-links,
    .footer-apps {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-links {
        padding-right: 0;
    }

    .footer-bottom {
        font-size: 14px;
    }
}

/* Laptop (max-width: 1024px) */
@media (max-width: 1024px) {

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-logo,
    .footer-links,
    .footer-apps {
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-bottom {
        font-size: 16px;
    }

    .footer-links {
        padding-right: 0;
    }
}


/*Features 1st Start*/
.features-container {
    margin: 10px 20px 10px 20px;
    padding: 5px;
}

.features-container h2 {
    font-size: 35px;
    color: #160166;
    margin-bottom: 10px;
    text-align: center;
}

.features-container p {
    font-size: 23px;
    color: #160166;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 100px 20px 100px;
}

.feature-box {
    background-color: #DCE4EB;
    border-radius: 8px;
    padding: 20px;
    width: 25%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-box img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.feature-box h3 {
    font-size: 18px;
    color: #160166;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 18px;
    color: #160166;
}

@media (max-width: 768px) {
    .feature-box {
        width: 45%;
    }

    .features-container h2 {
        font-size: 25px;
    }

    .features-container p {
        font-size: 15px;
    }

    .features-grid {
        margin: 15px;
    }
}

@media (max-width: 480px) {
    .feature-box {
        width: 90%;
    }

    .features-container h2 {
        font-size: 25px;
    }

    .features-container p {
        font-size: 15px;
    }

    .features-grid {
        margin: 15px;
    }
}

/*Features 1st End*/


/* Product Page 1st Start*/
.product-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
}

.product-title {
    font-size: 35px;
    font-weight: bold;
    color: #2c2c7a;
    margin-bottom: 30px;
}

.product-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-top: 20px;
}

.product-image img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-description {
    max-width: 600px;
    text-align: left;
}

.product-name {
    font-size: 23px;
    font-weight: bold;
    color: #160166;
    margin-bottom: 15px;
}

.product-details {
    font-size: 18px;
    line-height: 1.6;
    color: #160166;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .product-description {
        text-align: center;
    }

    .product-name {
        font-size: 25px;
    }

    .product-details {
        font-size: 15px;
    }
}

/* Product Page 1st End*/

/* Product Page 2nd Start*/
.gateway-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
}

.gateway-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 100px;
    text-align: left;
    justify-content: space-between;
}

.gateway-title {
    font-size: 23px;
    font-weight: bold;
    color: #160166;
    margin-bottom: 15px;
}

.gateway-description {
    font-size: 18px;
    line-height: 1.6;
    color: #160166;
}

.gateway-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .gateway-content {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .gateway-image img {
        height: 230px;
    }

    .gateway-description {
        text-align: center;
        font-size: 15px;
    }

    .gateway-title {
        font-size: 23px;
    }
}

/* Product Page 2nd End*/

/* About Page2nd Start */
.image-slider-container {
    height: 500px;
    overflow: hidden;
    position: relative;
}

.image-slider {
    display: flex;
    width: 100%;
    animation: slide 15s infinite;
}

.slider-image {
    width: 100%;
    flex-shrink: 0;
}

@keyframes slide {
    0% { transform: translateX(0); }
    20% { transform: translateX(0); }
    25% { transform: translateX(-100%); }
    45% { transform: translateX(-100%); }
    50% { transform: translateX(-200%); }
    70% { transform: translateX(-200%); }
    75% { transform: translateX(-300%); }
    95% { transform: translateX(-300%); }
    100% { transform: translateX(-400%); }
}

/* Responsive Styles */
@media (max-width: 768px) {

    .image-slider-container {
        height: 282px;
    }

    .image-slider {
        animation: slide 15s infinite;
    }

    .slider-image {
        height: auto;
    }
}

@media (max-width: 480px) {

    .image-slider-container {
        height: 250px;
    }

    .image-slider {
        animation: slide 15s infinite;
    }

    .slider-image {
        height: auto;
    }
}
/* About Page2nd End */

/* About Page3rd Start */
.m-image img {
    max-width: 400px;
    height: 250px;
    border-radius: 12px;
}

.pcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.ptitle {
    color: #160166;
    font-size: 35px;
    margin-bottom: 20px;
}

.principles-grid {
    display: grid;
    /* grid-template-columns: 1fr; */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.principle-card {
    background-color: #DCE4EB;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.card-title {
    color: #160166;
    font-size: 23px;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 18px;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .principles-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .ptitle {
        font-size: 25px;
    }
}

@media (max-width: 1024px) {
    .principles-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .ptitle {
        font-size: 25px;
    }
}

/* About Page3rd End */

/* Pricing Page Start */
.pricing-header {
    text-align: center;
    margin: 20px auto;
    max-width: 800px;
}

.pricing-header h1 {
    font-size: 35px;
    color: #160166;
    margin-bottom: 10px;
}

.pricing-header p {
    font-size: 23px;
    color: #160166;
    line-height: 1.6;
}

/* Styles for Pricing Plans */
.pricing-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    margin-bottom: 10px;
}

.pricing-plan {
    background: #DCE4EB;
    border: 1px solid #e4e9ff;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    height: 400px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.pricing-plan h3 {
    font-size: 18px;
    color: #160166;
    margin-bottom: 10px;
}

.pricing-plan .price {
    font-size: 23px;
    color: #160166;
    margin-bottom: 15px;
}

.pricing-plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-plan ul li {
    font-size: 15px;
    color: #160166;
    margin: 10px 0;
}

.toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.toggle-button {
    display: flex;
    align-items: center;
    background: #DCE4EB;
    border-radius: 30px;
    padding: 5px;
    cursor: pointer;
    max-width: 320px;
    overflow: hidden;
}

.toggle-button a{
    text-decoration: none;
}

.toggle-option {
    flex: 1;
    padding: 10px;
    text-align: center;
    color: #160166;
    font-weight: bold;
    cursor: pointer;
}

.toggle-option.active {
    background: #160166;
    color: white;
    border-radius: 30px;
}

/* Medium Screens (tablets) */
@media (max-width: 1024px) {
    .pricing-container {
        justify-content: center;
        gap: 20px;
    }

    .pricing-plan {
        width: 280px;  /* Slightly smaller width for tablets */
    }

    .toggle-button {
        max-width: 300px;
    }

    .toggle-option {
        font-size: 16px;
    }
}

/* Small Screens (phones) */
@media (max-width: 768px) {
    .pricing-container {
        padding: 10px;
        gap: 15px;
        flex-direction: column; /* Stack pricing plans vertically */
        align-items: center;
    }

    .pricing-header h1 {
        font-size: 25px;
    }

    .pricing-header p {
        font-size: 15px;
    }
    
    .toggle-container{
        margin: 0px 10px 10px 10px;
    }

    .toggle-button {
        max-width: 280px;
    }

    .toggle-option {
        font-size: 16px;
        padding: 8px;
    }
}

/* Extra Small Screens (very small phones) */
@media (max-width: 480px) {
    .pricing-container {
        padding: 5px;
        gap: 10px;
        flex-direction: column; /* Stack pricing plans vertically */
        align-items: center;
    }

    .pricing-header h1 {
        font-size: 25px;
    }

    .pricing-header p {
        font-size: 15px;
    }
    
    .toggle-container{
        margin: 0px 10px 10px 10px;
    }

    .toggle-button {
        max-width: 280px;
    }

    .toggle-option {
        font-size: 15px;
        padding: 6px;
    }

    .pricing-plan h3 {
        font-size: 16px;
    }

    .pricing-plan .price {
        font-size: 20px;
    }

    .pricing-plan ul li {
        font-size: 14px;
    }
}
/* Pricing Page End */

/* Contact Page Start */
.c-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.c-title {
    color: #160166;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
}

.subtitle {
    color: #160166;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.c-description {
    font-size: 22px;
    margin-bottom: 30px;
    color: #160166;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-card-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.contact-card {
    display: flex;
    align-items: center;
    background-color: #DCE4EB;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #DCE4EB;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    margin-right: 15px;
}

.icon {
    font-size: 24px;
    color: #160166;
}

.info {
    flex: 1;
}

.label {
    font-weight: bold;
    color: #160166;
    margin: 0;
}

.value {
    margin: 5px 0 0 0;
    color: #160166;
    font-size: 20px;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.contact-form {
    background-color: #DCE4EB;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon {
    font-size: 2rem;
    color: #160166;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
    color: #160166;
}

.contact-form input,
.contact-form textarea {
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #DCE4EB;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: none;
}

.contact-form button {
    background-color: #160166;
    color: #DCE4EB;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}


.map iframe {
    border: none;
    border-radius: 10px;
    width: 100%;
    height: 500px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-card-container {
        padding: 20px;
    }

    .contact-card {
        align-items: flex-start;
    }

    .icon-container {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .contact-content {
        flex-direction: column;
        gap: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .c-title {
        font-size: 23px;
    }

    .subtitle {
        font-size: 23px;
    }

    .c-description {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .icon {
        font-size: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 23px;
        padding: 8px;
    }

    .contact-form button {
        font-size: 23px;
        padding: 8px;
    }
}

/* Contact Page End */


/* Support Chat */
/* Chat Support Button Styling */
.chat-support {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-support img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
    background-color: #DCE4EB;
}

.chat-support img:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .chat-support {
        bottom: 30px;
    }

    .chat-support img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 768px) {
    .chat-support {
        bottom: 30px;
    }

    .chat-support img {
        width: 60px;
        height: 60px;
    }
}
/* Supprt Chat End */

/* Privacy Page Start */
.privacy-container h2 {
    font-size: 35px;
    color: #160166;
    margin-bottom: 10px;
    text-align: center;
}

.privacy {
    margin: 50px 280px 50px 280px;
    text-align: justify;
}

.privacy-container p {
    font-size: 20px;
    color: #160166;
    margin-bottom: 10px;
}

.privacy-container h3 {
    font-size: 23px;
    color: #160166;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .privacy-container h2 {
        font-size: 25px;
    }

    .privacy {
        margin: 10px;
    }

    .privacy-container p {
        font-size: 15px;
    }

    .privacy-container h3 {
        font-size: 18px;
    }
}

/* Privacy Page End */


/* Support Page Start */
.support-container {
    margin: 99.5px;
    padding: 5px;
}

.support-container h2 {
    font-size: 35px;
    color: #160166;
    margin-bottom: 10px;
    text-align: center;
}

.support-container p {
    font-size: 23px;
    color: #160166;
    margin-bottom: 30px;
    text-align: center;
}

.support-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 100px 20px 100px;
}

.support-box {
    background-color: #DCE4EB;
    border-radius: 8px;
    padding: 20px;
    width: 15%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.support-box img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
}

.support-box h3 {
    font-size: 18px;
    color: #160166;
    margin-bottom: 10px;
}

.support-box p {
    font-size: 14px;
    color: #160166;
}

@media (max-width: 768px) {
    .support-container {
        margin: 20px;
        padding: 5px;
    }

    .support-box {
        width: 55%;
    }

    .support-container h2 {
        font-size: 25px;
    }

    .support-container p {
        font-size: 15px;
    }

    .support-grid {
        margin: 15px;
    }
}

@media (max-width: 480px) {
    .support-container {
        margin: 20px;
        padding: 5px;
    }

    .support-box {
        width: 70%;
    }

    .support-container h2 {
        font-size: 25px;
    }

    .support-container p {
        font-size: 15px;
    }

    .support-grid {
        margin: 15px;
    }
}

@media (max-width: 1441px) {
    .support-container {
        margin: 10px;
    }
    .support-box {
        width: 60%;
    }
}
/* Support Page End */


/* Laptop Size Screen Start */
@media screen and (min-width: 1275px) and (max-height: 1285px) and (min-width: 580px) and (max-height: 590px) {

    .nav-links a {
        font-size: 16px;
    }

    .chat-support {
        bottom: 30px;
    }

    .chat-support img {
        height: 50px;
        width: 50px;
    }

    .voip-content h1{
        font-size: 30px;
    }

    .voip-container {
        margin: 30px;
    }

    .voip-container p {
        font-size: 20px;
    }

    .voip-image img {
        height: 350px;
    }

    .circle-2 {
        height: 315px;
        width: 315px;
        top: 200px;
        right: 100px;
    }

    .circle-1 {
        width: 45px;
        height: 45px;
        top: 485px;
        left: 825px;
    }

    .circle-3 {
        width: 45px;
        height: 45px;
        top: 167px;
        right: 95px;
    }
    
    .image-section img {
        height: 260px;
        width: 350px;
    }

    .text-section h2 {
        font-size: 30px;
    }

    .text-section p {
        font-size: 20px;
    }

    .title {
        font-size: 30px;
    }

    .card {
        width: 280px;
    }

    .card-title {
        font-size: 20px;
    }

    .card-text {
        font-size: 18px;
    }

    .seam-container .title {
        font-size: 30px;
    }

    .label {
        font-size: 20px;
    }

    .slider-heading {
        font-size: 30px;
    }

    .slider {
        height: 100px;
    }

    .features-container h2 {
        font-size: 30px;
    }

    .features-container p {
        font-size: 20px;
    }

    .feature-box h3 {
        font-size: 16px;
    }

    .feature-box p {
        font-size: 15px;
    }

    .product-title {
        font-size: 30px;
    }

    .product-name {
        font-size: 20px;
    }

    .product-details {
        font-size: 18px;
    }

    .ptitle {
        font-size: 30px;
    }

    .principles-grid {
        grid-template-columns: repeat(4, 4fr);
    }

    .pricing-header h1 {
        font-size: 30px;
    }

    .pricing-header p {
        font-size: 20px;
    }

    .pricing-plan h3 {
        font-size: 20px;
    }

    .pricing-plan ul li {
        font-size: 16px;
    }

    .c-title {
        font-size: 30px;
    }

    .subtitle {
        font-size: 25px;
    }

    .c-description {
        font-size: 20px;
    }

    .contact-form label {
        font-size: 18px;
    }

    .privacy-container h2 {
        font-size: 30px;
    }

    .privacy {
        margin: 50px 70px 50px 70px;
    }

    .privacy-container h3 {
        font-size: 20px;
    }

    .privacy-container p {
        font-size: 18px;
    }

    .support-container {
        margin: 20px;
    }

    .support-container h2 {
        font-size: 30px;
    }

    .support-box {
        width: 23%;
    }

    .support-box img {
        width: 130px;
        height: 130px;
    }

    .support-grid {
        gap: 30px;
    }
}
/* Laptop Size Screen End *