
:root {
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Nunito",  sans-serif;
    --nav-font: "Poppins",  sans-serif;
}
  
  /* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #012970; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #4154f1; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    margin-top: 214px;
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 80px 0 60px 0;
    display: flex;
    align-items: center;
    background: url(../img/hero-bg.png) top center no-repeat;
    background-size: cover;
  }
  
  .hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
  }
  
  .hero p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 25px 0 30px 0;
    font-size: 20px;
    font-weight: 400;
}
  
.hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
}
  
@media (max-width: 640px) {
    .hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    .hero p {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
}
  
@keyframes up-down {
    0% {
      transform: translateY(10px);
    }
  
    100% {
      transform: translateY(-10px);
    }
}



/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.featured-services .service-item {
    background-color: var(--surface-color);
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    padding: 20px 10px;
    transition: border ease-in-out 0.3s;
    height: 100%;
}

.featured-services .service-item .icon {
    margin: 0 auto 20px;
    width: 64px;
    height: 64px;
    /* background: var(--accent-color); */
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.featured-services .service-item .icon i {
    color: var(--contrast-color);
    font-size: 28px;
    transition: ease-in-out 0.3s;
}


.featured-services .service-item p {
    line-height: 24px;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 0;
}

.featured-services .service-item:hover {
    border-color: var(--accent-color);
}

.featured-services .service-item:hover h3 {
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# reporting Section
--------------------------------------------------------------*/
.reporting .card {
    background-color: var(--surface-color);
    color: var(--default-color);
    padding: 30px;
    box-shadow: 0px 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    height: 100%;
    border: 0;
}
  
.reporting .card img {
    padding: 30px 50px;
    transition: 0.3s ease-in-out;
    transform: scale(1); /* Default size */
    max-width: 100%; /* Ensures image doesn't exceed container */
    height: auto; /* Maintains aspect ratio */
}

.reporting .card:hover img {
    transform: scale(1.05); /* Slight zoom effect on hover */
}
  
.reporting .card p {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 18px;
  }
  
.reporting .card:hover {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  }
  
/* .reporting .card:hover img {
    transform: scale(1);
} */



/* Section Styling */
.alt-features {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light gray background */
}

.alt-features .section-title {
    text-align: center;
    margin-bottom: 40px;
}


/* Add spacing between feature items */
.icon-box {
    /* display: flex;
    align-items: center; */
    height: 86px;
    width: 47%;
    margin: 5px 10px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    /* margin-bottom: 20px; */
}


.icon-box h4 {
    font-size: 15px;
    color: #002855;
    margin-bottom: 0;
}


/* Hover Effect */
.icon-box:hover {
    transform: translateY(-5px);
}

/* Image Styling */
.alt-features img {
    max-width: 100%;
    /* margin-left: 90px; */

}

/* Responsive Design */
@media (max-width: 992px) {
    .alt-features .row {
        flex-direction: column-reverse;
    }

    .icon-box {
        text-align: left;
    }

    .alt-features img {
        max-width: 100%;
    }
}


/* blog pages css */

.blog-section {
    padding: 60px 0;
}
.blog-title {
    text-align: center;
    font-size: 50px;
    font-weight: 500;
    margin-bottom: 40px;
}
.blog-image img {
    width: 100%;
    border-radius: 5px;
}
.blog-content h2 {
    font-size: 28px;
    font-weight: 700;
}
.blog-content p {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 20px;
}
.read-more-btn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
}
.read-more-btn:hover {
    background-color: #218838;
    color: white;
}


.price-tab{
    display: flex !important;
    justify-content: center !important;
    border: none !important; 
    margin-bottom: 40px !important;
    gap: 10px;
    font-size: 15px !important;
}

.box{
    display: flex !important;
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
}

@media screen and (min-width: 768px) {
  .box {
    flex-direction: row !important;
  }
}

.price-tab>li.active>a, .price-tab>li.active>a:focus, .price-tab>li.active>a:hover{
    color: #ffffff !important;
    cursor: default !important;
    background-color: #03a9f4 !important;
    border: 2px solid #ddd !important;
    /* font-size: 10px !important; */
    /* border-bottom-color: transparent; */
}

.minutes-value {
    font-size: 20px;
    font-weight: 500;
    color: #333;
}

.minutes-text {
    font-size: 20px; 
    font-weight: 500;
    color: #333;
    margin-left: 12px; 
}

.point{
    font-size: 20px; 
    font-weight: 500;
    color: #333;
    margin-top: 12px;
    margin-left: 9px;
}

.price-tag{
    font-size: 40px;
    font-weight: 700;
}

.price-tag span {
    font-size: 24px;
    font-weight: 500;
}

/* Ribbon Styles */
.ribbon {
    position: absolute;
    top: -13px;
    right: -12px;
    background: #1caa49;
    color: white;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

/* Ribbon Tail */
.ribbon::after {
    content: "";
    position: absolute;
    bottom: -4px;
    right: 2px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid black;
    transform: rotate(133deg); /* Rotates the triangle */
}


/* footer custom stylig */

#footer{
    padding: 40px 0 30px;
    background-color: #c1c1c1 !important;
    overflow: hidden;
}

#copyright{
    padding: 20px 0 18px;
    color: #000000;
    background-color: #ffffff !important;
    text-align: center;
}
.footer-about p {
    color: rgb(255, 255, 255) !important;
}

.footer-widget ul li a {
    color: black !important;
    -webkit-transition: color .25s;
    transition: color .25s;
    border-bottom: 1px solid black;
    display: block;
    margin: 2px 0;
    font-weight: normal;
    padding-bottom: 5px;
}

.footer-widget h4 {
    color: black !important;
    font-size: 20px;
    font-weight: 700;
    margin: -3px 0 0;
    position: relative;
    padding-bottom: 13px;
}

.contact-info {
    color: #000000 !important;
    padding: 30px 0 0;
    border-top: 1px solid #14191B;
}

.contact-info a{
    color: #000000 !important;
    text-decoration: none;
    outline: 0;
}

#subscribeForm .input-box{
    border: 1px solid #000000 !important;
}

#subscribeForm .submit-button:hover{
    background-color: #03a9f4 !important;
}

#footer .read-button{
    background-color: #03a9f4 !important;
}


.swiper-row{
    display: flex;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 28px;
}

.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    background: #ffff;
}


.call-button {
    position: fixed;
    right: 0;
    top: 30%;
    transform: translateY(-50%) rotate(270deg); /* Rotates the button */
    background-color: #007aff;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px 5px 0 0; /* Rounded edges */
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 1000;
    white-space: nowrap; /* Prevents text from breaking */
    transform-origin: bottom right; /* Keeps rotation aligned properly */
}

.call-button:hover {
    background-color: #007aff;
}


.custom-margin-top {
    margin-top: 10px !important;
}