/*!
Theme Name: PR Tronics
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: pr-tronics
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

PR Tronics is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
/* Googlefont Poppins CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: medium;
    font-style: normal;
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    height: 70px;
    background: white;
    /* box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); */
    z-index: 100;
}

nav .navbar {
    height: 100%;
    max-width: 1250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    /* background: red; */
    padding: 0 50px;
}

.navbar .logo a {
    font-size: 30px;
    color: black;
    text-decoration: none;
    font-weight: 600;
}

nav .navbar .nav-links {
    line-height: 70px;
    height: 100%;
}

nav .navbar .links {
    display: flex;
    margin-top: 6%;
}

nav .navbar .links li {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    list-style: none;
    padding: 0 14px;
    line-height: 25px;
}

nav .navbar .links li a {
    height: 100%;
    text-decoration: none;
    white-space: nowrap;
    color: black;
    font-size: 15px;
    font-weight: 300;
    position: relative;
    /* Add this to position the pseudo-element relative to the link */
}

nav .navbar .links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: #71c203;
    transition: width 0.3s, background-color 0.3s;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

nav .navbar .links li a:hover::after {
    width: 100%;
    background: #71c203;

}

nav .navbar .links li:hover a {
    color: #71c203;
    /* Change text color on hover */
}


/* nav .navbar .links li .sub-menu {
    position: absolute;
    top: 70px;
    left: 0;
    line-height: 40px;
    background: #3E8DA8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 0 0 4px 4px;
    display: none;
    z-index: 2;
} */

nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
    display: block;
}

.navbar .links li .sub-menu li {
    padding: 0 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .links li .sub-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 300;
}

.navbar .links li .sub-menu .more-arrow {
    line-height: 40px;
}

.navbar .links li .htmlCss-more-sub-menu {
    /* line-height: 40px; */
}

.navbar .links li .sub-menu .more-sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    border-radius: 0 4px 4px 4px;
    z-index: 1;
    display: none;
}


.links li .sub-menu .more:hover .more-sub-menu {
    display: block;
}


.navbar .search-box {
    position: relative;
    height: 40px;
    width: 40px;
}

.navbar .search-box i {
    position: absolute;
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: center;
    font-size: 22px;
    color: #f9d054;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar .search-box .input-box {
    position: absolute;
    right: calc(100% - 40px);
    top: 80px;
    height: 3vw;
    width: 19vw;
    background: #f9d054;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: all 0.7s ease;
}

.navbar.showInput .search-box .input-box {
    top: 65px;
    opacity: 1;
    pointer-events: auto;
    background: #f9d054;
}

.search-box .input-box::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    background: #f9d054;
    right: 10px;
    top: -6px;
    transform: rotate(45deg);
}

.search-box .input-box input {
    position: absolute;
    top: 50%;
    left: 50%;
    color: #f9d054;
    border-radius: 4px;
    transform: translate(-50%, -50%);
    height: 5vh;
    width: 18vw;
    outline: none;
    padding: 0 15px;
    font-size: 16px;
    border: none;
}

.navbar .nav-links .sidebar-logo {
    display: none;
}

.navbar .bx-menu {
    display: none;
}


.cart i {
    /* position: absolute; */
    height: 100%;
    width: 100%;
    line-height: 40px;
    text-align: start;
    margin-left: -12vw;
    font-size: 22px;
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;

}

.sticky {
    z-index: 999 !important;
}

.switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
  }
  
  .switch > span {
    position: absolute;
    top: 14px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
  }
  
  input.check-toggle-round-flat:checked ~ .off {
    color: #fda803;
  }
  
  input.check-toggle-round-flat:checked ~ .on {
    color: #fff;
  }
  
  .switch > span.on {
    left: 0;
    padding-left: 2px;
    color: #fda803;
  }
  
  .switch > span.off {
    right: 0;
    padding-right: 4px;
    color: #fff;
  }
  
  .check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
  }
  .check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  input.check-toggle-round-flat + label {
    padding: 2px;
    width: 97px;
    height: 35px;
    background-color: #9cd551;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
  }
  
  input.check-toggle-round-flat + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #9cd551;

    
    -webkit--moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 48px;
    background-color: #fff;
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
  }
  

  input.check-toggle-round-flat:checked + label:after {
    margin-left: 44px;
  }


/* Hero Section */
/* Hero section */
.swiper-container {
    width: 100%;
    height: auto;
    margin: 5% auto 0% 0%;
    overflow: hidden;
}

.swiper-wrapper {
    padding: 0;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
}
.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-bottom: 0 !important;
}
.hero-video-container {
    position: relative;
    width: 100%;
    height: 42vh;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 17%;
    right: 17%;
    transform: translate(50%, -50%);
    text-align: right;
    color: #fff;
}

.hero-text h2 {
    font-size: 1.5em;
    margin: 0;
}

.border-button {
    position: absolute;
    bottom: 10%;
    left: 7%;
    background-color: #28a745;
    color: white;
    font-weight: bold;
    padding: 15px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
    border-radius: 10px;
}

.border-button:hover {
    background-color: #171717;
}

.swiper-pagination {
    position: relative;
    margin-bottom: 25vh;
    /* color: #6FC202; */
}




/* Footer Section */
.container-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 7%;
    background-color: #f9f9f9;
}

.section {
    flex: 1;
    margin: 10px;
    padding: 10px;
}

.section img {
    margin-left: -13px;
}

#subscribe-input {
    display: flex;
    margin-top: 10px;
}

#subscribe-input input[type="email"] {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 5px 0 0 5px;
}

#subscribe-input button {
    padding: 10px;
    border: 1px solid #ccc;
    border-left: none;
    background-color: #f9d054;
    color: black;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

#subscribe-input button:hover {
    background-color: rgb(224, 185, 70);
}

.container5 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.title {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
    position: relative;
    padding-right: 35%;
}

.title::after {
    content: "";
    height: 2px;
    background-color: #F0C844;
    position: absolute;
    right: 0;
    top: 50%;
    width: 100px;
    transform: translateY(-50%);
}

.quicklinks a {
    display: block;
    margin: 5px 0;
    color: #0f0f0f;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    transition: color 0.3s;
}

.quicklinks a:hover {
    color: #71c203;
}

.quicklinks a:hover::after {
    width: 100%;
    background: #71c203;
}

.contact-info {
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    color: #4caf50;
    font-size: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.phone-icon::before {
    content: "\260E";
}

.email-icon::before {
    content: "\2709";
}

.address-icon::before {
    content: "\271A";
}

span {
    font-size: 16px;
    color: #333;
}

.section h2 {
    margin-top: 5%;
    margin-bottom: 5%;
}



/* Sticky Banner */
.sticky {
    font-family: Arial, sans-serif;
    position: sticky;
    bottom: 0;
}

.sticky-banner {
    position: sticky;
    bottom: 0;
    font-weight: bold;
    background-color: #f8c848;
    color: black;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    /* z-index: 1000; */
}

.sticky-basic {
    font-family: Arial, sans-serif;
    position: sticky;
    bottom: 0;
    margin-top: 5%;
}

.sticky-banner-basic {
    position: sticky;
    bottom: 0;
    font-weight: bold;
    background-color: #f8c848;
    color: black;
    text-align: center;
    padding: 10px 0;
    font-size: 20px;
    /* z-index: 1000; */
}



/* Services Section */
.info-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #e8f8f8;
    padding: 10px;
}

.info-item {
    display: flex;
    align-items: center;
    text-align: left;
    /* Change to left for inline alignment */
    max-width: 20%;
    /* Adjust as necessary */
}

.info-item img {
    width: 15%;
    /* Set a fixed width */
    height: auto;
    /* Maintain aspect ratio */
    margin-right: 10px;
    /* Space between image and text */
}

.info-item p {
    margin: 0;
    color: #333;
    font-size: 15px;
}


/* Card Section */
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0.5%;
    position: relative;
}


.carousel .card {
    display: inline-block;
    position: relative;
    height: 25vh;
    width: 31vw;
    /* width: calc(100% / 3); */
    /* margin: 0px 14px 14px 14px; */
    border-radius: 12%;
}

.carousel .card img {
    height: 31vh;
    width: 100%;
    object-fit: cover;
    user-select: none;
    border-radius: 30px;
}

.card-button {
    position: absolute;
    bottom: 10px;
    left: 20%;
    bottom: -15%;
    transform: translateX(-35%);
    padding: 8px 16px;
    font-size: 1rem;
    color: white;
    background-color: Black;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s;
}



/* testimonials */
.main-testimonial {
    margin: 0;
    padding: 0;
    font-size: 13px;
    text-align: center;
    font-family: "Roboto";
    /* background: #fcfcfd; */
}



.testimonial {
    float: left;
    position: relative;
    padding: 30px 0;
    /* background: #fcfcfd; */
    z-index: 1;
    width: 100%;
}

.section-title {
    float: left;
    position: relative;
    width: 100%;
    padding-bottom: 40px;
}

.section-title p {
    color: #7d93b2;
    font-size: 20px;
    line-height: 20px;
    max-width: 550px;
    margin: 10px auto;
}

.section-title h2 {
    float: left;
    width: 100%;
    text-align: center;
    color: black;
    font-size: 30px;
    font-weight: 800;
    position: relative;
}

.section-separator {
    /* float: left; */
    width: 100%;
    position: relative;
}

/*  */
.swiper-container {
    width: 100%;
    height: 100%;
}

.listing-carousel-button {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 50px;
    line-height: 50px;
    margin-top: -25px;
    z-index: 100;
    cursor: pointer;
    /* background: #007aff; */
    /* box-shadow: 0 9px 26px rgba(58, 87,135,0.45); */
    transition: all 200ms linear;
    outline: none;
}

/* 
.listing-carousel-button.listing-carousel-button-next{
	right: -5px;
	padding-right: 20px;
	border-radius: 60px 0 0 60px;
}
.listing-carousel-button.listing-carousel-button-prev{
	left: -5px;
	padding-left: 20px;
	border-radius: 0 60px 60px 0;
} */

.testi-item {
    transition: all .3s ease-in-out;
    transform: scale(0.9);
    opacity: 0.9;
}

.testimonials-text {
    padding: 75px 50px 75px;
    overflow: hidden;
    background: #f5f6fa;
    border: 1ps solid #f1f1f1;
    border-radius: 10px;
    transition: all .3s ease-in-out;
}

.testimonials-text-after {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #ccc;
    opacity: .3;
    font-size: 35px;
    transition: all 400ms linear;
    bottom: 25px;
    right: 30px;
}

.testimonials-text-before {
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    position: absolute;
    color: #00A8E0;
    opacity: 1;
    font-size: 35px;
    transition: all 400ms linear;
    top: 25px;
    left: 30px;
}

.testimonials-text .listing-rating {
    float: none;
    display: inline-block;
    margin-bottom: 12px;
}

.listing-rating i {
    color: #007aff;
}

.testimonials-avatar {
    margin-top: 20%;
}

.testimonials-avatar h3 {
    font-weight: 600;
    color: black;
    font-size: 18px;
}

.testimonials-avatar h4 {
    font-weight: 400;
    font-size: 12px;
    padding-top: 6px;
    color: #949494;
}

.testimonials-carousel .swiper-slide {
    padding: 30px 0;
}

.testi-avatar {
    position: absolute;
    left: 30%;
    top: 65%;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    z-index: 20;
}

.testi-avatar img {
    width: 90px;
    height: 90px;
    float: left;
    border-radius: 100%;
    border: 6px solid #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.swiper-slide-active .testimonials-text {
    background: #fff;
    box-shadow: 0 9px 26px rgba(58, 87, 135, 0.1);
}

.testimonials-text p {
    color: #878c9f;
    font-size: 14px;
    font-family: Georgia, "Times New Roman", Times, serif;
    font-style: italic;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 500;
}

.text-link {
    position: absolute;
    bottom: 0;
    padding: 15px 0;
    border-radius: 10px 10px 0 0;
    background: #f9f9f9;
    border: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.03);
    left: 50%;
    width: 200px;
    margin-left: -100px;
}

.swiper-slide-active .testi-item {
    opacity: 1;
    transform: scale(1.0);
}

.tc-pagination {
    float: left;
    margin-top: 10px;
    width: 100% !important;
}

.tc-pagination_wrap {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
}

.tc-pagination2 {
    float: none;
    display: inline-block;
    padding: 14px 0;
    background: #fff;
    border-radius: 30px;
    min-width: 250px;
    border-bottom: 0;
}

.tc-pagination .swiper-pagination-bullet,
.tc-pagination2.swiper-pagination-bullet {
    opacity: 1;
    background: #079044;
    margin: 0 2px;
    width: 10px;
    height: 10px;
    transition: all 300ms ease-in-out;
}


/* get in touch with us */

/* get in touch with us */
.contact {
    position: relative;
    margin-top: 50%;
    text-align: center;
    color: white;
}

.background-image {
    width: 100%;
    height: 40vh;
    background: url('images/contact.png') no-repeat center center;
    background-size: cover;
    filter: brightness(50%);
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.content h1 {
    font-size: 30px;
    margin: 0;
}

.button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 16px;
    color: black;
    background-color: #ffcc00;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #e6b800;
}




/* Home Page End */






/* About page */
.about1 {
    position: relative;
    background: url('images/contact.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 60px 0;
}

.about1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity here */
    z-index: 1;
}

.line-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.horizontal-line {
    flex-grow: 0.2;
    height: 1px;
    background-color: black;
}

.line-heading {
    margin: 20px 20px;
    font-size: 24px;
    font-weight: bold;
}

.about-content {
    position: relative;
    z-index: 2;
    color: white;
    font-family: "Red Hat Display";
    font-weight: bold;

}

.about-content h1 {
    margin: 0;
    font-size: 48px;
}

.about-content p {
    margin: 10px 0 0;
    font-size: 18px;
}

.about,
.who-we-are,
.coverage-map {
    padding: 40px 20px;
    text-align: center;
    margin-top: 5%;
}

.about h2,
.who-we-are h2,
.coverage-map h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about p {
    max-width: 59vw;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.6;
}

.cta-button {
    background-color: #32CD32;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: rgb(71, 201, 102);
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.intro-header {
    text-align: left;
    margin-bottom: 30px;
}

.intro-header h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.intro-header h2 {
    font-size: 1.5em;
    color: #555;
}

.container6 {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.title-6 {
    font-size: 24px;
    font-weight: bold;
    margin-right: 10px;
}

.line-6 {
    flex-grow: 0.2;
    height: 1px;
    background-color: #0f0f0f;
}

.content-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.text-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    margin-bottom: 20px;
}

.text-content p {
    line-height: 1.6;
    color: #333;
}

.image-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-gallery img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.established {
    background-color: #8bc34a;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.2em;
}


.coverage-map {
    margin-top: 40px;
}

.coverage-map iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.coverage-map img {
    /* width: 100%; */
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
    
}

.coverage-map img:hover {
    transform: scale(1.1); /* Adjust the scale value as needed */
    cursor: pointer;

}
@media screen and (max-width: 900px) {
.coverage-map img{
    width: 100%;
}
}





/* faqs QA */
.faq-section {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.faq {
    /* border-bottom: 1px solid #ddd; */
    padding: 15px 0;
}

.faq .question {
    cursor: pointer;
    position: relative;
    padding: 15px;
    margin: 10px 0;
    background-color: #ffffff;
    border: 1px solid #f1f0f0;
    border-radius: 10px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq .question.expanded {
    background-color: #e2e2e2;
}

.faq .answer {
    display: none;
    padding: 10px 15px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
}

.faq .answer p {
    margin: 0;
}

/* faqs subscribe newsletter */
.subscription-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.subscription-text {
    text-align: center;
    /* margin-right: 20px; */
}

.subscription-text h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.subscription-text p {
    font-size: 16px;
    color: #666666;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    align-items: center;
}

.subscription-form input[type="email"] {
    padding: 18px;
    border: 1px solid #F5F5F6;
    border-radius: 25px;
    /* width: calc(100% - 140px); */
    width: 50vw;
    box-sizing: border-box;
    outline: none;
    font-size: 16px;
}

.subscription-form button {
    padding: 13px 28px;
    border: none;
    background-color: #ffde57;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    margin-left: -15%;
    color: #000;
}

.subscription-form button:hover {
    background-color: #f7c942;
}

.mail-icon {
    width: 12vh;
    height: 17vh;
    background-image: url('https://wordpress.prtronics.com/wp-content/uploads/2024/06/maill.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* contact us page */
.contact1 {
    position: relative;
    background: url('images/contact\ us.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 60px 0;
}

.contact1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity here */
    z-index: 1;
}

/* Contact page main section */
.main-layout {
    display: flex;
    /* gap: -100%; */
    /* padding: 3%; */
    margin: 0 0 0 17%;
    /* position: relative; */
    /* bottom: 16vh; */

}

/* Form and info containers */
.form-section,
.details-section {
    /* background-color: #fff; */
    border-radius: 10px;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form container specific styling */
.form-section {
    /* flex: 1;  */
    background-color: #fafafa;
    padding: 21px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

/* Info container specific styling */
.details-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

/* Form row and group styling */
.form-line {
    display: flex;
    gap: 20px;
}

.input-group {
    flex: 1;
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

/* Input, select, textarea styling */
.input-group input,
.input-group select,
.input-group textarea {
    font-family: poppins;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #f9f9f9;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: #66afe9;
    box-shadow: 0 0 8px rgba(102, 175, 233, 0.6);
    outline: none;
}

/* Textarea specific styling */
textarea {
    height: 100px;
    resize: vertical;
}

/* Placeholder styling */
::placeholder {
    color: #888;
    opacity: 1;
    transition: color 0.3s;
}

.input-group input::placeholder,
.input-group select::placeholder,
.input-group textarea::placeholder {
    font-style: normal;
}

/* Body styling */

/* Submit button styling */
.action-button {
    background-color: #71C203;
    color: white;
    border: none;
    padding: 15px;
    text-align: center;
    display: block;
    font-size: 16px;
    margin: 10px auto;
    cursor: pointer;
    border-radius: 25px;
    width: 25%;
    transition: background-color 0.3s ease;
}

.action-button:hover {
    background-color: #88d61a;
}

/* Info box styling */
.details-box {
    background-color: #F9D054;
    padding: 20px;
    width: 55%;
    border-radius: 5px;
    position: relative;
    right: 15%;

}

.details-box h2 {
    margin-top: 0;
}

.detail-container {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.detail-title {
    font-weight: bold;
    margin-right: 10px;
}

.detail-line {
    flex-grow: 0.4;
    height: 2px;
    background-color: #000000;
}

.details-box a {
    color: black;
    text-decoration: none;
}

.details-box a:hover {
    text-decoration: underline;
}



/* schedule-appointment */

.appointment {
    margin: 3%;
}

.schedule-appointment {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 0 0;
    flex-direction: row;
    align-items: flex-start;
    gap: 3%;
}

.calendar {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0px 4px 4px rgba(0, 0, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-button {
    background: #F5F5F6;
    color: #F9D054;
    border: 1px;
    border-radius: 10%;
    font-size: 20px;
    cursor: pointer;
}

.month-year {
    font-size: 18px;
    font-weight: bold;
}

.calendar-body {
    margin-top: 20px;
}

.days,
.dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
}

.day {
    font-weight: bold;
    text-align: center;
}

.date {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 5px;
}

.date:hover {
    background-color: #e0e0e0;
}

.date.selected {
    background-color: #ffcc00;
}

.date.disabled {
    color: #ccc;
    pointer-events: none;
}

.time-slots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 1%;

}

.time-slot {
    background-color: white;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    text-align: left;
}

.time-slot:hover {
    background-color: #f0f0f0;
}

.time-slot.selected {
    background-color: #ffcc00;
}

.schedule-button {
    background-color: #71C203;
    color: white;
    border: none;
    padding: 15px;
    text-align: center;
    display: block;
    font-size: 16px;
    margin: 3% auto;
    cursor: pointer;
    border-radius: 25px;
    width: 15%;
    transition: background-color 0.3s ease;
}

.schedule-button:hover {
    background-color: #88d61a;
}


/* plans page */
.plan1 {
    position: relative;
    background: url('images/plans.png') no-repeat center center;
    background-size: cover;
    text-align: center;
    padding: 60px 0;
}

.plan1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity here */
    z-index: 1;
}


/* plan card section */
.plan-cards {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #f4f4f9; */
    margin-bottom: 5%;
}

.plan-container {
    display: flex;
    justify-content: center;
    width: 100%;

}

.plan {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 20%;
}

.plan.basic {
    background-color: #FDFCEF;
}

 /* card left top */
.top-left-image {
    position: absolute;
    top: -3%;
    left: -41%;
}


.label-image {
    position: relative; 
    display: flex;
    align-items: center;
    top: -11%;
    left: 20%;
    z-index: 1;

}




.plan.premium {
    background-color: #0C1729;
    color: #fff;
    position: relative;
    bottom: 4vh;
}

.plan.ultra {
    background-color: #F6F5E8;
}

.plan h2 {
    margin: 5% 0 10px;
}

.plan .price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.plan .price-label {
    font-size: 16px;
    margin-right: 10px;
    color: #666;
}


.plan .price-label-1 {
    font-size: 16px;
    margin-right: 10px;
    color: white;
}

.plan #price-label-1 {
    font-size: 16px;
    margin-right: 10px;
    color: white;
}

.plan .price {
    font-size: 24px;
    font-weight: bold;
}

.plan .price span {
    font-size: 14px;
    color: #666;
}

.plan .new-price {
    font-size: 2em;
    font-weight: bold;
}



.plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.plan ul li {
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plan ul li ✔️::before {
    color: green;
}

.plan .button {
    background-color: #0c1729;
    color: #fff;
    border: none;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    text-decoration: none;
}

.plan .button:hover {
    background-color: #152135;
}

.plan.premium .button {
    background-color: #6fc202;
}

.plan.premium .button:hover {
    background-color: #88d61a;

}

.plan img {
    width: 23%;
    margin: 2% auto 10px;
}

.tick-before::before {
    content: '';
    display: inline-block;
    width: 16px;  /* Set the desired width */
    height: 16px; /* Set the desired height */
    background-image: url('icons/tick.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 10px; /* Adjust spacing between icon and text */
    vertical-align: middle; /* Align icon with text */
    
}


.meter h2{
    font-size: 1em;
    margin-top: -5%;
}
.plan .meter {
    margin: 20px 0;
}

.plan .meter img {
    width: 100px;
}

.plan .label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
}

.plan.basic .label {
    background-color: #000;
}

.plan.premium .label {
    background-color: #6fc202;
}

.plan.ultra .label {
    background-color: #000;
}

.plan .icon-container {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.plan .icon-container .icon {
    width: 40px;
    height: 40px;
}

.plan .icon-container .icon1 {
    background: url('icon1.png') no-repeat center;
    background-size: cover;
}

.plan .icon-container .icon2 {
    background: url('icon2.png') no-repeat center;
    background-size: cover;
}

.plan .icon-container .icon3 {
    background: url('icon3.png') no-repeat center;
    background-size: cover;
}

.plan .top-images {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5%;
}

.plan .top-images img {
    width: 75%;
}

/* addon cards */
.addon {
    font-family: Arial, sans-serif;
    /* background-color: #FAF9F4; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5%;
}

.card-addon {
    background-color: #FDFCEF;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 60%;
    text-align: center;
    position: relative;
}

.optional-addons {
    background-color: #282F36;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.addon-list {
    text-align: left;
    margin-top: 30px;
    /* Adjusted to make space for the button */
}

.addon-item {
    display: flex;
    align-items: center;
    margin-bottom: 3%;
}

.addon-item img {
    width: 7%;
    height: 5%;
    margin-right: 5%;
}


.addon-price {
    color: #555;
}



/* addon card image */
 .main-image-slider-wrapper{
    display: flex;
    padding: 0 35px;
    /* min-height: 100vh; */
    align-items: center;
    justify-content: center;
    /* background: #343F4F; */
  }
  .image-slider-wrapper{
    display: flex;
    max-width: 1200px;
    position: relative;
    width: 100%;
  }


 .image-container {
    margin-bottom: 20px;
    text-align: center; /* Center the image */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
}
.image-container img {
    max-width: 85%;
    height: auto;
    opacity: 0; /* Start with the image hidden */
    transition: opacity 0.5s ease-in-out; /* Smooth transition for opacity */
}
.image-container img.visible {
    opacity: 1; /* Show the image */
}
.text-container {
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center; /* Center the text */
    font-family: Arial, sans-serif;
    font-size: 14px;
}
.button-container {
    margin-bottom: 20px;
    text-align: center; /* Center the buttons */
}
.button-container button {
    background-color: #E6F8F1; /* Normal button color */
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    font-family: Arial, sans-serif;
    cursor: pointer;
    transition: background-color 0.3s; /* Smooth transition for background color */
}
.button-container button.active {
    background-color: #F9D054; /* Active button color */
    font-weight: bold;
}

/* product page */
.prod-5G {
    position: relative;
    background-color: black;
    background-size: cover;
    text-align: center;
    padding: 60px 0;
}

.prod-5G::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    /* Adjust the opacity here */
    z-index: 1;
}




.product {
    max-width: 60%;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-wrap: wrap;
}

.limited-offer {
    position: absolute;
    background: red;
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    transform: rotate(-45deg);
    top: 20px;  
    left: -20px;
}

.image-section,
.details-section-new {
    flex: 1;
    width: 25%;
    padding: 20px;
}



.image-section {
    position: relative;
    text-align: center;
}

.image-section img {
    max-width: 25vw;
    height: auto;
}

.icons {
    display: flex;
    justify-content: center;
    margin-top: 20%;
}

.icons img {
    margin: 5% 5%;
    width:  15%;
}


.prices{
    margin-bottom: 20%;
}


.offer img{
    width: 6%;
    margin: 5% 5% -1% -1% ;
    width: 8%;
}

.price {
    font-size: 24px;
    color: #f00;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 24px;
    color: black;
    margin-left: 10px;
}

.offer {
    font-size: 18px;
    color: #ff0000;
    margin-left: 10px;
}


.features {
    text-align: left;
    margin: 20px 0;
}

.features li {
    margin: 5px 0;
}

#compare-plans a{
    color: #38B6FF;
    text-decoration: underline;
    font-weight: bold;
}

.plans {
    display: flex;
    justify-content: center;
    margin: 20px 30% 0 0;
}

.prices p{
    margin: 5% 0% 5% 0%;
}






/* BASIC SECTION */
.plans .basic-prod {
    background-color: #d0e6e1;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}
.plans .basic-prod:hover, .plans .basic-prod.active {
    background-color: #F9D054;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* premium prod */
.plans .premium-prod {
    background-color: #E6F8F1;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
}
.plans .premium-prod:hover, .plans .premium-prod.active {
    background-color: #F9D054;
    font-weight: bold;
}

/* ultra prod */
.plans .ultra-prod {
    background-color: #E6F8F1;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
}
.plans .ultra-prod:hover, .plans .ultra-prod.active {
    background-color: #F9D054;
    font-weight: bold;
}

.contracts {
    display: flex;
    justify-content: center;
    margin: 0px 12px 0px -6%;
}

/* basic buttons */
.contracts .contract-prod1 {
    background-color: #E6F8F1;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 100%;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
}
.contracts .contract-prod1:hover, .contracts .contract-prod1.active {
    background-color: #F9D054;
    font-weight: bold;
}

/* premium prod */
.contracts .contract-prod2 {
    background-color: #E6F8F1;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 95%;
    transition: background-color 0.3s ease;
}
.contracts .contract-prod2:hover, .contracts .contract-prod2.active {
    background-color: #f3cd5b;
    font-weight: bold;
}

/* ultra prod */
.contracts .contract-prod3 {
    background-color: #E6F8F1;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    width: 80%;
    transition: background-color 0.3s ease, font-weight 0.3s ease;
}
.contracts .contract-prod3:hover, .contracts .contract-prod3.active {
    background-color: #f3cd5b;
    font-weight: bold;
}

.out-of-stock {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% 0px 0px -3%;
    padding: 10px;
    width: 45%;
    cursor: no-drop;
    font-weight: bold;
    background-color: #C2C2C2;
    font-size: 18px;
    border: 1px dashed #ccc;
    border-radius: 5px;
    color: black;
}

.order-now {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5% 0px 0px -3%;
    padding: 10px;
    width: 45%;
    cursor: pointer;
    font-weight: bold;
    background-color: #ffde57;
    font-size: 18px;
    border: 1px dashed #ffde57;
    border-radius: 5px;
    color: black;
}

.order-now:hover{
    background-color: #f7c942;
}


@media screen and (max-width: 1080px) {
    .faq-section {
        width: 90%;
        margin: -8% 0% 0% 5%;
        padding: 20px;
        background-color: #fff;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }


    .subscription-text {
        text-align: center;
        margin-left: 20px;
    }

    .subscription-text h2 {
        font-size: 24px;
        margin-bottom: 10px;
        margin-left: 15%;
    }

    .subscription-text p {
        font-size: 16px;
        color: #666666;
        margin-left: 15%;
        margin-bottom: 20px;
    }

    .subscription-form button {
        position: relative;
        margin-left: 63%;
        margin-top: -2%;
        transform: translateY(-100%);
        padding: 10px 12px;
        font-weight: 300;
    }

    .subscription-form input[type="email"] {
        display: block;
        width: 70vw;
        font-size: 12px;
        /* padding-right: 35%; */
    }


    .mail-icon {
        width: 10vh;
        height: 17vh;
        margin-top: 20%;
        background-image: url('https://wordpress.prtronics.com/wp-content/uploads/2024/06/maill.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
}

@media screen and (max-width: 900px) {
.plan-container{
    flex-direction: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plan{
    width: 100%;
    margin: 10%;
}

.card-addon{
    width: 100%;
}

.addon-item img{
    margin: 0% 5% 14% 0%;
    width: 10%;
}

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

.image-container img{
    height: 35vh;
    max-width: fit-content;
}
.plan-container{
    width: 90%;
}
.product {
    max-width: 80%;
}
.product-image {
    width: 100%;
    max-width: 100% !important;
}
.image-section, .details-section-new{
    width: 100%;
}
.icons{
    margin-top: 6px;
}
h1#plan-title {
    font-size: 24px;
    margin-bottom: 6px;
}

span#price {
    font-size: 16px;
}

span#discounted-price {
    font-size: 16px;
}

.plans {
    margin: 0;
}

button.basic-prod {
    padding: 10px !important;
}

.plans button {
    padding: 10px !important;
}

.contracts button {
    padding: 8px;
}

.order-now,.out-of-stock {
    margin: 0 auto;
    margin-top: 16px;
    width: 100%;
    max-width: 65%;
}
.contracts {
    margin: 0;
}
.prices{
    margin-bottom: 0%;
}
.contracts {
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.contracts button {
    width: 100%;
    max-width: 80%;
}
.sticky-banner-basic{
    padding: 10px;
    font-size: 16px;
}
.offer img{
    width: 15%;
}
}

/* Media Queries for Header (Start) */
@media (max-width:920px) {
    nav .navbar {
        max-width: 100%;
        padding: 0 25px;
    }

    nav .navbar .logo a {
        font-size: 27px;
    }

    nav .navbar .links li {
        padding: 0 10px;
        white-space: nowrap;
    }

    nav .navbar .links li a {
        font-size: 15px;
    }
}

@media (max-width:800px) {
    nav {
        /* position: relative; */
    }

    .navbar .bx-menu {
        display: block;
    }

    nav .navbar .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        display: block;
        max-width: 270px;
        width: 100%;
        background: white;
        line-height: 40px;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.5s ease;
        z-index: 1000;
    }

    .navbar .nav-links .sidebar-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sidebar-logo .logo-name {
        font-size: 25px;
        color: #fff;
    }

    .sidebar-logo i,
    .navbar .bx-menu {
        font-size: 25px;
        color: black;
    }

    nav .navbar .links {
        display: block;
        margin-top: 20px;
    }

    nav .navbar .links li .arrow {
        line-height: 40px;
    }

    nav .navbar .links li {
        display: block;
    }

    nav .navbar .links li .sub-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        display: none;
    }

    nav .navbar .links li .sub-menu li {
        border-bottom: none;
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
        position: relative;
        left: 0;
    }

    .navbar .links li .sub-menu .more-sub-menu li {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .links li:hover .htmlcss-arrow,
    .links li:hover .js-arrow {
        transform: rotate(0deg);
    }

    .navbar .links li .sub-menu .more-sub-menu {
        display: none;
    }

    .navbar .links li .sub-menu .more span {
        /* background: red; */
        display: flex;
        align-items: center;
        /* justify-content: space-between; */
    }

    .links li .sub-menu .more:hover .more-sub-menu {
        display: none;
    }

    nav .navbar .links li:hover .htmlCss-sub-menu,
    nav .navbar .links li:hover .js-sub-menu {
        display: none;
    }

    .navbar .nav-links.show1 .links .htmlCss-sub-menu,
    .navbar .nav-links.show3 .links .js-sub-menu,
    .navbar .nav-links.show2 .links .more .more-sub-menu {
        display: block;
    }

    .navbar .nav-links.show1 .links .htmlcss-arrow,
    .navbar .nav-links.show3 .links .js-arrow {
        transform: rotate(180deg);
    }

    .navbar .nav-links.show2 .links .more-arrow {
        transform: rotate(90deg);
    }
}


/* Media Queries for Header (End) */


@media screen and (max-width: 900px) {

    /* Footer Start */
    footer {
        position: relative;
        bottom: 0px;
    }

    .container-flex {
        flex-wrap: wrap;
        flex-direction: column;
        /* margin: 0% 0% 0% 0% ; */
    }

    .container-flex .box {
        margin: 5px 0;
    }

    .contact-info {
        margin: -10% 0% 0% 0%;
    }

    /* Footer End */

    /*Hero Section*/
    .hero-text h2 {
        margin: 25% 30% 0% 0;
        font-size: 23px;
        margin-left: -30%;
    }

    .border-button {
        margin-bottom: 5%;
    }

    .swiper-pagination {
        margin-top: -2%;
    }



    .navbar .search-box .input-box {
        position: absolute;
        right: calc(100% - 40px);
        top: 80px;
        height: 3vw;
        width: 19vw;
        background: #f9d054;
        border-radius: 6px;
        opacity: 0;
        pointer-events: none;
        transition: all 0.7s ease;
    }

    .navbar.showInput .search-box .input-box {
        top: 65px;
        opacity: 1;
        width: 40vw;
        height: 100%;
        pointer-events: auto;
        background: #f9d054;
    }

    .search-box .input-box::before {
        content: '';
        position: absolute;
        height: 20px;
        width: 20px;
        background: #f9d054;
        right: 10px;
        top: -6px;
        transform: rotate(45deg);
    }

    .search-box .input-box input {
        position: absolute;
        top: 50%;
        left: 50%;
        color: #f9d054;
        border-radius: 4px;
        transform: translate(-50%, -50%);
        height: 3vh;
        width: 37vw;
        outline: none;
        padding: 0 15px;
        font-size: 16px;
        border: none;
    }

}
@media screen and (max-width: 900px) {
    .sticky-basic{
        margin-top: 18%;
    }

    .product{
        flex-direction: column;
        width: 100%;
    }
}

@media screen and (max-width: 900px) {
    .info-section {
        flex-direction: column;
    }

    .info-item {
        display: flex;
        align-items: center;
        text-align: left;
        /* Change to left for inline alignment */
        max-width: 25%;
        margin: 10% 60% 0% 0%;
        /* Adjust as necessary */
    }

    .info-item img {
        width: 50%;
    }

    .info-item p {
        margin-left: 20%;
        position: absolute;
        width: 60%;
        color: #333;
        font-size: 16px;
    }
}

@media screen and (max-width: 900px) {
    .wrapper {
        margin: 5%;
    }

    .carousel .card {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 16vh;

    }

    .carousel .card img {

        height: 30vh;
        width: 100vw;
        object-fit: cover;
        user-select: none;
        border-radius: 30px;
    }


    .card-button {
        left: 10%;
        bottom: 10%;
    }
}
@media screen and (max-width: 900px) {
    .background-image {
        margin-top: 85vh;
        height: 20vh;
    }

    .content h1 {
        font-size: 18px;
        margin: 0;
    }
}
@media screen and (max-width: 900px) {
    .content-area {
        flex-direction: column;
        align-items: center;
    }

    .text-content {
        max-width: 100%;
    }

    .image-gallery {
        margin-top: 20px;
    }

    .image-gallery img {
        width: 90%;
        max-width: none;
    }
}

@media screen and (max-width: 900px) {
    .main-layout {
        flex-direction: column;
        margin: 2%;
    }

    .action-button {
        width: 35%;
        
    }

    .details-box {
        width: 90vw;
        border-radius: 5px;
        position: relative;   
    }

    .details-section{
        margin-left: 20%;
    }

    
    .schedule-appointment{
        flex-direction: column;
        align-items: center;
        margin-bottom: 5%;
    }

    .schedule-button{
        width: 55%;
    }

    .time-slots {
        margin-top: 5%;
        width: 85%;
    }

    .time-slot {
        display: flex;
        justify-content: center;
        align-items: center;

    }
}

@media (max-width:370px) {
    nav .navbar .nav-links {
        max-width: 100%;
    }
}