:root {
  --primary: #0e1b38;
  --secondary: #1a2748;
  --dark: #2C3338;
  --light: #F8F9FA;
  --fontawesome: "FontAwesome";
}

body {
    margin: 0;
    padding: 0;
    background: whitesmoke;
    font-family: "Source Sans 3", Arial, sans-serif;
    transition: all 3s;
}

.Htitle{
    font-family: "volunmo";
}

h1, h2, h3, h4, h5, h6{
  font-family: "Oswald";
}

section{
  padding: 2em;
}

section .container{
  padding-top: 2em;
}

.nav-logo-scroll{
  display: none;
}

/* Minimal style for content divs (for animation purposes) */
.fade-in {
    opacity: 0; /* Start with invisible */
    transform: translateY(50px); /* Start slightly below */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* Smooth transition */
}
  
/* In-view animation class */
.fade-in.in-view {
    opacity: 1; /* Fade in */
    transform: translateY(0); /* Move to original position */
}

/* Scroll to Top Button Styling */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #FF6347;
    color: white;
    border: none;
    border-radius: 50%;
    padding: 10px 20px;
    font-size: 1.5rem;
    display: none; /* Hidden by default */
    cursor: pointer;
    z-index: 1000; /* Make sure the button stays on top */
    transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
    background-color: #FF4500;
}

/* Style for the header container */
.landing-header {
    position: relative;
    background-color: #0e1b38; /* Background color */
    height: 100vh; /* Full screen height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide anything outside the header */
}

/* Overlay to darken the background image (optional, if you have an image in the background) */
.landing-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Darken background */
    z-index: 1;
}

.page-header {
  position: relative;
  background-color: #0e1b38; /* Background color */
  min-height: 45vh;
  padding-top: 10vh;
  padding-bottom: 1vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* Hide anything outside the header */
}

.btn-warning{
  background: #f39c12 !important;
  border: solid 1px #f39c12;
  color: white;
  text-transform: capitalize;
  font-weight: bold;
}

.btn-warning:hover{
  margin-top: -5px;
  background: #e67e22 !important;
  border: solid 1px #e67e22;
  color: white;
  text-transform: capitalize;
  font-weight: bold;
}

.btn-warning:active{
  margin-top: -5px;
  background: #e67e22 !important;
  border: solid 1px #e67e22 !important;
  color: white !important;
  text-transform: capitalize;
  font-weight: bold;
}

/* Overlay to darken the background image (optional, if you have an image in the background) */
.page-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Darken background */
  z-index: 1;
}

.bg-primary{
  background: #0e1b38 !important;
}

.area{
    height:100%;
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    animation: animate 25s linear infinite;
    bottom: -150px;
    font-size: 100%;
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    animation-duration: 11s;
}



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }

}

/* Header content (text and image) container */
.container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

/* Header Text Styling */
.header-text {
    font-size: 2.5rem;
    text-align: left;
    animation: slideInFromLeft 1.5s ease-out forwards;
    max-width: 60%; /* Adjust based on your design needs */
}

.header-text h1 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.2;
}

.header-text p {
    font-size: 1.25rem;
    margin-top: 1rem;
}

/* Header Image Styling */
.header-image {
    animation: slideInFromRight 1.5s ease-out forwards;
    margin-left: 50px; /* Space between text and image */
    max-width: 40%; /* Adjust based on your design needs */
}

/* Animations for sliding text and image */
@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Navbar Styling */

.navbar {
    position: fixed;
    background: #070d1c !important;
    color: #edf7fc !important;
    z-index: 9999;
    width: 100%;
    font-weight: bold;
  }

  .navbar a {
    color: #edf7fc !important;
    text-decoration: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='orange' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  .navbar-toggler{
    border: 2px solid #f39c12;
  }
  .navbar-toggler:focus{
    box-shadow: none;
  }
  
  .language-select select {
    background-color: #070d1c;
    color: white;
    padding: 12px;
    border: none;
    font-size: 20px;
    -webkit-appearance: button;
    appearance: button;
    outline: none;
  }

  /* Full Width Dropdown */
  .dropdown {
    position: static !important;
  }

  .dropdown-menu {
    text-align: center;
    background: #070d1c;
    color: #edf7fc;
    width: 100%;
    margin-top: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    animation: 0.6s slideup;
  }

  /* Animation for Dropdown */
  @keyframes slideup {
    from {
      transform: translateY(10%);
    }
    to {
      transform: translateY(0%);
    }
  }

  /* Column Setup Inside Dropdown */

  .dropdown-menu .link-section {
    padding: 0;
    text-align: start;
  }

  .dropdown-menu .link-column {
    background-color: #1f2532;
    padding: 40px 30px;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015), 0 12px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
  }

  .dropdown-menu .link-column:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 25px rgba(255, 193, 7, 0.15);
  }

  .dropdown-menu .link-column h5 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.8rem;
    position: relative;
  }

  .dropdown-menu .link-column h5::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    height: 3px;
    width: 60px;
    background: linear-gradient(90deg, #f39c12, #f39c12);
    border-radius: 3px;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .dropdown-menu .link-column h5 i {
    font-size: 1.2rem;
    color: orange;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .dropdown-menu .link-column:hover h5 i {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(255, 193, 7, 0.4));
  }

  .dropdown-menu .link-column ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
  }

  .dropdown-menu .link-column li {
    margin-bottom: 1.1rem;
  }

  .dropdown-menu .link-column a {
    color: #b0b8c1;
    font-size: 1.05rem;
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s ease;
  }

  .dropdown-menu .link-column a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: #f39c12;
    transition: width 0.4s ease;
  }

  .dropdown-menu .link-column a:hover {
    color: #f1f3f5;
  }

  .dropdown-menu .link-column a:hover::after {
    width: 50%;
  }

  @media (max-width: 767.98px) {
    .dropdown-menu .link-column {
      text-align: center;
    }

    .dropdown-menu .link-column h5 {
      justify-content: center;
    }
  }

  .navbar .portfolio-card{
    background: #1f2532;
    color: white;
  }

  .navbar .portfolio-card .text-muted{
    color: whitesmoke !important;
  }

  .navbar .portfolio-card .btn-primary{
    background: #f39c12;
    text-transform: capitalize;
    font-weight: bold;
  }

  .navbar .portfolio-card .btn-primary:hover{
    background: #e67e22;
  }

  /* Quote Button */
  .quote-btn {
    background-color: #f39c12;
    border: none;
    padding: 7.5px;
    padding-left: 1.5em;
    padding-right: 1.5em;
    border-radius: 5px;
    color: white;
  }

  .quote-btn:hover {
    background-color: #e67e22;
    color: white;
}

    /* Mobile styles */
    @media (max-width: 991.98px) {
    
      img{
        margin-top: 5px;
      }
      .navbar-nav {
        background-color: #070d1c;
        padding: 1.5rem;
        border-radius: 0.5rem;
      }
      .navbar-nav .nav-item {
        margin-bottom: 0.75rem;
      }
      .navbar-nav .nav-link {
        color: #ffffff;
        font-weight: 500;
        letter-spacing: 0.5px;
      }
      .navbar-nav .nav-link:hover {
        color: #9fdbfc;
      }
      .navbar-nav .nav-link.active {
        color: #f39c12;
      }
      .navbar-nav .dropdown-menu {
        background-color: #10172e;
        position: static;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        border: none;
        border-radius: 0.5rem;
        box-shadow: inset 0 0 0 1px #1f2a48;
      }
      .dropdown-item {
        color: #e4e4e4;
        padding: 0.5rem 1rem;
      }
      .dropdown-item:hover {
        background-color: #1c2338;
        color: #ffffff;
      }
      .dropdown-divider {
        height: 1px;
        margin: 0.75rem 0;
        background: linear-gradient(to right, #2e354d, #4c597c, #2e354d);
        opacity: 1;
        border: none;
      }
    }

  /* Responsive Design for Small Screens */
  @media (max-width: 991px) {
    .dropdown-menu .container {
      flex-direction: column;
    }

    .dropdown-menu .col {
      margin: 15px 0;
      width: 100%;
    }
  }

  @media (max-width: 1196px) {
    .desktop {
      display: none;
    }

    .mobile {
      display: block;
    }
  }

  @media (min-width: 1197px) {
    .desktop {
      display: block;
    }

    .mobile {
      display: none;
    }
  }

/* content */

/* homepage */

/* services */

section#services{
    margin-top: 10vh;
    background: transparent;
}

section#services #services-col{
    background: white;
    text-align: left;
    margin-top: 5em;
    margin-left: 1em;
    margin-right: 1em;
    padding-top: 3em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 3em;
    border-radius: 25px;
    transition: all 0.3s;
}

section#services #services-col-anime{
    margin-left: 1em;
    margin-right: 1em;
    padding-top: 3em;
    padding-left: 2em;
    padding-right: 2em;
    padding-bottom: 3em;
}

section#services #services-col-anime dotlottie-player{
    width: 100%;
    height: 100%;
}

section#services #services-col .services-icon{
    position: absolute;
    background: #070d1c;
    color: whitesmoke;
    margin-top: -3em;
    padding: 1em;
    border-radius: 25px;
}

section#services #services-col a{
    margin-left: -15px;
    padding: 15px;
    color: #070d1c;
    font-weight: 700;
    text-transform: capitalize;
}

section#services #services-col:hover{
    background: #070d1c;
    color: white;
}

section#services #services-col:hover a{
    background: #f39c12;
    color: white;
    padding: 15px;
    margin-left: -15px;
    border-radius: 5px;
    text-decoration: none;
}

section#services #services-col:hover .services-icon{
    background: #f39c12;
}


section#difference{
    position: relative;
    background: transparent;
}

section#difference .difference-left{
    background: #070d1c;
    color: whitesmoke;
    text-align: center;
    padding: 2em;
    min-height: 50vh !important;
    border-radius: 120px 20px 120px 20px;
}

.check-mark{
    color: #43b7ff;
    padding-right: 0.3em;
}

.check-text{
    font-size: 0.7em;
    padding-left: 1.9em;
    padding-right: 2em;
    min-height: 8em;
}

.about-us-animation{
    position: absolute;
    right: 0;
    bottom: 300px;
}

.reviews-section {
    position: relative;
    overflow: hidden;
    background-color: #070d1c; /* Section background color */
  }
  .reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      rgba(243, 156, 18, 0.05),
      rgba(7, 13, 28, 0.8),
      rgba(243, 156, 18, 0.05)
    );
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite;
    z-index: 0;
  }
  @keyframes gradientAnimation {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    50% { transform: translate(0%, 0%) rotate(180deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
  }
  .reviews-section .project-counter {
    padding: 20px 0;
    text-align: center;
    position: relative;
    z-index: 1; /* Ensure content is above the background */
  }
  .reviews-section .project-counter .counter-item {
    margin-bottom: 15px;
  }
  .reviews-section .project-counter .counter-item h2 {
    font-size: 2rem;
    color: #f39c12;
    margin-bottom: 5px;
    font-weight: bold;
  }
  .reviews-section .project-counter .counter-item p {
    font-size: 0.9rem;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .reviews-section p.lead {
    color: #ced4da;
  }

  .reviews-section .carousel-inner {
    max-width: 800px;
    margin: 0 auto;
  }

  .reviews-section .carousel-item {
    padding: 2rem 1rem;
  }

  .reviews-section .review-card-wrapper {
    display: flex;
    justify-content: center;
  }

  .reviews-section .review-card {
    background-color: #121826;
    color: #e0e4eb;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
  }

  .reviews-section .review-source {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #adb5bd;
  }

  .reviews-section .review-text {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    padding-left: 1.5rem;
  }

  .reviews-section .review-text::before {
    content: "“";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 2.5rem;
    color: #ffc107;
    line-height: 1;
  }

  .reviews-section .review-author {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #9ca3af;
  }

  .reviews-section .rating {
    color: #ffc107;
    font-size: 1.3rem;
    margin-top: 0.5rem;
  }

  .reviews-section .carousel-control-prev,
  .reviews-section .carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
  }

  .reviews-section .carousel-control-prev:hover,
  .reviews-section .carousel-control-next:hover {
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  }

  .reviews-section .carousel-control-prev-icon,
  .reviews-section .carousel-control-next-icon {
    filter: invert(100%);
    width: 1.2rem;
    height: 1.2rem;
  }

  .reviews-section .carousel-control-prev {
    left: calc(50% - 300px - 5em);
  }

  .reviews-section .carousel-control-next {
    right: calc(50% - 300px - 5em);
  }

  .reviews-section .carousel-indicators {
    bottom: -2.5rem;
  }

  .reviews-section .carousel-indicators [data-bs-target] {
    background-color: #ffffff;
    opacity: 0.3;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 6px;
    transition: opacity 0.3s ease;
  }

  .reviews-section .carousel-indicators .active {
    opacity: 1;
  }

  @media (max-width: 768px) {
    .reviews-section .carousel-control-prev,
    .reviews-section .carousel-control-next {
      display: none;
    }
  }

  @media (max-width: 576px) {
    .reviews-section .review-card {
      padding: 1.5rem;
    }

    .reviews-section .review-text {
      font-size: 1.05rem;
    }
  }

/* Portfolio Section Styles */
.portfolio .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background: transparent;
  }
  .portfolio .card:hover img{
    transform: translateY(-10px);
  }
  .portfolio .card-img-top {
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: 1s;
  }
  .portfolio .card-body {
    padding: 1.5rem;
    background: transparent;
  }
  .portfolio .btn-primary {
    background-color: #0e1b38;
    border: none;
    padding: 0.5rem 1.5rem;
    animation: btn-leave 0.4s forwards;
  }
  .portfolio .btn-primary:hover {
    animation: btn-hover 0.4s forwards;
  }

@keyframes btn-hover {
    from {
        box-shadow: inset 0 0 0 0.01px #e67e22;
    }
    to {
        box-shadow: inset 8.79928em 0 0 0.01px #e67e22;
        color: #fff;
    }
}

@keyframes btn-leave {
    from {
        box-shadow: inset -8.79928em 0 0 0.01px #e67e22;
        color: #fff;
    }
    to {
        box-shadow: inset 0 0 0 0.01px #e67e22;
    }
}

  .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
  }
  .portfolio .section-title {
    flex: 1;
    padding-right: 2rem;
    border-right: 2px solid #dee2e6;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
  }
  .portfolio .client-info {
    flex: 1;
    padding-left: 2rem;
  }
  .portfolio .client-info p {
    color: #6c757d;
  }

.pricing-section {
    padding: 60px 0;
}
.pricing-section .card {
    border: none;
    transition: transform 0.2s;
}

.pricing-section .card-body{
    padding-left: 2em;
    padding-right: 2em;
}

.pricing-section .card-body ul{
    text-align: start;
}

.pricing-section .btn-primary {
    background-color: #0e1b38;
    border-color: #0e1b38;
}
.pricing-section .btn-primary:hover {
    background-color: #0e1b38;
    border-color: #0e1b38;
}
.pricing-section .btn-outline-primary {
    border-color: #0e1b38;
    color: #0e1b38;
}
.pricing-section .btn-outline-primary:hover {
    background-color: #0e1b38;
    color: #fff;
}
/* Remove spacing between columns */
.pricing-section .row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.pricing-section .row.no-gutters > [class^="col-"],
.pricing-section .row.no-gutters > [class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}
/* Make the middle card stand out more */
.pricing-section .middle-card {
    transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.pricing-section .middle-card .card-header {
    background-color: #0e1b38;
}
.pricing-section .middle-card .btn-primary {
    background-color: #0e1b38;
    border-color: #0e1b38;
}
.pricing-section .middle-card .btn-primary:hover {
    background-color: #f39c12;
    border-color: #f39c12;
}
/* Starting price note */
.pricing-section .starting-price {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: -10px;
    margin-bottom: 20px;
}


/* pages */

.section {
  padding: 60px 0;
}
.btn-primary {
  background-color: #0e1b38; /* Updated button color */
  border: none;
  padding: 10px 30px;
}
.btn-primary:hover {
  background-color: #1a2a4f; /* Darker shade for hover */
}
.navbar-brand {
  font-weight: bold;
  font-size: 24px;
  color: #0e1b38 !important;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.pricing-card {
  border: none; /* Remove border */
  border-radius: 10px;
  padding: 0; /* Remove padding */
  padding-bottom: 1em;
  text-align: center;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Light box shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}
.pricing-card h3 {
  background-color: #0e1b38; /* Header background */
  color: white;
  padding: 20px;
  margin: 0;
  border-radius: 10px 10px 0 0; /* Rounded top corners */
}
.pricing-card .price {
  font-size: 32px;
  font-weight: bold;
  color: #333;
  padding: 20px 0;
  background-color: #f8f9fa; /* Light background for price */
}
.pricing-card ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  text-align: left;
}
.pricing-card ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 700;
  padding: 30px 0;
  color: var(--dark);
}
.pricing-price small {
  font-size: 1rem;
  font-weight: normal;
}

.list-icon {
  color: #0e1b38;
  margin-right: 10px;
  width: 20px; /* Ensure consistent icon width */
  text-align: center;
}

.tech-stack {
  padding: 30px;
}
.tech-icon {
  font-size: 2rem;
  color: #0e1b38;
  margin: 0 15px;
}
.guarantee-badge {
  background: #0e1b38;
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 20px;
}
.vat-note {
  font-size: 0.85rem;
  color: #6c757d;
  margin-top: -15px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}
.check-list li {
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}
.check-list li:before {
  content: "\f00c";
  font-family: var(--fontawesome);
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
}
.stats-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
}
.hosting-showcase {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.hosting-showcase:hover {
  transform: translateY(-5px);
}

.hosting-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.email-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}

.integration-badge {
  display: inline-block;
  background-color: var(--light);
  border: 1px solid #dee2e6;
  padding: 8px 15px;
  border-radius: 50px;
  margin: 5px;
  font-size: 0.9rem;
}

.feature-card {
  border-radius: 12px;
  padding: 30px;
  background: white;
  box-shadow: 0 10px 30px rgba(150, 88, 138, 0.1);
  transition: transform 0.3s;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(150, 88, 138, 0.2);
}

.keyword-pill {
  display: inline-block;
  background-color: var(--primary-light);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 50px;
  margin: 5px;
  font-size: 0.9rem;
}

.monitoring-gauge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: conic-gradient(var(--primary) 0% 75%, #eee 75% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--dark);
  font-weight: bold;
  font-size: 2rem;
}
.monitoring-gauge::after {
  content: "99.9%";
  background: white;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}

.warning-box {
  background-color: #fff8e6;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
}
.security-alert {
  position: relative;
  padding-left: 60px;
}
.security-alert::before {
  content: "\f071";
  font-family: var(--fontawesome);
  font-weight: 900;
  color: #dc3545;
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 2rem;
}

.emergency-list li:before {
  color: #dc3545;
}
.warning-box {
  background-color: #fff8e6;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
}
.emergency-alert {
  position: relative;
  padding-left: 60px;
}
.emergency-alert::before {
  content: "\f071";
  font-family: var(--fontawesome);
  font-weight: 900;
  color: #dc3545;
  position: absolute;
  left: 20px;
  top: 0;
  font-size: 2rem;
}
.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  background-color: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}
.whatsapp-badge i {
  margin-right: 10px;
  font-size: 1.5rem;
}

.support-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 20px;
}
.support-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(150, 88, 138, 0.15);
  transition: transform 0.3s;
  border: 1px solid rgba(150, 88, 138, 0.1);
  height: 100%;
}
.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(150, 88, 138, 0.2);
}
.support-header {
  background-color: var(--primary);
  color: white;
  padding: 30px;
}
.emergency-header {
  background-color: #dc3545;
}

.team-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(150, 88, 138, 0.15);
  transition: transform 0.3s;
  border: none;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-img {
  height: 250px;
  object-fit: cover;
  width: 100%;
}
.language-badge {
  background-color: var(--secondary);
  color: white;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  display: inline-block;
  margin-right: 5px;
}
.cat-card {
  background-color: #f9f3ff;
  border-left: 4px solid var(--primary);
}
.journey-timeline {
  border-left: 2px solid var(--primary);
  padding-left: 30px;
}
.journey-point {
  position: relative;
  margin-bottom: 30px;
}
.journey-point:before {
  content: '';
  position: absolute;
  left: -36px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid white;
}

.accordion-button:not(.collapsed) {
  background-color: #070d1c;
  color: white;
  font-weight: 600;
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem #070d1c;
}
.cookie-type-badge {
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-right: 10px;
}
.system-card {
  border-left: 4px solid var(--primary);
  background-color: #faf5ff;
  border-radius: 8px;
}

.legal-card {
  border-left: 4px solid var(--primary);
  background-color: #faf5ff;
  border-radius: 8px;
}
.compliance-badge {
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-right: 8px;
}
.data-flow-diagram {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.law-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 10px;
}

.me-2{
  color: var(--primary) !important;
}

.guarantee-badge .me-2{
  color: white !important;
}

.contract-card {
  border-left: 4px solid var(--primary);
  background-color: #faf5ff;
  border-radius: 8px;
}
.term-badge {
  background-color: var(--primary);
  color: white;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 50px;
  margin-right: 8px;
}
.payment-model {
  background-color: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  height: 100%;
}
.legal-icon {
  font-size: 1.5rem;
  color: var(--primary);
  margin-right: 10px;
}
.term-section {
  border-bottom: 2px dashed var(--primary);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

img.tech-icon{
  width: 3em;
  height: 3.5em;
}

.webcuisine-quote-form .card{
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 1em;
  border: none;
  box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.webcuisine-quote-form .progress-bar{
  background: var(--primary);
}

.webcuisine-quote-form .btn{
  background: var(--primary);
  border: none;
  padding: 10px 30px;
}

.pagination {
  gap: 12px;
  justify-content: center;
  padding-top: 1rem;
  flex-wrap: wrap;
}

.pagination .page-item .page-link {
  background: #070d1c;
  color: #fff;
  font-weight: bold;
  border: 2px solid transparent;
  padding: 10px 18px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

.pagination .page-item .page-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140%;
  height: 140%;
  background: rgba(243, 156, 18, 0.1); /* gold glow */
  transform: translate(-50%, -50%) rotate(25deg);
  pointer-events: none;
  transition: all 0.4s ease-in-out;
  border-radius: 50%;
}

.pagination .page-item .page-link:hover::before {
  width: 180%;
  height: 180%;
  opacity: 0.2;
}

.pagination .page-item .page-link:hover {
  background-color: #f39c12;
  color: #070d1c;
}

.pagination .page-item.active .page-link {
  background-color: #fff;
  color: #070d1c;
  border: 2px solid #070d1c;
}

.pagination .page-item.active .page-link::before {
  display: none;
}

.contact-page {
  padding: 60px 0;
}
.contact-page h3 {
  font-weight: bold;
  margin-bottom: 20px;
}
.contact-page form .form-control {
  margin-bottom: 15px;
}
.contact-page .alert {
  margin-top: 20px;
}
.contact-info i {
  color: #2a5298;
  margin-right: 10px;
}

/* footer 


.footer-push{
    height: 200px;
}

footer{
    position: relative;
    background: #070d1c;
    padding-top: 100px;
}

.inner-footer{
    background: #1a2748;
    color: white;
    margin-top: -250px;
    padding: 50px;
    border: solid #1a2748;
    border-radius: 50px 50px 0 0;
}

footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    color: #f39c12;
    text-decoration: underline;
}
.social-icons a {
    margin-right: 15px;
    font-size: 18px;
}
.social-icons a:hover {
    color: #f39c12;
}
.btn-light {
    background-color: #f39c12;
    border: none;
    color: white;
}
.btn-light:hover {
    background-color: #e67e22;
    color: white;
}
.footer-section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}
.footer-section p {
    margin-bottom: 10px;
}
.contact-form input,
.contact-form textarea {
    background-color: #34495e;
    border: none;
    color: white;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #bdc3c7;
}
.contact-form button {
    margin-top: 10px;
}
.slogan {
    font-weight: bold;
    font-style: italic;
    color: #bdc3c7;
}

/* Divider styling 
.divider {
    border-top: 1px solid #bdc3c7;
    margin: 30px 0;
}
.social-divider {
    border-top: 1px solid #bdc3c7;
    margin: 10px 0;
}
.copyright {
    text-align: center;
    font-size: 14px;
    color: #bdc3c7;
}

svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: block;
    background-color: #070d1c;
}

*/


/* Mobile optimazition */

@media only screen and (max-width: 999px) {
  .mobileHide{
    display: none;
  }
}

.webcuisine-footer {
  background-color: #070d1c;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.webcuisine-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.webcuisine-footer h5 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.webcuisine-footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #f39c12;
}

.webcuisine-footer h1 {
  color: #ffffff;
  margin-top: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.webcuisine-footer h1::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #f39c12;
}


.webcuisine-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.webcuisine-footer ul li {
  margin-bottom: 0.75rem;
}

.webcuisine-footer a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.webcuisine-footer a:hover {
  color: #f39c12;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(243, 156, 18, 0.2);
  border-radius: 50%;
  color: #f39c12;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #f39c12;
  color: #ffffff;
  transform: translateY(-2px);
}

address p {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

address i {
  color: #f39c12;
  margin-top: 0.2rem;
}

.cta-button {
  display: inline-block;
  background-color: #f39c12;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background-color: #e67e22;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.company-info {
  opacity: 0.7;
  font-size: 0.8rem;
}

.company-info p {
  margin-bottom: 0.5rem;
}

.legal-links {
  display: flex;
  gap: 1rem;
}

.legal-links a {
  font-size: 0.8rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.legal-links a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
}